v2.1.14 Upgrade Notes

Configuration changes

Replace docker-compose.yml with new version from release folder.

Update container versions in .env to v2.1.14.

Additions to .env.

Directory Database

You should run the update script for the directory database. This will add the changes from MD-1290 and ensure that inherited permissions gets applied correctly.

See Upgrade Directory Database - Step 3.

[MD-998] Do not allow duplicate application names on login screen

ALTER TABLE IF EXISTS mops_sec_identity_issuer
ADD CONSTRAINT mops_sec_identity_issuer_name_key UNIQUE (name);

ALTER TABLE IF EXISTS mops_sec_client
ADD CONSTRAINT mops_sec_client_name_key UNIQUE (display_name);

ALTER TABLE IF EXISTS mops_sec_application
ADD CONSTRAINT mops_sec_application_name_key UNIQUE (name, display_name);