diff --git a/CHANGELOG.md b/CHANGELOG.md index ec29a4fe8..82ec78cc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,7 @@ * Increase default timeout to 60 seconds in useOkapiKy.js to match the value in Kong. Refs STCOR-1022. * Add `tr` Türkçe (Turkish) locale. Refs STCOR-1026. * Remove the `/users-keycloak/_self` (and `/bl-users/_self`) requests. They were included in `isAuthenticationRequest`, which caused them to bypass the RTR queue (`getPromise`). Fixes STCOR-1029. +* Define a permission-set containing values necessary for session-init API requests. Refs STCOR-1031. ## [11.0.0](https://github.com/folio-org/stripes-core/tree/v11.0.0) (2025-02-24) [Full Changelog](https://github.com/folio-org/stripes-core/compare/v10.2.0...v11.0.0) diff --git a/package.json b/package.json index 80bdf610f..80e6cf873 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ }, "optionalOkapiInterfaces": { "consortia": "1.0", + "locale": "1.0", "login-saml": "2.0", "roles": "1.1", "users-keycloak": "1.0" @@ -59,6 +60,17 @@ "permissionName": "mod-settings.global.write.stripes-core.prefs.manage", "displayName": "UI: update the tenant's preferences", "visible": false + }, + { + "permissionName": "stripes-core.settings.read", + "displayName": "UI: read global tenant and user settings", + "visible": false, + "subPermissions": [ + "mod-settings.owner.read.stripes-core.prefs.manage", + "mod-settings.global.read.stripes-core.prefs.manage", + "mod-settings.entries.collection.get", + "locale.item.get" + ] } ] },