Skip to content

Commit d2c120d

Browse files
author
elasticsearchmachine
committed
Bump versions after 7.17.23 release
1 parent dce6e00 commit d2c120d

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.buildkite/pipelines/intake.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ steps:
2727
image: family/elasticsearch-ubuntu-2004
2828
machineType: n1-standard-32
2929
buildDirectory: /dev/shm/bk
30-
diskSizeGb: 250
3130
- wait
3231
- trigger: elasticsearch-dra-workflow
3332
label: Trigger DRA snapshot workflow

.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.22 / packaging-tests-upgrade"
479-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.22
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
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.22
493+
BWC_VERSION: 7.17.23
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.22 / bwc
526-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.22#bwcTest
525+
- label: 7.17.23 / bwc
526+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.23#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.22
536+
BWC_VERSION: 7.17.23
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.22"
28+
- "7.17.23"

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.23
1+
elasticsearch = 7.17.24
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
@@ -182,7 +182,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
182182
public static final Version V_7_17_21 = new Version(7_17_21_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
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);
185-
public static final Version CURRENT = V_7_17_23;
185+
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;
186187

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

0 commit comments

Comments
 (0)