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

Releases: osiam/addon-self-administration

OSIAM Self Administration 1.9

OSIAM Self Administration 1.9.CR2

15 Jun 20:45
Compare
Choose a tag to compare

OSIAM Self Administration 1.8

27 Dec 18:34
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.

  • Use the new scope ADMIN for connections to OSIAM

    Abandon the usage of the deprecated method-based scoped.
    SQL files have been changed to install the necessary client with scope ADMIN.
    Add the scope ADMIN to the addon-self-administration-client:

    INSERT INTO osiam_client_scopes (id, scope) VALUES (<id of addon-self-administration-client>, 'ADMIN');
    

    By default <id of addon-self-administration-client> is set to 10.

Updates

  • OSIAM connector4java 1.8
  • Plugin API 1.5
  • Spring Boot 1.2.7

OSIAM Self 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.

Features

  • Rollback User Creation on MailException

Updates

  • OSIAM connector4java 1.7
  • Spring Boot 1.2.6
  • Joda Time 2.8.2

OSIAM Self Administration 1.6

18 Jun 15:29
Compare
Choose a tag to compare

Changelog

Changes

  • Bump connector to make use of more concurrent HTTP connections
  • Bump plugin API to 1.4
  • Bump Jackson version

OSIAM Self Administration 1.5

03 Jun 14:24
Compare
Choose a tag to compare

Changelog

1.5 - 2015-06-02

Changes

  • Add sensible default values for most configuration properties

    See docs for details

  • Remove possibility to configure the requested scopes

    The configuration parameter wasn't used anyway

  • Remove possibility to configure the extension's attributes

  • 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.

  • Change some attributes of OAuth client

    • Remove unnecessary grants: authorisation code grant, refresh token grant,
      resource owner credentials grant
    • Decrease access token validity to 300 seconds
  • Rename SQL scripts for installing client and extension

    Use client.sql to create the OAuth client in the auth-server's database
    and extension.sql to create the SCIM extension in the resource-server's
    database. The old files are 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.

  • Bump dependencies

Fixes

  • If no address field is set, the user should have no address

Other

  • Introduce Spring Boot
  • Switch from xml to java configuration