This commit is contained in:
Uwe Schindler 2020-10-09 16:44:54 +02:00
commit 47a3f591a8
4 changed files with 23 additions and 8 deletions

View File

@ -162,18 +162,12 @@ def update_solrconfig(filename, matcher, new_version):
def check_lucene_version_tests():
print(' checking lucene version tests...', end='', flush=True)
base_dir = os.getcwd()
os.chdir('lucene/core')
run('ant test -Dtestcase=TestVersion')
os.chdir(base_dir)
run('./gradlew -p lucene/core test --tests TestVersion')
print('ok')
def check_solr_version_tests():
print(' checking solr version tests...', end='', flush=True)
base_dir = os.getcwd()
os.chdir('solr/core')
run('ant test -Dtestcase=TestLuceneMatchVersion')
os.chdir(base_dir)
run('./gradlew -p solr/core test --tests TestLuceneMatchVersion')
print('ok')
def read_config(current_version):

View File

@ -310,6 +310,12 @@ Build
* Upgrade forbiddenapis to version 3.1. (Uwe Schindler)
======================= Lucene 8.6.3 =======================
Bug Fixes
---------------------
(No changes)
======================= Lucene 8.6.2 =======================
Bug Fixes

View File

@ -130,6 +130,13 @@ public final class Version {
@Deprecated
public static final Version LUCENE_8_6_2 = new Version(8, 6, 2);
/**
* Match settings and bugs in Lucene's 8.6.3 release.
* @deprecated Use latest
*/
@Deprecated
public static final Version LUCENE_8_6_3 = new Version(8, 6, 3);
/**
* Match settings and bugs in Lucene's 9.0.0 release.
* <p>

View File

@ -307,6 +307,14 @@ Other Changes
* SOLR-14659: Remove restlet as dependency for the ManagedResource API (Timothy Potter, noble)
================== 8.6.3 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
Bug Fixes
---------------------
(No changes)
================== 8.6.2 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.