LUCENE-5859: Update changes entry to reflect backport

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1619466 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Ernst 2014-08-21 16:06:24 +00:00
parent 6a620061fa
commit c7b3050ca6
1 changed files with 5 additions and 5 deletions

View File

@ -80,11 +80,6 @@ API Changes
takes the same selectors. Add helper methods to DocValues.java that are better takes the same selectors. Add helper methods to DocValues.java that are better
suited for search code (never return null, etc). (Mike McCandless, Robert Muir) suited for search code (never return null, etc). (Mike McCandless, Robert Muir)
* LUCENE-5859: Remove Version from Analyzer constructors. Use Analyzer.setVersion()
to set the version an analyzer should use to replicate behavior from a specific
release.
(Ryan Ernst, Robert Muir)
* LUCENE-5871: Remove Version from IndexWriterConfig. Use * LUCENE-5871: Remove Version from IndexWriterConfig. Use
IndexWriterConfig.setCommitOnClose to change the behavior of IndexWriter.close(). IndexWriterConfig.setCommitOnClose to change the behavior of IndexWriter.close().
The default has been changed to match that of 4.x. The default has been changed to match that of 4.x.
@ -173,6 +168,11 @@ API Changes
merge with UpgradeIndexMergePolicy without reopening the writer. Also, MergePolicy merge with UpgradeIndexMergePolicy without reopening the writer. Also, MergePolicy
no longer implements Closeable; if you need to release your custom MegePolicy's no longer implements Closeable; if you need to release your custom MegePolicy's
resources, you need to implement close() and call it explicitly. (Shai Erera) resources, you need to implement close() and call it explicitly. (Shai Erera)
* LUCENE-5859: Deprecate Analyzer constructors taking Version. Use Analyzer.setVersion()
to set the version an analyzer to replicate behavior from a specific release.
(Ryan Ernst, Robert Muir)
Optimizations Optimizations