Skip to content

Commit

Permalink
Bump versions after 7.17.18 release
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticsearchmachine committed Feb 6, 2024
1 parent 491d805 commit 23f055a
Show file tree
Hide file tree
Showing 5 changed files with 30 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 @@ -1968,6 +1968,22 @@ steps:
env:
BWC_VERSION: 7.17.17

- label: "{{matrix.image}} / 7.17.18 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v7.17.18
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.18

- 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 @@ -1212,6 +1212,16 @@ steps:
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 7.17.17
- label: 7.17.18 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.18#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.18
- 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 @@ -120,3 +120,4 @@ BWC_VERSION:
- "7.17.15"
- "7.17.16"
- "7.17.17"
- "7.17.18"
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.18
elasticsearch = 7.17.19
lucene = 8.11.1

bundled_jdk_vendor = openjdk
Expand Down
3 changes: 2 additions & 1 deletion server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
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 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;
public static final Version V_7_17_19 = new Version(7_17_19_99, org.apache.lucene.util.Version.LUCENE_8_11_1);
public static final Version CURRENT = V_7_17_19;

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

0 comments on commit 23f055a

Please sign in to comment.