You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ji...@apache.org on 2017/04/21 11:50:12 UTC

svn commit: r19232 [14/22] - in /dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/l...

Added: dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/changes/Changes.html
==============================================================================
--- dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/changes/Changes.html (added)
+++ dev/lucene/lucene-solr-6.5.1-RC2-revcd1f23c63abe03ae650c75ec8ccb37762806cc75/solr/changes/Changes.html Fri Apr 21 11:50:09 2017
@@ -0,0 +1,15094 @@
+<!--
+**********************************************************
+** 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>Apache Solr Release Notes</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\\\\.5\\\\.1|v6\\\\.5\\\\.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.5.1.list' 
+            && list.id != 'v6.5.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.5.1' || anchor.id == 'v6.5.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>Apache Solr Release Notes</h1>
+
+<div id="buttons.parent"></div>
+
+<h2>Introduction</h2>
+      <p>Apache Solr is an open source enterprise search server based on the Apache Lucene Java
+search library, with XML/HTTP and JSON APIs, hit highlighting, faceted search,
+caching, replication, and a web administration interface.
+</p>
+      <p>See <a href="http://lucene.apache.org/solr">http://lucene.apache.org/solr</a> for more information.
+</p>
+<h2>Getting Started</h2>
+      <p>You need a Java 1.8 VM or later installed.
+In this release, there is an example Solr server including a bundled
+servlet container in the directory named "example".
+See the Quick Start guide at <a href="http://lucene.apache.org/solr/quickstart.html">http://lucene.apache.org/solr/quickstart.html</a>
+</p>
+<h2><a id="v6.5.1" href="javascript:toggleList('v6.5.1')">Release 6.5.1 </a></h2>
+<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;(13)
+    <ol id="v6.5.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10369">SOLR-10369</a>: bin\solr.cmd delete and healthcheck now works again; fixed continuation chars ^
+<br /><span class="attrib">(Luis Goes via janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10383">SOLR-10383</a>: Fix debug related NullPointerException in solr/contrib/ltr OriginalScoreFeature class.
+<br /><span class="attrib">(Vitezslav Zak, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10416">SOLR-10416</a>: The JSON output of /admin/metrics is fixed to write the container as a
+map (SimpleOrderedMap) instead of an array (NamedList).
+<br /><span class="attrib">(shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10277">SOLR-10277</a>: On 'downnode', lots of wasteful mutations are done to ZK.
+<br /><span class="attrib">(Joshua Humphries, Scott Blum, Varun Thacker, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10421">SOLR-10421</a>: Fix params persistence for solr/contrib/ltr (MinMax|Standard)Normalizer classes.
+<br /><span class="attrib">(Jianxiong Dong, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10404">SOLR-10404</a>: The fetch() streaming expression wouldn't work if a value included query syntax chars (like :+-).
+Fixed, and enhanced the generated query to not pollute the queryCache.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10423">SOLR-10423</a>: Disable graph query production via schema configuration &lt;fieldtype ... enableGraphQueries="false"&gt;.
+This fixes broken queries for ShingleFilter-containing query-time analyzers when request param sow=false.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10425">SOLR-10425</a>: Fix indexed="false" on numeric PointFields
+<br /><span class="attrib">(Tomás Fernández Löbbe, hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10341">SOLR-10341</a>: SQL AVG function mis-interprets field type.
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10444">SOLR-10444</a>: SQL interface does not use client cache.
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10420">SOLR-10420</a>: Solr 6.x leaking one SolrZkClient instance per second
+<br /><span class="attrib">(Scott Blum, Cao Manh Dat, Markus Jelsma, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10439">SOLR-10439</a>: The new 'large' attribute had been forgotten in /schema/fields?showDefaults=true
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10527">SOLR-10527</a>: edismax with sow=false fails to create dismax-per-term queries when any field is boosted.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+    </ol>
+  </li>
+</ul>
+<h2><a id="v6.5.0" href="javascript:toggleList('v6.5.0')">Release 6.5.0  [2017-03-27]</a></h2>
+<ul id="v6.5.0.list">
+      <li>Consult the <a href="http://lucene.apache.org/core/6_5_1/changes/Changes.html">LUCENE_CHANGES.txt</a> file for additional, low level, changes in this release.
+</li>
+  </li>
+  <li><a id="v6.5.0.versions_of_major_components" href="javascript:toggleList('v6.5.0.versions_of_major_components')">Versions of Major Components</a>&nbsp;&nbsp;&nbsp;(7)
+    <ol id="v6.5.0.versions_of_major_components.list">
+      <li>Apache Tika 1.13
+</li>
+      <li>Carrot2 3.15.0
+</li>
+      <li>Velocity 1.7 and Velocity Tools 2.0
+</li>
+      <li>Apache UIMA 2.3.1
+</li>
+      <li>Apache ZooKeeper 3.4.6
+</li>
+      <li>Jetty 9.3.14.v20161028
+</li>
+      <li>Apache Calcite 1.11.0
+</li>
+    </ol>
+  </li>
+  <h3>Detailed Change List</h3>
+  <li><a id="v6.5.0.upgrade_notes" href="javascript:toggleList('v6.5.0.upgrade_notes')">Upgrade Notes</a>&nbsp;&nbsp;&nbsp;(3)
+    <ol id="v6.5.0.upgrade_notes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10226">SOLR-10226</a>: JMX metric "avgTimePerRequest" (and the corresponding metric in the metrics API for
+each handler) used to be a simple non-decaying average based on total cumulative time and the
+number of requests. New Codahale Metrics implementation applies exponential decay to this value,
+which heavily biases the average towards the last 5 minutes.
+<br /><span class="attrib">(ab)</span></li>
+      <li>Index-time boosts are now deprecated. As a replacement, index-time scoring
+factors should be indexed in a separate field and combined with the query
+score using a function query.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8593">SOLR-8593</a>: Parallel SQL now uses Apache Calcite as its SQL framework. As part of this change
+the default aggregation mode has been changed to facet rather than map_reduce. There has also been changes
+to the SQL aggregate response and some SQL syntax changes. Consult the documentation for full details.
+<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;(31)
+    <ol id="v6.5.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9836">SOLR-9836</a>: Add ability to recover from leader when index corruption is detected on SolrCore creation.
+<br /><span class="attrib">(Mike Drob via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9926">SOLR-9926</a>: Allow passing arbitrary java system properties to zkcli.
+<br /><span class="attrib">(Hrishikesh Gadre via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9885">SOLR-9885</a>: Allow pre-startup Solr log management in Solr bin scripts to be disabled.
+<br /><span class="attrib">(Mano Kovacs via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8029">SOLR-8029</a>: Added new style APIs and a framework for creating new APIs and mapping old APIs to new
+<br /><span class="attrib">(noble, Steve Rowe, Cassandra Targett, Timothy Potter)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9933">SOLR-9933</a>: SolrCoreParser now supports configuration of custom SpanQueryBuilder classes.
+<br /><span class="attrib">(Daniel Collins, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7955">SOLR-7955</a>: Auto create .system collection on first request if it does not exist
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10087">SOLR-10087</a>: StreamHandler now supports registering custom streaming expressions from the blob store
+<br /><span class="attrib">(Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9997">SOLR-9997</a>: Enable configuring SolrHttpClientBuilder via java system property.
+<br /><span class="attrib">(Hrishikesh Gadre via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9912">SOLR-9912</a>: Add facet.excludeTerms parameter support.
+<br /><span class="attrib">(Jonny Marks, David Smiley, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9916">SOLR-9916</a>: Adds Stream Evaluators to support evaluating values from tuples. Supports boolean,
+numeric, and conditional evaluators. BooleanOperations have been removed in preference of
+BooleanEvaluators.
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9903">SOLR-9903</a>: Stop interrupting the update executor on shutdown, it can cause graceful shutdowns to put replicas into Leader
+Initiated Recovery among other undesirable things.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8396">SOLR-8396</a>: Add support for PointFields in Solr
+<br /><span class="attrib">(Ishan Chattopadhyaya, Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9987">SOLR-9987</a>: Add support for MultiValued DocValues in PointFields using SortedNumericDocValues
+<br /><span class="attrib">(Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5944">SOLR-5944</a>: In-place updates of Numeric DocValues. To leverage this, the _version_ field and the updated
+field must both be stored=false, indexed=false, docValues=true.
+<br /><span class="attrib">(Ishan Chattopadhyaya, hossman, noble,
+shalin, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9481">SOLR-9481</a>: Authentication and Authorization plugins now work in standalone mode if security.json is placed in
+SOLR_HOME on every node. Editing config through API is supported but affects only that one node.
+This feature should be considered experimental for this release and may not work with SSL yet.
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10158">SOLR-10158</a>: Add support for "preload" option in MMapDirectoryFactory.
+<br /><span class="attrib">(Amrit Sarkar via Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10153">SOLR-10153</a> &amp; <a href="http://issues.apache.org/jira/browse/SOLR-10152">SOLR-10152</a>: The Unified and Postings based highlighters: Add hl.bs.type=SEPARATOR along with new param
+hl.bs.separator to break passages by a provided single character.
+<br /><span class="attrib">(Amrit Sarkar, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10156">SOLR-10156</a>: Add significantTerms Streaming Expression
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8593">SOLR-8593</a>: Integrate Apache Calcite into the SQLHandler
+<br /><span class="attrib">(Kevin Risden, Cao Manh Dat, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10146">SOLR-10146</a>: Added button to the Admin UI 'Collection' tab for deleting an inactive shard
+<br /><span class="attrib">(Amrit Sarkar, janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9999">SOLR-9999</a>: Instrument DirectUpdateHandler2. This registers existing statistics under metrics API and adds
+more metrics to track the rates of update and delete commands.
+<br /><span class="attrib">(ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9986">SOLR-9986</a>: Implement DatePointField
+<br /><span class="attrib">(Cao Manh Dat, Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8045">SOLR-8045</a>: Deploy V2 API at /v2 instead of /solr/v2
+<br /><span class="attrib">(Cao Manh Dat, Noble Paul)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10039">SOLR-10039</a>: New LatLonPointSpatialField replacement for LatLonType (and some uses of RPT).  Multi-value capable
+indexed geo lat-lon points, query by rect or circle.  Efficient distance sorting/boosting too.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10250">SOLR-10250</a>: CloudSolrClient can now return versions for documents added or deleted when "versions=true" is passed.
+However, if there is a leader election while this request is in transit, the versions may not be returned from that
+shard.
+<br /><span class="attrib">(Boris Naguet, Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9045">SOLR-9045</a>: Make RecoveryStrategy settings configurable.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10224">SOLR-10224</a>: Add disk total and disk free metrics.
+<br /><span class="attrib">(ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10085">SOLR-10085</a>: SQL result set fields should be ordered by the field list
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10254">SOLR-10254</a>: significantTerms Streaming Expression should work in non-SolrCloud mode
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10286">SOLR-10286</a>: string/text fields may now declare themselves as large="true" in the schema.  Large fields are always
+lazy loaded and will only take up space in the document cache if the actual value is &lt; 512KB.  This option
+requires "stored" and must not be multiValued.  It's intended for fields that might have very large values so that
+they don't get cached in memory.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9185">SOLR-9185</a>: Solr's edismax and "Lucene"/standard query parsers will no longer split on whitespace before sending
+terms to analysis, if given the "sow=false" request param ("sow"=&gt;"split on whitespace").  This enables multi-term
+source synonyms to match at query-time using SynonymGraphFilterFactory; other analysis components will also now
+work at query time, e.g. ShingleFilterFactory.  By default, and when the "sow=true" param is specified, these
+parsers' behavior remains the same: queries will be split on whitespace before sending individual terms to analysis.
+<br /><span class="attrib">(Steve Rowe)</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;(32)
+    <ol id="v6.5.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9976">SOLR-9976</a>: Fix init bug in SegmentsInfoRequestHandlerTest
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9977">SOLR-9977</a>: Fix config bug in DistribDocExpirationUpdateProcessorTest that allowed false assumptions
+about when index version changes
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9979">SOLR-9979</a>: Macro expansion should not be done in shard requests
+<br /><span class="attrib">(Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9114">SOLR-9114</a>: NPE using TermVectorComponent, MoreLikeThisComponent in combination with ExactStatsCache
+<br /><span class="attrib">(Cao Manh Dat, Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10049">SOLR-10049</a>: Collection deletion leaves behind the snapshot metadata
+<br /><span class="attrib">(Hrishikesh Gadre via yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10120">SOLR-10120</a>: A SolrCore reload can remove the index from the previous SolrCore during replication index rollover.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10124">SOLR-10124</a>: Replication can skip removing a temporary index directory in some cases when it should not.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9996">SOLR-9996</a>: Unstored IntPointField returns Long type
+<br /><span class="attrib">(Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10104">SOLR-10104</a>: BlockDirectoryCache release hooks do not work with multiple directories.
+<br /><span class="attrib">(Mike Drob, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10121">SOLR-10121</a>: Fix race conditions in HDFS BlockCache that can contribute to corruption in high
+concurrency situations.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10141">SOLR-10141</a>: Upgrade to Caffeine 2.4.0 since v1.0.1 contributed to BlockCache corruption because the
+removal listener was called more than once for some items and not at all for other items.
+<br /><span class="attrib">(Ben Manes, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10114">SOLR-10114</a>: Reordered delete-by-query causes inconsistenties between shards that have
+child documents
+<br /><span class="attrib">(Mano Kovacs, Mihaly Toth, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10159">SOLR-10159</a>: When DBQ is reordered with an in-place update, upon whose updated value the DBQ is based
+on, the DBQ fails due to excessive caching in DeleteByQueryWrapper
+<br /><span class="attrib">(Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10020">SOLR-10020</a>: CoreAdminHandler silently swallows some errors.
+<br /><span class="attrib">(Mike Drob via Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10063">SOLR-10063</a>: CoreContainer shutdown has race condition that can cause a hang on shutdown.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10170">SOLR-10170</a>: ClassCastException in RecoveryStrategy.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9846">SOLR-9846</a>: Overseer is not always closed after being started.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10168">SOLR-10168</a>: ShardSplit can fail with NPE in OverseerCollectionMessageHandler#waitForCoreAdminAsyncCallToComplete.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10055">SOLR-10055</a>: Linux installer now renames existing bin/solr.in.* as bin/solr.in.*.orig to make the installed config in
+/etc/defaults be the one found by default when launching solr manually.
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10196">SOLR-10196</a>: ElectionContext#runLeaderProcess can hit NPE on core close.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10225">SOLR-10225</a>: Fix HDFS BlockCache evictions metric to not count explicit removal
+due to a directory close.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10088">SOLR-10088</a>: Installer script does not put zoo.cfg in SOLR_HOME
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10226">SOLR-10226</a>: add back "totalTime" metric to all handlers. See also the back-compat note.
+<br /><span class="attrib">(ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9838">SOLR-9838</a>: "inc" atomic update doesn't respect default field value
+<br /><span class="attrib">(hoss, Amrit Sarkar, Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10269">SOLR-10269</a>: MetricsHandler JSON output incorrect.
+<br /><span class="attrib">(ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10279">SOLR-10279</a>: The autoAddReplica feature can result in SolrCores being assigned new shards when using
+legacyCloud=false and will also fail on a state check when taking over a core registration with a new
+core.
+<br /><span class="attrib">(Mark Miller, Hrishikesh Gadre, Patrick Dvorack)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10184">SOLR-10184</a>: Fix bin/solr so it can run properly on java9
+<br /><span class="attrib">(hossman, Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9516">SOLR-9516</a>: Admin UI (angular) now works with Kerberos, by excluding serving of /solr/libs/* through
+SolrDispatchFilter.
+<br /><span class="attrib">(Cassandra Targett, Amrit Sarkar via Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10302">SOLR-10302</a>: Solr's zkcli scripts now able to find the metrics libraries, which it couldn't earlier
+<br /><span class="attrib">(kiran, Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10283">SOLR-10283</a>: Learning to Rank (LTR) SolrFeature to reject searches with missing efi (External Feature Information) used by fq.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10237">SOLR-10237</a>: Poly-fields should work with subfields that have docValues=true
+<br /><span class="attrib">(Tomás Fernández Löbbe, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10218">SOLR-10218</a>: The Schema API commands "add-field-type" and "replace-field-type" improperly specify SimilarityFactory params.
+<br /><span class="attrib">(Benjamin Deininger, Troy Mohl, Steve Rowe)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.5.0.optimizations" href="javascript:toggleList('v6.5.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.5.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9941">SOLR-9941</a>: Clear the deletes lists at UpdateLog before replaying from log. This prevents redundantly pre-applying
+DBQs, during the log replay, to every update in the log as if the DBQs were out of order.
+<br /><span class="attrib">(hossman, Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9764">SOLR-9764</a>: All filters that match all documents in the index now share the same memory (DocSet).
+<br /><span class="attrib">(Michael Sun, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9584">SOLR-9584</a>: Support Solr being proxied with another endpoint than default /solr, by using relative links
+in AdminUI javascripts
+<br /><span class="attrib">(Yun Jie Zhou via janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10143">SOLR-10143</a>: PointFields will create IndexOrDocValuesQuery when a field is both, indexed=true and docValues=true
+<br /><span class="attrib">(Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10205">SOLR-10205</a>: Change the HDFS BlockCache to reduce store failures and increase hit ratio. Highly concurrent
+artificial random queries over random indexes showed performance increases of 5% to 68%, with common values
+in the teens.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10273">SOLR-10273</a>: The field with the longest value (if it exceeds 4K) is moved to be last in the Lucene Document in order
+to benefit from stored field optimizations in Lucene that can avoid reading it when it's not needed.  If the field is
+multi-valued, they all move together to the end to retain order.
+<br /><span class="attrib">(David Smiley)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.5.0.other_changes" href="javascript:toggleList('v6.5.0.other_changes')">Other Changes</a>&nbsp;&nbsp;&nbsp;(28)
+    <ol id="v6.5.0.other_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9980">SOLR-9980</a>: Expose configVersion in core admin status
+<br /><span class="attrib">(Jessica Cheng Mallet via Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9972">SOLR-9972</a>: SpellCheckComponent collations and suggestions returned as a JSON object rather than a list
+<br /><span class="attrib">(Christine Poerschke in response to bug report from Ricky Oktavianus Lazuardy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9983">SOLR-9983</a>: Fixing NullPointerException failure by TestManagedSchemaThreadSafety
+adding check for Zookeeper session expiration
+<br /><span class="attrib">(Steve Rowe, Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10043">SOLR-10043</a>: Reduce logging of pre-start log rotation
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10018">SOLR-10018</a>: Increase the default hl.maxAnalyzedChars to 51200 for the Unified &amp; Postings Highlighter so that all
+highlighters now have this same default.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-6246">SOLR-6246</a>: Added tests to check that the changes in <a href="http://issues.apache.org/jira/browse/LUCENE-7564">LUCENE-7564</a> and <a href="http://issues.apache.org/jira/browse/LUCENE-7670">LUCENE-7670</a>
+enable AnalyzingInfixSuggester and BlendedInfixSuggester to play nicely with core reload.
+SolrSuggester.build() now throws SolrCoreState.CoreIsClosedException when interrupted
+by a core reload/shutdown.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9800">SOLR-9800</a>: Factor out FacetComponent.newSimpleFacets method.
+<br /><span class="attrib">(Jonny Marks via Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9914">SOLR-9914</a>: SimpleFacets: refactor "contains" check into "SubstringBytesRefFilter" class.
+<br /><span class="attrib">(Jonny Marks, David Smiley, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10072">SOLR-10072</a>: The test TestSelectiveWeightCreation appears to be unreliable.
+<br /><span class="attrib">(Michael Nilsson via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10011">SOLR-10011</a>: Refactor PointField &amp; TrieField to now have a common base class, NumericFieldType. The
+TrieField.TrieTypes and PointField.PointTypes are now consolidated to NumericFieldType.NumberType. This
+refactoring also fixes a bug whereby PointFields were not using DocValues for range queries for
+indexed=false, docValues=true fields.
+<br /><span class="attrib">(Ishan Chattopadhyaya, Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9890">SOLR-9890</a>: factor out ShardResultTransformerUtils.[un]marshSortValue methods
+<br /><span class="attrib">(Judith Silverman, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9966">SOLR-9966</a>: Convert/migrate tests using EasyMock to Mockito
+<br /><span class="attrib">(Cao Manh Dat,  Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10173">SOLR-10173</a>: Make HttpShardHandlerFactory.getReplicaListTransformer more extensible.
+<br /><span class="attrib">(Ramsey Haddad via Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9842">SOLR-9842</a>: UpdateRequestProcessors have no way to guarantee the closing of resources used for a request.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9848">SOLR-9848</a>: Lower solr.cloud.wait-for-updates-with-stale-state-pause back down from 7 seconds.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10020">SOLR-10020</a>: Cannot reload a core if it fails initialization.
+<br /><span class="attrib">(Mike Drob via Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9450">SOLR-9450</a>: The docs/ folder in the binary distribution now contains a single index.html file linking
+to the online documentation, reducing the size of the download
+<br /><span class="attrib">(janhoy, Shawn Heisey, Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7453">SOLR-7453</a>: Remove replication &amp; backup scripts in the solr/scripts directory of the checkout
+<br /><span class="attrib">(Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10214">SOLR-10214</a>: Remove unused HDFS BlockCache metrics and add storeFails, as well as adding total
+counts for lookups, hits, and evictions.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10134">SOLR-10134</a>: EmbeddedSolrServer responds on Schema API requests
+<br /><span class="attrib">(Robert Alexandersson via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10219">SOLR-10219</a>: re-enable HDFS tests under JDK9
+<br /><span class="attrib">(hossman, Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10155">SOLR-10155</a>: For numeric types facet.contains= and facet.prefix= are now rejected.
+<br /><span class="attrib">(Gus Heck, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10171">SOLR-10171</a>: Add Constant Reduction Rules to Calcite Planner
+<br /><span class="attrib">(Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10230">SOLR-10230</a>: default TTL of PKIAuthenticationPlugin increased to 10secs
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10235">SOLR-10235</a>: Fix DIH's TestJdbcDataSource to work with Java 9 and other Java runtimes that
+do not use the same DriverManager implementation like Oracle's original one. The test now
+uses a fully implemented Driver instance returning a mock connection. The test also works
+correct now if other drivers were installed before test execution (e.g., through IDE).
+<br /><span class="attrib">(hossman, Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8876">SOLR-8876</a>: change morphline test config files to work around 'importCommands' bug when using java9
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10247">SOLR-10247</a>: Support non-numeric metrics and a "compact" format of /admin/metrics output.
+<br /><span class="attrib">(ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9990">SOLR-9990</a>: Add PointFields in example/default schemas
+<br /><span class="attrib">(Tomás Fernández Löbbe)</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.4.2" href="javascript:toggleList('v6.4.2')">Release 6.4.2  [2017-03-07]</a></h3>
+<ul id="v6.4.2.list">
+      <li>Consult the <a href="http://lucene.apache.org/core/6_5_1/changes/Changes.html">LUCENE_CHANGES.txt</a> file for additional, low level, changes in this release.
+</li>
+  </li>
+  <li><a id="v6.4.2.versions_of_major_components" href="javascript:toggleList('v6.4.2.versions_of_major_components')">Versions of Major Components</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.4.2.versions_of_major_components.list">
+      <li>Apache Tika 1.13
+</li>
+      <li>Carrot2 3.15.0
+</li>
+      <li>Velocity 1.7 and Velocity Tools 2.0
+</li>
+      <li>Apache UIMA 2.3.1
+</li>
+      <li>Apache ZooKeeper 3.4.6
+</li>
+      <li>Jetty 9.3.14.v20161028
+</li>
+    </ol>
+  </li>
+  <h4>Detailed Change List</h4>
+  <li><a id="v6.4.2.bug_fixes" href="javascript:toggleList('v6.4.2.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(5)
+    <ol id="v6.4.2.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10130">SOLR-10130</a>, <a href="http://issues.apache.org/jira/browse/SOLR-10182">SOLR-10182</a>: Serious performance degradation in Solr 6.4.1 due to the new metrics collection.
+Default settings in solrconfig.xml /config/indexConfig/metrics have been changed to turn off
+IndexWriter metrics collection. Directory level metrics collection has been completely removed until
+a better design is found.
+<br /><span class="attrib">(ab, ishan)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10138">SOLR-10138</a>: Transaction log replay can hit an NPE due to new Metrics code.
+<br /><span class="attrib">(ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10083">SOLR-10083</a>: Fix instanceof check in ConstDoubleSource.equals
+<br /><span class="attrib">(Pushkar Raste via Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10190">SOLR-10190</a>: Fix NPE in CloudSolrClient when reading stale alias
+<br /><span class="attrib">(Janosch Woschitz via Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10192">SOLR-10192</a>: Fix copy/paste in solr-ltr pom.xml template.
+<br /><span class="attrib">(Christine Poerschke)</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>Consult the <a href="http://lucene.apache.org/core/6_5_1/changes/Changes.html">LUCENE_CHANGES.txt</a> file for additional, low level, changes in this release.
+</li>
+  </li>
+  <li><a id="v6.4.1.versions_of_major_components" href="javascript:toggleList('v6.4.1.versions_of_major_components')">Versions of Major Components</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.4.1.versions_of_major_components.list">
+      <li>Apache Tika 1.13
+</li>
+      <li>Carrot2 3.15.0
+</li>
+      <li>Velocity 1.7 and Velocity Tools 2.0
+</li>
+      <li>Apache UIMA 2.3.1
+</li>
+      <li>Apache ZooKeeper 3.4.6
+</li>
+      <li>Jetty 9.3.14.v20161028
+</li>
+    </ol>
+  </li>
+  <li><a id="v6.4.1.upgrade_notes" href="javascript:toggleList('v6.4.1.upgrade_notes')">Upgrade Notes</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.4.1.upgrade_notes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10035">SOLR-10035</a>: Category names of some SolrInfoMBeans have been changed in release 6.4.0. This issue
+changes the /admin/mbeans handler to return these beans both under the new and the old back-compatible
+names. Old names are deprecated and will be eventually removed in Solr 7.0. They can be also removed via
+system property "-Dsolr.mbeans.useOnlyNewNaming=true".
+<br /><span class="attrib">(ab, Shawn Heisey, Jan Høydahl)</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;(4)
+    <ol id="v6.4.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9969">SOLR-9969</a>: "Plugin/Stats" section of the UI doesn't display empty metric types
+<br /><span class="attrib">(Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8491">SOLR-8491</a>: solr.cmd SOLR_SSL_OPTS is overwritten
+<br /><span class="attrib">(Sam Yi, Andy Hind, Marcel Berteler, Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10031">SOLR-10031</a>: Validation of filename params in ReplicationHandler
+<br /><span class="attrib">(Hrishikesh Gadre, janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-10054">SOLR-10054</a>: Core swapping doesn't work with new metrics changes in place
+<br /><span class="attrib">(ab)</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>Consult the <a href="http://lucene.apache.org/core/6_5_1/changes/Changes.html">LUCENE_CHANGES.txt</a> file for additional, low level, changes in this release.
+</li>
+  </li>
+  <li><a id="v6.4.0.versions_of_major_components" href="javascript:toggleList('v6.4.0.versions_of_major_components')">Versions of Major Components</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.4.0.versions_of_major_components.list">
+      <li>Apache Tika 1.13
+</li>
+      <li>Carrot2 3.15.0
+</li>
+      <li>Velocity 1.7 and Velocity Tools 2.0
+</li>
+      <li>Apache UIMA 2.3.1
+</li>
+      <li>Apache ZooKeeper 3.4.6
+</li>
+      <li>Jetty 9.3.14.v20161028
+</li>
+    </ol>
+  </li>
+  <h4>Detailed Change List</h4>
+  <li><a id="v6.4.0.upgrade_notes" href="javascript:toggleList('v6.4.0.upgrade_notes')">Upgrade Notes</a>&nbsp;&nbsp;&nbsp;(8)
+    <ol id="v6.4.0.upgrade_notes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9166">SOLR-9166</a>: Export handler returns zero for numeric fields that are not in the original doc. One
+consequence of this change is that you must be aware that some tuples will not have values if
+there were none in the original document.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8785">SOLR-8785</a>: Metrics related classes in org.apache.solr.util.stats have been removed in favor of
+the dropwizard metrics library. Any custom plugins using these classes should be changed to use
+the equivalent classes from the metrics library.
+As part of this, the following changes were made to the output of Overseer Status API:
+</li>
+      <li>The "totalTime" metric has been removed because it is no longer supported
+</li>
+      <li>The metrics "75thPctlRequestTime", "95thPctlRequestTime", "99thPctlRequestTime"
+and "999thPctlRequestTime" in Overseer Status API have been renamed to "75thPcRequestTime", "95thPcRequestTime"
+and so on for consistency with stats output in other parts of Solr.
+</li>
+      <li>The metrics "avgRequestsPerMinute", "5minRateRequestsPerMinute" and "15minRateRequestsPerMinute" have been
+replaced by corresponding per-second rates viz. "avgRequestsPerSecond", "5minRateRequestsPerSecond"
+and "15minRateRequestsPerSecond" for consistency with stats output in other parts of Solr.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9708">SOLR-9708</a>: You are encouraged to try out the UnifiedHighlighter by setting hl.method=unified and report feedback. It
+might become the default in 7.0. It's more efficient/faster than the other highlighters, especially compared to the
+original Highlighter. That said, some options aren't supported yet.
+It will get more features in time, especially with your input. See HighlightParams.java
+for a listing of highlight parameters annotated with which highlighters use them.
+hl.useFastVectorHighlighter is now considered deprecated in lieu of hl.method=fastVector.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9712">SOLR-9712</a>: maxWarmingSearchers now defaults to 1, and more importantly commits will now block if this
+limit is exceeded instead of throwing an exception (a good thing). Consequently there is no longer a
+risk in overlapping commits.  Nonetheless users should continue to avoid excessive committing. Users are
+advised to remove any pre-existing maxWarmingSearchers entries from their solrconfig.xml files.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7466">SOLR-7466</a>: complexphrase query parser now supports leading wildcards. Beware of its' possible heaviness.
+Users are encouraged to use ReversedWildcardFilter in index time analysis.
+<p/>
+</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;(40)
+    <ol id="v6.4.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9918">SOLR-9918</a>: Add SkipExistingDocumentsProcessor that skips duplicate inserts and ignores updates to missing docs
+<br /><span class="attrib">(Tim Owen via koji)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9293">SOLR-9293</a>: Solrj client support for hierarchical clusters and other topics
+marker.
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9681">SOLR-9681</a>: FacetModule / JSON Facet API added the ability to add filters directly to
+any facet command.  The filters are applied after any domain change operations.
+Example:  { type:terms, field:category, filter:"user:yonik" }
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9442">SOLR-9442</a>, <a href="http://issues.apache.org/jira/browse/SOLR-9787">SOLR-9787</a>: Adds Array of Name Type Value (json.nl=arrntv) style to JSONResponseWriter.
+<br /><span class="attrib">(Jonny Marks, Christine Poerschke, hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9055">SOLR-9055</a>: Make collection backup/restore extensible.
+<br /><span class="attrib">(Hrishikesh Gadre, Varun Thacker, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9682">SOLR-9682</a>: JSON Facet API: added "param" query type to facet domain filter specification to obtain
+filters via query parameters.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9038">SOLR-9038</a>: Add a command-line tool to manage the snapshots functionality
+<br /><span class="attrib">(Hrishikesh Gadre via yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9633">SOLR-9633</a>: Limit memory consumed by FastLRUCache with a new 'maxRamMB' config parameter.
+<br /><span class="attrib">(yonik, Michael Sun, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9666">SOLR-9666</a>: SolrJ LukeResponse support dynamic fields
+<br /><span class="attrib">(Fengtan via Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9077">SOLR-9077</a>: Streaming expressions should support collection alias
+<br /><span class="attrib">(Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9324">SOLR-9324</a>: Support Secure Impersonation / Proxy User for solr authentication
+<br /><span class="attrib">(Gregory Chanan, Hrishikesh Gadre via yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9721">SOLR-9721</a>: javabin Tuple parser for streaming and other end points
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9708">SOLR-9708</a>: Added UnifiedSolrHighlighter, a highlighter adapter for Lucene's UnifiedHighlighter. The adapter is a
+derivative of the PostingsSolrHighlighter, supporting mostly the same parameters with some differences.
+Introduced "hl.method" parameter which can be set to original|fastVector|postings|unified to pick the highlighter at
+runtime without the need to modify solrconfig from the default configuration. hl.useFastVectorHighlighter is now
+considered deprecated in lieu of hl.method=fastVector.
+<br /><span class="attrib">(Timothy Rodriguez, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9728">SOLR-9728</a>: Ability to specify Key Store type in solr.in.sh file for SSL
+<br /><span class="attrib">(Michael Suzuki, Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5043">SOLR-5043</a>: New solr.dns.prevent.reverse.lookup system property that can be used to prevent long core
+(re)load delays on systems with missconfigured hostname/DNS
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8542">SOLR-8542</a>: Adds Solr Learning to Rank (LTR) plugin for reranking results with machine learning models.
+<br /><span class="attrib">(Michael Nilsson, Diego Ceccarelli, Joshua Pantony, Jon Dorando, Naveen Santhapuri, Alessandro Benedetti, David Grohmann, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9844">SOLR-9844</a>: FieldCache information fetched via the mbeans handler or seen via the UI now displays the total size used.
+The individual cache entries in the response are now formatted better as well.
+<br /><span class="attrib">(Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9513">SOLR-9513</a>: Generic authentication plugins (GenericHadoopAuthPlugin and ConfigurableInternodeAuthHadoopPlugin) that delegate
+all functionality to Hadoop authentication framework.
+<br /><span class="attrib">(Hrishikesh Gadre via Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9860">SOLR-9860</a>: Enable configuring invariantParams via HttpSolrClient.Builder
+<br /><span class="attrib">(Hrishikesh Gadre, Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9884">SOLR-9884</a>: Add version to segments handler output
+<br /><span class="attrib">(Steven Bower via Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9725">SOLR-9725</a>: Substitute properties into JdbcDataSource configuration
+<br /><span class="attrib">( Jamie Jackson, Yuri Sashevsky via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-4735">SOLR-4735</a>, <a href="http://issues.apache.org/jira/browse/SOLR-9921">SOLR-9921</a>: Improve metrics reporting. This uses the dropwizard metric library, adding an internal
+API for registering and reporting metrics from Solr components. Several new metrics and an improved JMX
+reporter have been added
+<br /><span class="attrib">(Alan Woodward, Jeff Wartes, Christine Poerschke, Kelvin Wong, shalin, ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9788">SOLR-9788</a>: Use instrumented jetty classes provided by the dropwizard metric library.
+<br /><span class="attrib">(shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9805">SOLR-9805</a>: Use metrics-jvm library to instrument jvm internals such as GC, memory usage and others.
+<br /><span class="attrib">(shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9812">SOLR-9812</a>, <a href="http://issues.apache.org/jira/browse/SOLR-9911">SOLR-9911</a>, <a href="http://issues.apache.org/jira/browse/SOLR-9960">SOLR-9960</a>: Added a new /admin/metrics API to return all metrics collected by Solr via API.
+API supports four optional multi-valued parameters:
+<ul class="bulleted-list">
+<li class="bulleted-list">
+'group' (all,jvm,jetty,node,core),
+</li>
+<li class="bulleted-list">
+'type' (all,counter,timer,gauge,histogram),
+</li>
+<li class="bulleted-list">
+'prefix' that filters the returned metrics,
+</li>
+<li class="bulleted-list">
+'registry' that selects one or more registries by prefix (eg. solr.jvm,solr.core.collection1)
+</li>
+<li class="bulleted-list">
+Example: <a href="http://localhost:8983/solr/admin/metrics?group=jvm,jetty&amp;type=counter">http://localhost:8983/solr/admin/metrics?group=jvm,jetty&amp;type=counter</a>
+</li>
+<li class="bulleted-list">
+Example: <a href="http://localhost:8983/solr/admin/metrics?group=jvm&amp;prefix=buffers,os">http://localhost:8983/solr/admin/metrics?group=jvm&amp;prefix=buffers,os</a>
+</li>
+<li class="bulleted-list">
+Example: <a href="http://localhost:8983/solr/admin/metrics?registry=solr.node,solr.core&amp;prefix=ADMIN">http://localhost:8983/solr/admin/metrics?registry=solr.node,solr.core&amp;prefix=ADMIN</a>
+</li>
+</ul>
+<span class="attrib">(shalin, ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9880">SOLR-9880</a>: Add Ganglia, Graphite and SLF4J metrics reporters.
+<br /><span class="attrib">(ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9897">SOLR-9897</a>: Add hl.requireFieldMatch toggle support when using the UnifiedHighlighter.  Defaults to false like the
+other highlighters that support this.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9905">SOLR-9905</a>: Add NullStream to isolate the performance of the ExportWriter
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9891">SOLR-9891</a>: Add mkroot command to bin/solr and bin/solr.cmd
+<br /><span class="attrib">(Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9668">SOLR-9668</a>,<a href="http://issues.apache.org/jira/browse/SOLR-7197">SOLR-7197</a>: introduce cursorMark='true' in SolrEntityProcessor
+<br /><span class="attrib">(Yegor Kozlov, Raveendra Yerraguntl via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9684">SOLR-9684</a>: Add priority Streaming Expression
+<br /><span class="attrib">(Joel Bernstein, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9854">SOLR-9854</a>: Collect metrics for index merges and index store IO
+<br /><span class="attrib">(ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8530">SOLR-8530</a>: Add HavingStream to Streaming API and StreamingExpressions
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9877">SOLR-9877</a>: <a href="http://issues.apache.org/jira/browse/SOLR-9923">SOLR-9923</a>: <a href="http://issues.apache.org/jira/browse/SOLR-9948">SOLR-9948</a>: Use instrumented http client and connection pool in HttpShardHandler and
+UpdateShardHandler. The metrics are collected per query-less URL and method by default but it can be configured
+to host/method and per-method as well.
+<br /><span class="attrib">(shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9896">SOLR-9896</a>: Instrument and collect metrics from query, update, core admin and core load thread pools.
+<br /><span class="attrib">(shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7466">SOLR-7466</a>: Enable leading wildcard in complexphrase query parser, optimize it with  ReversedWildcardFilterFactory
+when it's provided
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9935">SOLR-9935</a>: Add hl.fragsize support when using the UnifiedHighlighter to avoid snippets/Passages that are too small.
+Defaults to 70.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9856">SOLR-9856</a>: Collect metrics for shard replication and tlog replay on replicas
+<br /><span class="attrib">(ab)</span>.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9886">SOLR-9886</a>: Add a 'enable' flag to caches to enable/disable them
+<br /><span class="attrib">(Pushkar Raste, noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9947">SOLR-9947</a>: Clean up some SolrInfoMBean categories. Add an alternative hierarchical view in JMX
+for SolrInfoMBeans, which uses similar conventions to SolrJmxReporter.
+<br /><span class="attrib">(ab)</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/SOLR-9704">SOLR-9704</a>: Facet Module / JSON Facet API: Optimize blockChildren facets that have
+filters specified by using those filters as acceptDocs.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9726">SOLR-9726</a>: Reduce number of lookupOrd calls made by the DocValuesFacets.getCounts method.
+<br /><span class="attrib">(Jonny Marks via Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9772">SOLR-9772</a>: Deriving distributed sort values (fieldSortValues) should reuse
+comparator and only invalidate leafComparator.
+<br /><span class="attrib">(John Call via yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9786">SOLR-9786</a>: FieldType has a new getSetQuery() method that can take a set of terms
+and create a more efficient query (such as TermsQuery).  The solr query parser has been
+changed to use this method when appropriate.  The parser also knows when it is being
+used to parse a filter and will create TermsQueries from large lists of normal terms
+or numbers, resulting in a query that will execute faster.  This also acts to avoid
+BooleanQuery maximum clause limit.  Query parsing itself has also been optimized,
+resulting in less produced garbage and 5-7% better performance.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9902">SOLR-9902</a>: StandardDirectoryFactory should use Files API for it's move implementation.
+<br /><span class="attrib">(Mark Miller, Mike Drob)</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;(39)
+    <ol id="v6.4.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9701">SOLR-9701</a>: NPE in export handler when "fl" parameter is omitted.
+<br /><span class="attrib">(Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9433">SOLR-9433</a>: SolrCore clean-up logic uses incorrect path to delete dataDir on failure to create a core.
+<br /><span class="attrib">(Evan Sayer, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9360">SOLR-9360</a>: Solr script not properly checking SOLR_PID
+<br /><span class="attrib">(Alessandro Benedetti via Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9716">SOLR-9716</a>: RecoveryStrategy sends prep recovery command without setting read time out which can cause
+replica recovery to hang indefinitely on network partitions.
+<br /><span class="attrib">(Cao Manh Dat, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9624">SOLR-9624</a>: In Admin UI, do not attempt to highlight CSV output
+<br /><span class="attrib">(Alexandre Rafalovitch)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9005">SOLR-9005</a>: In files example, add a guard condition to javascript URP script
+<br /><span class="attrib">(Alexandre Rafalovitch)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9519">SOLR-9519</a>: JSON Facet API: don't stop at an empty facet bucket if any sub-facets still have a chance
+of matching something due to filter exclusions (which can widen the domain again).
+<br /><span class="attrib">(Michael Sun, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9740">SOLR-9740</a>: A bug in macro expansion of multi-valued parameters caused non-expanded values
+after the first expanded value in the same multi-valued parameter to be dropped.
+<br /><span class="attrib">(Erik Hatcher, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9751">SOLR-9751</a>: PreAnalyzedField can cause managed schema corruption.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9736">SOLR-9736</a>: Solr resolves the collection name against the first available leader or first replica
+of the first slice. This puts undue pressure on leader cores and likely on the wrong ones. This is
+fixed to randomly pick a leader on updates or a replica core otherwise.
+<br /><span class="attrib">(Cao Manh Dat via shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9284">SOLR-9284</a>: The HDFS BlockDirectoryCache should not let it's keysToRelease or names maps grow indefinitely.
+<br /><span class="attrib">(Mark Miller, Michael Sun)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9729">SOLR-9729</a>: JDBCStream improvements
+<br /><span class="attrib">(Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9626">SOLR-9626</a>: new Admin UI now also highlights matched terms in the Analysis screen.
+<br /><span class="attrib">(Alexandre Rafalovitch)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9512">SOLR-9512</a>: CloudSolrClient's cluster state cache can break direct updates to leaders
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5260">SOLR-5260</a>: Facet search on a docvalue field in a multi shard collection
+<br /><span class="attrib">(Trym Møller, Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9768">SOLR-9768</a>: RecordingJsonParser produces incomplete json
+<br /><span class="attrib">(Wojciech Stryszyk via ab)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9616">SOLR-9616</a>: Solr throws exception when expand=true on empty index
+<br /><span class="attrib">(Timo Hund via Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9832">SOLR-9832</a>: Schema modifications are not immediately visible on the coordinating node.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9834">SOLR-9834</a>: A variety of spots in the code can create a collection zk node after the collection has been
+removed.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9707">SOLR-9707</a>: Don't forward DeleteByQuery requests to down replicas.
+<br /><span class="attrib">(Jessica Cheng Mallet via Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9823">SOLR-9823</a>: CoreContainer incorrectly setting MDCLoggingContext for core
+<br /><span class="attrib">(Jessica Cheng Mallet via Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-1953">SOLR-1953</a>: It may be possible for temporary files to accumulate until the Solr process is shut down.
+<br /><span class="attrib">(Karl Wright, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9847">SOLR-9847</a>: Stop blocking further schema updates while waiting for a pending update to propagate to other replicas.
+This reduces the likelihood of a (time-limited) distributed deadlock during concurrent schema updates.
+<br /><span class="attrib">(Mark Miller, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9760">SOLR-9760</a>: Windows script doesn't need write permission
+<br /><span class="attrib">(Alex Crome by Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9699">SOLR-9699</a>,<a href="http://issues.apache.org/jira/browse/SOLR-4668">SOLR-4668</a>: fix exception from core status in parallel with core reload
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9900">SOLR-9900</a>: fix false positives on range queries with ReversedWildcardFilterFactory
+<br /><span class="attrib">(Yonik Seeley via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9620">SOLR-9620</a>: fix cross core query-time join by numeric fields
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9495">SOLR-9495</a>: AIOBE with confusing message for incomplete sort spec in Streaming Expression
+<br /><span class="attrib">(Gus Heck, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9154">SOLR-9154</a>: Fix DirectSolrSpellChecker to work when added through the Config API.
+<br /><span class="attrib">(Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9859">SOLR-9859</a>: replication.properties cannot be updated after being written and neither replication.properties or
+index.properties are durable in the face of a crash.
+<br /><span class="attrib">(Pushkar Raste, Chris de Kok, Cao Manh Dat, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9901">SOLR-9901</a>: Implement move in HdfsDirectoryFactory.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9919">SOLR-9919</a>: random Streaming Expression is not registered in /stream or /graph handler
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7495">SOLR-7495</a>: Support Facet.field on a non-DocValued, single-value, int field
+<br /><span class="attrib">(Varun Thacker, Scott Stults)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9917">SOLR-9917</a>: JSON Facet API percentile function caused a NullPointerException in distributed mode when
+there were no values in a bucket from a shard.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9931">SOLR-9931</a>: JSON Facet API hll (hyper-log-log) function returned 0 for non-empty buckets with no field values
+in local mode, but nothing for distributed mode.  Both modes now return 0.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9503">SOLR-9503</a>: NPE in Replica Placement Rules when using Overseer Role with other rules
+<br /><span class="attrib">(Tim Owen via noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9883">SOLR-9883</a>: Example schemaless solr config files can lead to invalid tlog replays: when updates are buffered,
+update processors ordered before DistributedUpdateProcessor, e.g. field normalization, are never run.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9644">SOLR-9644</a>: SimpleMLTQParser and CloudMLTQParser did not handle field boosts properly
+and CloudMLTQParser included extra strings from the field definitions in the query.
+<br /><span class="attrib">(Ere Maijala via Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9954">SOLR-9954</a>: Prevent against failure during failed snapshot cleanup from swallowing the actual cause
+for the snapshot to fail.
+<br /><span class="attrib">(thelabdude)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.4.0.other_changes" href="javascript:toggleList('v6.4.0.other_changes')">Other Changes</a>&nbsp;&nbsp;&nbsp;(29)
+    <ol id="v6.4.0.other_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7539">SOLR-7539</a>: Upgrade the clustering plugin to Carrot2 3.15.0.
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9621">SOLR-9621</a>: Remove several Guava &amp; Apache Commons calls in favor of java 8 alternatives.
+<br /><span class="attrib">(Michael Braun via David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9720">SOLR-9720</a>: Refactor Responsewriters to remove dependencies on TupleStream,
+Tuple, Explanation
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9717">SOLR-9717</a>: Refactor '/export' to not hardcode the JSON output and to use an API
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9739">SOLR-9739</a>: JavabinCodec implements PushWriter interface
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8332">SOLR-8332</a>: Factor HttpShardHandler[Factory]'s url shuffling out into a ReplicaListTransformer class.
+<br /><span class="attrib">(Christine Poerschke, Noble Paul)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9597">SOLR-9597</a>: Add setReadOnly(String ...) to ConnectionImpl
+<br /><span class="attrib">(Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9609">SOLR-9609</a>: Change hard-coded keysize from 512 to 1024
+<br /><span class="attrib">(Jeremy Martini via Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8785">SOLR-8785</a>: Use Dropwizard Metrics library for core metrics. The copied over code in
+org.apache.solr.util.stats has been removed.
+<br /><span class="attrib">(Jeff Wartes, Kelvin Wong, Christine Poerschke, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9784">SOLR-9784</a>: Refactor CloudSolrClient to eliminate direct dependency on ZK
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9801">SOLR-9801</a>: Upgrade jetty to 9.3.14.v20161028
+<br /><span class="attrib">(shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9783">SOLR-9783</a>: (Search|Top)Group[s]ShardResponseProcessor.process: turned sortWithinGroup null check into assert.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9660">SOLR-9660</a>: in GroupingSpecification factor [group](sort|offset|limit) into [group](sortSpec)
+<br /><span class="attrib">(Judith Silverman, Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9819">SOLR-9819</a>: Upgrade commons-fileupload to 1.3.2, fixing a potential vulnerability CVE-2016-3092
+<br /><span class="attrib">(Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9827">SOLR-9827</a>: ConcurrentUpdateSolrClient creates a RemoteSolrException if the remote host responded with a non-ok
+response (instead of a SolrException) and includes the remote error message as part of the exception message
+<br /><span class="attrib">(Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8959">SOLR-8959</a>: Refactored TestSegmentSorting out of TestMiniSolrCloudCluster
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9846">SOLR-9846</a>: OverseerAutoReplicaFailoverThread can take too long to stop and leak out of unit tests.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9874">SOLR-9874</a>: Solr will reject CREATEALIAS requests if target collections don't exist
+<br /><span class="attrib">(Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9878">SOLR-9878</a>: fixing lazy logic for retrieving ReversedWildcardFilterFactory in SolrQueryParserBase
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9758">SOLR-9758</a>: refactor preferLocalShards implementation
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9448">SOLR-9448</a>: providing a test to workaround a differently named uniqueKey field
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9915">SOLR-9915</a>: PeerSync alreadyInSync check is not backwards compatible and results in full replication during a rolling restart
+<br /><span class="attrib">(Tim Owen via noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9899">SOLR-9899</a>: StandardDirectoryFactory should use optimizations for all FilterDirectorys not just NRTCachingDirectory.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-3990">SOLR-3990</a>: Moves getIndexSize() from ReplicationHandler to SolrCore
+<br /><span class="attrib">(Shawn Heisey)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5616">SOLR-5616</a>: Simplifies grouping code to use ResponseBuilder.needDocList() to determine if it needs to
+generate a doc list for grouped results.
+<br /><span class="attrib">(Steven Bower, Keith Laban, Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9944">SOLR-9944</a>: Map the nodes function name to the GatherNodesStream
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9777">SOLR-9777</a>: IndexFingerprinting should use getCombinedCoreAndDeletesKey() instead of getCoreCacheKey() for per-segment caching
+<br /><span class="attrib">(Ishan Chattopadhyaya)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9934">SOLR-9934</a>: SolrTestCase.clearIndex has been improved to take advantage of low level test specific logic that
+clears the index metadata more completely then a normal *:* DBQ can due to update versioning.
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9893">SOLR-9893</a>: Update Mockito to version 2.6.2 for Java 9 support. Disable all legacy EasyMock tests when running
+on Java 9 until they were migrated to Mockito.
+<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>Consult the <a href="http://lucene.apache.org/core/6_5_1/changes/Changes.html">LUCENE_CHANGES.txt</a> file for additional, low level, changes in this release.
+</li>
+  </li>
+  <li><a id="v6.3.0.versions_of_major_components" href="javascript:toggleList('v6.3.0.versions_of_major_components')">Versions of Major Components</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.3.0.versions_of_major_components.list">
+      <li>Apache Tika 1.13
+</li>
+      <li>Carrot2 3.12.0
+</li>
+      <li>Velocity 1.7 and Velocity Tools 2.0
+</li>
+      <li>Apache UIMA 2.3.1
+</li>
+      <li>Apache ZooKeeper 3.4.6
+</li>
+      <li>Jetty 9.3.8.v20160314
+</li>
+    </ol>
+  </li>
+  <h4>Detailed Change List</h4>
+  <li><a id="v6.3.0.upgrade_notes" href="javascript:toggleList('v6.3.0.upgrade_notes')">Upgrade Notes</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.3.0.upgrade_notes.list">
+      <li>If you use the JSON Facet API (json.facet) with method=stream, you must now set sort='index asc' to get the streaming
+behavior; otherwise it won't stream.  Reminder: "method" is a hint that doesn't change defaults of other parameters.
+<p/>
+</li>
+      <li>If you use the JSON Facet API (json.facet) to facet on a numeric field and if you use mincount=0 or if you set the
+prefix, then you will now get an error as these options are incompatible with numeric faceting.
+<p/>
+</li>
+      <li>Solr's logging verbosity at the INFO level has been greatly reduced, and
+you may need to update the log configs to use the DEBUG level to see all the
+logging messages you used to see at INFO level before.
+<p/>
+</li>
+      <li>We are no longer backing up solr.log and solr_gc.log files in date-stamped copies forever. If you relied on
+the solr_log_&lt;date&gt; or solr_gc_log_&lt;date&gt; being in the logs folder that will no longer be the case.
+See <a href="http://issues.apache.org/jira/browse/SOLR-9570">SOLR-9570</a> for details.
+<p/>
+</li>
+      <li>The create/deleteCollection methods on MiniSolrCloudCluster have been
+deprecated.  Clients should instead use the CollectionAdminRequest API.  In
+addition, MiniSolrCloudCluster#uploadConfigDir(File, String) has been
+deprecated in favour of #uploadConfigSet(Path, String)
+<p/>
+</li>
+      <li>The bin/solr.in.sh (bin/solr.in.cmd on Windows) is now completely commented by default. Previously, this wasn't so,
+which had the effect of masking existing environment variables.
+<p/>
+</li>
+    </ol>
+  </li>
+  <li><a id="v6.3.0.new_features" href="javascript:toggleList('v6.3.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(29)
+    <ol id="v6.3.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5725">SOLR-5725</a>: facet.method=enum can bypass exact counts calculation with facet.exists=true, it just returns 1 for
+terms which exists in result docset.
+<br /><span class="attrib">(Alexey Kozhemiakin, Sebastian Koziel, Radoslaw Zielinski via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9127">SOLR-9127</a>: Excel workbook (.xlsx) response writer. use 'wt=xlsx'
+<br /><span class="attrib">(Tony Moriarty, noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9469">SOLR-9469</a>: JettySolrRunner now has the option of restarting using a different
+port
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9319">SOLR-9319</a>: DELETEREPLICA can accept a 'count' and remove appropriate replicas
+<br /><span class="attrib">(Nitin Sharma, noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8186">SOLR-8186</a>: Reduce logging to logs/solr-&lt;port&gt;-console.log when not running in foreground mode
+Show timestamp also in foreground log. Also removes some logging noise.
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8487">SOLR-8487</a>: Adds CommitStream to support sending commits to a collection being updated.
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9534">SOLR-9534</a>: You can now set Solr's log level through environment variable SOLR_LOG_LEVEL
+Also adds conveience arguments -q (quiet: WARN) and -v (verbose: DEBUG) to bin/solr
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8395">SOLR-8395</a>: query time {!join} for single value numeric fields.
+<br /><span class="attrib">(Cao Manh Dat via mkhl)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9537">SOLR-9537</a>: Support facet scoring with the scoreNodes expression
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9558">SOLR-9558</a>: DIH TemplateTransformerto to support multivalued fields
+<br /><span class="attrib">(Ted Sullivan via noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9557">SOLR-9557</a>: Every implicit requesthandler now has a default 'useParams' attribute
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9572">SOLR-9572</a>: config API to show expanded useParams for request handlers inline
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9258">SOLR-9258</a>: Optimizing, storing and deploying AI models with Streaming Expressions
+<br /><span class="attrib">(Cao Manh Dat, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9205">SOLR-9205</a>: Added method LukeResponse.getSchemaFlags() which returns field
+information as an EnumSet
+<br /><span class="attrib">(Fengtan, Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9520">SOLR-9520</a>: Kerberos delegation support in SolrJ
+<br /><span class="attrib">(Ishan Chattopadhyaya, noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9146">SOLR-9146</a>: Parallel SQL engine should support &gt;, &gt;=, &lt;, &lt;=, &lt;&gt;, != syntax
+<br /><span class="attrib">(Timothy Potter, Joel Bernstein, Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9337">SOLR-9337</a>: Add fetch Streaming Expression
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9103">SOLR-9103</a>: Restore ability for users to add custom Streaming Expressions
+<br /><span class="attrib">(Cao Manh Dat)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9657">SOLR-9657</a>: New TemplateUpdateProcessorFactory added
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8487">SOLR-8487</a>: Adds CommitStream to support sending commits to a collection being updated
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9417">SOLR-9417</a>: Allow daemons to terminate when they finish iterating a topic
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8370">SOLR-8370</a>: Display configured Similarity in Schema-Browser, both global/default and per-field/field-type
+<br /><span class="attrib">(janhoy, Alexandre Rafalovitch)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9326">SOLR-9326</a>: Ability to create/delete/list snapshots at collection level.
+<br /><span class="attrib">(Hrishikesh Gadre via yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9662">SOLR-9662</a>: New parameter -u &lt;user:pass&gt; in bin/post to pass basicauth credentials
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9654">SOLR-9654</a>: Add "overrequest" parameter to JSON Facet API to control amount of overrequest
+on a distributed terms facet.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-2212">SOLR-2212</a>: Add a factory class corresponding to Lucene's NoMergePolicy.
+<br /><span class="attrib">(Lance Norskog, Cao Manh Dat via shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9670">SOLR-9670</a>: Support SOLR_AUTHENTICATION_OPTS in solr.cmd
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9559">SOLR-9559</a>: Add ExecutorStream to execute stored Streaming Expressions
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-1085">SOLR-1085</a>: Add support for MoreLikeThis queries and responses in SolrJ client.
+<br /><span class="attrib">(Maurice Jumelet, Bill Mitchell, Cao Manh Dat via shalin)</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;(27)
+    <ol id="v6.3.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9310">SOLR-9310</a>: PeerSync fails on a node restart due to IndexFingerPrint mismatch
+<br /><span class="attrib">(Pushkar Raste, noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9344">SOLR-9344</a>: HttpClientConfigurers are now chained, rather than only one being
+set at a time.  This prevents a bug where BasicAuth and SSL could not be
+combined on an HttpClient object.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9484">SOLR-9484</a>: The modify collection API should wait for the modified properties to show up in the
+cluster state.
+<br /><span class="attrib">(Cao Manh Dat, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9507">SOLR-9507</a>: CoreContainer threads now correctly set their MDC logging values
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9522">SOLR-9522</a>: Improve error handling in ZKPropertiesWriter
+<br /><span class="attrib">(Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8080">SOLR-8080</a>: bin/solr start script now exits with informative message if using wrong Java version
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9475">SOLR-9475</a>: bin/install_solr_service.sh script got improved detection of Linux distro, especially within
+virtualized/Docker environment through parsing of /etc/*-release files. Now also supports CentOS.

[... 13964 lines stripped ...]