Source changes

POM

In the root pom.xml:

  • change parent/version from 2.1.0 to 2.1.1
  • change properties/syncope.version from 2.1.0 to 2.1.1

Files

Replace the following files with their 2.1.1 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.


  • No labels