Skip to content

Commit

Permalink
Bump versions after 8.13.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticsearchmachine committed May 10, 2024
1 parent c83d70d commit b01d7e1
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .backportrc.json
Expand Up @@ -3,7 +3,7 @@
"targetBranchChoices" : [ "main", "8.13", "8.12", "8.11", "8.10", "8.9", "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.13.4$" : "main",
"^v8.13.5$" : "main",
"^v(\\d+).(\\d+).\\d+(?:-(?:alpha|beta|rc)\\d+)?$" : "$1.$2"
}
}
2 changes: 1 addition & 1 deletion .buildkite/pipelines/intake.yml
Expand Up @@ -56,7 +56,7 @@ steps:
timeout_in_minutes: 300
matrix:
setup:
BWC_VERSION: ["7.17.22", "8.13.4"]
BWC_VERSION: ["7.17.22", "8.13.5"]
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
Expand Down
6 changes: 3 additions & 3 deletions .buildkite/pipelines/periodic-packaging.yml
Expand Up @@ -529,8 +529,8 @@ steps:
env:
BWC_VERSION: 8.12.2

- label: "{{matrix.image}} / 8.13.4 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.13.4
- label: "{{matrix.image}} / 8.13.5 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.13.5
timeout_in_minutes: 300
matrix:
setup:
Expand All @@ -543,7 +543,7 @@ steps:
machineType: custom-16-32768
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 8.13.4
BWC_VERSION: 8.13.5

- group: packaging-tests-windows
steps:
Expand Down
10 changes: 5 additions & 5 deletions .buildkite/pipelines/periodic.yml
Expand Up @@ -591,8 +591,8 @@ steps:
- signal_reason: agent_stop
limit: 3

- label: 8.13.4 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.13.4#bwcTest
- label: 8.13.5 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.13.5#bwcTest
timeout_in_minutes: 300
agents:
provider: gcp
Expand All @@ -601,7 +601,7 @@ steps:
buildDirectory: /dev/shm/bk
preemptible: true
env:
BWC_VERSION: 8.13.4
BWC_VERSION: 8.13.5
retry:
automatic:
- exit_status: "-1"
Expand Down Expand Up @@ -676,7 +676,7 @@ steps:
setup:
ES_RUNTIME_JAVA:
- openjdk17
BWC_VERSION: ["7.17.22", "8.13.4"]
BWC_VERSION: ["7.17.22", "8.13.5"]
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
Expand Down Expand Up @@ -722,7 +722,7 @@ steps:
- openjdk17
- openjdk21
- openjdk22
BWC_VERSION: ["7.17.22", "8.13.4"]
BWC_VERSION: ["7.17.22", "8.13.5"]
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
Expand Down
2 changes: 1 addition & 1 deletion .ci/bwcVersions
Expand Up @@ -30,4 +30,4 @@ BWC_VERSION:
- "8.10.4"
- "8.11.4"
- "8.12.2"
- "8.13.4"
- "8.13.5"
2 changes: 1 addition & 1 deletion .ci/snapshotBwcVersions
@@ -1,3 +1,3 @@
BWC_VERSION:
- "7.17.22"
- "8.13.4"
- "8.13.5"
2 changes: 1 addition & 1 deletion build-tools-internal/version.properties
@@ -1,4 +1,4 @@
elasticsearch = 8.13.4
elasticsearch = 8.13.5
lucene = 9.10.0

bundled_jdk_vendor = openjdk
Expand Down
3 changes: 2 additions & 1 deletion server/src/main/java/org/elasticsearch/Version.java
Expand Up @@ -174,7 +174,8 @@ public class Version implements VersionId<Version>, ToXContentFragment {
public static final Version V_8_13_2 = new Version(8_13_02_99);
public static final Version V_8_13_3 = new Version(8_13_03_99);
public static final Version V_8_13_4 = new Version(8_13_04_99);
public static final Version CURRENT = V_8_13_4;
public static final Version V_8_13_5 = new Version(8_13_05_99);
public static final Version CURRENT = V_8_13_5;

private static final NavigableMap<Integer, Version> VERSION_IDS;
private static final Map<String, Version> VERSION_STRINGS;
Expand Down
Expand Up @@ -119,3 +119,4 @@
8.13.1,8595000
8.13.2,8595000
8.13.3,8595000
8.13.4,8595001
Expand Up @@ -119,3 +119,4 @@
8.13.1,8503000
8.13.2,8503000
8.13.3,8503000
8.13.4,8503000

0 comments on commit b01d7e1

Please sign in to comment.