Skip to content

Commit

Permalink
Bump versions after 8.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed May 25, 2023
1 parent b17213c commit bc8c4fa
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .backportrc.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"upstream" : "elastic/elasticsearch",
"targetBranchChoices" : [ "main", "8.7", "8.6", "8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.17", "6.8" ],
"targetBranchChoices" : [ "main", "8.8", "8.7", "8.6", "8.5", "8.4", "8.3", "8.2", "8.1", "8.0", "7.17", "6.8" ],
"targetPRLabels" : [ "backport" ],
"branchLabelMapping" : {
"^v8.8.0$" : "main",
"^v8.8.1$" : "main",
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
}
}
2 changes: 1 addition & 1 deletion .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,5 @@ BWC_VERSION:
- "8.6.2"
- "8.7.0"
- "8.7.1"
- "8.7.2"
- "8.8.0"
- "8.8.1"
3 changes: 1 addition & 2 deletions .ci/snapshotBwcVersions
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
BWC_VERSION:
- "7.17.11"
- "8.7.2"
- "8.8.0"
- "8.8.1"
2 changes: 1 addition & 1 deletion build-tools-internal/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch = 8.8.0
elasticsearch = 8.8.1
lucene = 9.6.0

bundled_jdk_vendor = openjdk
Expand Down
4 changes: 2 additions & 2 deletions server/src/main/java/org/elasticsearch/TransportVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ private static TransportVersion registerTransportVersion(int id, String uniqueId
public static final TransportVersion V_8_6_2 = registerTransportVersion(8_06_02_99, "5a82fb68-b265-4a06-97c5-53496f823f51");
public static final TransportVersion V_8_7_0 = registerTransportVersion(8_07_00_99, "f1ee7a85-4fa6-43f5-8679-33e2b750448b");
public static final TransportVersion V_8_7_1 = registerTransportVersion(8_07_01_99, "018de9d8-9e8b-4ac7-8f4b-3a6fbd0487fb");
public static final TransportVersion V_8_7_2 = registerTransportVersion(8_07_02_99, "bd84976c-fb8a-4a4c-b017-9563f8d888d9");
public static final TransportVersion V_8_8_0 = registerTransportVersion(8_08_00_99, "f64fe576-0767-4ec3-984e-3e30b33b6c46");
public static final TransportVersion V_8_8_1 = registerTransportVersion(8_08_01_99, "a177d86a-7a24-41a2-ade9-5235be957f3d");
/*
* READ THE JAVADOC ABOVE BEFORE ADDING NEW TRANSPORT VERSIONS
* Detached transport versions added below here. Starts at ES major version 10 equivalent.
Expand All @@ -177,7 +177,7 @@ private static TransportVersion registerTransportVersion(int id, String uniqueId
}

/** Reference to the current transport version */
public static final TransportVersion CURRENT = V_8_8_0;
public static final TransportVersion CURRENT = V_8_8_1;

/** Reference to the earliest compatible transport version to this version of the codebase */
// TODO: can we programmatically calculate or check this? Don't want to introduce circular ref between Version/TransportVersion
Expand Down
4 changes: 2 additions & 2 deletions server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_8_6_2 = new Version(8_06_02_99, TransportVersion.V_8_6_2, org.apache.lucene.util.Version.LUCENE_9_4_2);
public static final Version V_8_7_0 = new Version(8_07_00_99, TransportVersion.V_8_7_0, org.apache.lucene.util.Version.LUCENE_9_5_0);
public static final Version V_8_7_1 = new Version(8_07_01_99, TransportVersion.V_8_7_1, org.apache.lucene.util.Version.LUCENE_9_5_0);
public static final Version V_8_7_2 = new Version(8_07_02_99, TransportVersion.V_8_7_2, org.apache.lucene.util.Version.LUCENE_9_5_0);

public static final Version V_8_8_0 = new Version(8_08_00_99, TransportVersion.V_8_8_0, org.apache.lucene.util.Version.LUCENE_9_6_0);
public static final Version CURRENT = V_8_8_0;
public static final Version V_8_8_1 = new Version(8_08_01_99, TransportVersion.V_8_8_1, org.apache.lucene.util.Version.LUCENE_9_6_0);
public static final Version CURRENT = V_8_8_1;

private static final NavigableMap<Integer, Version> VERSION_IDS;
private static final Map<String, Version> VERSION_STRINGS;
Expand Down

0 comments on commit bc8c4fa

Please sign in to comment.