Add bugfix version 8.8.2

This commit is contained in:
Mike Drob 2021-04-12 14:42:51 -05:00
parent a2a68360ff
commit 68ccfb7d1e
2 changed files with 14 additions and 7 deletions

View File

@ -336,13 +336,6 @@ Optimizations
Bug Fixes
---------------------
* LUCENE-9744: NPE on a degenerate query in MinimumShouldMatchIntervalsSource
$MinimumMatchesIterator.getSubMatches(). (Alan Woodward)
* LUCENE-9762: DoubleValuesSource.fromQuery (also used by FunctionScoreQuery.boostByQuery) could
throw an exception when the query implements TwoPhaseIterator and when the score is requested
repeatedly. (David Smiley, hossman)
* LUCENE-9791: BytesRefHash.equals/find is now thread safe, fixing a
Luwak/Monitor bug causing registered queries to sometimes fail to
match. (Paweł Bugalski)
@ -370,6 +363,13 @@ Bug Fixes
* LUCENE-9870: Fix Circle2D intersectsLine t-value (distance) range clamp (Jørgen Nystad)
* LUCENE-9744: NPE on a degenerate query in MinimumShouldMatchIntervalsSource
$MinimumMatchesIterator.getSubMatches(). (Alan Woodward)
* LUCENE-9762: DoubleValuesSource.fromQuery (also used by FunctionScoreQuery.boostByQuery) could
throw an exception when the query implements TwoPhaseIterator and when the score is requested
repeatedly. (David Smiley, hossman)
======================= Lucene 8.8.1 =======================
Bug Fixes

View File

@ -154,6 +154,13 @@ public final class Version {
*/
@Deprecated public static final Version LUCENE_8_8_1 = new Version(8, 8, 1);
/**
* Match settings and bugs in Lucene's 8.8.2 release.
*
* @deprecated Use latest
*/
@Deprecated public static final Version LUCENE_8_8_2 = new Version(8, 8, 2);
/**
* Match settings and bugs in Lucene's 9.0.0 release.
*