Skip to content

Commit

Permalink
Bump versions after 7.17.14 release
Browse files Browse the repository at this point in the history
  • Loading branch information
inqueue committed Oct 10, 2023
1 parent 5ba96f2 commit 51b4f59
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .buildkite/pipelines/intake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ steps:
timeout_in_minutes: 300
matrix:
setup:
BWC_VERSION: ["7.17.14", "8.10.3"]
BWC_VERSION: ["7.17.15", "8.10.3"]
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
Expand Down
16 changes: 16 additions & 0 deletions .buildkite/pipelines/periodic-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,22 @@ steps:
env:
BWC_VERSION: 7.17.14

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

- label: "{{matrix.image}} / 8.0.0 / packaging-tests-upgrade"
command: ./.ci/scripts/packaging-test.sh -Dbwc.checkout.align=true destructiveDistroUpgradeTest.v8.0.0
timeout_in_minutes: 300
Expand Down
11 changes: 11 additions & 0 deletions .buildkite/pipelines/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,16 @@ steps:
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 7.17.14
- label: 7.17.15 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v7.17.15#bwcTest
timeout_in_minutes: 300
agents:
provider: gcp
image: family/elasticsearch-ubuntu-2004
machineType: custom-32-98304
buildDirectory: /dev/shm/bk
env:
BWC_VERSION: 7.17.15
- label: 8.0.0 / bwc
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true v8.0.0#bwcTest
timeout_in_minutes: 300
Expand Down Expand Up @@ -1166,6 +1176,7 @@ steps:
provider: gcp
image: family/elasticsearch-ubuntu-2004
machineType: n2-standard-8
buildDirectory: /dev/shm/bk
- label: third-party / s3
command: |
export amazon_s3_bucket=elasticsearch-ci.us-west-2
Expand Down
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ BWC_VERSION:
- "7.17.12"
- "7.17.13"
- "7.17.14"
- "7.17.15"
- "8.0.0"
- "8.0.1"
- "8.1.0"
Expand Down
2 changes: 1 addition & 1 deletion .ci/snapshotBwcVersions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
BWC_VERSION:
- "7.17.14"
- "7.17.15"
- "8.10.3"
1 change: 1 addition & 0 deletions server/src/main/java/org/elasticsearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ public class Version implements VersionId<Version>, ToXContentFragment {
public static final Version V_7_17_12 = new Version(7_17_12_99, IndexVersion.V_7_17_12);
public static final Version V_7_17_13 = new Version(7_17_13_99, IndexVersion.V_7_17_13);
public static final Version V_7_17_14 = new Version(7_17_14_99, IndexVersion.V_7_17_14);
public static final Version V_7_17_15 = new Version(7_17_15_99, IndexVersion.V_7_17_15);
public static final Version V_8_0_0 = new Version(8_00_00_99, IndexVersion.V_8_0_0);
public static final Version V_8_0_1 = new Version(8_00_01_99, IndexVersion.V_8_0_1);
public static final Version V_8_1_0 = new Version(8_01_00_99, IndexVersion.V_8_1_0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ private static IndexVersion registerIndexVersion(int id, Version luceneVersion,
public static final IndexVersion V_7_17_12 = registerIndexVersion(7_17_12_99, Version.LUCENE_8_11_1, "1a0719f2-96f4-4df5-b20d-62244e27d7d4");
public static final IndexVersion V_7_17_13 = registerIndexVersion(7_17_13_99, Version.LUCENE_8_11_1, "171a73c6-3ece-4f10-804f-7104a97b557c");
public static final IndexVersion V_7_17_14 = registerIndexVersion(7_17_14_99, Version.LUCENE_8_11_1, "3012f344-15f5-4971-a5ff-56a792d9b263");
public static final IndexVersion V_7_17_15 = registerIndexVersion(7_17_15_99, Version.LUCENE_8_11_1, "ec433c7a-2b35-4321-bf4a-d1766ee32b2f");
public static final IndexVersion V_8_0_0 = registerIndexVersion(8_00_00_99, Version.LUCENE_9_0_0, "ff18a13c-1fa7-4cf7-a3b1-4fdcd9461d5b");
public static final IndexVersion V_8_0_1 = registerIndexVersion(8_00_01_99, Version.LUCENE_9_0_0, "4bd5650f-3eff-418f-a7a6-ad46b2a9c941");
public static final IndexVersion V_8_1_0 = registerIndexVersion(8_01_00_99, Version.LUCENE_9_0_0, "b4742461-ee43-4fd0-a260-29f8388b82ec");
Expand Down

0 comments on commit 51b4f59

Please sign in to comment.