Skip to content

Commit 66038c3

Browse files
committed
HSEARCH-5478 Update to Lucene 10.3
1 parent 6aeb63c commit 66038c3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bom/platform-next/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<deploy.skip>false</deploy.skip>
2020

2121
<!-- These versions will be checked against the ones resolved by Maven for the project in the enforcer rule -->
22-
<version.bom.org.apache.lucene>10.2.2</version.bom.org.apache.lucene>
22+
<version.bom.org.apache.lucene>10.3.0</version.bom.org.apache.lucene>
2323
<version.bom.org.jboss.logging.processor>3.0.4.Final</version.bom.org.jboss.logging.processor>
2424
</properties>
2525

build/parents/build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<javadoc.org.apache.lucene.queryparser.url>https://lucene.apache.org/core/${javadoc.org.apache.lucene.tag}/queryparser/</javadoc.org.apache.lucene.queryparser.url>
4545

4646
<version.com.carrotsearch.hppc>0.10.0</version.com.carrotsearch.hppc>
47-
<version.org.apache.lucene.next>10.2.2</version.org.apache.lucene.next>
47+
<version.org.apache.lucene.next>10.3.0</version.org.apache.lucene.next>
4848

4949
<!-- >>> Elasticsearch -->
5050
<!-- The version of the Elasticsearch client used by Hibernate Search, independently of the version of the remote cluster -->

lucene-next/backend/lucene/src/main/java/org/hibernate/search/backend/lucene/lowlevel/codec/impl/HibernateSearchLuceneCodec.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
import org.apache.lucene.codecs.Codec;
1414
import org.apache.lucene.codecs.FilterCodec;
1515
import org.apache.lucene.codecs.KnnVectorsFormat;
16-
import org.apache.lucene.codecs.lucene101.Lucene101Codec;
16+
import org.apache.lucene.codecs.lucene103.Lucene103Codec;
1717
import org.apache.lucene.codecs.perfield.PerFieldKnnVectorsFormat;
1818

1919
public class HibernateSearchLuceneCodec extends FilterCodec {
2020

21-
public static final Codec DEFAULT_CODEC = new Lucene101Codec();
21+
public static final Codec DEFAULT_CODEC = new Lucene103Codec();
2222

2323
private final KnnVectorsFormat knnVectorsFormat;
2424

0 commit comments

Comments
 (0)