Skip to content

Commit af2c523

Browse files
author
elasticsearchmachine
committed
Bump versions after 7.17.19 release
1 parent 3a15457 commit af2c523

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
@@ -1984,6 +1984,22 @@ steps:
19841984
env:
19851985
BWC_VERSION: 7.17.18
19861986

1987+
- label: "{{matrix.image}} / 7.17.19 / packaging-tests-upgrade"
1988+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.19
1989+
timeout_in_minutes: 300
1990+
matrix:
1991+
setup:
1992+
image:
1993+
- rocky-8
1994+
- ubuntu-2004
1995+
agents:
1996+
provider: gcp
1997+
image: family/elasticsearch-{{matrix.image}}
1998+
machineType: custom-16-32768
1999+
buildDirectory: /dev/shm/bk
2000+
env:
2001+
BWC_VERSION: 7.17.19
2002+
19872003
- group: packaging-tests-windows
19882004
steps:
19892005
- label: "{{matrix.image}} / packaging-tests-windows"

.buildkite/pipelines/periodic.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,6 +1222,16 @@ steps:
12221222
buildDirectory: /dev/shm/bk
12231223
env:
12241224
BWC_VERSION: 7.17.18
1225+
- label: 7.17.19 / bwc
1226+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.19#bwcTest
1227+
timeout_in_minutes: 300
1228+
agents:
1229+
provider: gcp
1230+
image: family/elasticsearch-ubuntu-2004
1231+
machineType: n1-standard-32
1232+
buildDirectory: /dev/shm/bk
1233+
env:
1234+
BWC_VERSION: 7.17.19
12251235
- label: encryption-at-rest
12261236
command: .buildkite/scripts/encryption-at-rest.sh
12271237
timeout_in_minutes: 420

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,4 @@ BWC_VERSION:
121121
- "7.17.16"
122122
- "7.17.17"
123123
- "7.17.18"
124+
- "7.17.19"

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.19
1+
elasticsearch = 7.17.20
22
lucene = 8.11.3
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
@@ -178,7 +178,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
178178
public static final Version V_7_17_17 = new Version(7_17_17_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
179179
public static final Version V_7_17_18 = new Version(7_17_18_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
180180
public static final Version V_7_17_19 = new Version(7_17_19_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
181-
public static final Version CURRENT = V_7_17_19;
181+
public static final Version V_7_17_20 = new Version(7_17_20_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
182+
public static final Version CURRENT = V_7_17_20;
182183

183184
private static final ImmutableOpenIntMap<Version> idToVersion;
184185
private static final ImmutableOpenMap<String, Version> stringToVersion;

0 commit comments

Comments
 (0)