Bump version
This commit is contained in:
parent
cc2de52a1a
commit
939527bd98
6 changed files with 93 additions and 93 deletions
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
|
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd">
|
||||||
<changeSet author="bburke@redhat.com" id="1.3.0.Beta1">
|
<changeSet author="bburke@redhat.com" id="1.3.0">
|
||||||
<delete tableName="CLIENT_SESSION_ROLE"/>
|
<delete tableName="CLIENT_SESSION_ROLE"/>
|
||||||
<delete tableName="CLIENT_SESSION_PROT_MAPPER"/>
|
<delete tableName="CLIENT_SESSION_PROT_MAPPER"/>
|
||||||
<delete tableName="CLIENT_SESSION_NOTE"/>
|
<delete tableName="CLIENT_SESSION_NOTE"/>
|
|
@ -6,5 +6,5 @@
|
||||||
<include file="META-INF/jpa-changelog-1.2.0.Beta1.xml"/>
|
<include file="META-INF/jpa-changelog-1.2.0.Beta1.xml"/>
|
||||||
<include file="META-INF/jpa-changelog-1.2.0.CR1.xml"/>
|
<include file="META-INF/jpa-changelog-1.2.0.CR1.xml"/>
|
||||||
<include file="META-INF/jpa-changelog-1.2.0.Final.xml"/>
|
<include file="META-INF/jpa-changelog-1.2.0.Final.xml"/>
|
||||||
<include file="META-INF/jpa-changelog-1.3.0.Beta1.xml"/>
|
<include file="META-INF/jpa-changelog-1.3.0.xml"/>
|
||||||
</databaseChangeLog>
|
</databaseChangeLog>
|
||||||
|
|
|
@ -27,7 +27,7 @@ public class DefaultMongoUpdaterProvider implements MongoUpdaterProvider {
|
||||||
Update1_1_0_Beta1.class,
|
Update1_1_0_Beta1.class,
|
||||||
Update1_2_0_Beta1.class,
|
Update1_2_0_Beta1.class,
|
||||||
Update1_2_0_CR1.class,
|
Update1_2_0_CR1.class,
|
||||||
Update1_3_0_Beta1.class
|
Update1_3_0.class
|
||||||
};
|
};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -10,11 +10,11 @@ import org.keycloak.representations.idm.IdentityProviderRepresentation;
|
||||||
/**
|
/**
|
||||||
* @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
|
* @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a>
|
||||||
*/
|
*/
|
||||||
public class Update1_3_0_Beta1 extends Update {
|
public class Update1_3_0 extends Update {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getId() {
|
public String getId() {
|
||||||
return "1.3.0.Beta1";
|
return "1.3.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
|
@ -1,7 +1,7 @@
|
||||||
package org.keycloak.migration;
|
package org.keycloak.migration;
|
||||||
|
|
||||||
import org.jboss.logging.Logger;
|
import org.jboss.logging.Logger;
|
||||||
import org.keycloak.migration.migrators.MigrateTo1_3_0_Beta1;
|
import org.keycloak.migration.migrators.MigrateTo1_3_0;
|
||||||
import org.keycloak.migration.migrators.MigrationTo1_2_0_CR1;
|
import org.keycloak.migration.migrators.MigrationTo1_2_0_CR1;
|
||||||
import org.keycloak.models.KeycloakSession;
|
import org.keycloak.models.KeycloakSession;
|
||||||
|
|
||||||
|
@ -27,11 +27,11 @@ public class MigrationModelManager {
|
||||||
}
|
}
|
||||||
new MigrationTo1_2_0_CR1().migrate(session);
|
new MigrationTo1_2_0_CR1().migrate(session);
|
||||||
}
|
}
|
||||||
if (stored == null || stored.lessThan(MigrateTo1_3_0_Beta1.VERSION)) {
|
if (stored == null || stored.lessThan(MigrateTo1_3_0.VERSION)) {
|
||||||
if (stored != null) {
|
if (stored != null) {
|
||||||
logger.debug("Migrating older model to 1.3.0.Beta1 updates");
|
logger.debug("Migrating older model to 1.3.0 updates");
|
||||||
}
|
}
|
||||||
new MigrateTo1_3_0_Beta1().migrate(session);
|
new MigrateTo1_3_0().migrate(session);
|
||||||
}
|
}
|
||||||
|
|
||||||
model.setStoredVersion(MigrationModel.LATEST_VERSION);
|
model.setStoredVersion(MigrationModel.LATEST_VERSION);
|
||||||
|
|
|
@ -21,8 +21,8 @@ import javax.naming.directory.SearchControls;
|
||||||
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
|
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
|
||||||
* @version $Revision: 1 $
|
* @version $Revision: 1 $
|
||||||
*/
|
*/
|
||||||
public class MigrateTo1_3_0_Beta1 {
|
public class MigrateTo1_3_0 {
|
||||||
public static final ModelVersion VERSION = new ModelVersion("1.3.0.Beta1");
|
public static final ModelVersion VERSION = new ModelVersion("1.3.0");
|
||||||
|
|
||||||
|
|
||||||
public void migrate(KeycloakSession session) {
|
public void migrate(KeycloakSession session) {
|
Loading…
Reference in a new issue