Skip to content

Commit dbd8573

Browse files
authored
Upgrade to 7.4.0-snapshot-1ed95c097b (#30357)
Upgrade to lucene-7.4.0-snapshot-1ed95c097b This version contains: * An Analyzer for Korean * An IntervalQuery and IntervalsSource that retrieve minimum intervals of positional queries. * A new API to retrieve matches (offsets and positions) of a query for a single document. * Support for soft deletes in the index writer. * A fixed shingle filter that handles index time synonyms. * Support for emoji sequence in ICUTokenizer (with an upgrade to icu 61.1)
1 parent 0e6cbbd commit dbd8573

File tree

57 files changed

+35
-32
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+35
-32
lines changed

buildSrc/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
elasticsearch = 7.0.0-alpha1
2-
lucene = 7.3.0
2+
lucene = 7.4.0-snapshot-1ed95c097b
33

44
# optional dependencies
55
spatial4j = 0.7

docs/Versions.asciidoc

Lines changed: 2 additions & 2 deletions

modules/analysis-common/src/test/java/org/elasticsearch/analysis/common/CommonAnalysisFactoryTests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@ protected Map<String, Class<?>> getTokenFilters() {
130130
filters.put("brazilianstem", BrazilianStemTokenFilterFactory.class);
131131
filters.put("czechstem", CzechStemTokenFilterFactory.class);
132132
filters.put("germanstem", GermanStemTokenFilterFactory.class);
133+
// this filter is not exposed and should only be used internally
134+
filters.put("fixedshingle", Void.class);
133135
return filters;
134136
}
135137

modules/lang-expression/licenses/lucene-expressions-7.3.0.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
63ff4af3504881744695f6239fcb3e9c0e3240b1

plugins/analysis-icu/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ forbiddenApis {
3030

3131
dependencies {
3232
compile "org.apache.lucene:lucene-analyzers-icu:${versions.lucene}"
33-
compile 'com.ibm.icu:icu4j:59.1'
33+
compile 'com.ibm.icu:icu4j:61.1'
3434
}
3535

3636
dependencyLicenses {

plugins/analysis-icu/licenses/icu4j-59.1.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
28d33b5e44e72edcc66a5da7a34a42147f38d987

plugins/analysis-icu/licenses/lucene-analyzers-icu-7.3.0.jar.sha1

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5f3c053ef858c58c74a687a40f5451d19b69850b

0 commit comments

Comments
 (0)