DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
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):
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.