You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2016/09/15 13:28:26 UTC

svn commit: r15366 [4/22] - in /dev/lucene/lucene-solr-6.2.1-RC1-rev43ab70147eb494324a1410f7a9f16a896a59bc6f: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/lu...

Added: dev/lucene/lucene-solr-6.2.1-RC1-rev43ab70147eb494324a1410f7a9f16a896a59bc6f/lucene/changes/Changes.html
==============================================================================
--- dev/lucene/lucene-solr-6.2.1-RC1-rev43ab70147eb494324a1410f7a9f16a896a59bc6f/lucene/changes/Changes.html (added)
+++ dev/lucene/lucene-solr-6.2.1-RC1-rev43ab70147eb494324a1410f7a9f16a896a59bc6f/lucene/changes/Changes.html Thu Sep 15 13:28:20 2016
@@ -0,0 +1,14141 @@
+<!--
+**********************************************************
+** WARNING: This file is generated from CHANGES.txt by the 
+**          Perl script 'changes2html.pl'.
+**          Do *not* edit this file!
+**********************************************************
+          
+****************************************************************************
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+****************************************************************************
+-->
+<html>
+<head>
+  <title>Lucene Change Log</title>
+  <link rel="stylesheet" href="ChangesFancyStyle.css" title="Fancy">
+  <link rel="alternate stylesheet" href="ChangesSimpleStyle.css" title="Simple">
+  <link rel="alternate stylesheet" href="ChangesFixedWidthStyle.css" title="Fixed Width">
+  <META http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+  <SCRIPT>
+    function toggleList(id) {
+      listStyle = document.getElementById(id + '.list').style;
+      anchor = document.getElementById(id);
+      if (listStyle.display == 'none') {
+        listStyle.display = 'block';
+        anchor.title = 'Click to collapse';
+        location.href = '#' + id;
+      } else {
+        listStyle.display = 'none';
+        anchor.title = 'Click to expand';
+      }
+      var expandButton = document.getElementById('expand.button');
+      expandButton.disabled = false;
+      var collapseButton = document.getElementById('collapse.button');
+      collapseButton.disabled = false;
+    }
+
+    function collapseAll() {
+      var unorderedLists = document.getElementsByTagName("ul");
+      for (var i = 0; i < unorderedLists.length; i++) {
+        if (unorderedLists[i].className != 'bulleted-list')
+          unorderedLists[i].style.display = "none";
+        else
+          unorderedLists[i].style.display = "block";
+      }
+      var orderedLists = document.getElementsByTagName("ol");
+      for (var i = 0; i < orderedLists.length; i++)
+        orderedLists[i].style.display = "none"; 
+      var anchors = document.getElementsByTagName("a");
+      for (var i = 0 ; i < anchors.length; i++) {
+        if (anchors[i].id != '')
+          anchors[i].title = 'Click to expand';
+      }
+      var collapseButton = document.getElementById('collapse.button');
+      collapseButton.disabled = true;
+      var expandButton = document.getElementById('expand.button');
+      expandButton.disabled = false;
+    }
+
+    function expandAll() {
+      var unorderedLists = document.getElementsByTagName("ul");
+      for (var i = 0; i < unorderedLists.length; i++)
+        unorderedLists[i].style.display = "block";
+      var orderedLists = document.getElementsByTagName("ol");
+      for (var i = 0; i < orderedLists.length; i++)
+        orderedLists[i].style.display = "block"; 
+      var anchors = document.getElementsByTagName("a");
+      for (var i = 0 ; i < anchors.length; i++) {
+        if (anchors[i].id != '')
+          anchors[i].title = 'Click to collapse';
+      }
+      var expandButton = document.getElementById('expand.button');
+      expandButton.disabled = true;
+      var collapseButton = document.getElementById('collapse.button');
+      collapseButton.disabled = false;
+
+    }
+
+    var newerRegex = new RegExp("^(?:v6\\\\.2\\\\.1|v6\\\\.2\\\\.0)");
+    function isOlder(listId) {
+      return ! newerRegex.test(listId);
+    }
+
+    function escapeMeta(s) {
+      return s.replace(/(?=[.*+?^${}()|[\]\/\\])/g, '\\');
+    }
+
+    function shouldExpand(currentList, currentAnchor, listId) {
+      var listName = listId.substring(0, listId.length - 5);
+      var parentRegex = new RegExp("^" + escapeMeta(listName) + "\\.");
+      return currentList == listId
+             || (isOlder(currentAnchor) && listId == 'older.list')
+             || parentRegex.test(currentAnchor);
+    }
+
+    function collapse() {
+      /* Collapse all but the first and second releases. */
+      var unorderedLists = document.getElementsByTagName("ul");
+      var currentAnchor = location.hash.substring(1);
+      var currentList = currentAnchor + ".list";
+
+      for (var i = 0; i < unorderedLists.length; i++) {
+        var list = unorderedLists[i];
+        /* Collapse the current item, unless either the current item is one of
+         * the first two releases, or the current URL has a fragment and the
+         * fragment refers to the current item or one of its ancestors.
+         */
+        if (list.id != 'v6.2.1.list' 
+            && list.id != 'v6.2.0.list'
+            && list.className != 'bulleted-list'
+            && (currentAnchor == ''
+                || ! shouldExpand(currentList, currentAnchor, list.id))) {
+          list.style.display = "none";
+        }
+      }
+      var orderedLists = document.getElementsByTagName("ol");
+      for (var i = 0; i < orderedLists.length; i++) {
+        var list = orderedLists[i];
+        /* Collapse the current item, unless the current URL has a fragment
+         * and the fragment refers to the current item or one of its ancestors.
+         */
+        if (currentAnchor == ''
+            || ! shouldExpand(currentList, currentAnchor, list.id)) {
+          list.style.display = "none";
+        }
+      }
+      /* Add "Click to collapse/expand" tooltips to the release/section headings */
+      var anchors = document.getElementsByTagName("a");
+      for (var i = 0 ; i < anchors.length; i++) {
+        var anchor = anchors[i];
+        if (anchor.id != '') {
+          if (anchor.id == 'v6.2.1' || anchor.id == 'v6.2.0') {
+            anchor.title = 'Click to collapse';
+          } else {
+            anchor.title = 'Click to expand';
+          }
+        }
+      }
+
+      /* Insert "Expand All" and "Collapse All" buttons */
+      var buttonsParent = document.getElementById('buttons.parent');
+      var expandButton = document.createElement('button');
+      expandButton.appendChild(document.createTextNode('Expand All'));
+      expandButton.onclick = function() { expandAll(); }
+      expandButton.id = 'expand.button';
+      buttonsParent.appendChild(expandButton);
+      var collapseButton = document.createElement('button');
+      collapseButton.appendChild(document.createTextNode('Collapse All'));
+      collapseButton.onclick = function() { collapseAll(); }
+      collapseButton.id = 'collapse.button';
+      buttonsParent.appendChild(collapseButton);
+    }
+
+    window.onload = collapse;
+  </SCRIPT>
+</head>
+<body>
+
+<h1>Lucene Change Log</h1>
+
+<div id="buttons.parent"></div>
+
+      <p>For more information on past and future Lucene versions, please see:
+<a href="http://s.apache.org/luceneversions">http://s.apache.org/luceneversions</a>
+</p>
+<h2><a id="v6.2.1" href="javascript:toggleList('v6.2.1')">Release 6.2.1 </a></h2>
+<ul id="v6.2.1.list">
+  <li><a id="v6.2.1.api_changes" href="javascript:toggleList('v6.2.1.api_changes')">API Changes</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.2.1.api_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7436">LUCENE-7436</a>: MinHashFilter's constructor, and some of its default
+settings, should be public.
+<br /><span class="attrib">(Doug Turnbull via Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.2.1.bug_fixes" href="javascript:toggleList('v6.2.1.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(4)
+    <ol id="v6.2.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7417">LUCENE-7417</a>: The standard Highlighter could throw an IllegalArgumentException when
+trying to highlight a query containing a degenerate case of a MultiPhraseQuery with one
+term.
+<br /><span class="attrib">(Thomas Kappler via David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7440">LUCENE-7440</a>: Document id skipping (PostingsEnum.advance) could throw an
+ArrayIndexOutOfBoundsException exception on large index segments (&gt;1.8B docs)
+with large skips.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7442">LUCENE-7442</a>: MinHashFilter's ctor should validate its args.
+<br /><span class="attrib">(Cao Manh Dat via Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7318">LUCENE-7318</a>: Fix backwards compatibility issues around StandardAnalyzer
+and its components, introduced with Lucene 6.2.0. The moved classes
+were restored in their original packages: LowercaseFilter and StopFilter,
+as well as several utility classes.
+<br /><span class="attrib">(Uwe Schindler, Mike McCandless)</span></li>
+    </ol>
+  </li>
+</ul>
+<h2><a id="v6.2.0" href="javascript:toggleList('v6.2.0')">Release 6.2.0  [2016-08-26]</a></h2>
+<ul id="v6.2.0.list">
+  <li><a id="v6.2.0.api_changes" href="javascript:toggleList('v6.2.0.api_changes')">API Changes</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.2.0.api_changes.list">
+      <li>ScoringWrapperSpans was removed since it had no purpose or effect as of Lucene 5.5.
+<p/>
+</li>
+    </ol>
+  </li>
+  <li><a id="v6.2.0.new_features" href="javascript:toggleList('v6.2.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(11)
+    <ol id="v6.2.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7388">LUCENE-7388</a>: Add point based IntRangeField, FloatRangeField, LongRangeField along with
+supporting queries and tests
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7381">LUCENE-7381</a>: Add point based DoubleRangeField and RangeFieldQuery for
+indexing and querying on Ranges up to 4 dimensions
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6968">LUCENE-6968</a>: LSH Filter
+<br /><span class="attrib">(Tommaso Teofili, Andy Hind, Cao Manh Dat)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7302">LUCENE-7302</a>: IndexWriter methods that change the index now return a
+long "sequence number" indicating the effective equivalent
+single-threaded execution order
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7335">LUCENE-7335</a>: IndexWriter's commit data is now late binding,
+recording key/values from a provided iterable based on when the
+commit actually takes place
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7287">LUCENE-7287</a>: UkrainianMorfologikAnalyzer is a new dictionary-based
+analyzer for the Ukrainian language
+<br /><span class="attrib">(Andriy Rysin via Mike
+McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7373">LUCENE-7373</a>: Directory.renameFile, which did both renaming and fsync
+of the directory metadata, has been deprecated; use the new separate
+methods Directory.rename and Directory.syncMetaData instead
+<br /><span class="attrib">(Robert Muir,
+Uwe Schindler, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7355">LUCENE-7355</a>: Added Analyzer#normalize(), which only applies normalization to
+an input string.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7380">LUCENE-7380</a>: Add Polygon.fromGeoJSON for more easily creating
+Polygon instances from a standard GeoJSON string
+<br /><span class="attrib">(Robert Muir, Mike
+McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7395">LUCENE-7395</a>: PerFieldSimilarityWrapper requires a default similarity
+for calculating query norm and coordination factor in Lucene 6.x.
+Lucene 7 will no longer have those factors.
+<br /><span class="attrib">(Uwe Schindler, Sascha Markus)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9279">SOLR-9279</a>: Queries module: new ComparisonBoolFunction base class
+<br /><span class="attrib">(Doug Turnbull via David Smiley)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.2.0.bug_fixes" href="javascript:toggleList('v6.2.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(8)
+    <ol id="v6.2.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6662">LUCENE-6662</a>: Fixed potential resource leaks.
+<br /><span class="attrib">(Rishabh Patel via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7340">LUCENE-7340</a>: MemoryIndex.toString() could throw NPE; fixed. Renamed to toStringDebug().
+<br /><span class="attrib">(Daniel Collins, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7382">LUCENE-7382</a>: Fix bug introduced by <a href="http://issues.apache.org/jira/browse/LUCENE-7355">LUCENE-7355</a> that used the
+wrong default AttributeFactory for new Tokenizers.
+<br /><span class="attrib">(Terry Smith, Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7389">LUCENE-7389</a>: Fix FieldType.setDimensions(...) validation for the dimensionNumBytes
+parameter.
+<br /><span class="attrib">(Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7391">LUCENE-7391</a>: Fix performance regression in MemoryIndex's fields() introduced
+in Lucene 6.
+<br /><span class="attrib">(Steve Mason via David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7395">LUCENE-7395</a>, <a href="http://issues.apache.org/jira/browse/SOLR-9315">SOLR-9315</a>: Fix PerFieldSimilarityWrapper to also delegate query
+norm and coordination factor using a default similarity added as ctor param.
+<br /><span class="attrib">(Uwe Schindler, Sascha Markus)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9413">SOLR-9413</a>: Fix analysis/kuromoji's CSVUtil.quoteEscape logic, add TestCSVUtil test.
+<br /><span class="attrib">(AppChecker, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7419">LUCENE-7419</a>: Fix performance bug with TokenStream.end(), where it would lookup
+PositionIncrementAttribute every time.
+<br /><span class="attrib">(Mike McCandless, Robert Muir)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.2.0.improvements" href="javascript:toggleList('v6.2.0.improvements')">Improvements</a>&nbsp;&nbsp;&nbsp;(16)
+    <ol id="v6.2.0.improvements.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7323">LUCENE-7323</a>: Compound file writing now verifies the incoming
+sub-files' checkums and segment IDs, to catch hardware issues or
+filesytem bugs earlier
+<br /><span class="attrib">(Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6766">LUCENE-6766</a>: Index time sorting has graduated from the misc module
+to core, is much simpler to use, via
+IndexWriter.setIndexSort, and now works with dimensional points.
+<br /><span class="attrib">(Adrien Grand, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-5931">LUCENE-5931</a>: Detect when an application tries to reopen an
+IndexReader after (illegally) removing the old index and
+reindexing
+<br /><span class="attrib">(Vitaly Funstein, Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6171">LUCENE-6171</a>: Lucene now passes the StandardOpenOption.CREATE_NEW
+option when writing new files so the filesystem enforces our
+write-once architecture, possibly catching externally caused
+issues sooner
+<br /><span class="attrib">(Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7318">LUCENE-7318</a>: StandardAnalyzer has been moved from the analysis
+module into core and is now the default analyzer in
+IndexWriterConfig
+<br /><span class="attrib">(Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7345">LUCENE-7345</a>: RAMDirectory now enforces write-once files as well
+<br /><span class="attrib">(Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7337">LUCENE-7337</a>: MatchNoDocsQuery now scores with 0 normalization factor
+and empty boolean queries now rewrite to MatchNoDocsQuery instead of
+vice/versa
+<br /><span class="attrib">(Jim Ferenczi via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7359">LUCENE-7359</a>: Add equals() and hashCode() to Explanation
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7353">LUCENE-7353</a>: ScandinavianFoldingFilterFactory and
+ScandinavianNormalizationFilterFactory now implement MultiTermAwareComponent.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-2605">LUCENE-2605</a>: Add classic QueryParser option setSplitOnWhitespace() to
+control whether to split on whitespace prior to text analysis.  Default
+behavior remains unchanged: split-on-whitespace=true.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7276">LUCENE-7276</a>: MatchNoDocsQuery now includes an optional reason for
+why it was used
+<br /><span class="attrib">(Jim Ferenczi via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7355">LUCENE-7355</a>: AnalyzingQueryParser now only applies the subset of the analysis
+chain that is about normalization for range/fuzzy/wildcard queries.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7376">LUCENE-7376</a>: Add support for ToParentBlockJoinQuery to fast vector highlighter's
+FieldQuery.
+<br /><span class="attrib">(Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7385">LUCENE-7385</a>: Improve/fix assert messages in SpanScorer.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7393">LUCENE-7393</a>: Add ICUTokenizer option to parse Myanmar text as syllables instead of words,
+because the ICU word-breaking algorithm has some issues. This allows for the previous
+tokenization used before Lucene 5.
+<br /><span class="attrib">(AM, Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7409">LUCENE-7409</a>: Changed MMapDirectory's unmapping to work safer, but still with
+no guarantees. This uses a store-store barrier and yields the current thread
+before unmapping to allow in-flight requests to finish. The new code no longer
+uses WeakIdentityMap as it delegates all ByteBuffer reads throgh a new
+ByteBufferGuard wrapper that is shared between all ByteBufferIndexInput clones.
+<br /><span class="attrib">(Robert Muir, Uwe Schindler)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.2.0.optimizations" href="javascript:toggleList('v6.2.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(7)
+    <ol id="v6.2.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7330">LUCENE-7330</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-7339">LUCENE-7339</a>: Speed up conjunction queries.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7356">LUCENE-7356</a>: SearchGroup tweaks.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7351">LUCENE-7351</a>: Doc id compression for points.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7371">LUCENE-7371</a>: Point values are now better compressed using run-length
+encoding.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7311">LUCENE-7311</a>: Cached term queries do not seek the terms dictionary anymore.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7396">LUCENE-7396</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-7399">LUCENE-7399</a>: Faster flush of points.
+<br /><span class="attrib">(Adrien Grand, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7406">LUCENE-7406</a>: Automaton and PrefixQuery tweaks (fewer object (re)allocations).
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.2.0.other" href="javascript:toggleList('v6.2.0.other')">Other</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.2.0.other.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-4787">LUCENE-4787</a>: Fixed some highlighting javadocs.
+<br /><span class="attrib">(Michael Dodsworth via Adrien
+Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7334">LUCENE-7334</a>: Update ASM dependency to 5.1.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7346">LUCENE-7346</a>: Update forbiddenapis to version 2.2.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7360">LUCENE-7360</a>: Explanation.toHtml() is deprecated.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7372">LUCENE-7372</a>: Factor out an org.apache.lucene.search.FilterWeight class.
+<br /><span class="attrib">(Christine Poerschke, Adrien Grand, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7384">LUCENE-7384</a>: Removed ScoringWrapperSpans. And tweaked SpanWeight.buildSimWeight() to
+reuse the existing Similarity instead of creating a new one.
+<br /><span class="attrib">(David Smiley)</span></li>
+    </ol>
+  </li>
+</ul>
+<h2><a id="older" href="javascript:toggleList('older')">Older Releases</a></h2>
+<ul id="older.list">
+<h3><a id="v6.1.0" href="javascript:toggleList('v6.1.0')">Release 6.1.0  [2016-06-17]</a></h3>
+<ul id="v6.1.0.list">
+  <li><a id="v6.1.0.new_features" href="javascript:toggleList('v6.1.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(5)
+    <ol id="v6.1.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7099">LUCENE-7099</a>: Add LatLonDocValuesField.newDistanceSort to the sandbox.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7140">LUCENE-7140</a>: Add PlanetModel.bisection to spatial3d
+<br /><span class="attrib">(Karl Wright via
+Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7069">LUCENE-7069</a>: Add LatLonPoint.nearest, to find nearest N points to a
+provided query point
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7234">LUCENE-7234</a>: Added InetAddressPoint.nextDown/nextUp to easily generate range
+queries with excluded bounds.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7300">LUCENE-7300</a>: The misc module now has a directory wrapper that uses hard-links if
+applicable and supported when copying files from another FSDirectory in
+Directory#copyFrom.
+<br /><span class="attrib">(Simon Willnauer)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.1.0.api_changes" href="javascript:toggleList('v6.1.0.api_changes')">API Changes</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.1.0.api_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7163">LUCENE-7163</a>: refactor GeoRect, Polygon, and GeoUtils tests to geo
+package in core
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7152">LUCENE-7152</a>: Refactor GeoUtils from lucene-spatial package to
+core
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7141">LUCENE-7141</a>: Switch OfflineSorter's ByteSequencesReader to
+BytesRefIterator
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7150">LUCENE-7150</a>: Spatial3d gets useful APIs to create common shape
+queries, matching LatLonPoint.
+<br /><span class="attrib">(Karl Wright via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7243">LUCENE-7243</a>: Removed the LeafReaderContext parameter from
+QueryCachingPolicy#shouldCache.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7283">LUCENE-7283</a>: SlowCompositeReaderWrapper and the uninverting package have
+been moved to Solr.
+<br /><span class="attrib">(Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.1.0.optimizations" href="javascript:toggleList('v6.1.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(14)
+    <ol id="v6.1.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7071">LUCENE-7071</a>: Reduce bytes copying in OfflineSorter, giving ~10%
+speedup on merging 2D LatLonPoint values
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7105">LUCENE-7105</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-7215">LUCENE-7215</a>: Optimize LatLonPoint's newDistanceQuery.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7097">LUCENE-7097</a>: IntroSorter now recurses to 2 * log_2(count) quicksort
+stack depth before switching to heapsort
+<br /><span class="attrib">(Adrien Grand, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7115">LUCENE-7115</a>: Speed up FieldCache.CacheEntry toString by setting initial
+StringBuilder capacity
+<br /><span class="attrib">(Gregory Chanan)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7147">LUCENE-7147</a>: Improve disjoint check for geo distance query traversal
+<br /><span class="attrib">(Ryan Ernst, Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7153">LUCENE-7153</a>: GeoPointField and LatLonPoint polygon queries now support
+multiple polygons and holes, with memory usage independent of
+polygon complexity.
+<br /><span class="attrib">(Karl Wright, Mike McCandless, Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7159">LUCENE-7159</a>: Speed up LatLonPoint polygon performance.
+<br /><span class="attrib">(Robert Muir, Ryan Ernst)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7211">LUCENE-7211</a>: Reduce memory &amp; GC for spatial RPT Intersects when the number of
+matching docs is small.
+<br /><span class="attrib">(Jeff Wartes, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7235">LUCENE-7235</a>: LRUQueryCache should not take a lock for segments that it will
+not cache on anyway.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7238">LUCENE-7238</a>: Explicitly disable the query cache in MemoryIndex#createSearcher.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7237">LUCENE-7237</a>: LRUQueryCache now prefers returning an uncached Scorer than
+waiting on a lock.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7261">LUCENE-7261</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-7262">LUCENE-7262</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-7264">LUCENE-7264</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-7258">LUCENE-7258</a>: Speed up DocIdSetBuilder
+(which is used by TermsQuery, multi-term queries and several point queries).
+<br /><span class="attrib">(Adrien Grand, Jeff Wartes, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7299">LUCENE-7299</a>: Speed up BytesRefHash.sort() using radix sort.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7306">LUCENE-7306</a>: Speed up points indexing and merging using radix sort.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.1.0.bug_fixes" href="javascript:toggleList('v6.1.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(9)
+    <ol id="v6.1.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7127">LUCENE-7127</a>: Fix corner case bugs in GeoPointDistanceQuery.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7166">LUCENE-7166</a>: Fix corner case bugs in LatLonPoint/GeoPointField bounding box
+queries.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7168">LUCENE-7168</a>: Switch to stable encode for geo3d, remove quantization
+test leniency, remove dead code
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7301">LUCENE-7301</a>: Multiple doc values updates to the same document within
+one update batch could be applied in the wrong order resulting in
+the wrong updated value
+<br /><span class="attrib">(Ishan Chattopadhyaya, hossman, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7312">LUCENE-7312</a>: Fix geo3d's x/y/z double to int encoding to ensure it always
+rounds down
+<br /><span class="attrib">(Karl Wright, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7132">LUCENE-7132</a>: BooleanQuery sometimes assigned too-low scores in cases
+where ranges of documents had only a single clause matching while
+other ranges had more than one clause matching
+<br /><span class="attrib">(Ahmet Arslan,
+hossman, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7286">LUCENE-7286</a>: Added support for highlighting SynonymQuery.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7291">LUCENE-7291</a>: Spatial heatmap faceting could mis-count when the heatmap crosses the
+dateline and indexed non-point shapes are much bigger than the heatmap region.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7333">LUCENE-7333</a>: Fix test bug where randomSimpleString() generated a filename
+that is a reserved device name on Windows.
+<br /><span class="attrib">(Uwe Schindler, Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.1.0.other" href="javascript:toggleList('v6.1.0.other')">Other</a>&nbsp;&nbsp;&nbsp;(9)
+    <ol id="v6.1.0.other.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7295">LUCENE-7295</a>: TermAutomatonQuery.hashCode calculates Automaton.toDot().hash,
+equivalence relationship replaced with object identity.
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7277">LUCENE-7277</a>: Make Query.hashCode and Query.equals abstract.
+<br /><span class="attrib">(Paul Elschot,
+Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7174">LUCENE-7174</a>: Upgrade randomizedtesting to 2.3.4.
+<br /><span class="attrib">(Uwe Schindler, Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7205">LUCENE-7205</a>: Remove repeated nl.getLength() calls in
+(Boolean|DisjunctionMax|FuzzyLikeThis)QueryBuilder.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7210">LUCENE-7210</a>: Make TestCore*Parser's analyzer choice override-able
+<br /><span class="attrib">(Christine Poerschke, Daniel Collins)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7263">LUCENE-7263</a>: Make queryparser/xml/CoreParser's SpanQueryBuilderFactory
+accessible to deriving classes.
+<br /><span class="attrib">(Daniel Collins via Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9109">SOLR-9109</a>/<a href="http://issues.apache.org/jira/browse/SOLR-9121">SOLR-9121</a>: Allow specification of a custom Ivy settings file via system
+property "ivysettings.xml".
+<br /><span class="attrib">(Misha Dmitriev, Christine Poerschke, Uwe Schindler, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7206">LUCENE-7206</a>: Improve the ToParentBlockJoinQuery's explain by including the explain
+of the best matching child doc.
+<br /><span class="attrib">(Ilya Kasnacheev, Jeff Evans via Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7307">LUCENE-7307</a>: Add getters to the PointInSetQuery and PointRangeQuery queries.
+<br /><span class="attrib">(Martijn van Groningen, Adrien Grand)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.1.0.build" href="javascript:toggleList('v6.1.0.build')">Build</a>&nbsp;&nbsp;&nbsp;(2)
+    <ol id="v6.1.0.build.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7292">LUCENE-7292</a>: Use '-release' instead of '-source/-target' during
+compilation on Java 9+ to ensure real cross-compilation.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7296">LUCENE-7296</a>: Update forbiddenapis to version 2.1.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.0.1" href="javascript:toggleList('v6.0.1')">Release 6.0.1  [2016-05-28]</a></h3>
+<ul id="v6.0.1.list">
+  <li><a id="v6.0.1.new_features" href="javascript:toggleList('v6.0.1.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.0.1.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7278">LUCENE-7278</a>: Spatial-extras DateRangePrefixTree's Calendar is now configurable, to
+e.g. clear the Gregorian Change Date.  Also, toString(cal) is now identical to
+DateTimeFormatter.ISO_INSTANT.
+<br /><span class="attrib">(David Smiley)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.1.bug_fixes" href="javascript:toggleList('v6.0.1.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(10)
+    <ol id="v6.0.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7187">LUCENE-7187</a>: Block join queries' Weight#extractTerms(...) implementations
+should delegate to the wrapped weight.
+<br /><span class="attrib">(Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7209">LUCENE-7209</a>: Fixed explanations of FunctionScoreQuery.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7232">LUCENE-7232</a>: Fixed InetAddressPoint.newPrefixQuery, which was generating an
+incorrect query when the prefix length was not a multiple of 8.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7279">LUCENE-7279</a>: JapaneseTokenizer throws ArrayIndexOutOfBoundsException
+on some valid inputs
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7188">LUCENE-7188</a>: remove incorrect sanity check in NRTCachingDirectory.listAll()
+that led to IllegalStateException being thrown when nothing was wrong.
+<br /><span class="attrib">(David Smiley, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7219">LUCENE-7219</a>: Make queryparser/xml (Point|LegacyNumeric)RangeQuery builders
+match the underlying queries' (lower|upper)Term optionality logic.
+<br /><span class="attrib">(Kaneshanathan Srivisagan, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7257">LUCENE-7257</a>: Fixed PointValues#size(IndexReader, String), docCount,
+minPackedValue and maxPackedValue to skip leaves that do not have points
+rather than raising an IllegalStateException.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7284">LUCENE-7284</a>: GapSpans needs to implement positionsCost().
+<br /><span class="attrib">(Daniel Bigham, Alan
+Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7231">LUCENE-7231</a>: WeightedSpanTermExtractor didn't deal correctly with single-term
+phrase queries.
+<br /><span class="attrib">(Eva Popenda, Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7293">LUCENE-7293</a>: Don't try to highlight GeoPoint queries
+<br /><span class="attrib">(Britta Weber,
+Nick Knize, Mike McCandless, Uwe Schindler)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.1.documentation" href="javascript:toggleList('v6.0.1.documentation')">Documentation</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.0.1.documentation.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7223">LUCENE-7223</a>: Improve XXXPoint javadocs to make it clear that you
+should separately add StoredField if you want to retrieve these
+field values at search time
+<br /><span class="attrib">(Greg Huber, Robert Muir, Mike McCandless)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.0.0" href="javascript:toggleList('v6.0.0')">Release 6.0.0  [2016-04-08]</a></h3>
+<ul id="v6.0.0.list">
+  <li><a id="v6.0.0.system_requirements" href="javascript:toggleList('v6.0.0.system_requirements')">System Requirements</a>&nbsp;&nbsp;&nbsp;(2)
+    <ol id="v6.0.0.system_requirements.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-5950">LUCENE-5950</a>: Move to Java 8 as minimum Java version.
+<br /><span class="attrib">(Ryan Ernst, Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6069">LUCENE-6069</a>: Lucene Core now gets compiled with Java 8 "compact1" profile,
+all other modules with "compact2".
+<br /><span class="attrib">(Robert Muir, Uwe Schindler)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.new_features" href="javascript:toggleList('v6.0.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(16)
+    <ol id="v6.0.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6631">LUCENE-6631</a>: Lucene Document classification
+<br /><span class="attrib">(Tommaso Teofili, Alessandro Benedetti)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6747">LUCENE-6747</a>: FingerprintFilter is a TokenFilter that outputs a single
+token which is a concatenation of the sorted and de-duplicated set of
+input tokens. Useful for normalizing short text in clustering/linking
+tasks.
+<br /><span class="attrib">(Mark Harwood, Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6711">LUCENE-6711</a>: Use CollectionStatistics.docCount() for IDF and average field
+length computations, to avoid skew from documents that don't have the field.
+<br /><span class="attrib">(Ahmet Arslan via Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6758">LUCENE-6758</a>: Use docCount+1 for DefaultSimilarity's IDF, so that queries
+containing nonexistent fields won't screw up querynorm.
+<br /><span class="attrib">(Terry Smith, Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7876">SOLR-7876</a>: The QueryTimeout interface now has a isTimeoutEnabled method
+that can return false to exit from ExitableDirectoryReader wrapping at
+the point fields() is called.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6825">LUCENE-6825</a>: Add low-level support for block-KD trees
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6852">LUCENE-6852</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-6975">LUCENE-6975</a>: Add support for points (dimensionally
+indexed values) to index, document and codec APIs, including a
+simple text implementation.
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6861">LUCENE-6861</a>: Create Lucene60Codec, supporting points.
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6879">LUCENE-6879</a>: Allow to define custom CharTokenizer instances without
+subclassing using Java 8 lambdas or method references.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6881">LUCENE-6881</a>: Cutover all BKD implementations to points
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6837">LUCENE-6837</a>: Add N-best output support to JapaneseTokenizer.
+<br /><span class="attrib">(Hiroharu Konno via Christian Moen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6962">LUCENE-6962</a>: Add per-dimension min/max to points
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6975">LUCENE-6975</a>: Add ExactPointQuery, to match a single N-dimensional
+point
+<br /><span class="attrib">(Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6989">LUCENE-6989</a>: Add preliminary support for MMapDirectory unmapping in Java 9.
+<br /><span class="attrib">(Uwe Schindler, Chris Hegarty, Peter Levart)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7040">LUCENE-7040</a>: Upgrade morfologik-stemming to version 2.1.0.
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7048">LUCENE-7048</a>: Add XXXPoint.newSetQuery, to create a query that
+efficiently matches all documents containing any of the specified
+point values.  This is the analog of TermsQuery, but for points
+instead.
+<br /><span class="attrib">(Adrien Grand, Robert Muir, Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.api_changes" href="javascript:toggleList('v6.0.0.api_changes')">API Changes</a>&nbsp;&nbsp;&nbsp;(17)
+    <ol id="v6.0.0.api_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7094">LUCENE-7094</a>: BBoxStrategy and PointVectorStrategy now support
+PointValues (in addition to legacy numeric trie).  Their APIs
+were changed a little and also made more consistent.  PointValues/Trie
+is optional, DocValues is optional, stored value is optional.
+<br /><span class="attrib">(Nick Knize, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6067">LUCENE-6067</a>: Accountable.getChildResources has a default
+implementation returning the empty list.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6583">LUCENE-6583</a>: FilteredQuery has been removed. Instead, you can construct a
+BooleanQuery with one MUST clause for the query, and one FILTER clause for
+the filter.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6651">LUCENE-6651</a>: AttributeImpl#reflectWith(AttributeReflector) was made
+abstract and has no reflection-based default implementation anymore.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6706">LUCENE-6706</a>: PayloadTermQuery and PayloadNearQuery have been removed.
+Instead, use PayloadScoreQuery to wrap any SpanQuery.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6829">LUCENE-6829</a>: OfflineSorter, and the classes that use it (suggesters,
+hunspell) now do all temporary file IO via Directory instead of
+directly through java's temp dir.  Directory.createTempOutput
+creates a uniquely named IndexOutput, and the new
+IndexOutput.getName returns its name
+<br /><span class="attrib">(Dawid Weiss, Robert Muir, Mike
+McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6917">LUCENE-6917</a>: Deprecate and rename NumericXXX classes to
+LegacyNumericXXX in favor of points
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6947">LUCENE-6947</a>: SortField.missingValue is now protected. You can read its
+value using the new SortField.getMissingValue getter.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7028">LUCENE-7028</a>: Remove duplicate method in LegacyNumericUtils.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7052">LUCENE-7052</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-7053">LUCENE-7053</a>: Remove custom comparators from BytesRef
+class and solely use natural byte[] comparator throughout codebase.
+This also simplifies API of BytesRefHash. It also replaces the natural
+comparator in ArrayUtil by Java 8's Comparator#naturalOrder().
+<br /><span class="attrib">(Mike McCandless, Uwe Schindler, Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7060">LUCENE-7060</a>: Update Spatial4j to 0.6.  The package com.spatial4j.core
+is now org.locationtech.spatial4j.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7058">LUCENE-7058</a>: Add getters to various Query implementations
+<br /><span class="attrib">(Guillaume Smet via
+Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7064">LUCENE-7064</a>: MultiPhraseQuery is now immutable and should be constructed
+with MultiPhraseQuery.Builder.
+<br /><span class="attrib">(Luc Vanlerberghe via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7072">LUCENE-7072</a>: Geo3DPoint always uses WGS84 planet model.
+<br /><span class="attrib">(Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7056">LUCENE-7056</a>: Geo3D classes are in different packages now.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6952">LUCENE-6952</a>: These classes are now abstract: FilterCodecReader, FilterLeafReader,
+FilterCollector, FilterDirectory.  And some Filter* classes in
+lucene-test-framework too.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8867">SOLR-8867</a>: FunctionValues.getRangeScorer now takes a LeafReaderContext instead
+of an IndexReader, and avoids matching documents without a value in the field
+for numeric fields.
+<br /><span class="attrib">(yonik)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.optimizations" href="javascript:toggleList('v6.0.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(5)
+    <ol id="v6.0.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6891">LUCENE-6891</a>: Use prefix coding when writing points in
+each leaf block in the default codec, to reduce the index
+size
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6901">LUCENE-6901</a>: Optimize points indexing: use faster
+IntroSorter instead of InPlaceMergeSorter, and specialize 1D
+merging to merge sort the already sorted segments instead of
+re-indexing
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6793">LUCENE-6793</a>: LegacyNumericRangeQuery.hashCode() is now less subject to hash
+collisions.
+<br /><span class="attrib">(J.B. Langston via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7050">LUCENE-7050</a>: TermsQuery is now cached more aggressively by the default
+query caching policy.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7066">LUCENE-7066</a>: PointRangeQuery got optimized for the case that all documents
+have a value and all points from the segment match.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.changes_in_runtime_behavior" href="javascript:toggleList('v6.0.0.changes_in_runtime_behavior')">Changes in Runtime Behavior</a>&nbsp;&nbsp;&nbsp;(3)
+    <ol id="v6.0.0.changes_in_runtime_behavior.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6789">LUCENE-6789</a>: IndexSearcher's default Similarity is changed to BM25Similarity.
+Use ClassicSimilarity to get the old vector space DefaultSimilarity.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6886">LUCENE-6886</a>: Reserve the .tmp file name extension for temp files,
+and codec components are no longer allowed to use this extension
+<br /><span class="attrib">(Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6835">LUCENE-6835</a>: Directory.listAll now returns entries in sorted order,
+to not leak platform-specific behavior, and "retrying file deletion"
+is now the responsibility of Directory.deleteFile, not the caller.
+<br /><span class="attrib">(Robert Muir, Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.tests" href="javascript:toggleList('v6.0.0.tests')">Tests</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.0.0.tests.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7009">LUCENE-7009</a>: Add expectThrows utility to LuceneTestCase. This uses a lambda
+expression to encapsulate a statement that is expected to throw an exception.
+<br /><span class="attrib">(Ryan Ernst)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.bug_fixes" href="javascript:toggleList('v6.0.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(7)
+    <ol id="v6.0.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7065">LUCENE-7065</a>: Fix the explain for the global ordinals join query. Before the
+explain would also indicate that non matching documents would match.
+On top of that with score mode average, the explain would fail with a NPE.
+<br /><span class="attrib">(Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7101">LUCENE-7101</a>: OfflineSorter had O(N^2) merge cost, and used too many
+temporary file descriptors, for large sorts
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7111">LUCENE-7111</a>: DocValuesRangeQuery.newLongRange behaves incorrectly for
+Long.MAX_VALUE and Long.MIN_VALUE
+<br /><span class="attrib">(Ishan Chattopadhyaya via Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7139">LUCENE-7139</a>: Fix bugs in geo3d's Vincenty surface distance
+implementation
+<br /><span class="attrib">(Karl Wright via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7112">LUCENE-7112</a>: WeightedSpanTermExtractor.extractUnknownQuery is only called
+on queries that could not be extracted.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7126">LUCENE-7126</a>: Remove GeoPointDistanceRangeQuery. This query was implemented
+with boolean NOT, and incorrect for multi-valued documents.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7158">LUCENE-7158</a>: Consistently use earth's WGS84 mean radius wherever our
+geo search implementations approximate the earth as a sphere
+<br /><span class="attrib">(Karl
+Wright via Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.other" href="javascript:toggleList('v6.0.0.other')">Other</a>&nbsp;&nbsp;&nbsp;(5)
+    <ol id="v6.0.0.other.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7035">LUCENE-7035</a>: Upgrade icu4j to 56.1/unicode 8.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7087">LUCENE-7087</a>: Let MemoryIndex#fromDocument(...) accept 'Iterable&lt;? extends IndexableField&gt;'
+as document instead of 'Document'.
+<br /><span class="attrib">(Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7091">LUCENE-7091</a>: Add doc values support to MemoryIndex
+<br /><span class="attrib">(Martijn van Groningen, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7093">LUCENE-7093</a>: Add point values support to MemoryIndex
+<br /><span class="attrib">(Martijn van Groningen, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7095">LUCENE-7095</a>: Add point values support to the numeric field query time join.
+<br /><span class="attrib">(Martijn van Groningen, Mike McCandless)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v5.5.3" href="javascript:toggleList('v5.5.3')">Release 5.5.3  [2016-09-09]</a></h3>
+    <ul id="v5.5.3.list">
+      <li>(No Changes)
+</li>
+    </ul>
+<h3><a id="v5.5.2" href="javascript:toggleList('v5.5.2')">Release 5.5.2  [2016-06-25]</a></h3>
+<ul id="v5.5.2.list">
+  <li><a id="v5.5.2.bug_fixes" href="javascript:toggleList('v5.5.2.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(11)
+    <ol id="v5.5.2.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7065">LUCENE-7065</a>: Fix the explain for the global ordinals join query. Before the
+explain would also indicate that non matching documents would match.
+On top of that with score mode average, the explain would fail with a NPE.
+<br /><span class="attrib">(Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7111">LUCENE-7111</a>: DocValuesRangeQuery.newLongRange behaves incorrectly for
+Long.MAX_VALUE and Long.MIN_VALUE
+<br /><span class="attrib">(Ishan Chattopadhyaya via Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7139">LUCENE-7139</a>: Fix bugs in geo3d's Vincenty surface distance
+implementation
+<br /><span class="attrib">(Karl Wright via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7187">LUCENE-7187</a>: Block join queries' Weight#extractTerms(...) implementations
+should delegate to the wrapped weight.
+<br /><span class="attrib">(Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7279">LUCENE-7279</a>: JapaneseTokenizer throws ArrayIndexOutOfBoundsException
+on some valid inputs
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7219">LUCENE-7219</a>: Make queryparser/xml (Point|LegacyNumeric)RangeQuery builders
+match the underlying queries' (lower|upper)Term optionality logic.
+<br /><span class="attrib">(Kaneshanathan Srivisagan, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7284">LUCENE-7284</a>: GapSpans needs to implement positionsCost().
+<br /><span class="attrib">(Daniel Bigham, Alan
+Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7231">LUCENE-7231</a>: WeightedSpanTermExtractor didn't deal correctly with single-term
+phrase queries.
+<br /><span class="attrib">(Eva Popenda, Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7301">LUCENE-7301</a>: Multiple doc values updates to the same document within
+one update batch could be applied in the wrong order resulting in
+the wrong updated value
+<br /><span class="attrib">(Ishan Chattopadhyaya, hossman, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7132">LUCENE-7132</a>: BooleanQuery sometimes assigned too-low scores in cases
+where ranges of documents had only a single clause matching while
+other ranges had more than one clause matching
+<br /><span class="attrib">(Ahmet Arslan,
+hossman, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7291">LUCENE-7291</a>: Spatial heatmap faceting could mis-count when the heatmap crosses the
+dateline and indexed non-point shapes are much bigger than the heatmap region.
+<br /><span class="attrib">(David Smiley)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v5.5.1" href="javascript:toggleList('v5.5.1')">Release 5.5.1  [2016-05-05]</a></h3>
+<ul id="v5.5.1.list">
+  <li><a id="v5.5.1.bug_fixes" href="javascript:toggleList('v5.5.1.bug_fixes')">Bug fixes</a>&nbsp;&nbsp;&nbsp;(3)
+    <ol id="v5.5.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7112">LUCENE-7112</a>: WeightedSpanTermExtractor.extractUnknownQuery is only called
+on queries that could not be extracted.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7188">LUCENE-7188</a>: remove incorrect sanity check in NRTCachingDirectory.listAll()
+that led to IllegalStateException being thrown when nothing was wrong.
+<br /><span class="attrib">(David Smiley, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7209">LUCENE-7209</a>: Fixed explanations of FunctionScoreQuery.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v5.5.0" href="javascript:toggleList('v5.5.0')">Release 5.5.0  [2016-02-23]</a></h3>
+<ul id="v5.5.0.list">
+  <li><a id="v5.5.0.new_features" href="javascript:toggleList('v5.5.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v5.5.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-5868">LUCENE-5868</a>: JoinUtil.createJoinQuery(..,NumericType,..) query-time join
+for LONG and INT fields with NUMERIC and SORTED_NUMERIC doc values.
+<br /><span class="attrib">(Alexey Zelin via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6939">LUCENE-6939</a>: Add exponential reciprocal scoring to
+BlendedInfixSuggester, to even more strongly favor suggestions that
+match closer to the beginning
+<br /><span class="attrib">(Arcadius Ahouansou via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6958">LUCENE-6958</a>: Improved CustomAnalyzer to take class references to factories
+as alternative to their SPI name. This enables compile-time safety when
+defining analyzer's components.
+<br /><span class="attrib">(Uwe Schindler, Shai Erera)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6818">LUCENE-6818</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-6986">LUCENE-6986</a>: Add DFISimilarity implementing the divergence
+from independence model.
+<br /><span class="attrib">(Ahmet Arslan via Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-4619">SOLR-4619</a>: Added removeAllAttributes() to AttributeSource, which removes
+all previously added attributes.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7010">LUCENE-7010</a>: Added MergePolicyWrapper to allow easy wrapping of other policies.
+<br /><span class="attrib">(Shai Erera)</span></li>
+    </ol>
+  </li>
+  <li><a id="v5.5.0.api_changes" href="javascript:toggleList('v5.5.0.api_changes')">API Changes</a>&nbsp;&nbsp;&nbsp;(10)
+    <ol id="v5.5.0.api_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6997">LUCENE-6997</a>: refactor sandboxed GeoPointField and query classes to lucene-spatial
+module under new lucene.spatial.geopoint package
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6908">LUCENE-6908</a>: GeoUtils static relational methods have been refactored to new
+GeoRelationUtils and now correctly handle large irregular rectangles, and
+pole crossing distance queries.
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6900">LUCENE-6900</a>: Grouping sortWithinGroup variables used to allow null to mean
+Sort.RELEVANCE.  Null is no longer permitted.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6919">LUCENE-6919</a>: The Scorer class has been refactored to expose an iterator
+instead of extending DocIdSetIterator. asTwoPhaseIterator() has been renamed
+to twoPhaseIterator() for consistency.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6973">LUCENE-6973</a>: TeeSinkTokenFilter no longer accepts a SinkFilter (the latter
+has been removed). If you wish to filter the sinks, you can wrap them with
+any other TokenFilter (e.g. a FilteringTokenFilter). Also, you can no longer
+add a SinkTokenStream to an existing TeeSinkTokenFilter. If you need to
+share multiple streams with a single sink, chain them with multiple
+TeeSinkTokenFilters.
+DateRecognizerSinkFilter was renamed to DateRecognizerFilter and moved under
+analysis/common. TokenTypeSinkFilter was removed (use TypeTokenFilter instead).
+TokenRangeSinkFilter was removed.
+<br /><span class="attrib">(Shai Erera, Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6980">LUCENE-6980</a>: Default applyAllDeletes to true when opening
+near-real-time readers
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6981">LUCENE-6981</a>: SpanQuery.getTermContexts() helper methods are now public, and
+SpanScorer has a public getSpans() method.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6932">LUCENE-6932</a>: IndexInput.seek implementations now throw EOFException
+if you seek beyond the end of the file
+<br /><span class="attrib">(Adrien Grand, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6988">LUCENE-6988</a>: IndexableField.tokenStream() no longer throws IOException
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7028">LUCENE-7028</a>: Deprecate a duplicate method in NumericUtils.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+    </ol>
+  </li>
+  <li><a id="v5.5.0.optimizations" href="javascript:toggleList('v5.5.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(9)
+    <ol id="v5.5.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6930">LUCENE-6930</a>: Decouple GeoPointField from NumericType by using a custom
+and efficient GeoPointTokenStream and TermEnum designed for GeoPoint prefix
+terms.
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6951">LUCENE-6951</a>: Improve GeoPointInPolygonQuery using point orientation based
+line crossing algorithm, and adding result for multi-value docs when least
+1 point satisfies polygon criteria.
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6889">LUCENE-6889</a>: BooleanQuery.rewrite now performs some query optimization, in
+particular to rewrite queries that look like: "+*:* #filter" to a
+"ConstantScore(filter)".
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6912">LUCENE-6912</a>: Grouping's Collectors now calculate a response to needsScores()
+instead of always 'true'.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6815">LUCENE-6815</a>: DisjunctionScorer now advances two-phased iterators lazily,
+stopping to evaluate them as soon as a single one matches. The other iterators
+will be confirmed lazily when computing score() or freq().
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6926">LUCENE-6926</a>: MUST_NOT clauses now use the match cost API to run the slow bits
+last whenever possible.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6944">LUCENE-6944</a>: BooleanWeight no longer creates sub-scorers if BS1 is not
+applicable.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6940">LUCENE-6940</a>: MUST_NOT clauses execute faster, especially when they are sparse.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6470">LUCENE-6470</a>: Improve efficiency of TermsQuery constructors.
+<br /><span class="attrib">(Robert Muir)</span></li>
+    </ol>
+  </li>
+  <li><a id="v5.5.0.bug_fixes" href="javascript:toggleList('v5.5.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(10)
+    <ol id="v5.5.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6976">LUCENE-6976</a>: BytesRefTermAttributeImpl.copyTo NPE'ed if BytesRef was null.
+Added equals &amp; hashCode, and a new test for these things.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6932">LUCENE-6932</a>: RAMDirectory's IndexInput was failing to throw
+EOFException in some cases
+<br /><span class="attrib">(Stéphane Campinas, Adrien Grand via Mike
+McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6896">LUCENE-6896</a>: Don't treat the smallest possible norm value as an infinitely
+long document in SimilarityBase or BM25Similarity. Add more warnings to sims
+that will not work well with extreme tf values.
+<br /><span class="attrib">(Ahmet Arslan, Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6984">LUCENE-6984</a>: SpanMultiTermQueryWrapper no longer modifies its wrapped query.
+<br /><span class="attrib">(Alan Woodward, Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6998">LUCENE-6998</a>: Fix a couple places to better detect truncated index files
+as corruption.
+<br /><span class="attrib">(Robert Muir, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7002">LUCENE-7002</a>: Fixed MultiCollector to not throw a NPE if setScorer is called
+after one of the sub collectors is done collecting.
+<br /><span class="attrib">(John Wang, Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7027">LUCENE-7027</a>: Fixed NumericTermAttribute to not throw IllegalArgumentException
+after NumericTokenStream was exhausted.
+<br /><span class="attrib">(Uwe Schindler, Lee Hinman,
+Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7018">LUCENE-7018</a>: Fix GeoPointTermQueryConstantScoreWrapper to add document on
+first GeoPointField match.
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7019">LUCENE-7019</a>: Add two-phase iteration to GeoPointTermQueryConstantScoreWrapper.
+<br /><span class="attrib">(Robert Muir via Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6989">LUCENE-6989</a>: Improve MMapDirectory's unmapping checks to catch more non-working
+cases. The unmap-hack does not yet work with recent Java 9. Official support
+will come with Lucene 6.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+    </ol>
+  </li>
+  <li><a id="v5.5.0.other" href="javascript:toggleList('v5.5.0.other')">Other</a>&nbsp;&nbsp;&nbsp;(15)
+    <ol id="v5.5.0.other.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6924">LUCENE-6924</a>: Upgrade randomizedtesting to 2.3.2.
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6920">LUCENE-6920</a>: Improve custom function checks in expressions module
+to use MethodHandles and work without extra security privileges.
+<br /><span class="attrib">(Uwe Schindler, Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6921">LUCENE-6921</a>: Fix SPIClassIterator#isParentClassLoader to don't
+require extra permissions.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6923">LUCENE-6923</a>: Fix RamUsageEstimator to access private fields inside
+AccessController block for computing size.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6907">LUCENE-6907</a>: make TestParser extendable, rename test/.../xml/
+NumericRangeQueryQuery.xml to NumericRangeQuery.xml
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6925">LUCENE-6925</a>: add ForceMergePolicy class in test-framework
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6945">LUCENE-6945</a>: factor out TestCorePlus(Queries|Extensions)Parser from
+TestParser, rename TestParser to TestCoreParser
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6949">LUCENE-6949</a>: fix (potential) resource leak in SynonymFilterFactory
+(<a href="https://scan.coverity.com/projects/5620">https://scan.coverity.com/projects/5620</a> CID 120656)
+(Christine Poerschke, Coverity Scan (via Rishabh Patel))
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6961">LUCENE-6961</a>: Improve Exception handling in AnalysisFactories /
+AnalysisSPILoader: Don't wrap exceptions occuring in factory's
+ctor inside InvocationTargetException.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6965">LUCENE-6965</a>: Expression's JavascriptCompiler now throw ParseException
+with bad function names or bad arity instead of IllegalArgumentException.
+<br /><span class="attrib">(Tomás Fernández Löbbe, Uwe Schindler, Ryan Ernst)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6964">LUCENE-6964</a>: String-based signatures in JavascriptCompiler replaced
+with better compile-time-checked MethodType; generated class files
+are no longer marked as synthetic.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6978">LUCENE-6978</a>: Refactor several code places that lookup locales
+by string name to use BCP47 locale tag instead. LuceneTestCase
+now also prints locales on failing tests this way.
+Locale#forLanguageTag() and Locale#toString() were placed on list
+of forbidden signatures.
+<br /><span class="attrib">(Uwe Schindler, Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6988">LUCENE-6988</a>: You can now add IndexableFields directly to a MemoryIndex,
+and create a MemoryIndex from a lucene Document.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7005">LUCENE-7005</a>: TieredMergePolicy tweaks (&gt;= vs. &gt;, @see get vs. set)
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7006">LUCENE-7006</a>: increase BaseMergePolicyTestCase use (TestNoMergePolicy and
+TestSortingMergePolicy now extend it, TestUpgradeIndexMergePolicy added)
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v5.4.1" href="javascript:toggleList('v5.4.1')">Release 5.4.1  [2016-01-23]</a></h3>
+<ul id="v5.4.1.list">
+  <li><a id="v5.4.1.bug_fixes" href="javascript:toggleList('v5.4.1.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(9)
+    <ol id="v5.4.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6910">LUCENE-6910</a>: fix 'if ... &gt; Integer.MAX_VALUE' check in
+(Binary|Numeric)DocValuesFieldUpdates.merge
+(<a href="https://scan.coverity.com/projects/5620">https://scan.coverity.com/projects/5620</a> CID 119973 and CID 120081)
+(Christine Poerschke, Coverity Scan (via Rishabh Patel))
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6946">LUCENE-6946</a>: SortField.equals now takes the missingValue parameter into
+account.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6918">LUCENE-6918</a>: LRUQueryCache.onDocIdSetEviction is only called when at least
+one DocIdSet is being evicted.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6929">LUCENE-6929</a>: Fix SpanNotQuery rewriting to not drop the pre/post parameters.
+<br /><span class="attrib">(Tim Allison via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6950">LUCENE-6950</a>: Fix FieldInfos handling of UninvertingReader, e.g. do not
+hide the true docvalues update generation or other properties.
+<br /><span class="attrib">(Ishan Chattopadhyaya via Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6948">LUCENE-6948</a>: Fix ArrayIndexOutOfBoundsException in PagedBytes$Reader.fill
+by removing an unnecessary long-to-int cast.
+<br /><span class="attrib">(Michael Lawley via Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7865">SOLR-7865</a>: BlendedInfixSuggester was returning too many results
+<br /><span class="attrib">(Arcadius Ahouansou via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6970">LUCENE-6970</a>: Fixed off-by-one error in Lucene54DocValuesProducer that could
+potentially corrupt doc values.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-2229">LUCENE-2229</a>: Fix Highlighter's SimpleSpanFragmenter when multiple adjacent
+stop words following a span can unduly make the fragment way too long.
+<br /><span class="attrib">(Elmer Garduno, Lukhnos Liu via David Smiley)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v5.4.0" href="javascript:toggleList('v5.4.0')">Release 5.4.0  [2015-12-14]</a></h3>
+<ul id="v5.4.0.list">
+  <li><a id="v5.4.0.new_features" href="javascript:toggleList('v5.4.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(9)
+    <ol id="v5.4.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6875">LUCENE-6875</a>: New Serbian Filter.
+<br /><span class="attrib">(Nikola Smolenski via Robert Muir,
+Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6720">LUCENE-6720</a>: New FunctionRangeQuery wrapper around ValueSourceScorer
+(returned from ValueSource/FunctionValues.getRangeScorer()).
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6724">LUCENE-6724</a>: Add utility APIs to GeoHashUtils to compute neighbor
+geohash cells
+<br /><span class="attrib">(Nick Knize via Mike McCandless)</span>.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6737">LUCENE-6737</a>: Add DecimalDigitFilter which folds unicode digits to basic latin.
+<br /><span class="attrib">(Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6699">LUCENE-6699</a>: Add integration of BKD tree and geo3d APIs to give
+fast, very accurate query to find all indexed points within an
+earth-surface shape
+<br /><span class="attrib">(Karl Wright, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6838">LUCENE-6838</a>: Added IndexSearcher#getQueryCache and #getQueryCachingPolicy.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6844">LUCENE-6844</a>: PayloadScoreQuery can include or exclude underlying span scores
+from its score calculations
+<br /><span class="attrib">(Bill Bell, Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6778">LUCENE-6778</a>: Add GeoPointDistanceRangeQuery, to search for points
+within a "ring" (beyond a minimum distance and below a maximum
+distance)
+<br /><span class="attrib">(Nick Knize via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6874">LUCENE-6874</a>: Add a new UnicodeWhitespaceTokenizer to analysis/common
+that uses Unicode character properties extracted from ICU4J to tokenize
+text on whitespace. This tokenizer will split on non-breaking
+space (NBSP), too.
+<br /><span class="attrib">(David Smiley, Uwe Schindler, Steve Rowe)</span></li>
+    </ol>
+  </li>
+  <li><a id="v5.4.0.api_changes" href="javascript:toggleList('v5.4.0.api_changes')">API Changes</a>&nbsp;&nbsp;&nbsp;(12)
+    <ol id="v5.4.0.api_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6590">LUCENE-6590</a>: Query.setBoost(), Query.getBoost() and Query.clone() are gone.
+In order to apply boosts, you now need to wrap queries in a BoostQuery.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6716">LUCENE-6716</a>: SpanPayloadCheckQuery now takes a List&lt;BytesRef&gt; rather than
+a Collection&lt;byte[]&gt;.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6489">LUCENE-6489</a>: The various span payload queries have been moved to the queries
+submodule, and PayloadSpanUtil is now in sandbox.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6650">LUCENE-6650</a>: The spatial module no longer uses Filter in any way.  All
+spatial Filters are now subclass Query.  The spatial heatmap/facet API
+now accepts a Bits parameter to filter counts.
+<br /><span class="attrib">(David Smiley, Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6803">LUCENE-6803</a>: Deprecate sandbox Regexp Query.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6301">LUCENE-6301</a>: org.apache.lucene.search.Filter is now deprecated. You should use
+Query objects instead of Filters, and the BooleanClause.Occur.FILTER clause in
+order to let Lucene know that a Query should be used for filtering but not
+scoring.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6939">LUCENE-6939</a>: SpanOrQuery.addClause is now deprecated, clauses should all be
+provided at construction time.
+<br /><span class="attrib">(Paul Elschot via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6855">LUCENE-6855</a>: CachingWrapperQuery is deprecated and will be removed in 6.0.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6870">LUCENE-6870</a>: DisjunctionMaxQuery#add is now deprecated, clauses should all be
+provided at construction time.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6884">LUCENE-6884</a>: Analyzer.tokenStream() and Tokenizer.setReader() are no longer
+declared as throwing IOException.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6849">LUCENE-6849</a>: Expose IndexWriter.flush() method, to move all
+in-memory segments to disk without opening a near-real-time reader
+nor calling fsync
+<br /><span class="attrib">(Robert Muir, Simon Willnauer, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6911">LUCENE-6911</a>: Add correct StandardQueryParser.getMultiFields() method,
+deprecate no-op StandardQueryParser.getMultiFields(CharSequence[]) method.
+(Christine Poerschke, Mikhail Khludnev, Coverity Scan (via Rishabh Patel))
+<p/>
+</li>
+    </ol>
+  </li>
+  <li><a id="v5.4.0.optimizations" href="javascript:toggleList('v5.4.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(18)
+    <ol id="v5.4.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6708">LUCENE-6708</a>: TopFieldCollector does not compute the score several times on the
+same document anymore.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6720">LUCENE-6720</a>: ValueSourceScorer, returned from
+FunctionValues.getRangeScorer(), now uses TwoPhaseIterator.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6756">LUCENE-6756</a>: MatchAllDocsQuery now has a dedicated BulkScorer for better
+performance when used as a top-level query.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6746">LUCENE-6746</a>: DisjunctionMaxQuery, BoostingQuery and BoostedQuery now create
+sub weights through IndexSearcher so that they can be cached.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6754">LUCENE-6754</a>: Optimized IndexSearcher.count for the cases when it can use
+index statistics instead of collecting all matches.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6773">LUCENE-6773</a>: Nested conjunctions now iterate over documents as if clauses
+were all at the same level.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6777">LUCENE-6777</a>: Reuse BytesRef when visiting term ranges in
+GeoPointTermsEnum to reduce GC pressure
+<br /><span class="attrib">(Nick Knize via Mike
+McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6779">LUCENE-6779</a>: Reduce memory allocated by CompressingStoredFieldsWriter to write
+strings larger than 64kb by an amount equal to string's utf8 size.
+<br /><span class="attrib">(Dawid Weiss, Robert Muir, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6850">LUCENE-6850</a>: Optimize BooleanScorer for sparse clauses.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6840">LUCENE-6840</a>: Ordinal indexes for SORTED_SET/SORTED_NUMERIC fields and
+addresses for BINARY fields are now stored on disk instead of in memory.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6878">LUCENE-6878</a>: Speed up TopDocs.merge.
+<br /><span class="attrib">(Daniel Jelinski via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6885">LUCENE-6885</a>: StandardDirectoryReader (initialCapacity) tweaks
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6863">LUCENE-6863</a>: Optimized storage requirements of doc values fields when less
+than 1% of documents have a value.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6892">LUCENE-6892</a>: various lucene.index initialCapacity tweaks
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6276">LUCENE-6276</a>: Added TwoPhaseIterator.matchCost() which allows to confirm the
+least costly TwoPhaseIterators first.
+<br /><span class="attrib">(Paul Elschot via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6898">LUCENE-6898</a>: In the default codec, the last stored field value will not
+be fully read from disk if the supplied StoredFieldVisitor doesn't want it.
+So put your largest text field value last to benefit.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6909">LUCENE-6909</a>: Remove unnecessary synchronized from
+FacetsConfig.getDimConfig for better concurrency
+<br /><span class="attrib">(Sanne Grinovero
+via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7730">SOLR-7730</a>: Speed up SlowCompositeReaderWrapper.getSortedSetDocValues() by
+avoiding merging FieldInfos just to check doc value type.
+<br /><span class="attrib">(Paul Vasilyev, Yuriy Pakhomov, Mikhail Khludnev, yonik)</span></li>
+    </ol>
+  </li>
+  <li><a id="v5.4.0.bug_fixes" href="javascript:toggleList('v5.4.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(19)
+    <ol id="v5.4.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6905">LUCENE-6905</a>: Unwrap center longitude for dateline crossing
+GeoPointDistanceQuery.
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6817">LUCENE-6817</a>: ComplexPhraseQueryParser.ComplexPhraseQuery does not display
+slop in toString().
+<br /><span class="attrib">(Ahmet Arslan via Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6730">LUCENE-6730</a>: Hyper-parameter c is ignored in term frequency NormalizationH1.
+<br /><span class="attrib">(Ahmet Arslan via Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6742">LUCENE-6742</a>: Lovins &amp; Finnish implementation of SnowballFilter was
+fixed to behave exactly as specified. A bug in the snowball compiler
+caused differences in output of the filter in comparison to the original
+test data.  In addition, the performance of those filters was improved
+significantly.
+<br /><span class="attrib">(Uwe Schindler, Robert Muir)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6783">LUCENE-6783</a>: Removed side effects from FuzzyLikeThisQuery.rewrite.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6776">LUCENE-6776</a>: Fix geo3d math to handle randomly squashed planet
+models
+<br /><span class="attrib">(Karl Wright via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6792">LUCENE-6792</a>: Fix TermsQuery.toString() to work with binary terms.
+<br /><span class="attrib">(Ruslan Muzhikov, Robert Muir)</span></li>

[... 12891 lines stripped ...]