Skip to content

Commit 23bb761

Browse files
committed
Bump versions after 7.17.17 release
1 parent b41b0e8 commit 23bb761

File tree

5 files changed

+31
-2
lines changed

5 files changed

+31
-2
lines changed

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1952,6 +1952,22 @@ steps:
19521952
env:
19531953
BWC_VERSION: 7.17.16
19541954

1955+
- label: "{{matrix.image}} / 7.17.17 / packaging-tests-upgrade"
1956+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.17
1957+
timeout_in_minutes: 300
1958+
matrix:
1959+
setup:
1960+
image:
1961+
- rocky-8
1962+
- ubuntu-2004
1963+
agents:
1964+
provider: gcp
1965+
image: family/elasticsearch-{{matrix.image}}
1966+
machineType: custom-16-32768
1967+
buildDirectory: /dev/shm/bk
1968+
env:
1969+
BWC_VERSION: 7.17.17
1970+
19551971
- group: packaging-tests-windows
19561972
steps:
19571973
- label: "{{matrix.image}} / packaging-tests-windows"

.buildkite/pipelines/periodic.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,6 +1202,16 @@ steps:
12021202
buildDirectory: /dev/shm/bk
12031203
env:
12041204
BWC_VERSION: 7.17.16
1205+
- label: 7.17.17 / bwc
1206+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.17#bwcTest
1207+
timeout_in_minutes: 300
1208+
agents:
1209+
provider: gcp
1210+
image: family/elasticsearch-ubuntu-2004
1211+
machineType: n1-standard-32
1212+
buildDirectory: /dev/shm/bk
1213+
env:
1214+
BWC_VERSION: 7.17.17
12051215
- label: encryption-at-rest
12061216
command: .buildkite/scripts/encryption-at-rest.sh
12071217
timeout_in_minutes: 420

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,4 @@ BWC_VERSION:
119119
- "7.17.14"
120120
- "7.17.15"
121121
- "7.17.16"
122+
- "7.17.17"

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.17
1+
elasticsearch = 7.17.18
22
lucene = 8.11.1
33

44
bundled_jdk_vendor = openjdk

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ public class Version implements Comparable<Version>, ToXContentFragment {
176176
public static final Version V_7_17_15 = new Version(7_17_15_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
177177
public static final Version V_7_17_16 = new Version(7_17_16_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
178178
public static final Version V_7_17_17 = new Version(7_17_17_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
179-
public static final Version CURRENT = V_7_17_17;
179+
public static final Version V_7_17_18 = new Version(7_17_18_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
180+
181+
public static final Version CURRENT = V_7_17_18;
180182

181183
private static final ImmutableOpenIntMap<Version> idToVersion;
182184
private static final ImmutableOpenMap<String, Version> stringToVersion;

0 commit comments

Comments
 (0)