mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
29.54.2008 f66d2937e4c5aff5e9c0fa8b2042dbffc4ecf080
Fix for issue 2880 (Suffix data "disappearance" after upgrade)

Marking revision 3708 as a flag day.
2 files modified
18 ■■■■■ changed files
opendj-sdk/opends/src/messages/messages/version.properties 5 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/util/VersionCompatibilityIssue.java 13 ●●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/messages/messages/version.properties
@@ -88,4 +88,7 @@
 not backwards compatible.  Upgrade is not possible
INFO_3294_REVERSION_10=The revision 3294 introduces a new security framework.  \
 Revert is not possible
INFO_3708_UPGRADE_11=This upgrade introduces a change in the backend \
 configuration that is not backwards compatible.  Upgrade is not possible
INFO_3708_REVERSION_12=The revision 3294 introduces a change in the backend \
 configuration.  Revert is not possible
opendj-sdk/opends/src/server/org/opends/server/util/VersionCompatibilityIssue.java
@@ -218,6 +218,17 @@
   */
  public enum Cause {
    /**
     * Incompatible changes in the backend configuration (the db directory
     * attribute has been modified).
     */
    BACKEND_CONFIGURATION_CHANGE_1(
        6, // Unique ID.  See javadoc for more information.
        INFO_3708_UPGRADE.get(),
        INFO_3708_REVERSION.get(),
        Effect.REVERSION_NOT_POSSIBLE,
        Effect.UPGRADE_NOT_POSSIBLE),
    /**
     * Incompatible changes in the cryptomanager and specially in the way
     * replication works.  These changes were committed on several revisions
     * and the flagday that has been chosen corresponds to revision 3294
@@ -438,6 +449,8 @@
  static {
    //
    register(Cause.BACKEND_CONFIGURATION_CHANGE_1,
        new BuildVersion(1, 0, 0, 3708));
    register(Cause.REPLICATION_SECURITY_CHANGE_1,
        new BuildVersion(1, 0, 0, 3294));
    register(Cause.PROPERTY_CHANGE_1, new BuildVersion(1, 0, 0, 3053));