|
|
|
|
9/22/2016 11:19:45 PM
retrieve Keycloak tokens
|
10/17/2016 3:09:30 PM
Resolve warnings while building the effective model
|
|
|
10/17/2016 2:55:45 PM
Add creation of DB changelog to SQL script
|
10/14/2016 3:31:27 AM
of database table DatabaseChangeLog was omitted from SQL
script which prevented creation of the database from scratch. The fix
adds DDL commands to create the table to the output SQL script in case
of empty database initialization.
Please note that DatabaseChangeLogLock is intentionally omitted. It is
created automatically before the update is even executed because a lock
is acquired (thus the table is properly created if it does not exist)
before check for up-to-dateness of database and potential migration in
KeycloakApplication constructor.
|
10/17/2016 2:54:59 PM
DB up-to-date check should not modify DB
|
10/14/2016 9:09:44 AM
DB up-to-date check uses Liquibase.listUnrunChangeSets() that in
its available variants unconditionally creates a DatabaseChangeLog
tables. Until the variant of listUnrunChangeSets() that suppresses this
behaviour is made public [1] (currently it is protected), workaround
has been implemented that invokes less invasive variant of
listUnrunChangeSets() via reflection.
[1] https://liquibase.jira.com/browse/CORE-2919
|
10/17/2016 2:51:34 PM
Add missing check for changes in RealmPasswordPolicyCtrl
|