You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by da...@apache.org on 2018/12/01 17:10:08 UTC

[20/32] lucene-solr:jira/http2: LUCENE-7875: CHANGES.txt: moved to API changes

LUCENE-7875: CHANGES.txt: moved to API changes


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/04916239
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/04916239
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/04916239

Branch: refs/heads/jira/http2
Commit: 04916239337f4e1435e70ba78bb174c019f9f925
Parents: cf016f8
Author: David Smiley <ds...@apache.org>
Authored: Fri Nov 30 06:20:09 2018 -0800
Committer: David Smiley <ds...@apache.org>
Committed: Fri Nov 30 06:20:09 2018 -0800

----------------------------------------------------------------------
 lucene/CHANGES.txt | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/04916239/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index bcecbc9..469d6fb 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -84,6 +84,12 @@ API Changes
 * LUCENE-8498: LowerCaseTokenizer has been removed, and CharTokenizer no longer
   takes a normalizer function. (Alan Woodward)
 
+* LUCENE-7875: Moved MultiFields static methods out of the class.  getLiveDocs is now
+  in MultiBits which is now public.  getMergedFieldInfos and getIndexedFields are now in
+  FieldInfos.  getTerms is now in MultiTerms.  getTermPositionsEnum and getTermDocsEnum
+  were collapsed and renamed to just getTermPostingsEnum and moved to MultiTerms.
+  (David Smiley)
+
 * LUCENE-8513: MultiFields.getFields is now removed.  Please avoid this class,
   and Fields in general, when possible. (David Smiley)
 
@@ -132,12 +138,6 @@ Changes in Runtime Behavior
   box anymore. In order to highlight on Block-Join Queries a custom WeightedSpanTermExtractor / FieldQuery
   should be used. (Simon Willnauer, Jim Ferenczi, Julie Tibshiran)
 
-* LUCENE-7875: Moved MultiFields static methods out of the class.  getLiveDocs is now
-  in MultiBits which is now public.  getMergedFieldInfos and getIndexedFields are now in
-  FieldInfos.  getTerms is now in MultiTerms.  getTermPositionsEnum and getTermDocsEnum
-  were collapsed and renamed to just getTermPostingsEnum and moved to MultiTerms.
-  (David Smiley)
-
 * LUCENE-8563: BM25 scores don't include the (k1+1) factor in their numerator
   anymore. This doesn't affect ordering as this is a constant factor which is
   the same for every document. (Luca Cavanna via Adrien Grand)