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

Compare with Current View Page History

« Previous Version 3 Next »

Source changes

POM

In the root pom.xml:

  • change parent/version from 1.1.4 to 1.1.5
  • change properties/syncope.version from 1.1.4 to 1.1.5

Other

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

SYNCOPE-441

SYNCOPE-419 SYNCOPE-431 SYNCOPE-435 SYNCOPE-449

SYNCOPE-437

SYNCOPE-427

Internal storage changes

If not starting with an empty database, the following changes are needed:

SYNCOPE-422

Change triggered audit logName in your SyncopeLogger table.
The new syntax is: syncope.audit.[type]:[category]:[subcategory]:[event]:[result condition].
Take a look at the following samples.

[REST]:[AuthenticationController]:[]:[getEntitlements]:[SUCCESS] (successful getEntitlement operation)
[PropagationTask]:[]:[]:[]:[SUCCESS] (successful propagation)
[SyncTask]:[]:[]:[]:[FAILURE] (unsuccessful synchronization)
[CUSTOM]:[]:[]:[my custome event]:[FAILURE] (custome event raised by a custom extension)
...

SYNCOPE-423

Change triggered notification events in your Notification_events table.
The new syntax is: [type]:[category]:[subcategory]:[event]:[result condition].
Take a look at the following samples.

[REST]:[UserController]:[]:[update]:[SUCCESS] (successful user update)
[REST]:[RoleController]:[]:[delete]:[FAILURE] (unsuccessful role delete)
[PropagationTask]:[user]:[resource-ldap]:[create]:[SUCCESS] (successful user create onto resource-ldap resource)
[SyncTask]:[role]:[resource-csv]:[update]:[SUCCESS] (successful role update during resource-csv synchronization)
[CUSTOM]:[]:[]:[my custome event]:[SUCCESS] (custome event raised by a custom extension)
...

SYNCOPE-434

INSERT INTO SyncopeConf(confKey, conValue) VALUES('authentication.statuses', 'active');

SYNCOPE-441

CREATE INDEX ACT_RU_TASK_PARENT_TASK_ID_ ON ACT_RU_TASK(PARENT_TASK_ID_); 
  • No labels