Skip to content
This repository has been archived by the owner on Jul 3, 2020. It is now read-only.

Releases: osiam/addon-administration

OSIAM Administration 1.9

OSIAM Administration 1.9.CR3

27 Jun 18:00
Compare
Choose a tag to compare

OSIAM Administration 1.9.CR2

15 Jun 21:13
Compare
Choose a tag to compare

OSIAM Administration 1.8

27 Dec 18:37
Compare
Choose a tag to compare

Changelog

NOTICE: This version should be compatible with all versions of OSIAM >= 2.2.

Features

Changes

  • Make SQL scripts more independent of database schema

    Use INSERTs 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 becomes scim_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 OSIAM

    Abandon the usage of the deprecated method-based scopes.
    SQL files have been changed to install the necessary client with scope ADMIN.
    Add the scope ADMIN to the addon-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 to 20.

  • 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

09 Oct 23:02
Compare
Choose a tag to compare

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

18 Jun 15:41
Compare
Choose a tag to compare

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

03 Jun 14:40
Compare
Choose a tag to compare

Changelog

1.5 - 2015-06-02

Changes

  • Remove field expiry from OAuth client in SQL scripts

    The 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 and lastmodified timestamps to LOCALTIMESTAMP
  • 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 the auth-server's database
    and admin_group.sql to create the SCIM group admin 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 to 10