Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
},
"optionalOkapiInterfaces": {
"consortia": "1.0",
"locale": "1.0",
"login-saml": "2.0",
"roles": "1.1",
"users-keycloak": "1.0"
Expand Down Expand Up @@ -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"
]
}
]
},
Expand Down