mirror of https://github.com/apache/lucene.git
LUCENE-7996: Add a note to the changes in runtime behaviour and to the solr upgrade notes.
This commit is contained in:
parent
5b2e25f301
commit
f525ce8fbb
|
@ -37,6 +37,9 @@ Changes in Runtime Behavior
|
||||||
divide-by-zero hacks. IndexSearcher.termStatistics/collectionStatistics return null
|
divide-by-zero hacks. IndexSearcher.termStatistics/collectionStatistics return null
|
||||||
instead of returning bogus values for a non-existent term or field. (Robert Muir)
|
instead of returning bogus values for a non-existent term or field. (Robert Muir)
|
||||||
|
|
||||||
|
* LUCENE-7996: FunctionQuery and FunctionScoreQuery now return a score of 0
|
||||||
|
when the function produces a negative value. (Adrien Grand)
|
||||||
|
|
||||||
Improvements
|
Improvements
|
||||||
|
|
||||||
* LUCENE-7997: Add BaseSimilarityTestCase to sanity check similarities.
|
* LUCENE-7997: Add BaseSimilarityTestCase to sanity check similarities.
|
||||||
|
|
|
@ -29,8 +29,12 @@ Apache UIMA 2.3.1
|
||||||
Apache ZooKeeper 3.4.10
|
Apache ZooKeeper 3.4.10
|
||||||
Jetty 9.3.20.v20170531
|
Jetty 9.3.20.v20170531
|
||||||
|
|
||||||
|
Upgrade Notes
|
||||||
|
----------------------
|
||||||
|
|
||||||
(No Changes)
|
* LUCENE-7996: The 'func' query parser now returns scores that are equal to 0
|
||||||
|
when a negative value is produced. This change is due to the fact that
|
||||||
|
Lucene now requires scores to be positive. (Adrien Grand)
|
||||||
|
|
||||||
================== 7.3.0 ==================
|
================== 7.3.0 ==================
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue