You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2014/09/24 22:47:20 UTC

svn commit: r1627418 - in /lucene/dev/trunk/lucene: MIGRATE.txt site/xsl/index.xsl

Author: uschindler
Date: Wed Sep 24 20:47:19 2014
New Revision: 1627418

URL: http://svn.apache.org/r1627418
Log:
Update versions in trunk's site, update migration guide

Modified:
    lucene/dev/trunk/lucene/MIGRATE.txt
    lucene/dev/trunk/lucene/site/xsl/index.xsl

Modified: lucene/dev/trunk/lucene/MIGRATE.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/MIGRATE.txt?rev=1627418&r1=1627417&r2=1627418&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/MIGRATE.txt (original)
+++ lucene/dev/trunk/lucene/MIGRATE.txt Wed Sep 24 20:47:19 2014
@@ -6,24 +6,3 @@ The API of oal.document was restructured
 documents and indexed documents. IndexReader.document(int) now returns 
 StoredDocument instead of Document. In most cases a simple replacement
 of the return type is enough to upgrade.
-
-## Removed Reader from Tokenizer constructor (LUCENE-5388)
-
-The constructor of Tokenizer no longer takes Reader, as this was a leftover
-from before it was reusable. See the org.apache.lucene.analysis package
-documentation for more details.
-
-## Refactored Collector API (LUCENE-5299)
-
-The Collector API has been refactored to use a different Collector instance
-per segment. It is possible to migrate existing collectors painlessly by
-extending SimpleCollector instead of Collector: SimpleCollector is a
-specialization of Collector that returns itself as a per-segment Collector.
-
-## IndexWriter.close now discards all changes and closes, even on exception (LUCENE-4246)
-
-When you close an IndexWriter it will discard all changes; you must
-call .commit() and .waitForMerges() beforehand.  If
-IndexWriterConfig's matchVersion is before 5.0, then close will
-throw an exception indicating that changes were lost (but the
-IndexWriter will still have been closed).

Modified: lucene/dev/trunk/lucene/site/xsl/index.xsl
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/site/xsl/index.xsl?rev=1627418&r1=1627417&r2=1627418&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/site/xsl/index.xsl (original)
+++ lucene/dev/trunk/lucene/site/xsl/index.xsl Wed Sep 24 20:47:19 2014
@@ -77,7 +77,7 @@
           <ul>
             <li><a href="changes/Changes.html">Changes</a>: List of changes in this release.</li>
             <li><a href="SYSTEM_REQUIREMENTS.html">System Requirements</a>: Minimum and supported Java versions.</li>
-            <li><a href="MIGRATE.html">Migration Guide</a>: What changed in Lucene 5; how to migrate code from Lucene 4.x.</li>
+            <li><a href="MIGRATE.html">Migration Guide</a>: What changed in Lucene 6; how to migrate code from Lucene 5.x.</li>
             <li><a href="JRE_VERSION_MIGRATION.html">JRE Version Migration</a>: Information about upgrading between major JRE versions.</li>
             <li><a href="core/org/apache/lucene/codecs/{$defaultCodecPackage}/package-summary.html#package_description">File Formats</a>: Guide to the supported index format used by Lucene.  This can be customized by using <a href="core/org/apache/lucene/codecs/package-summary.html#package_description">an alternate codec</a>.</li>
             <li><a href="core/org/apache/lucene/search/package-summary.html#package_description">Search and Scoring in Lucene</a>: Introduction to how Lucene scores documents.</li>