Versions Compared

Key

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

...

Please note that the new format allows to define multiple Elasticsearch nodes from the same cluster.

Internal Storage

Note

The steps below need to be performed after a first start of Syncope 3.0.5 which will take care of creating the new columns.


Code Block
languagesql
UPDATE OIDCRPClientApp SET logoutType='BACK_CHANNEL';
UPDATE SAML2SPClientApp SET logoutType='BACK_CHANNEL';
UPDATE CASSPClientApp SET logoutType='BACK_CHANNEL';

Moreover, update the JSON values of the column scopes from the table OIDCRPClientApp to contain only lowercase strings:

Code Block
languagesql
UPDATE OIDCRPClientApp SET scopes=LOWER(scopes);

Furthermore, if you are using Azure AD modules, replace into AuthModule table, jsonConf class column, the value org.apache.syncope.common.lib.auth.AzureAuthModuleConf with org.apache.syncope.common.lib.auth.AzureOIDCAuthModuleConf.