You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2019/12/13 14:36:18 UTC

[lucene-solr] branch gradle-master updated (16466d5 -> abd5102)

This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a change to branch gradle-master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 16466d5  Add dependency on log4j-1.2 api for solr core tests.
     add 1812b36  LUCENE-9089: FST Builder renamed FSTCompiler with fluent-style Builder.
     add d130bff  LUCENE-9092: Upgrade randomizedtesting to 2.7.5 and Carrot2 to 3.16.2
     add e5df183  Remove slf4j from dependencies. Clean up dangling files.
     new abd5102  Merge with master.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lucene/CHANGES.txt                                 |   5 +
 lucene/MIGRATE.txt                                 |   5 +
 .../analysis/charfilter/NormalizeCharMap.java      |   7 +-
 .../lucene/analysis/hunspell/Dictionary.java       |  22 +-
 .../miscellaneous/StemmerOverrideFilter.java       |   7 +-
 .../apache/lucene/analysis/synonym/SynonymMap.java |   9 +-
 .../lucene/analysis/hunspell/TestDictionary.java   |  14 +-
 .../lucene/analysis/ja/dict/UserDictionary.java    |   8 +-
 .../ja/util/TokenInfoDictionaryBuilder.java        |   8 +-
 .../lucene/analysis/ko/dict/UserDictionary.java    |   8 +-
 .../ko/util/TokenInfoDictionaryBuilder.java        |   8 +-
 .../BooleanPerceptronClassifier.java               |   8 +-
 .../blockterms/VariableGapTermsIndexWriter.java    |  12 +-
 .../blocktreeords/OrdsBlockTreeTermsWriter.java    |  16 +-
 .../lucene/codecs/memory/FSTOrdTermsWriter.java    |  10 +-
 .../lucene/codecs/memory/FSTTermsWriter.java       |  10 +-
 .../codecs/simpletext/SimpleTextFieldsReader.java  |  12 +-
 .../lucene/codecs/uniformsplit/FSTDictionary.java  |   9 +-
 .../codecs/blocktree/BlockTreeTermsWriter.java     |  16 +-
 .../src/java/org/apache/lucene/util/fst/FST.java   | 134 +++++-----
 .../util/fst/{Builder.java => FSTCompiler.java}    | 289 ++++++++++++---------
 .../java/org/apache/lucene/util/fst/NodeHash.java  |  16 +-
 .../test/org/apache/lucene/util/fst/Test2BFST.java |  35 ++-
 ...ddressing.java => TestFSTDirectAddressing.java} |  53 ++--
 .../test/org/apache/lucene/util/fst/TestFSTs.java  | 158 +++++------
 .../test/org/apache/lucene/util/fst/TestUtil.java  |  10 +-
 .../org/apache/lucene/util/fst/ListOfOutputs.java  |   4 +-
 .../lucene/util/fst/UpToTwoPositiveIntOutputs.java |   4 +-
 .../org/apache/lucene/util/fst/TestFSTsMisc.java   |  34 +--
 .../idversion/VersionBlockTreeTermsWriter.java     |  17 +-
 .../suggest/analyzing/AnalyzingSuggester.java      |  10 +-
 .../suggest/analyzing/FreeTextSuggester.java       |   8 +-
 .../suggest/document/NRTSuggesterBuilder.java      |  14 +-
 .../search/suggest/fst/FSTCompletionBuilder.java   |  13 +-
 .../search/suggest/fst/WFSTCompletionLookup.java   |   8 +-
 .../java/org/apache/lucene/util/fst/FSTTester.java |  29 +--
 solr/CHANGES.txt                                   |   2 +
 37 files changed, 550 insertions(+), 482 deletions(-)
 rename lucene/core/src/java/org/apache/lucene/util/fst/{Builder.java => FSTCompiler.java} (74%)
 rename lucene/core/src/test/org/apache/lucene/util/fst/{TestFstDirectAddressing.java => TestFSTDirectAddressing.java} (77%)


[lucene-solr] 01/01: Merge with master.

Posted by dw...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dweiss pushed a commit to branch gradle-master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit abd510231265a1a1afa2e60c000ead414dde5db9
Merge: 16466d5 e5df183
Author: Dawid Weiss <dw...@apache.org>
AuthorDate: Fri Dec 13 15:35:14 2019 +0100

    Merge with master.

 lucene/CHANGES.txt                                 |   5 +
 lucene/MIGRATE.txt                                 |   5 +
 .../analysis/charfilter/NormalizeCharMap.java      |   7 +-
 .../lucene/analysis/hunspell/Dictionary.java       |  22 +-
 .../miscellaneous/StemmerOverrideFilter.java       |   7 +-
 .../apache/lucene/analysis/synonym/SynonymMap.java |   9 +-
 .../lucene/analysis/hunspell/TestDictionary.java   |  14 +-
 .../lucene/analysis/ja/dict/UserDictionary.java    |   8 +-
 .../ja/util/TokenInfoDictionaryBuilder.java        |   8 +-
 .../lucene/analysis/ko/dict/UserDictionary.java    |   8 +-
 .../ko/util/TokenInfoDictionaryBuilder.java        |   8 +-
 .../BooleanPerceptronClassifier.java               |   8 +-
 .../blockterms/VariableGapTermsIndexWriter.java    |  12 +-
 .../blocktreeords/OrdsBlockTreeTermsWriter.java    |  16 +-
 .../lucene/codecs/memory/FSTOrdTermsWriter.java    |  10 +-
 .../lucene/codecs/memory/FSTTermsWriter.java       |  10 +-
 .../codecs/simpletext/SimpleTextFieldsReader.java  |  12 +-
 .../lucene/codecs/uniformsplit/FSTDictionary.java  |   9 +-
 .../codecs/blocktree/BlockTreeTermsWriter.java     |  16 +-
 .../src/java/org/apache/lucene/util/fst/FST.java   | 134 +++++-----
 .../util/fst/{Builder.java => FSTCompiler.java}    | 289 ++++++++++++---------
 .../java/org/apache/lucene/util/fst/NodeHash.java  |  16 +-
 .../test/org/apache/lucene/util/fst/Test2BFST.java |  35 ++-
 ...ddressing.java => TestFSTDirectAddressing.java} |  53 ++--
 .../test/org/apache/lucene/util/fst/TestFSTs.java  | 158 +++++------
 .../test/org/apache/lucene/util/fst/TestUtil.java  |  10 +-
 .../org/apache/lucene/util/fst/ListOfOutputs.java  |   4 +-
 .../lucene/util/fst/UpToTwoPositiveIntOutputs.java |   4 +-
 .../org/apache/lucene/util/fst/TestFSTsMisc.java   |  34 +--
 .../idversion/VersionBlockTreeTermsWriter.java     |  17 +-
 .../suggest/analyzing/AnalyzingSuggester.java      |  10 +-
 .../suggest/analyzing/FreeTextSuggester.java       |   8 +-
 .../suggest/document/NRTSuggesterBuilder.java      |  14 +-
 .../search/suggest/fst/FSTCompletionBuilder.java   |  13 +-
 .../search/suggest/fst/WFSTCompletionLookup.java   |   8 +-
 .../java/org/apache/lucene/util/fst/FSTTester.java |  29 +--
 solr/CHANGES.txt                                   |   2 +
 37 files changed, 550 insertions(+), 482 deletions(-)