Skip to content

Commit 1a67f09

Browse files
committed
Bump versions after 7.17.15 release
1 parent e712b31 commit 1a67f09

File tree

5 files changed

+30
-2
lines changed

5 files changed

+30
-2
lines changed

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1936,6 +1936,22 @@ steps:
19361936
env:
19371937
BWC_VERSION: 7.17.14
19381938

1939+
- label: "{{matrix.image}} / 7.17.15 / packaging-tests-upgrade"
1940+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.15
1941+
timeout_in_minutes: 300
1942+
matrix:
1943+
setup:
1944+
image:
1945+
- rocky-8
1946+
- ubuntu-2004
1947+
agents:
1948+
provider: gcp
1949+
image: family/elasticsearch-{{matrix.image}}
1950+
machineType: custom-16-32768
1951+
buildDirectory: /dev/shm/bk
1952+
env:
1953+
BWC_VERSION: 7.17.15
1954+
19391955
- group: packaging-tests-windows
19401956
steps:
19411957
- label: "{{matrix.image}} / packaging-tests-windows"

.buildkite/pipelines/periodic.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1192,6 +1192,16 @@ steps:
11921192
buildDirectory: /dev/shm/bk
11931193
env:
11941194
BWC_VERSION: 7.17.14
1195+
- label: 7.17.15 / bwc
1196+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.15#bwcTest
1197+
timeout_in_minutes: 300
1198+
agents:
1199+
provider: gcp
1200+
image: family/elasticsearch-ubuntu-2004
1201+
machineType: custom-32-98304
1202+
buildDirectory: /dev/shm/bk
1203+
env:
1204+
BWC_VERSION: 7.17.15
11951205
- label: encryption-at-rest
11961206
command: .buildkite/scripts/encryption-at-rest.sh
11971207
timeout_in_minutes: 420

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,3 +118,4 @@ BWC_VERSION:
118118
- "7.17.12"
119119
- "7.17.13"
120120
- "7.17.14"
121+
- "7.17.15"

build-tools-internal/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
elasticsearch = 7.17.15
1+
elasticsearch = 7.17.16
22
lucene = 8.11.1
33

44
bundled_jdk_vendor = openjdk

server/src/main/java/org/elasticsearch/Version.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
175175
public static final Version V_7_17_13 = new Version(7_17_13_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
176176
public static final Version V_7_17_14 = new Version(7_17_14_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
177177
public static final Version V_7_17_15 = new Version(7_17_15_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
178-
public static final Version CURRENT = V_7_17_15;
178+
public static final Version V_7_17_16 = new Version(7_17_16_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
179+
public static final Version CURRENT = V_7_17_16;
179180

180181
private static final ImmutableOpenIntMap<Version> idToVersion;
181182
private static final ImmutableOpenMap<String, Version> stringToVersion;

0 commit comments

Comments
 (0)