You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by md...@apache.org on 2021/04/12 19:48:54 UTC

[lucene] branch main updated: Add bugfix version 8.8.2

This is an automated email from the ASF dual-hosted git repository.

mdrob pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/main by this push:
     new 68ccfb7  Add bugfix version 8.8.2
68ccfb7 is described below

commit 68ccfb7d1e8bc70f77ece0c19e4c9209e29debb9
Author: Mike Drob <md...@apple.com>
AuthorDate: Mon Apr 12 14:42:51 2021 -0500

    Add bugfix version 8.8.2
---
 lucene/CHANGES.txt                                       | 14 +++++++-------
 lucene/core/src/java/org/apache/lucene/util/Version.java |  7 +++++++
 2 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index 6b55219..ea2a9e0 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -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
diff --git a/lucene/core/src/java/org/apache/lucene/util/Version.java b/lucene/core/src/java/org/apache/lucene/util/Version.java
index 85fa80d..1ddf34a 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -155,6 +155,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.
    *
    * <p>Use this to get the latest &amp; greatest settings, bug fixes, etc, for Lucene.