You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Source changes
POM
In the root pom.xml:
change parent/version from 2.0.9 to 2.0.10

change properties/syncope.version from 2.0.9 to 2.0.10

Files
Add

jwsAlgorithm=HS512
to core/src/main/resources/security.properties.

Replace the following files with their 2.0.10 counterparts (re-apply any customization previously made):

enduser/src/main/webapp/app/css/app.css
Classes
SYNCOPE-1356 has restored the membership removal features of LDAPMembershipPullActions; this implied some behavioral changes with the SetUMembershipJob class: if your code uses the latter, please ensure to change

jobMap.put(SetUMembershipsJob.MEMBERSHIPS_KEY, memberships);
with

jobMap.put(SetUMembershipsJob.MEMBERSHIPS_BEFORE_KEY, Collections.emptyMap()); jobMap.put(SetUMembershipsJob.MEMBERSHIPS_AFTER_KEY, memberships);
in order to keep the old behavior.


  • No labels