Skip to content

Commit 9603be3

Browse files
author
elasticsearchmachine
committed
Bump versions after 7.17.24 release
1 parent 1edfd35 commit 9603be3

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,8 +475,8 @@ steps:
475475
env:
476476
BWC_VERSION: 7.16.3
477477

478-
- label: "{{matrix.image}} / 7.17.23 / packaging-tests-upgrade"
479-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.23
478+
- label: "{{matrix.image}} / 7.17.24 / packaging-tests-upgrade"
479+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.24
480480
timeout_in_minutes: 300
481481
matrix:
482482
setup:
@@ -490,7 +490,7 @@ steps:
490490
buildDirectory: /dev/shm/bk
491491
diskSizeGb: 250
492492
env:
493-
BWC_VERSION: 7.17.23
493+
BWC_VERSION: 7.17.24
494494

495495
- group: packaging-tests-windows
496496
steps:

.buildkite/pipelines/periodic.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -522,8 +522,8 @@ steps:
522522
- signal_reason: agent_stop
523523
limit: 3
524524

525-
- label: 7.17.23 / bwc
526-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.23#bwcTest
525+
- label: 7.17.24 / bwc
526+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.24#bwcTest
527527
timeout_in_minutes: 300
528528
agents:
529529
provider: gcp
@@ -533,7 +533,7 @@ steps:
533533
preemptible: true
534534
diskSizeGb: 250
535535
env:
536-
BWC_VERSION: 7.17.23
536+
BWC_VERSION: 7.17.24
537537
retry:
538538
automatic:
539539
- exit_status: "-1"

.ci/bwcVersions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ BWC_VERSION:
2525
- "7.14.2"
2626
- "7.15.2"
2727
- "7.16.3"
28-
- "7.17.23"
28+
- "7.17.24"

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.24
1+
elasticsearch = 7.17.25
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
@@ -183,7 +183,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
183183
public static final Version V_7_17_22 = new Version(7_17_22_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
184184
public static final Version V_7_17_23 = new Version(7_17_23_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
185185
public static final Version V_7_17_24 = new Version(7_17_24_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
186-
public static final Version CURRENT = V_7_17_24;
186+
public static final Version V_7_17_25 = new Version(7_17_25_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
187+
public static final Version CURRENT = V_7_17_25;
187188

188189
private static final ImmutableOpenIntMap<Version> idToVersion;
189190
private static final ImmutableOpenMap<String, Version> stringToVersion;

0 commit comments

Comments
 (0)