File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
core/src/java/org/apache/lucene/util Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,13 @@ Build
254254---------------------
255255* Upgrade forbiddenapis to version 3.10. (Uwe Schindler)
256256
257+ ======================= Lucene 10.3.2 =======================
258+
259+ Bug Fixes
260+ ---------------------
261+ * GITHUB#15380: Fix potential EOF introduced by optimized filter iterations in MaxScoreBulkScorer. The
262+ approximation and the match verification could get out of sync, resulting in an EOFException. (Ben Trent)
263+
257264======================= Lucene 10.3.1 =======================
258265
259266Bug Fixes
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ public final class Version {
6767 * Match settings and bugs in Lucene's 10.3.0 release.
6868 *
6969 * @deprecated Use latest
70- * @deprecated (10.3.1) Use latest
7170 */
7271 @ Deprecated public static final Version LUCENE_10_3_0 = new Version (10 , 3 , 0 );
7372
@@ -78,6 +77,13 @@ public final class Version {
7877 */
7978 @ Deprecated public static final Version LUCENE_10_3_1 = new Version (10 , 3 , 1 );
8079
80+ /**
81+ * Match settings and bugs in Lucene's 10.3.2 release.
82+ *
83+ * @deprecated Use latest
84+ */
85+ @ Deprecated public static final Version LUCENE_10_3_2 = new Version (10 , 3 , 2 );
86+
8187 /**
8288 * Match settings and bugs in Lucene's 10.4.0 release.
8389 *
You can’t perform that action at this time.
0 commit comments