From 507ebfc247c99b1d109f940a766b6bfdb225ba5d Mon Sep 17 00:00:00 2001 From: Alan Woodward Date: Wed, 10 Jun 2015 16:03:39 +0000 Subject: [PATCH] LUCENE-6371: Move CHANGES entry to 5.3 git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1684701 13f79535-47bb-0310-9956-ffa450edef68 --- lucene/CHANGES.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt index a44ea2b5f95..8cf21b9728a 100644 --- a/lucene/CHANGES.txt +++ b/lucene/CHANGES.txt @@ -74,6 +74,13 @@ API Changes to IndexWriter. Improve exception messages when locking fails. (Uwe Schindler, Mike McCandless, Robert Muir) +* LUCENE-6371, LUCENE-6490: Payload collection from Spans is moved to a more generic + SpanCollector framework. Spans no longer implements .hasPayload() and + .getPayload() methods, and instead exposes a collect() method that allows + the collection of arbitrary postings information. SpanPayloadCheckQuery and + SpanPayloadNearCheckQuery have moved from the .spans package to the .payloads + package. (Alan Woodward, David Smiley, Paul Elschot, Robert Muir) + Bug fixes * LUCENE-6500: ParallelCompositeReader did not always call @@ -303,13 +310,6 @@ API Changes * LUCENE-6445: Two new methods in Highlighter's TokenSources; the existing methods are now marked deprecated. (David Smiley) -* LUCENE-6371, LUCENE-6490: Payload collection from Spans is moved to a more generic - SpanCollector framework. Spans no longer implements .hasPayload() and - .getPayload() methods, and instead exposes a collect() method that allows - the collection of arbitrary postings information. SpanPayloadCheckQuery and - SpanPayloadNearCheckQuery have moved from the .spans package to the .payloads - package. (Alan Woodward, David Smiley, Paul Elschot, Robert Muir) - * LUCENE-6484: Removed EliasFanoDocIdSet, which was unused. (Paul Elschot via Adrien Grand)