Skip to content

Commit be4bd68

Browse files
authored
Adjust Lucene version and enable BWC tests (#77933)
This commit adjust Lucene version in 7x after it was upgraded to Lucene 8.10. Relates #77801 Relates #77898
1 parent f77860d commit be4bd68

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ tasks.register("verifyVersions") {
140140
* after the backport of the backcompat code is complete.
141141
*/
142142

143-
boolean bwc_tests_enabled = false
143+
boolean bwc_tests_enabled = true
144144
// place a PR link here when committing bwc changes:
145-
String bwc_tests_disabled_issue = "https://github.com/elastic/elasticsearch/pull/77898"
145+
String bwc_tests_disabled_issue = ""
146146
/*
147147
* FIPS 140-2 behavior was fixed in 7.11.0. Before that there is no way to run elasticsearch in a
148148
* JVM that is properly configured to be in fips mode with BCFIPS. For now we need to disable

server/src/main/java/org/elasticsearch/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public class Version implements Comparable<Version>, ToXContentFragment {
8989
public static final Version V_7_14_1 = new Version(7140199, org.apache.lucene.util.Version.LUCENE_8_9_0);
9090
public static final Version V_7_14_2 = new Version(7140299, org.apache.lucene.util.Version.LUCENE_8_9_0);
9191
public static final Version V_7_15_0 = new Version(7150099, org.apache.lucene.util.Version.LUCENE_8_9_0);
92-
public static final Version V_7_16_0 = new Version(7160099, org.apache.lucene.util.Version.LUCENE_8_9_0);
92+
public static final Version V_7_16_0 = new Version(7160099, org.apache.lucene.util.Version.LUCENE_8_10_0);
9393
public static final Version V_8_0_0 = new Version(8000099, org.apache.lucene.util.Version.LUCENE_8_10_0);
9494
public static final Version CURRENT = V_8_0_0;
9595

0 commit comments

Comments
 (0)