Skip to content

Commit d7084af

Browse files
author
elasticsearchmachine
committed
Bump versions after 7.17.25 release
1 parent 59344a3 commit d7084af

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
@@ -29,7 +29,6 @@ steps:
2929
- trigger: elasticsearch-dra-workflow
3030
label: Trigger DRA snapshot workflow
3131
async: true
32-
branches: "main 8.* 7.17"
3332
build:
3433
branch: "$BUILDKITE_BRANCH"
3534
commit: "$BUILDKITE_COMMIT"

.buildkite/pipelines/periodic-packaging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -447,8 +447,8 @@ steps:
447447
env:
448448
BWC_VERSION: 7.16.3
449449

450-
- label: "{{matrix.image}} / 7.17.24 / packaging-tests-upgrade"
451-
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.24
450+
- label: "{{matrix.image}} / 7.17.25 / packaging-tests-upgrade"
451+
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.25
452452
timeout_in_minutes: 300
453453
matrix:
454454
setup:
@@ -461,7 +461,7 @@ steps:
461461
machineType: custom-16-32768
462462
buildDirectory: /dev/shm/bk
463463
env:
464-
BWC_VERSION: 7.17.24
464+
BWC_VERSION: 7.17.25
465465

466466
- group: packaging-tests-windows
467467
steps:

.buildkite/pipelines/periodic.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -496,8 +496,8 @@ steps:
496496
- signal_reason: agent_stop
497497
limit: 3
498498

499-
- label: 7.17.24 / bwc
500-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.24#bwcTest
499+
- label: 7.17.25 / bwc
500+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.25#bwcTest
501501
timeout_in_minutes: 300
502502
agents:
503503
provider: gcp
@@ -506,7 +506,7 @@ steps:
506506
buildDirectory: /dev/shm/bk
507507
preemptible: true
508508
env:
509-
BWC_VERSION: 7.17.24
509+
BWC_VERSION: 7.17.25
510510
retry:
511511
automatic:
512512
- 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.24"
28+
- "7.17.25"

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.25
1+
elasticsearch = 7.17.26
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
@@ -184,7 +184,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
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);
186186
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;
187+
public static final Version V_7_17_26 = new Version(7_17_26_99, org.apache.lucene.util.Version.LUCENE_8_11_3);
188+
public static final Version CURRENT = V_7_17_26;
188189

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

0 commit comments

Comments
 (0)