Releases: osiam/addon-administration
OSIAM Administration 1.9
OSIAM Administration 1.9.CR3
Circle CI Build: https://circleci.com/gh/osiam/addon-administration/213
OSIAM Administration 1.9.CR2
Circle CI Build: https://circleci.com/gh/osiam/addon-administration/203
OSIAM Administration 1.8
Changelog
NOTICE: This version should be compatible with all versions of OSIAM >= 2.2.
Features
-
Support legacy SCIM schemas for connecting to OSIAM <= 2.3
See OSIAM Endpoints (OSIAM 2.x), if you use OSIAM <= 2.3.
-
Support OSIAM 3.x
See OSIAM Endpoints (OSIAM 3.x), if you use OSIAM 3.x.
Changes
-
Make SQL scripts more independent of database schema
Use
INSERT
s without field names. -
Change table name in SQL script
admin_group.sql
Due to the database schema changes in the resource-server,
scim_group_scim_id
becomesscim_group_members
.
A statement with the old table name is still contained as a comment for your convenience. -
Use the new scope
ADMIN
for connections to OSIAMAbandon the usage of the deprecated method-based scopes.
SQL files have been changed to install the necessary client with scopeADMIN
.
Add the scopeADMIN
to theaddon-administration-client
:INSERT INTO osiam_client_scopes (id, scope) VALUES (<id of addon-administration-client>, 'ADMIN');
By default
<id of addon-administration-client>
is set to20
. -
Remove deprecated SQL file
example_data.sql
Fixes
-
Fix handling of boolean extension fields
Fixes #83
-
Create REST client only once to improve performance
Updates
- OSIAM connector4java 1.8
- Spring Boot 1.2.7
OSIAM Administration 1.7
Changelog
NOTICE: This version is only compatible with OSIAM 2.4 and later.
Updates
- OSIAM connector4java 1.7
- Spring Boot 1.2.6
OSIAM Administration 1.6
Changelog
Features
- Allow setting of
external_id
for users - Add button to copy user id into external id field
Changes
- Bump Jackson version
- Bump connector to make use of more concurrent HTTP connections
- UI: Apply Bootstrap defaults
Fixes
- Rename Style.css to currently used name in template
- Add templates for (de-)activation of users
sw =
is not a filter operator- UI: Make dropdowns work again in IE8+
- UI: Make back/cancel buttons work again in IE8+
- UI: Fix visual glitches icons
- UI: Align checkboxes on group membership view
- UI: Fix ambiguous form submission in IE8 in group membership
OSIAM Administration 1.5
Changelog
1.5 - 2015-06-02
Changes
-
Remove field
expiry
from OAuth client in SQL scriptsThe field
expiry
has been removed from the auth-server (osiam/auth-server#9)
and must be removed from the SQL scripts too. -
Adjust some attributes of the 'admin' group
- Set
external_id
to NULL - Set
created
andlastmodified
timestamps toLOCALTIMESTAMP
- Set
-
Adjust some attributes of the OAuth client
- Enable implicit approval
- Remove unnecessary grants: resource owner credentials grant, client
credentials grant, refresh token grant - Increase access token validity to 8 hours
- Decrease refresh token validity to 0 seconds
- Decrease approval validity to 0 seconds
-
Rename SQL scripts for installing client and group
Use
client.sql
to create the OAuth client in theauth-server
's database
andadmin_group.sql
to create the SCIM groupadmin
in th
resource-server
's database and also associate it with the user with id 1.
The old file is still in place for compatibility reasons, but will receive
no further updates and be eventually removed in a future version. All users
are encouraged to update to the new files.
Fixes
-
Client database id may lead to problems with other clients
Changed from
1
to10