Dawid Weiss
7362c4ce60
LUCENE-6831: start removing LinkedList in favor of ArrayList or De/Queues ( #1969 )
...
I'm committing it in, seems like a trivial thing.
2020-10-12 09:15:07 +02:00
David Smiley
ab83b3b7c3
SOLR-14917: Move DOMUtil and PropertiesUtil to SolrJ ( #1953 )
2020-10-10 08:52:10 -04:00
Jason Gerlowski
80df6a3d62
LUCENE-9434: Remove wiki-update step from release
2020-10-09 14:13:05 -04:00
Cassandra Targett
7d37150457
Ref Guide: fix typos, formatting issues, etc.
2020-10-09 10:42:44 -05:00
Cassandra Targett
7b1663e97a
Ref Guide: update for 8.7 release notes; bring notes from 8.6.1 forward to keep branch_8x and master at least sort of in sync
2020-10-09 10:42:44 -05:00
Jason Gerlowski
9e13d99c52
Add back-compat indices for 8.6.3
2020-10-09 11:39:20 -04:00
Jason Gerlowski
2a9d704002
Update addBackcompatIndexes.py test running to gradle
2020-10-09 11:32:49 -04:00
Jason Gerlowski
5504f379b0
Sync CHANGES for 8.6.3
2020-10-09 10:56:01 -04:00
msfroh
4e0aa0d23b
LUCENE-9567: JPOSSFF loads built-in stop tags by default ( #1961 )
...
load stoptags.txt from analysis-kuromoji when no tags argument is specified
2020-10-09 10:52:07 -04:00
Uwe Schindler
47a3f591a8
Merge branch 'master' of https://gitbox.apache.org/repos/asf/lucene-solr
2020-10-09 16:44:54 +02:00
Uwe Schindler
6acb7b4293
LUCENE-9577: move the checkBrokenLinks task to the documentation subprojects
2020-10-09 16:44:36 +02:00
Jason Gerlowski
76a8cc3c3e
Add bugfix version 8.6.3
2020-10-09 10:27:42 -04:00
Jason Gerlowski
178d83d635
Update addVersion.py test running to gradle
2020-10-09 10:25:19 -04:00
Uwe Schindler
f97208a790
LUCENE-9577: fix changed task name
2020-10-09 16:18:59 +02:00
Uwe Schindler
2329423e5c
LUCENE-9577: Move Lucene/Solr Documentation assembly to subproject ( #1967 )
2020-10-09 14:56:44 +02:00
Mike Drob
08e38d3452
LUCENE-9488 Create Release Artifacts with Gradle ( #1905 )
...
* Build Lucene binary distribution using Gradle
* Generate SHA-512 checksums for all release artifacts
* Update documentation artifacts included in binaries
* Delete some additional Ant relics
Co-authored-by: Dawid Weiss <dawid.weiss@carrotsearch.com>
Co-authored-by: Uwe Schindler <uschindler@apache.org>
2020-10-08 14:25:51 -05:00
Jason Gerlowski
a2167ae9b4
DOAP changes for release 8.6.3
2020-10-08 15:04:35 -04:00
Noble Paul
8c41418c0f
SOLR-14576 : Do not use SolrCore as keys in a WeakHashMap ( #1586 )
2020-10-08 22:08:48 +11:00
Timothy Potter
7a13e81668
Merge remote-tracking branch 'asf/master'
2020-10-07 14:25:32 -06:00
Timothy Potter
2813b1278b
SOLR-14659: Fix changes to indicate SOLR-14659 fixed in 8.7 vs. 9
2020-10-07 14:24:45 -06:00
Timothy Potter
ba9fc74615
Fix changes to indicate SOLR-14659 fixed in 8.7 vs. 9
2020-10-07 14:23:16 -06:00
Timothy Potter
7a5219c62e
Revert "Fix changes to indicate SOLR-14659 fixed in 8.7 vs. 9"
...
This reverts commit 01e1a7b356
.
2020-10-07 14:22:30 -06:00
Timothy Potter
01e1a7b356
Fix changes to indicate SOLR-14659 fixed in 8.7 vs. 9
2020-10-07 14:21:14 -06:00
Andrzej Bialecki
969f9c1899
SOLR-14691: Fix a minor back-compat formatting issue.
2020-10-07 20:46:13 +02:00
Andrzej Bialecki
43b1a2fdc7
SOLR-14691: Metrics reporting should avoid creating objects.
2020-10-07 17:52:55 +02:00
Cao Manh Dat
2d4a51b23d
SOLR-10370: ReplicationHandler should fetch index at fixed delay instead of fixed rate
2020-10-07 20:22:17 +07:00
Mayya Sharipova
0b08943112
LUCENE-9566 TestApproximationSearchEquivalence.testExclusion fix ( #1955 )
2020-10-07 07:02:46 -04:00
noblepaul
2a8136b3fd
SOLR-14151: refactor to avoid code duplicate
2020-10-07 16:04:35 +11:00
Alexandre Rafalovitch
247cea1011
SOLR-14829: Improve documentation for Request Handlers in RefGuide and solrconfig.xml ( #1921 )
...
Restructured documentation page, fixed cross-linked, and cleanup of relevant sections of example configuration files
2020-10-06 20:35:47 -04:00
Mayya Sharipova
5039e7170b
Mute TestApproximationSearchEquivalence.testExclusion
...
Temporarily mute TestApproximationSearchEquivalence.testExclusion
2020-10-06 15:10:48 -04:00
Mayya Sharipova
6b8288445f
LUCENE-9541 ConjunctionDISI sub-iterators check ( #1937 )
...
* LUCENE-9541 ConjunctionDISI sub-iterators check
Ensure sub-iterators of a conjunction iterator are on the same doc.
2020-10-06 13:23:01 -04:00
Mayya Sharipova
874c446ab9
LUCENE-9565 Fix competitive iteration ( #1952 )
...
PR #1351 introduced a sort optimization where documents can be skipped.
But iteration over competitive iterators was not properly organized,
as they were not storing the current docID, and
when competitive iterator was updated the current doc ID was lost.
This patch fixed it.
Relates to #1351
2020-10-06 13:22:16 -04:00
Mayya Sharipova
6ac94a6f9f
LUCENE-9555: Advance conjunction Iterator for two phase iteration ( #1943 )
...
PR #1351 introduced a sort optimization where
documents can be skipped.
But there was a bug in case we were using two phase
approximation, as we would advance it without advancing
an overall conjunction iterator.
This patch fixed it.
Relates to #1351
2020-10-06 09:22:42 -04:00
Cassandra Targett
b45c43fdeb
SOLR-13438: update ref guide for new default delete behavior
2020-10-05 16:19:36 -05:00
Cassandra Targett
5bf487f8b4
Ref Guide: monospace parameter names for overall consistency
2020-10-05 15:32:05 -05:00
Mayya Sharipova
e325f66e61
Revert "LUCENE-9541 ConjunctionDISI sub-iterators check ( #1937 )"
...
This reverts commit 5f34acfdb5
.
2020-10-05 10:55:25 -04:00
Mayya Sharipova
5f34acfdb5
LUCENE-9541 ConjunctionDISI sub-iterators check ( #1937 )
...
* LUCENE-9541 ConjunctionDISI sub-iterators check
Ensure sub-iterators of a conjunction iterator are on the same doc.
2020-10-05 09:38:17 -04:00
Tomoko Uchida
b70eaeee5a
LUCENE-9558: Clean up package name conflicts for analyzers-icu. ( #1946 )
2020-10-05 17:52:23 +09:00
iverase
0864b39a11
make sure we don't build circles with zero radius in ShapeTestUtil
2020-10-05 10:45:31 +02:00
Adrien Grand
1038fe8bee
Fix rare test failure.
...
This test fails when the maximum segment size is only one byte larger
than the min segment size.
2020-10-05 09:58:18 +02:00
Dawid Weiss
34776ed640
LUCENE-9561: workaround for POMs that have superfluous dependencyManagement section.
2020-10-04 21:39:58 +02:00
Timothy Potter
e879a52291
SOLR-14659: Remove restlet as dependency for the ManagedResource API ( #1938 )
...
Co-authored-by: noblepaul <noble.paul@gmail.com>
2020-10-04 11:21:49 -06:00
Dawid Weiss
d9a410920a
LUCENE-9548: Apache repository publishing ( #1929 )
2020-10-04 19:18:29 +02:00
noblepaul
4728a710e9
LUCENE-9559: "gradle eclipse" do not work if .java files are not in proper package
2020-10-04 21:44:01 +11:00
Robert Muir
7eee4fd102
LUCENE-9557: regeneration should use python3, not python2
...
python2 will change the DFA, but using python3 re-generates the sources
as they exist today. plus, we don't want to depend on EOL python2.
2020-10-03 12:30:22 -04:00
Erick Erickson
f6c4f8a755
SOLR-14910: Use in-line tags for logger declarations in Gradle ValidateLogCalls that are non-standard, change //logok to //nowarn
2020-10-03 09:47:37 -04:00
Nhat Nguyen
7e04e4d0ca
LUCENE-9554: Expose IndexWriter#pendingNumDocs ( #1941 )
...
Some applications can use the pendingNumDocs from IndexWriter to
estimate that the number of documents of an index is very close to the
hard limit so that it can reject writes without constructing Lucene
documents.
2020-10-02 17:32:20 -04:00
David Smiley
2aa51fe77c
LUCENE-9032: BaseTokenStreamTestCase minor...
...
* make checkResetException() public
* one assertAnalyzesTo variant should be calling checkAnalysisConsistency (only used by OpenNLP tests now)
2020-10-01 23:43:03 -04:00
David Smiley
0303063e12
LUCENE-9458: WDGF should tie-break by endOffset ( #1740 )
...
Can happen with catenateAll and not generating word xor number part when the input ends with the non-generated sub-token.
Fuzzing revealed that only start & end offsets are needed to order sub-tokens.
2020-10-01 22:27:45 -04:00
Tomas Fernandez Lobbe
8f2f80bbb3
SOLR-14663: Copy ConfigSet root data from base ConfigSet when using CREATE command
2020-10-01 14:13:40 -07:00