Skip to content

Commit

Permalink
Bump luceneVersion from 9.11.1 to 9.12.0 (JabRef#11888)
Browse files Browse the repository at this point in the history
* Bump luceneVersion from 9.11.1 to 9.12.0

Bumps `luceneVersion` from 9.11.1 to 9.12.0.

Updates `org.apache.lucene:lucene-core` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-queryparser` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-queries` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-analysis-common` from 9.11.1 to 9.12.0

Updates `org.apache.lucene:lucene-highlighter` from 9.11.1 to 9.12.0

---
updated-dependencies:
- dependency-name: org.apache.lucene:lucene-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.apache.lucene:lucene-queryparser
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.apache.lucene:lucene-queries
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.apache.lucene:lucene-analysis-common
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.apache.lucene:lucene-highlighter
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update codecs lucene version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Loay Ghreeb <[email protected]>
  • Loading branch information
dependabot[bot] and LoayGhreeb authored Oct 8, 2024
1 parent e4649f2 commit 766fa6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ dependencies {
exclude group: 'commons-logging'
}

def luceneVersion = "9.11.1"
def luceneVersion = "9.12.0"
implementation "org.apache.lucene:lucene-core:$luceneVersion"
implementation "org.apache.lucene:lucene-queryparser:$luceneVersion"
implementation "org.apache.lucene:lucene-queries:$luceneVersion"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
/**
* In case the version is updated, please also increment {@link org.jabref.model.search.SearchFieldConstants#VERSION} to trigger reindexing.
*/
uses org.apache.lucene.codecs.lucene99.Lucene99Codec;
uses org.apache.lucene.codecs.lucene912.Lucene912Codec;
requires org.apache.lucene.analysis.common;
requires org.apache.lucene.core;
requires org.apache.lucene.highlighter;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public enum SearchFieldConstants {
* 2. Lucene codec changes (see module-info.java Lucene section)
* Incrementing triggers reindexing.
*/
VERSION("1"),
VERSION("2"),
DEFAULT_FIELD("any"),
ENTRY_ID("id"),
ENTRY_TYPE("entrytype"),
Expand Down

0 comments on commit 766fa6b

Please sign in to comment.