Skip to content

Commit ab362f4

Browse files
committed
Add bugfix version 10.3.2
1 parent 0c8802f commit ab362f4

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

lucene/CHANGES.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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

259266
Bug Fixes

lucene/core/src/java/org/apache/lucene/util/Version.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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
*

0 commit comments

Comments
 (0)