Skip to content

Commit

Permalink
Bump versions after 7.17.17 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brianseeders committed Jan 23, 2024
1 parent b41b0e8 commit 23bb761
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .buildkite/pipelines/periodic-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1952,6 +1952,22 @@ steps:
env:
BWC_VERSION: 7.17.16

- label: "{{matrix.image}} / 7.17.17 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.17
timeout_in_minutes: 300
matrix:
setup:
image:
- rocky-8
- ubuntu-2004
agents:
provider: gcp
image: family/elasticsearch-{{matrix.image}}
machineType: custom-16-32768
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 7.17.17

- group: packaging-tests-windows
steps:
- label: "{{matrix.image}} / packaging-tests-windows"
Expand Down
10 changes: 10 additions & 0 deletions .buildkite/pipelines/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1202,6 +1202,16 @@ steps:
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 7.17.16
- label: 7.17.17 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.17#bwcTest
timeout_in_minutes: 300
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
machineType: n1-standard-32
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 7.17.17
- label: encryption-at-rest
command: .buildkite/scripts/encryption-at-rest.sh
timeout_in_minutes: 420
Expand Down
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,4 @@ BWC_VERSION:
- "7.17.14"
- "7.17.15"
- "7.17.16"
- "7.17.17"
2 changes: 1 addition & 1 deletion build-tools-internal/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
elasticsearch = 7.17.17
elasticsearch = 7.17.18
lucene = 8.11.1

bundled_jdk_vendor = openjdk
Expand Down
4 changes: 3 additions & 1 deletion server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_7_17_15 = new Version(7_17_15_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
public static final Version V_7_17_16 = new Version(7_17_16_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
public static final Version V_7_17_17 = new Version(7_17_17_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
public static final Version CURRENT = V_7_17_17;
public static final Version V_7_17_18 = new Version(7_17_18_99, org.apache.lucene.util.Version.LUCENE_8_11_1);

public static final Version CURRENT = V_7_17_18;

private static final ImmutableOpenIntMap<Version> idToVersion;
private static final ImmutableOpenMap<String, Version> stringToVersion;
Expand Down

0 comments on commit 23bb761

Please sign in to comment.