Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Code Block
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

Code Block
languagejava
jobMap.put(SetUMembershipsJob.MEMBERSHIPS_KEY, memberships);

with

Code Block
languagejava
jobMap.put(SetUMembershipsJob.MEMBERSHIPS_BEFORE_KEY, Collections.emptyMap()); 
jobMap.put(SetUMembershipsJob.MEMBERSHIPS_AFTER_KEY, memberships);

in order to keep the old behavior.

...