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

svn commit: r25383 [3/20] - in /dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b: ./ 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.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/lucene/changes/Changes.html
==============================================================================
--- dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/lucene/changes/Changes.html (added)
+++ dev/lucene/lucene-solr-6.6.3-RC1-revd1e9bbd333ea55cfa0c75d324424606e857a775b/lucene/changes/Changes.html Fri Mar  2 22:08:13 2018
@@ -0,0 +1,14967 @@
+<!--
+**********************************************************
+** 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\\\\.6\\\\.3|v6\\\\.6\\\\.2)");
+    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.6.3.list' 
+            && list.id != 'v6.6.2.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.6.3' || anchor.id == 'v6.6.2') {
+            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.6.3" href="javascript:toggleList('v6.6.3')">Release 6.6.3 </a></h2>
+<ul id="v6.6.3.list">
+  <li><a id="v6.6.3.build" href="javascript:toggleList('v6.6.3.build')">Build</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.6.3.build.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6144">LUCENE-6144</a>: Upgrade Ivy to 2.4.0; 'ant ivy-bootstrap' now removes old Ivy
+jars in ~/.ant/lib/.
+<br /><span class="attrib">(Shawn Heisey, Steve Rowe)</span></li>
+    </ol>
+  </li>
+</ul>
+<h2><a id="v6.6.2" href="javascript:toggleList('v6.6.2')">Release 6.6.2  [2017-10-18]</a></h2>
+<ul id="v6.6.2.list">
+  <li><a id="v6.6.2.changes_in_runtime_behavior" href="javascript:toggleList('v6.6.2.changes_in_runtime_behavior')">Changes in Runtime Behavior</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.6.2.changes_in_runtime_behavior.list">
+      <li>Resolving of external entities in queryparser/xml/CoreParser is disallowed
+by default. See <a href="http://issues.apache.org/jira/browse/SOLR-11477">SOLR-11477</a> for details.
+<p/>
+</li>
+    </ol>
+  </li>
+  <li><a id="v6.6.2.bug_fixes" href="javascript:toggleList('v6.6.2.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.6.2.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-11477">SOLR-11477</a>: Disallow resolving of external entities in queryparser/xml/CoreParser
+by default.
+<br /><span class="attrib">(Michael Stepankin, Olga Barinova, Uwe Schindler, Christine Poerschke)</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.6.1" href="javascript:toggleList('v6.6.1')">Release 6.6.1  [2017-09-07]</a></h3>
+<ul id="v6.6.1.list">
+  <li><a id="v6.6.1.bug_fixes" href="javascript:toggleList('v6.6.1.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(2)
+    <ol id="v6.6.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7869">LUCENE-7869</a>: Changed MemoryIndex to sort 1d points. In case of 1d points, the PointInSetQuery.MergePointVisitor expects
+that these points are visited in ascending order. The memory index doesn't do this and this can result in document
+with multiple points that should match to not match.
+<br /><span class="attrib">(Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7878">LUCENE-7878</a>: Fix query builder to keep the SHOULD clause that wraps multi-word synonyms.
+<br /><span class="attrib">(Jim Ferenczi)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.6.0" href="javascript:toggleList('v6.6.0')">Release 6.6.0  [2017-06-06]</a></h3>
+<ul id="v6.6.0.list">
+  <li><a id="v6.6.0.new_features" href="javascript:toggleList('v6.6.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.6.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7811">LUCENE-7811</a>: Add a concurrent SortedSet facets implementation.
+<br /><span class="attrib">(Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.6.0.bug_fixes" href="javascript:toggleList('v6.6.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(14)
+    <ol id="v6.6.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7777">LUCENE-7777</a>: ByteBlockPool.readBytes sometimes throws
+ArrayIndexOutOfBoundsException when byte blocks larger than 32 KB
+were added
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7797">LUCENE-7797</a>: The static FSDirectory.listAll(Path) method was always
+returning an empty array.
+<br /><span class="attrib">(Atkins Chang via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7481">LUCENE-7481</a>: Fixed missing rewrite methods for SpanPayloadCheckQuery
+and PayloadScoreQuery.
+<br /><span class="attrib">(Erik Hatcher)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7808">LUCENE-7808</a>: Fixed PayloadScoreQuery and SpanPayloadCheckQuery
+.equals and .hashCode methods.
+<br /><span class="attrib">(Erik Hatcher)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7798">LUCENE-7798</a>: Add .equals and .hashCode to ToParentBlockJoinSortField
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7814">LUCENE-7814</a>: DateRangePrefixTree (in spatial-extras) had edge-case bugs for
+years &gt;= 292,000,000.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-5365">LUCENE-5365</a>, <a href="http://issues.apache.org/jira/browse/LUCENE-7818">LUCENE-7818</a>: Fix incorrect condition in queryparser's
+QueryNodeOperation#logicalAnd().
+<br /><span class="attrib">(Olivier Binda, Amrit Sarkar,
+AppChecker via Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7821">LUCENE-7821</a>: The classic and flexible query parsers, as well as Solr's
+ "lucene"/standard query parser, should require " TO " in range queries,
+and accept "TO" as endpoints in range queries.
+<br /><span class="attrib">(hossman, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7824">LUCENE-7824</a>: Fix graph query analysis for multi-word synonym rules with common terms (eg. new york, new york city).
+<br /><span class="attrib">(Jim Ferenczi)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7817">LUCENE-7817</a>: Pass cached query to onQueryCache instead of null.
+<br /><span class="attrib">(Christoph Kaser via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7831">LUCENE-7831</a>: CodecUtil should not seek to negative offsets.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7833">LUCENE-7833</a>: ToParentBlockJoinQuery computed the min score instead of the max
+score with ScoreMode.MAX.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7847">LUCENE-7847</a>: Fixed all-docs-match optimization of range queries on range
+fields.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7810">LUCENE-7810</a>: Fix equals() and hashCode() methods of several join queries.
+<br /><span class="attrib">(Hossman, Adrien Grand, Martijn van Groningen)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.6.0.improvements" href="javascript:toggleList('v6.6.0.improvements')">Improvements</a>&nbsp;&nbsp;&nbsp;(5)
+    <ol id="v6.6.0.improvements.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7782">LUCENE-7782</a>: OfflineSorter now passes the total number of items it
+will write to getWriter
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7785">LUCENE-7785</a>: Move dictionary for Ukrainian analyzer to external dependency.
+<br /><span class="attrib">(Andriy Rysin via Steve Rowe, Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7801">LUCENE-7801</a>: SortedSetDocValuesReaderState now implements
+Accountable so you can see how much RAM it's using
+<br /><span class="attrib">(Robert Muir,
+Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7792">LUCENE-7792</a>: OfflineSorter can now run concurrently if you pass it
+an optional ExecutorService
+<br /><span class="attrib">(Dawid Weiss, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7811">LUCENE-7811</a>: Sorted set facets now use sparse storage when
+collecting hits, when appropriate.
+<br /><span class="attrib">(Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.6.0.optimizations" href="javascript:toggleList('v6.6.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.6.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7787">LUCENE-7787</a>: spatial-extras HeatmapFacetCounter will now short-circuit it's
+work when Bits.MatchNoBits is passed.
+<br /><span class="attrib">(David Smiley)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.6.0.other" href="javascript:toggleList('v6.6.0.other')">Other</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.6.0.other.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7796">LUCENE-7796</a>: Make IOUtils.reThrow idiom declare Error return type so
+callers may use it in a way that compiler knows subsequent code is
+unreachable. reThrow is now deprecated in favor of IOUtils.rethrowAlways
+with a slightly different semantics (see javadoc).
+<br /><span class="attrib">(Hossman, Robert Muir,
+Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7754">LUCENE-7754</a>: Inner classes should be static whenever possible.
+<br /><span class="attrib">(Daniel Jelinski via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7751">LUCENE-7751</a>: Avoid boxing primitives only to call compareTo.
+<br /><span class="attrib">(Daniel Jelinski via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7743">LUCENE-7743</a>: Never call new String(String).
+<br /><span class="attrib">(Daniel Jelinski via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7761">LUCENE-7761</a>: Fixed comment in ReqExclScorer.
+<br /><span class="attrib">(Pablo Pita Leira via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7815">LUCENE-7815</a>: Deprecate the PostingsHighlighter. It evolved into the
+UnifiedHighlighter.
+<br /><span class="attrib">(David Smiley)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.5.1" href="javascript:toggleList('v6.5.1')">Release 6.5.1  [2017-04-27]</a></h3>
+<ul id="v6.5.1.list">
+  <li><a id="v6.5.1.bug_fixes" href="javascript:toggleList('v6.5.1.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(4)
+    <ol id="v6.5.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7755">LUCENE-7755</a>: Fixed join queries to not reference IndexReaders, as it could
+cause leaks if they are cached.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7749">LUCENE-7749</a>: Made LRUQueryCache delegate the scoreSupplier method.
+<br /><span class="attrib">(Martin Amirault via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7769">LUCENE-7769</a>: The UnifiedHighligter wasn't highlighting portions of the query
+wrapped in BoostQuery or SpanBoostQuery.
+<br /><span class="attrib">(David Smiley, Dmitry Malinin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7791">LUCENE-7791</a>: Fixed index sorting to work with sparse numeric and binary docvalues field.
+<br /><span class="attrib">(Przemyslaw Szeremiota via Jim Ferenczi)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.5.1.other" href="javascript:toggleList('v6.5.1.other')">Other</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.5.1.other.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7763">LUCENE-7763</a>: Remove outdated comment in IndexWriterConfig.setIndexSort javadocs.
+<br /><span class="attrib">(马可阳 via Christine Poerschke)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.5.0" href="javascript:toggleList('v6.5.0')">Release 6.5.0  [2017-03-27]</a></h3>
+<ul id="v6.5.0.list">
+  <li><a id="v6.5.0.api_changes" href="javascript:toggleList('v6.5.0.api_changes')">API Changes</a>&nbsp;&nbsp;&nbsp;(12)
+    <ol id="v6.5.0.api_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7740">LUCENE-7740</a>: Refactor Range Fields to remove Field suffix (e.g., DoubleRange),
+move InetAddressRange and InetAddressPoint from sandbox to misc module, and
+refactor all other range fields from sandbox to core.
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7624">LUCENE-7624</a>: TermsQuery has been renamed as TermInSetQuery and moved to core.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7637">LUCENE-7637</a>: TermInSetQuery requires that all terms come from the same field.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7644">LUCENE-7644</a>: FieldComparatorSource.newComparator() and
+SortField.getComparator() no longer throw IOException
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7643">LUCENE-7643</a>: Replaced doc-values queries in lucene/sandbox with factory
+methods on the *DocValuesField classes.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7659">LUCENE-7659</a>: Added a IndexWriter#getFieldNames() method (experimental) to return
+all field names as visible from the IndexWriter. This would be useful for
+IndexWriter#updateDocValues() calls, to prevent calling with non-existent
+docValues fields
+<br /><span class="attrib">(Ishan Chattopadhyaya, Adrien Grand, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6959">LUCENE-6959</a>: Removed ToParentBlockJoinCollector in favour of
+ParentChildrenBlockJoinQuery, that can return the matching children documents per
+parent document. This query should be executed for each matching parent document
+after the main query has been executed.
+<br /><span class="attrib">(Adrien Grand, Martijn van Groningen,
+Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7628">LUCENE-7628</a>: Scorer.getChildren() now only returns Scorers that are
+positioned on the current document, and can throw an IOException.
+AssertingScorer checks that getChildren() is not called on an unpositioned
+Scorer.
+<br /><span class="attrib">(Alan Woodward, Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7702">LUCENE-7702</a>: Removed GraphQuery in favour of simple boolean query.
+<br /><span class="attrib">(Matt Webber via Jim Ferenczi)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7707">LUCENE-7707</a>: TopDocs.merge now takes a boolean option telling it
+when to use the incoming shard index versus when to assign the shard
+index itself, allowing users to merge shard responses incrementally
+instead of once all shard responses are present.
+<br /><span class="attrib">(Simon Willnauer,
+Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6819">LUCENE-6819</a>: Index-time boosts are deprecated. As a replacement, index-time
+scoring factors should be indexed into a doc value field and combined at
+query time using eg. FunctionScoreQuery.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7700">LUCENE-7700</a>: A cleanup of merge throughput control logic. Refactored all the
+code previously scattered throughout the IndexWriter and
+ConcurrentMergeScheduler into a more accessible set of public methods (see
+MergePolicy.OneMergeProgress, MergeScheduler.wrapForMerge and
+OneMerge.mergeInit).
+<br /><span class="attrib">(Dawid Weiss, Mike McCandless)</span>.
+<p/>
+</li>
+    </ol>
+  </li>
+  <li><a id="v6.5.0.new_features" href="javascript:toggleList('v6.5.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(10)
+    <ol id="v6.5.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7738">LUCENE-7738</a>: Add new InetAddressRange for indexing and querying InetAddress
+ranges.
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7449">LUCENE-7449</a>: Add CROSSES relation support to RangeFieldQuery.
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7623">LUCENE-7623</a>: Add FunctionScoreQuery and FunctionMatchQuery
+<br /><span class="attrib">(Alan Woodward,
+Adrien Grand, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7619">LUCENE-7619</a>: Add WordDelimiterGraphFilter, just like
+WordDelimiterFilter except it produces correct token graphs so that
+proximity queries at search time will produce correct results
+<br /><span class="attrib">(Mike
+McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7656">LUCENE-7656</a>: Added the LatLonDocValuesField.new(Box/Distance)Query() factory
+methods that are the equivalent of factory methods on LatLonPoint but operate
+on doc values. These new methods should be wrapped in an IndexOrDocValuesQuery
+for best performance.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7673">LUCENE-7673</a>: Added MultiValued[Int/Long/Float/Double]FieldSource that given a
+SortedNumericSelector.Type can give a ValueSource view of a
+SortedNumericDocValues field.
+<br /><span class="attrib">(Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7465">LUCENE-7465</a>: Add SimplePatternTokenizer and
+SimplePatternSplitTokenizer, using Lucene's regexp/automaton
+implementation for analysis/tokenization
+<br /><span class="attrib">(Clinton Gormley, Mike
+McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7688">LUCENE-7688</a>: Add OneMergeWrappingMergePolicy class.
+<br /><span class="attrib">(Keith Laban, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7686">LUCENE-7686</a>: The near-real-time document suggester can now
+efficiently filter out duplicate suggestions
+<br /><span class="attrib">(Uwe Schindler, Mike
+McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7712">LUCENE-7712</a>: SimpleQueryParser now supports default fuzziness
+syntax, mapping foo~ to a FuzzyQuery with edit distance 2.
+<br /><span class="attrib">(Lee
+Hinman, David Pilato via Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.5.0.bug_fixes" href="javascript:toggleList('v6.5.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.5.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7630">LUCENE-7630</a>: Fix (Edge)NGramTokenFilter to no longer drop payloads
+and preserve all attributes.
+<br /><span class="attrib">(Nathan Gass via Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7679">LUCENE-7679</a>: MemoryIndex was ignoring omitNorms settings on passed-in
+IndexableFields.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7692">LUCENE-7692</a>: PatternReplaceCharFilterFactory now implements MultiTermAware.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7685">LUCENE-7685</a>: ToParentBlockJoinQuery and ToChildBlockJoinQuery now use the
+rewritten child query in their equals and hashCode implementations.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7698">LUCENE-7698</a>: CommonGramsQueryFilter was producing a disconnected
+token graph, messing up phrase queries when it was used during query
+parsing
+<br /><span class="attrib">(Ere Maijala via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7708">LUCENE-7708</a>: ShingleFilter without unigram was producing a disconnected
+token graph, messing up queries when it was used during query
+parsing
+<br /><span class="attrib">(Jim Ferenczi)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.5.0.improvements" href="javascript:toggleList('v6.5.0.improvements')">Improvements</a>&nbsp;&nbsp;&nbsp;(8)
+    <ol id="v6.5.0.improvements.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7055">LUCENE-7055</a>: Added Weight#scorerSupplier, which allows to estimate the cost
+of a Scorer before actually building it, in order to optimize how the query
+should be run, eg. using points or doc values depending on costs of other
+parts of the query.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7643">LUCENE-7643</a>: IndexOrDocValuesQuery allows to execute range queries using
+either points or doc values depending on which one is more efficient.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7662">LUCENE-7662</a>: If index files are missing, throw CorruptIndexException instead
+of the less descriptive FileNotFound or NoSuchFileException
+<br /><span class="attrib">(Mike Drob via
+Mike McCandless, Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7680">LUCENE-7680</a>: UsageTrackingQueryCachingPolicy never caches term filters anymore
+since they are plenty fast. This also has the side-effect of leaving more
+space in the history for costly filters.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7677">LUCENE-7677</a>: UsageTrackingQueryCachingPolicy now caches compound queries a bit
+earlier than regular queries in order to improve cache efficiency.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7710">LUCENE-7710</a>: BlockPackedReader throws CorruptIndexException and includes
+IndexInput description instead of plain IOException
+<br /><span class="attrib">(Mike Drob via
+Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7695">LUCENE-7695</a>: ComplexPhraseQueryParser to support query time synonyms
+<br /><span class="attrib">(Markus Jelsma
+via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7747">LUCENE-7747</a>: QueryBuilder now iterates lazily over the possible paths when building a graph query
+<br /><span class="attrib">(Jim Ferenczi)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.5.0.optimizations" href="javascript:toggleList('v6.5.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(10)
+    <ol id="v6.5.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7641">LUCENE-7641</a>: Optimized point range queries to compute documents that do not
+match the range on single-valued fields when more than half the documents in
+the index would match.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7656">LUCENE-7656</a>: Speed up for LatLonPointDistanceQuery by computing distances even
+less often.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7661">LUCENE-7661</a>: Speed up for LatLonPointInPolygonQuery by pre-computing the
+relation of the polygon with a grid.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7660">LUCENE-7660</a>: Speed up LatLonPointDistanceQuery by improving the detection of
+whether BKD cells are entirely within the distance close to the dateline.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7654">LUCENE-7654</a>: ToParentBlockJoinQuery now implements two-phase iteration and
+computes scores lazily in order to be faster when used in conjunctions.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7667">LUCENE-7667</a>: BKDReader now calls `IntersectVisitor.grow()` on larger
+increments.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7638">LUCENE-7638</a>: Query parsers now analyze the token graph for articulation
+points (or cut vertices) in order to create more efficient queries for
+multi-token synonyms.
+<br /><span class="attrib">(Jim Ferenczi)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7699">LUCENE-7699</a>: Query parsers now use span queries to produce more efficient
+phrase queries for multi-token synonyms.
+<br /><span class="attrib">(Matt Webber via Jim Ferenczi)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7742">LUCENE-7742</a>: Fix places where we were unboxing and then re-boxing
+according to FindBugs
+<br /><span class="attrib">(Daniel Jelinski via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7739">LUCENE-7739</a>: Fix places where we unnecessarily boxed while parsing
+a numeric value according to FindBugs
+<br /><span class="attrib">(Daniel Jelinski via Mike
+McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.5.0.build" href="javascript:toggleList('v6.5.0.build')">Build</a>&nbsp;&nbsp;&nbsp;(7)
+    <ol id="v6.5.0.build.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7653">LUCENE-7653</a>: Update randomizedtesting to version 2.5.0.
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7665">LUCENE-7665</a>: Remove grouping dependency from the join module.
+<br /><span class="attrib">(Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10023">SOLR-10023</a>: Add non-recursive 'test-nocompile' target: Only runs unit tests.
+Jars are not downloaded; compilation is not updated; and Clover is not enabled.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7694">LUCENE-7694</a>: Update forbiddenapis to version 2.3.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7693">LUCENE-7693</a>: Replace "org.apache." logic in GetMavenDependenciesTask.
+<br /><span class="attrib">(Daniel Collins, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7726">LUCENE-7726</a>: Fix HTML entity bugs in Javadocs to be able to build with
+Java 9.
+<br /><span class="attrib">(Uwe Schindler, Hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7727">LUCENE-7727</a>: Replace end-of-life Markdown parser "Pegdown" by "Flexmark"
+for compatibility with Java 9.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.5.0.other" href="javascript:toggleList('v6.5.0.other')">Other</a>&nbsp;&nbsp;&nbsp;(4)
+    <ol id="v6.5.0.other.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7666">LUCENE-7666</a>: Fix typos in lucene-join package info javadoc.
+<br /><span class="attrib">(Tom Saleeba via Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7658">LUCENE-7658</a>: queryparser/xml CoreParser now implements SpanQueryBuilder interface.
+<br /><span class="attrib">(Daniel Collins, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7664">LUCENE-7664</a>: GeoPointField and its queries are deprecated in favor
+of LatLonPoint, which offers faster indexing and searching
+performance, smaller index, and less search-time heap usage.
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7715">LUCENE-7715</a>: NearSpansUnordered simplifications.
+<br /><span class="attrib">(Paul Elschot via Adrien Grand)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.4.2" href="javascript:toggleList('v6.4.2')">Release 6.4.2  [2017-03-07]</a></h3>
+<ul id="v6.4.2.list">
+  <li><a id="v6.4.2.bug_fixes" href="javascript:toggleList('v6.4.2.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(2)
+    <ol id="v6.4.2.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7676">LUCENE-7676</a>: Fixed FilterCodecReader to override more super-class methods.
+Also added TestFilterCodecReader class.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7717">LUCENE-7717</a>: The UnifiedHighlighter and PostingsHighlighter were not highlighting
+prefix queries with multi-byte characters. TermRangeQuery is affected too.
+<br /><span class="attrib">(Dmitry Malinin, David Smiley)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.4.1" href="javascript:toggleList('v6.4.1')">Release 6.4.1  [2017-02-06]</a></h3>
+<ul id="v6.4.1.list">
+  <li><a id="v6.4.1.build" href="javascript:toggleList('v6.4.1.build')">Build</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.4.1.build.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7651">LUCENE-7651</a>: Fix Javadocs build for Java 8u121 by injecting "Google Code
+Prettify" without adding Javascript to Javadocs's -bottom parameter.
+Also update Prettify to latest version to fix Google Chrome issue.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.4.1.bug_fixes" href="javascript:toggleList('v6.4.1.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(3)
+    <ol id="v6.4.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7657">LUCENE-7657</a>: Fixed potential memory leak in the case that a (Span)TermQuery
+with a TermContext is cached.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7647">LUCENE-7647</a>: Made stored fields reclaim native memory more aggressively when
+configured with BEST_COMPRESSION. This could otherwise result in out-of-memory
+issues.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7670">LUCENE-7670</a>: AnalyzingInfixSuggester should not immediately open an
+IndexWriter over an already-built index.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.4.0" href="javascript:toggleList('v6.4.0')">Release 6.4.0  [2017-01-23]</a></h3>
+<ul id="v6.4.0.list">
+  <li><a id="v6.4.0.api_changes" href="javascript:toggleList('v6.4.0.api_changes')">API Changes</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.4.0.api_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7533">LUCENE-7533</a>: Classic query parser no longer allows autoGeneratePhraseQueries
+to be set to true when splitOnWhitespace is false (and vice-versa).
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7607">LUCENE-7607</a>: LeafFieldComparator.setScorer and SimpleFieldComparator.setScorer
+are declared as throwing IOException
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7617">LUCENE-7617</a>: Collector construction for two-pass grouping queries is
+abstracted into a new Grouper class, which can be passed as a constructor
+parameter to GroupingSearch.  The abstract base classes for the different
+grouping Collectors are renamed to remove the Abstract* prefix.
+<br /><span class="attrib">(Alan Woodward, Martijn van Groningen)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7609">LUCENE-7609</a>: The expressions module now uses the DoubleValuesSource API, and
+no longer depends on the queries module.  Expression#getValueSource() is
+replaced with Expression#getDoubleValuesSource().
+<br /><span class="attrib">(Alan Woodward, Adrien
+Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7610">LUCENE-7610</a>: The facets module now uses the DoubleValuesSource API, and
+methods that take ValueSource parameters are deprecated
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7611">LUCENE-7611</a>: DocumentValueSourceDictionary now takes a LongValuesSource
+as a parameter, and the ValueSource equivalent is deprecated
+<br /><span class="attrib">(Alan Woodward)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.4.0.new_features" href="javascript:toggleList('v6.4.0.new_features')">New features</a>&nbsp;&nbsp;&nbsp;(9)
+    <ol id="v6.4.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-5867">LUCENE-5867</a>: Added BooleanSimilarity.
+<br /><span class="attrib">(Robert Muir, Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7466">LUCENE-7466</a>: Added AxiomaticSimilarity.
+<br /><span class="attrib">(Peilin Yang via Tommaso Teofili)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7590">LUCENE-7590</a>: Added DocValuesStatsCollector to compute statistics on DocValues
+fields.
+<br /><span class="attrib">(Shai Erera)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7587">LUCENE-7587</a>: The new FacetQuery and MultiFacetQuery helper classes
+make it simpler to execute drill down when drill sideways counts are
+not needed
+<br /><span class="attrib">(Emmanuel Keller via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6664">LUCENE-6664</a>: A new SynonymGraphFilter outputs a correct graph
+structure for multi-token synonyms, separating out a
+FlattenGraphFilter that is hardwired into the current
+SynonymFilter.  This finally makes it possible to implement
+correct multi-token synonyms at search time.  See
+<a href="http://blog.mikemccandless.com/2012/04/lucenes-tokenstreams-are-actually.html">http://blog.mikemccandless.com/2012/04/lucenes-tokenstreams-are-actually.html</a>
+for details.
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-5325">LUCENE-5325</a>: Added LongValuesSource and DoubleValuesSource, intended as
+type-safe replacements for ValueSource in the queries module.  These
+expose per-segment LongValues or DoubleValues iterators.
+<br /><span class="attrib">(Alan Woodward, Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7603">LUCENE-7603</a>: Graph token streams are now handled accurately by query
+parsers, by enumerating all paths and creating the corresponding
+query/ies as sub-clauses
+<br /><span class="attrib">(Matt Weber via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7588">LUCENE-7588</a>: DrillSideways can now run queries concurrently, and
+supports an IndexSearcher using an executor service to run each query
+concurrently across all segments in the index
+<br /><span class="attrib">(Emmanuel Keller via
+Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7627">LUCENE-7627</a>: Added .intersect methods to SortedDocValues and
+SortedSetDocValues to allow filtering their TermsEnums with a
+CompiledAutomaton
+<br /><span class="attrib">(Alan Woodward, Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.4.0.bug_fixes" href="javascript:toggleList('v6.4.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(11)
+    <ol id="v6.4.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7547">LUCENE-7547</a>: JapaneseTokenizerFactory was failing to close the
+dictionary file it opened
+<br /><span class="attrib">(Markus via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7562">LUCENE-7562</a>: CompletionFieldsConsumer sometimes throws
+NullPointerException on ghost fields
+<br /><span class="attrib">(Oliver Eilhard via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7533">LUCENE-7533</a>: Classic query parser: disallow autoGeneratePhraseQueries=true
+when splitOnWhitespace=false (and vice-versa).
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7536">LUCENE-7536</a>: ASCIIFoldingFilterFactory used to return an illegal multi-term
+component when preserveOriginal was set to true.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7576">LUCENE-7576</a>: Fix Terms.intersect in the default codec to detect when
+the incoming automaton is a special case and throw a clearer
+exception than NullPointerException
+<br /><span class="attrib">(Tom Mortimer via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6989">LUCENE-6989</a>: Fix Exception handling in MMapDirectory's unmap hack
+support code to work with Java 9's new InaccessibleObjectException
+that does not extend ReflectiveAccessException in Java 9.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7581">LUCENE-7581</a>: Lucene now prevents updating a doc values field that is used
+in the index sort, since this would lead to corruption.
+<br /><span class="attrib">(Jim
+Ferenczi via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7570">LUCENE-7570</a>: IndexWriter may deadlock if a commit is running while
+there are too many merges running and one of the merges hits a
+tragic exception
+<br /><span class="attrib">(Joey Echeverria via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7594">LUCENE-7594</a>: Fixed point range queries on floating-point types to recommend
+using helpers for exclusive bounds that are consistent with Double.compare.
+<br /><span class="attrib">(Adrien Grand, Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7606">LUCENE-7606</a>: Normalization with CustomAnalyzer would only apply the last
+token filter.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7612">LUCENE-7612</a>: Removed an unused dependency from the suggester to the misc
+module.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.4.0.improvements" href="javascript:toggleList('v6.4.0.improvements')">Improvements</a>&nbsp;&nbsp;&nbsp;(16)
+    <ol id="v6.4.0.improvements.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7532">LUCENE-7532</a>: Add back lost codec file format documentation
+<br /><span class="attrib">(Shinichiro Abe via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6824">LUCENE-6824</a>: TermAutomatonQuery now rewrites to TermQuery,
+PhraseQuery or MultiPhraseQuery when the word automaton is simple
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7431">LUCENE-7431</a>: Allow a certain amount of overlap to be specified between the include
+and exclude arguments of SpanNotQuery via negative pre and/or post arguments.
+<br /><span class="attrib">(Marc Morissette via David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7544">LUCENE-7544</a>: UnifiedHighlighter: add extension points for handling custom queries.
+<br /><span class="attrib">(Michael Braun, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7538">LUCENE-7538</a>: Asking IndexWriter to store a too-massive text field
+now throws IllegalArgumentException instead of a cryptic exception
+that closes your IndexWriter
+<br /><span class="attrib">(Steve Chen via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7524">LUCENE-7524</a>: Added more detailed explanation of how IDF is computed in
+ClassicSimilarity and BM25Similarity.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7564">LUCENE-7564</a>: AnalyzingInfixSuggester should close its IndexWriter by default
+at the end of build().
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7526">LUCENE-7526</a>: Enhanced UnifiedHighlighter's passage relevancy for queries with
+wildcards and sometimes just terms. Added shouldPreferPassageRelevancyOverSpeed()
+which can be overridden to return false to eek out more speed in some cases.
+<br /><span class="attrib">(Timothy M. Rodriguez, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7560">LUCENE-7560</a>: QueryBuilder.createFieldQuery is no longer final,
+giving custom query parsers subclassing QueryBuilder more freedom to
+control how text is analyzed and converted into a query
+<br /><span class="attrib">(Matt Weber
+via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7537">LUCENE-7537</a>: Index time sorting now supports multi-valued sorts
+using selectors (MIN, MAX, etc.)
+<br /><span class="attrib">(Jim Ferenczi via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7575">LUCENE-7575</a>: UnifiedHighlighter can now highlight fields with queries that don't
+necessarily refer to that field (AKA requireFieldMatch==false). Disabled by default.
+See UH get/setFieldMatcher.
+<br /><span class="attrib">(Jim Ferenczi via David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7592">LUCENE-7592</a>: If the segments file is truncated, we now throw
+CorruptIndexException instead of the more confusing EOFException
+<br /><span class="attrib">(Mike Drob via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6989">LUCENE-6989</a>: Make MMapDirectory's unmap hack work with Java 9 EA (b150+):
+Unmapping uses new sun.misc.Unsafe#invokeCleaner(ByteBuffer).
+Java 9 now needs same permissions like Java 8;
+RuntimePermission("accessClassInPackage.jdk.internal.ref")
+is no longer needed. Support for older Java 9 builds was removed.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7401">LUCENE-7401</a>: Changed the way BKD trees pick the split dimension in order to
+ensure all dimensions are indexed.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7614">LUCENE-7614</a>: Complex Phrase Query parser ignores double quotes around single token
+prefix, wildcard, range queries
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7620">LUCENE-7620</a>: Added LengthGoalBreakIterator, a wrapper around another B.I. to skip breaks
+that would create Passages that are too short.  Only for use with the UnifiedHighlighter
+(and probably PostingsHighlighter).
+<br /><span class="attrib">(David Smiley)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.4.0.optimizations" href="javascript:toggleList('v6.4.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(5)
+    <ol id="v6.4.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7568">LUCENE-7568</a>: Optimize merging when index sorting is used but the
+index is already sorted
+<br /><span class="attrib">(Jim Ferenczi via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7563">LUCENE-7563</a>: The BKD in-memory index for dimensional points now uses
+a compressed format, using substantially less RAM in some cases
+<br /><span class="attrib">(Adrien Grand, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7583">LUCENE-7583</a>: BKD writing now buffers each leaf block in heap before
+writing to disk, giving a small speedup in points-heavy use cases.
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7572">LUCENE-7572</a>: Doc values queries now cache their hash code.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7579">LUCENE-7579</a>: Segments are now also sorted during flush, and merging
+on a sorted index is substantially faster by using some of the same
+bulk merge optimizations that non-sorted merging uses
+<br /><span class="attrib">(Jim Ferenczi
+via Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.4.0.other" href="javascript:toggleList('v6.4.0.other')">Other</a>&nbsp;&nbsp;&nbsp;(5)
+    <ol id="v6.4.0.other.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7546">LUCENE-7546</a>: Fixed references to benchmark wikipedia data and the Jenkins line-docs file
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7534">LUCENE-7534</a>: fix smokeTestRelease.py to run on Cygwin
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7559">LUCENE-7559</a>: UnifiedHighlighter: Make Passage and OffsetsEnum more exposed to allow
+passage creation to be customized.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7599">LUCENE-7599</a>: Simplify TestRandomChains using Java's built-in Predicate and
+Function interfaces.
+<br /><span class="attrib">(Ahmet Arslan via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7595">LUCENE-7595</a>: Improve RAMUsageTester in test-framework to estimate memory usage of
+runtime classes and work with Java 9 EA (b148+). Disable static field heap usage
+checker in LuceneTestCase.
+<br /><span class="attrib">(Uwe Schindler, Dawid Weiss)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.4.0.build" href="javascript:toggleList('v6.4.0.build')">Build</a>&nbsp;&nbsp;&nbsp;(3)
+    <ol id="v6.4.0.build.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7387">LUCENE-7387</a>: fix defaultCodec in build.xml to account for the line ending
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7543">LUCENE-7543</a>: Make changes-to-html target an offline operation, by moving the
+Lucene and Solr DOAP RDF files into the Git source repository under
+dev-tools/doap/ and then pulling release dates from those files, rather than
+from JIRA.
+<br /><span class="attrib">(Mano Kovacs, hossman, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7596">LUCENE-7596</a>: Update Groovy to version 2.4.8 to allow building with Java 9
+build 148+. Also update JGit version for working-copy checks.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.3.0" href="javascript:toggleList('v6.3.0')">Release 6.3.0  [2016-11-08]</a></h3>
+<ul id="v6.3.0.list">
+  <li><a id="v6.3.0.api_changes" href="javascript:toggleList('v6.3.0.api_changes')">API Changes</a>&nbsp;&nbsp;&nbsp;(none)
+    <ol id="v6.3.0.api_changes.list">
+    </ol>
+  </li>
+  <li><a id="v6.3.0.new_features" href="javascript:toggleList('v6.3.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(2)
+    <ol id="v6.3.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7438">LUCENE-7438</a>: New "UnifiedHighlighter" derivative of the PostingsHighlighter that
+can consume offsets from postings, term vectors, or analysis.  It can highlight phrases
+as accurately as the standard Highlighter. Light term vectors can be used with offsets
+in postings for fast wildcard (MultiTermQuery) highlighting.
+<br /><span class="attrib">(David Smiley, Timothy Rodriguez)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7490">LUCENE-7490</a>: SimpleQueryParser now parses '*' to MatchAllDocsQuery
+<br /><span class="attrib">(Lee Hinman via Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.3.0.bug_fixes" href="javascript:toggleList('v6.3.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(13)
+    <ol id="v6.3.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7507">LUCENE-7507</a>: Upgrade morfologik-stemming to version 2.1.1 (fixes security
+manager issue with Polish dictionary lookup).
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7472">LUCENE-7472</a>: MultiFieldQueryParser.getFieldQuery() drops queries that are
+neither BooleanQuery nor TermQuery.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7456">LUCENE-7456</a>: PerFieldPostings/DocValues was failing to delegate the
+merge method
+<br /><span class="attrib">(Julien MASSENET via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7468">LUCENE-7468</a>: ASCIIFoldingFilter should not emit duplicated tokens when
+preserve original is on.
+<br /><span class="attrib">(David Causse via Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7484">LUCENE-7484</a>: FastVectorHighlighter failed to highlight SynonymQuery
+<br /><span class="attrib">(Jim Ferenczi via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7476">LUCENE-7476</a>: JapaneseNumberFilter should not invoke incrementToken
+on its input after it's exhausted
+<br /><span class="attrib">(Andy Hind via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7486">LUCENE-7486</a>: DisjunctionMaxQuery does not work correctly with queries that
+return negative scores.
+<br /><span class="attrib">(Ivan Provalov, Uwe Schindler, Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7491">LUCENE-7491</a>: Suddenly turning on dimensional points for some fields
+that already exist in an index but didn't previously index
+dimensional points could cause unexpected merge exceptions
+<br /><span class="attrib">(Hans
+Lund, Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-6914">LUCENE-6914</a>: Fixed DecimalDigitFilter in case of supplementary code points.
+<br /><span class="attrib">(Hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7493">LUCENE-7493</a>: FacetCollector.search threw an unexpected exception if
+you asked for zero hits but wanted facets
+<br /><span class="attrib">(Mahesh via Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7505">LUCENE-7505</a>: AnalyzingInfixSuggester returned invalid results when
+allTermsRequired is false and context filters are specified
+<br /><span class="attrib">(Mike
+McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7429">LUCENE-7429</a>: AnalyzerWrapper can now modify the normalization chain too and
+DelegatingAnalyzerWrapper does the right thing automatically.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7135">LUCENE-7135</a>: Lucene's check for 32 or 64 bit JVM now works around security
+manager blocking access to some properties
+<br /><span class="attrib">(Aaron Madlon-Kay via
+Mike McCandless)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.3.0.improvements" href="javascript:toggleList('v6.3.0.improvements')">Improvements</a>&nbsp;&nbsp;&nbsp;(3)
+    <ol id="v6.3.0.improvements.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7439">LUCENE-7439</a>: FuzzyQuery now matches all terms within the specified
+edit distance, even if they are short terms
+<br /><span class="attrib">(Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7496">LUCENE-7496</a>: Better toString for SweetSpotSimilarity
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7520">LUCENE-7520</a>: Highlighter's WeightedSpanTermExtractor shouldn't attempt to expand a MultiTermQuery
+when its field doesn't match the field the extraction is scoped to.
+<br /><span class="attrib">(Cao Manh Dat via David Smiley)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.3.0.optimizations" href="javascript:toggleList('v6.3.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.3.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7501">LUCENE-7501</a>: BKDReader should not store the split dimension explicitly in the
+1D case.
+<br /><span class="attrib">(Adrien Grand)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.3.0.other" href="javascript:toggleList('v6.3.0.other')">Other</a>&nbsp;&nbsp;&nbsp;(3)
+    <ol id="v6.3.0.other.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7513">LUCENE-7513</a>: Upgrade randomizedtesting to 2.4.0.
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7452">LUCENE-7452</a>: Block join query exception suggests how to find a doc, which
+ violates orthogonality requirement.
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7438">LUCENE-7438</a>: Renovate the Benchmark module's support for benchmarking highlighting. All
+highlighters are supported via SearchTravRetHighlight.
+<br /><span class="attrib">(David Smiley)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.3.0.build" href="javascript:toggleList('v6.3.0.build')">Build</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.3.0.build.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-7292">LUCENE-7292</a>: Fix build to use "--release 8" instead of "-release 8" on
+Java 9 (this changed with recent EA build b135).
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v6.2.1" href="javascript:toggleList('v6.2.1')">Release 6.2.1  [2016-09-20]</a></h3>
+<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>
+<h3><a id="v6.2.0" href="javascript:toggleList('v6.2.0')">Release 6.2.0  [2016-08-25]</a></h3>
+<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>
+<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-7184">LUCENE-7184</a>: Refactor LatLonPoint encoding methods to new GeoEncodingUtils
+helper class in core geo package. Also refactors LatLonPointTests to
+TestGeoEncodingUtils
+<br /><span class="attrib">(Nick Knize)</span></li>
+      <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>
+    </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>

[... 13690 lines stripped ...]