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

svn commit: r13973 [16/22] - in /dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94: ./ 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.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/changes/Changes.html
==============================================================================
--- dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/changes/Changes.html (added)
+++ dev/lucene/lucene-solr-6.1.0-RC1-rev4726c5b2d2efa9ba160b608d46a977d0a6b83f94/solr/changes/Changes.html Mon Jun 13 09:06:06 2016
@@ -0,0 +1,13239 @@
+<!--
+**********************************************************
+** 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\\\\.1\\\\.0|v6\\\\.0\\\\.1)");
+    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.1.0.list' 
+            && list.id != 'v6.0.1.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.1.0' || anchor.id == 'v6.0.1') {
+            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.1.0" href="javascript:toggleList('v6.1.0')">Release 6.1.0 </a></h2>
+<ul id="v6.1.0.list">
+      <li>Upgrading from Solr any prior release
+<ul class="bulleted-list">
+<li class="bulleted-list">
+---------------------
+</li>
+</ul>
+</li>
+      <li>* If you use historical dates, specifically on or before the year 1582, you should re-index.
+</li>
+  </li>
+  <h3>Detailed Change List</h3>
+  <li><a id="v6.1.0.new_features" href="javascript:toggleList('v6.1.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(32)
+    <ol id="v6.1.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8782">SOLR-8782</a>: Add asynchronous sugar methods to the SolrJ Collections API.  You
+can now call .processAsync() to run a method asynchronously, or
+.processAndWait() to wait for a call to finish without holding HTTP
+collections open.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8765">SOLR-8765</a>: Enforce required parameters at query construction time in the SolrJ
+Collections API, add static factory methods, and deprecate old setter methods.
+<br /><span class="attrib">(Alan Woodward, Jason Gerlowski)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8842">SOLR-8842</a>: authorization APIs do not use name as an identifier for a permission
+for update, delete commands and 'before' attribute
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8814">SOLR-8814</a>: Support GeoJSON response writer and general spatial formatting.  Adding
+   &amp;wt=geojson&amp;geojson.field=&lt;your geometry field&gt;
+Will return a FeatureCollection for each SolrDocumentList and a Feature with the
+requested geometry for each SolrDocument.  The requested geometry field needs
+to either extend AbstractSpatialFieldType or store a GeoJSON string.  This also adds
+a [geo] DocumentTransformer that can return the Shape in a variety of formats:
+  &amp;fl=[geo f=&lt;your geometry field&gt; w=(GeoJSON|WKT|POLY)]
+The default format is GeoJSON.  For information on the supported formats, see:
+<a href="https://github.com/locationtech/spatial4j/blob/master/FORMATS.md">https://github.com/locationtech/spatial4j/blob/master/FORMATS.md</a>
+To return the FeatureCollection as the root element, add '&amp;omitHeader=true"
+<br /><span class="attrib">(ryan)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8859">SOLR-8859</a>: Spatial fields like RPT can now be configured to use Spatial4j registered shape formats
+e.g. via format="GeoJSON".
+<br /><span class="attrib">(ryan, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-445">SOLR-445</a>: new ToleranteUpdateProcessorFactory to support skipping update commands that cause
+failures when sending multiple updates in a single request.
+<br /><span class="attrib">(Erick Erickson, Tomás Fernández Löbbe, Anshum Gupta, hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8890">SOLR-8890</a>: New static method in DistributedUpdateProcessorFactory to allow UpdateProcessorFactories
+to indicate request params that should be forwarded when DUP distributes updates.
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8888">SOLR-8888</a>: Add shortestPath Streaming Expression. This expression performs a breadth first
+graph traversal to find the shortest path(s) in an unweighted, directed graph stored in a
+SolrCloud collection.
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8938">SOLR-8938</a>: Add optional --excluderegex argument to ZkCLI.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8976">SOLR-8976</a>: Add SolrJ support for REBALANCELEADERS Collections API
+<br /><span class="attrib">(Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8962">SOLR-8962</a>: Add sort Streaming Expression. The expression takes a single input stream and a
+comparator and outputs tuples in stable order of the comparator.
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8349">SOLR-8349</a>: Allow sharing of large in memory data structures across cores
+<br /><span class="attrib">(Gus Heck, noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8913">SOLR-8913</a>: When using a shared filesystem we should store data dir and tlog dir locations in
+the cluster state.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8809">SOLR-8809</a>: Implement Connection.prepareStatement
+<br /><span class="attrib">(Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9020">SOLR-9020</a>: Implement StatementImpl/ResultSetImpl get/set fetch* methods and proper errors for traversal methods
+<br /><span class="attrib">(Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9041">SOLR-9041</a>: 'core-admin-read' and 'core-admin-edit' are well known permissions
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9009">SOLR-9009</a>: Adds ability to get an Explanation of a Streaming Expression
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8918">SOLR-8918</a>: Adds Streaming to the admin page under the collections section. Includes
+ability to see graphically the expression explanation
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8986">SOLR-8986</a>: Add Random Streaming Expression
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8925">SOLR-8925</a>: Add gatherNodes Streaming Expression to support breadth first traversals
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9027">SOLR-9027</a>: Add GraphTermsQuery to limit traversal on high frequency nodes
+<br /><span class="attrib">(Joel Bernstein, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5750">SOLR-5750</a>: Add /admin/collections?action=BACKUP and RESTORE assuming access to a shared file system.
+<br /><span class="attrib">(Varun Thacker, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9049">SOLR-9049</a>: RuleBasedAuthorizationPlugin supports regex in param values eg: "command" : "REGEX:(i?)create"
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8972">SOLR-8972</a>: Add GraphHandler and GraphMLResponseWriter to support graph visualizations
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9026">SOLR-9026</a>: Extend facet telemetry support to legacy (non-json) facets under "debug/facet-debug" in
+the response.
+<br /><span class="attrib">(Michael Sun, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7117">SOLR-7117</a>: Provide an option to limit the maximum number of cores that can be created on a node by the
+Auto Add Replica feature. For this you can set a "maxCoresPerNode" property via the Cluster Property API
+<br /><span class="attrib">(Varun Thacker, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8208">SOLR-8208</a>: [subquery] document transformer executes separate requests per result document.
+<br /><span class="attrib">(Cao Manh Dat  via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8323">SOLR-8323</a>, <a href="http://issues.apache.org/jira/browse/SOLR-9113">SOLR-9113</a>: Add CollectionStateWatcher API
+<br /><span class="attrib">(Alan Woodward, Scott Blum)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8988">SOLR-8988</a>: Adds query option facet.distrib.mco which when set to true allows the use of facet.mincount=1 in cloud mode.
+<br /><span class="attrib">(Keith Laban, Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8583">SOLR-8583</a>: Apply highlighting to hl.alternateField by default for Default and FastVectorHighlighter.
+Turn off with hl.highlightAlternate=false
+<br /><span class="attrib">(janhoy, David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7123">SOLR-7123</a>: '/update/json/docs' path supports nested documents
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8610">SOLR-8610</a>: Resolve variables in encryptKeyFile of DIH's JdbcDataSource
+<br /><span class="attrib">(Kristine Jetzke via Mikhail Khludnev)</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;(18)
+    <ol id="v6.1.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8948">SOLR-8948</a>: OverseerTaskQueue.containsTaskWithRequestId encounters json parse error if a
+SolrResponse node is in the overseer queue.
+<br /><span class="attrib">(Jessica Cheng Mallet via shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7729">SOLR-7729</a>: ConcurrentUpdateSolrClient ignores the collection parameter in some methods.
+<br /><span class="attrib">(Nicolas Gavalda, Jorge Luis Betancourt Gonzalez via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8662">SOLR-8662</a>: SchemaManager waits correctly for replicas to be notified of a new change.
+<br /><span class="attrib">(sarowe, Noble Paul, Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8983">SOLR-8983</a>: Cleanup clusterstate and replicas for a failed create collection request
+<br /><span class="attrib">(Varun Thacker, Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9029">SOLR-9029</a>: fix rare ZkStateReader visibility race during collection state format update
+<br /><span class="attrib">(Scott Blum, hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9046">SOLR-9046</a>: Fix solr.cmd that wrongly assumes Jetty will always listen on 0.0.0.0.
+<br /><span class="attrib">(Bram Van Dam, Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9064">SOLR-9064</a>: Adds an explanation of the incoming stream to an UpdateStream's explanation
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9128">SOLR-9128</a>: Fix error handling issues in Streaming classes
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9151">SOLR-9151</a>: Fix SolrCLI so that bin/solr -e cloud example can be run from any CWD
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9141">SOLR-9141</a>: Fix ClassCastException when using the /sql handler count() function with
+single-shard collections
+<br /><span class="attrib">(Minoru Osuka via James Dyer)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9165">SOLR-9165</a>: Spellcheck does not return collations if "maxCollationTries" is used with "cursorMark".
+<br /><span class="attrib">(James Dyer)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8940">SOLR-8940</a>: Fix group.sort option
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8612">SOLR-8612</a>: closing JDBC Statement on failures in DataImportHandler (DIH)
+<br /><span class="attrib">(Kristine Jetzke via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8676">SOLR-8676</a>: keep LOG4J_CONFIG in solr.cmd
+<br /><span class="attrib">(Kristine Jetzke via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9198">SOLR-9198</a>: config APIs unable to add multiple values with same name
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9191">SOLR-9191</a>: OverseerTaskQueue.peekTopN() fatally flawed
+<br /><span class="attrib">(Scott Blum, Noble Paul)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8812">SOLR-8812</a>: edismax: turn off mm processing if no explicit mm spec is provided
+and there are explicit operators (except for AND) - addresses problems caused by <a href="http://issues.apache.org/jira/browse/SOLR-2649">SOLR-2649</a>.
+<br /><span class="attrib">(Greg Pendlebury, Jan Høydahl, Erick Erickson, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9176">SOLR-9176</a>: facet method ENUM was sometimes unnecessarily being rewritten to
+FCS, causing slowdowns
+<br /><span class="attrib">(Alessandro Benedetti, Jesse McLaughlin, Alan Woodward)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.1.0.optimizations" href="javascript:toggleList('v6.1.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(10)
+    <ol id="v6.1.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8722">SOLR-8722</a>: Don't force a full ZkStateReader refresh on every Overseer operation.
+<br /><span class="attrib">(Scott Blum via shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8745">SOLR-8745</a>: Deprecate costly ZkStateReader.updateClusterState(), replace with a narrow
+forceUpdateCollection(collection)
+<br /><span class="attrib">(Scott Blum via shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8856">SOLR-8856</a>: Do not cache merge or 'read once' contexts in the hdfs block cache.
+<br /><span class="attrib">(Mark Miller, Mike Drob)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8922">SOLR-8922</a>: Optimize filter creation (DocSetCollector) to minimize the amount of garbage
+produced. This resulted in up to 3x throughput when small filter creation was the bottleneck,
+as well as orders of magnitude less garbage.
+<br /><span class="attrib">(Jeff Wartes, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8937">SOLR-8937</a>: bin/post (SimplePostTool) now streams the standard input instead of buffering fully.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8973">SOLR-8973</a>: Zookeeper frenzy when a core is first created.
+<br /><span class="attrib">(Janmejay Singh, Scott Blum, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9014">SOLR-9014</a>: Deprecate and reduce usage of ClusterState methods which may make calls to ZK via
+the lazy collection reference.
+<br /><span class="attrib">(Scott Blum, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9106">SOLR-9106</a>: Cluster properties are now cached on ZkStateReader.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9147">SOLR-9147</a>: Upgrade commons-io to 2.5, avoid expensive array resizing in EmbeddedSolrServer
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8744">SOLR-8744</a>: Overseer operations performed with fine grained mutual exclusion
+<br /><span class="attrib">(noble, Scott Blum)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.1.0.other_changes" href="javascript:toggleList('v6.1.0.other_changes')">Other Changes</a>&nbsp;&nbsp;&nbsp;(26)
+    <ol id="v6.1.0.other_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8860">SOLR-8860</a>: Remove back-compat handling of router format made in <a href="http://issues.apache.org/jira/browse/SOLR-4221">SOLR-4221</a> in 4.5.0.
+<br /><span class="attrib">(shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8866">SOLR-8866</a>: UpdateLog will now throw an exception if it doesn't know how to serialize a value.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8842">SOLR-8842</a>: security rules made foolproof by asking the requesthandler  about the well known
+permission name.
 The APIs are also modified to use 'index' as the unique identifier instead of name.
+Name is an optional attribute
  now and only to be used when specifying well-known permissions
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8869">SOLR-8869</a>: Optionally disable printing field cache entries in SolrFieldCacheMBean
+<br /><span class="attrib">(Gregory Chanan)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8892">SOLR-8892</a>: Allow SolrInfoMBeans to return different statistics for /jmx vs web ui calls.
+<br /><span class="attrib">(Gregory Chanan, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8097">SOLR-8097</a>: Implement builder pattern design for constructing SolrJ clients and also deprecate direct construction
+of client objects.
+<br /><span class="attrib">(Jason Gerlowski, Shawn Heisey, Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9015">SOLR-9015</a>: Adds SelectStream as a default function in the StreamHandler
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8929">SOLR-8929</a>: Add an idea module for solr/server to enable launching start.jar
+<br /><span class="attrib">(Scott Blum, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8933">SOLR-8933</a>: Solr should not close container streams.
+<br /><span class="attrib">(Mike Drob, Uwe Schindler, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9037">SOLR-9037</a>: Replace multiple "/replication" strings with one static constant.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9047">SOLR-9047</a>: zkcli should allow alternative locations for log4j configuration
+<br /><span class="attrib">(Gregory Chanan)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9066">SOLR-9066</a>: Make CountMetric return long instead of double
+<br /><span class="attrib">(Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9065">SOLR-9065</a>, <a href="http://issues.apache.org/jira/browse/SOLR-9072">SOLR-9072</a>, <a href="http://issues.apache.org/jira/browse/SOLR-9132">SOLR-9132</a>: Migrate some distributed tests to SolrCloudTestCase.
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8184">SOLR-8184</a>: Negative tests for JDBC Connection String
+<br /><span class="attrib">(Susheel Kumar, Jason Gerlowski, Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8458">SOLR-8458</a>: Add Streaming Expressions tests for parameter substitution
+<br /><span class="attrib">(Joel Bernstein, Cao Manh Dat, Dennis Gove, Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8467">SOLR-8467</a>: CloudSolrStream and FacetStream should take a SolrParams object rather than a
+Map&lt;String, String&gt; to allow more complex Solr queries to be specified.
+<br /><span class="attrib">(Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9083">SOLR-9083</a>: Remove all &lt;types&gt; and &lt;fields&gt; from schemas. NOTE: as in the JIRA I left a few in to insure the (no cost)
+back compat.
+<br /><span class="attrib">(Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9105">SOLR-9105</a>: Fix a bunch of typos across 103 files
+<br /><span class="attrib">(Bartosz Krasiński via janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9159">SOLR-9159</a>: New cloud based concurrent atomic update test
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9119">SOLR-9119</a>: several static methods in ValueSourceParser have been made private
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9110">SOLR-9110</a>: Move JoinFromCollection- SubQueryTransformer- BlockJoinFacet- Distrib Tests to SolrCloudTestCase
+<br /><span class="attrib">(Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9160">SOLR-9160</a>: Sync 6x and 7.0 move of UninvertingReader, SlowCompositeReaderWrapper for Solr (<a href="http://issues.apache.org/jira/browse/LUCENE-7283">LUCENE-7283</a>)
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9136">SOLR-9136</a>: Separate out the error statistics into server-side error vs client-side error
+<br /><span class="attrib">(Jessica Cheng Mallet via Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9107">SOLR-9107</a>: new @RandomizeSSL annotation for more fine grained control of SSL testing
+<br /><span class="attrib">(hossman, sarowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9081">SOLR-9081</a>: Make SolrTestCaseJ4.beforeClass() / .afterClass() public so it
+works with Mockito
+<br /><span class="attrib">(Georg Sorst, Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8445">SOLR-8445</a>: fix line separator in log4j.properties files
+<br /><span class="attrib">(Ahmet Arslan via Mikhail Khludnev)</span></li>
+    </ol>
+  </li>
+</ul>
+<h2><a id="v6.0.1" href="javascript:toggleList('v6.0.1')">Release 6.0.1  [2016-05-28]</a></h2>
+<ul id="v6.0.1.list">
+  <li><a id="v6.0.1.upgrade_notes" href="javascript:toggleList('v6.0.1.upgrade_notes')">Upgrade Notes</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.0.1.upgrade_notes.list">
+      <li>If you use historical dates, specifically on or before the year 1582, you should re-index.
+<p/>
+</li>
+    </ol>
+  </li>
+  <li><a id="v6.0.1.bug_fixes" href="javascript:toggleList('v6.0.1.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(24)
+    <ol id="v6.0.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8914">SOLR-8914</a>: ZkStateReader's refreshLiveNodes(Watcher) is not thread safe.
+<br /><span class="attrib">(Scott Blum, hoss,
+sarowe, Erick Erickson, Mark Miller, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9016">SOLR-9016</a>: Fix SolrIdentifierValidator to not allow empty identifiers.
+<br /><span class="attrib">(Shai Erera)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8992">SOLR-8992</a>: Restore Schema API GET method functionality removed in 6.0
+<br /><span class="attrib">(noble, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9080">SOLR-9080</a>, <a href="http://issues.apache.org/jira/browse/SOLR-9085">SOLR-9085</a>: (6.0 bug) For years &lt;= 1582, date math (round,add,sub) introduced error.  Range faceting
+on such dates was also affected.  With this fixed, this is the first release range faceting works on BC years.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8857">SOLR-8857</a>: HdfsUpdateLog does not use configured or new default number of version buckets and is
+hard coded to 256.
+<br /><span class="attrib">(Mark Miller, yonik, Gregory Chanan)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8902">SOLR-8902</a>: Make sure ReturnFields only returns the requested fields from (fl=) evn when
+DocumentTransformers ask for getExtraRequestFields()
+<br /><span class="attrib">(ryan)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8875">SOLR-8875</a>: SolrCloud Overseer clusterState could unexpectedly be null resulting in NPE.
+<br /><span class="attrib">(Scott Blum via David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8946">SOLR-8946</a>: bin/post failed to detect stdin usage on Ubuntu; maybe other unixes.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9004">SOLR-9004</a>: Fix "name" field type definition in films example.
+<br /><span class="attrib">(Alexandre Rafalovitch via Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8990">SOLR-8990</a>: Fix top term links from schema browser page to use {!term} parser
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8971">SOLR-8971</a>: Preserve root cause when wrapping exceptions
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9034">SOLR-9034</a>: Atomic updates failed to work when there were copyField targets that had docValues
+enabled.
+<br /><span class="attrib">(Karthik Ramachandran, Ishan Chattopadhyaya, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9028">SOLR-9028</a>: Fixed some test related bugs preventing SSL + ClientAuth from ever being tested
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9059">SOLR-9059</a>: NPE in SolrClientCache following collection reload
+<br /><span class="attrib">(Joel Bernstein, Ryan Yacyshyn)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8792">SOLR-8792</a>: ZooKeeper ACL support fixed.
+<br /><span class="attrib">(Esther Quansah, Ishan Chattopadhyaya, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9030">SOLR-9030</a>: The 'downnode' overseer command can trip asserts in ZkStateWriter.
+<br /><span class="attrib">(Scott Blum, Mark Miller, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9036">SOLR-9036</a>: Solr slave is doing full replication (entire index) of index after master restart.
+<br /><span class="attrib">(Lior Sapir, Mark Miller, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9058">SOLR-9058</a>: Makes HashJoinStream and OuterHashJoinStream support different field names in the
+incoming streams, eg. fieldA=fieldB.
+<br /><span class="attrib">(Dennis Gove, Stephan Osthold)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9093">SOLR-9093</a>: Fix NullPointerException in TopGroupsShardResponseProcessor.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9118">SOLR-9118</a>: HashQParserPlugin should trim partition keys
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9117">SOLR-9117</a>: The first SolrCore is leaked after reload.
+<br /><span class="attrib">(Jessica Cheng Mallet via shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9116">SOLR-9116</a>: Race condition causing occasional SolrIndexSearcher leak when SolrCore is reloaded.
+<br /><span class="attrib">(Jessica Cheng Mallet via shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8801">SOLR-8801</a>: /bin/solr create script always returns exit code 0 when a collection/core already exists.
+<br /><span class="attrib">(Khalid Alharbi, Marius Grama via Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9134">SOLR-9134</a>: Fix RestManager.addManagedResource return value.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.1.other_changes" href="javascript:toggleList('v6.0.1.other_changes')">Other Changes</a>&nbsp;&nbsp;&nbsp;(7)
+    <ol id="v6.0.1.other_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7516">SOLR-7516</a>: Improve javadocs for JavaBinCodec, ObjectResolver and enforce the single-usage policy.
+<br /><span class="attrib">(Jason Gerlowski, Benoit Vanalderweireldt, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8967">SOLR-8967</a>: In SolrCloud mode, under the 'Core Selector' dropdown in the UI the Replication tab won't be displayed
+anymore. The Replication tab is only beneficial to users running Solr in master-slave mode.
+<br /><span class="attrib">(Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8985">SOLR-8985</a>: Added back support for 'includeDynamic' flag to /schema/fields endpoint
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9131">SOLR-9131</a>: Fix "start solr" text in cluster.vm Velocity template
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9053">SOLR-9053</a>: Upgrade commons-fileupload to 1.3.1, fixing a potential vulnerability
+<br /><span class="attrib">(Jeff Field, Mike Drob via janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9115">SOLR-9115</a>: Get rid of javax.xml.bind.DatatypeConverter in SimplePostTool
+for Java 9 compatibility.
+<br /><span class="attrib">(Uwe Schindler)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5776">SOLR-5776</a>,<a href="http://issues.apache.org/jira/browse/SOLR-9068">SOLR-9068</a>,<a href="http://issues.apache.org/jira/browse/SOLR-8970">SOLR-8970</a>:
+<ul class="bulleted-list">
+<li class="bulleted-list">
+Refactor SSLConfig so that SSLTestConfig can provide SSLContexts using a NullSecureRandom
+  to prevent SSL tests from blocking on entropy starved machines.
+</li>
+<li class="bulleted-list">
+SSLTestConfig: Alternate (psuedo random) NullSecureRandom for Constants.SUN_OS.
+</li>
+<li class="bulleted-list">
+SSLTestConfig: Replace NullSecureRandom w/ NotSecurePsuedoRandom.
+</li>
+<li class="bulleted-list">
+Change SSLTestConfig to use a keystore file that is included as a resource in the
+  test-framework jar so users subclassing SolrTestCaseJ4 don't need to preserve magic paths.
+</li>
+</ul>
+<span class="attrib">(hossman)</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.0.0" href="javascript:toggleList('v6.0.0')">Release 6.0.0  [2016-04-08]</a></h3>
+<ul id="v6.0.0.list">
+      <li>Consult the <a href="http://lucene.apache.org/core/6_1_0/changes/Changes.html">LUCENE_CHANGES.txt</a> file for additional, low level, changes in this release
+</li>
+  </li>
+  <li><a id="v6.0.0.versions_of_major_components" href="javascript:toggleList('v6.0.0.versions_of_major_components')">Versions of Major Components</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v6.0.0.versions_of_major_components.list">
+      <li>Apache Tika 1.7
+</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>
+  <li><a id="v6.0.0.system_requirements" href="javascript:toggleList('v6.0.0.system_requirements')">System Requirements</a>&nbsp;&nbsp;&nbsp;(1)
+    <ol id="v6.0.0.system_requirements.list">
+      <li><a href="http://issues.apache.org/jira/browse/LUCENE-5950">LUCENE-5950</a>: Move to Java 8 as minimum Java version.
+<br /><span class="attrib">(Ryan Ernst, Uwe Schindler)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.upgrading_from_solr_5.x" href="javascript:toggleList('v6.0.0.upgrading_from_solr_5.x')">Upgrading from Solr 5.x</a>&nbsp;&nbsp;&nbsp;(17)
+    <ol id="v6.0.0.upgrading_from_solr_5.x.list">
+      <li>The deprecated SolrServer and subclasses have been removed, use SolrClient
+instead.
+<p/>
+</li>
+      <li>The deprecated &lt;nrtMode&gt; configuration in solrconfig.xml has been removed.
+Please remove it from solrconfig.xml.
+<p/>
+</li>
+      <li>SolrClient.shutdown() has been removed, use SolrClient.close() instead.
+<p/>
+</li>
+      <li>The deprecated zkCredientialsProvider element in solrcloud section of solr.xml
+is now removed. Use the correct spelling (zkCredentialsProvider) instead.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7957">SOLR-7957</a>: internal/expert - ResultContext was significantly changed and expanded
+to allow for multiple full query results (DocLists) per Solr request.
+TransformContext was rendered redundant and was removed.
+<br /><span class="attrib">(yonik)</span></li>
+      <li>Several changes have been made regarding the "Similarity" used in Solr, in order to provide
+better default behavior for new users.  There are 3 key impacts of these changes on existing
+users who upgrade:
+</li>
+      <li>DefaultSimilarityFactory has been removed. If you currently have DefaultSimilarityFactory explicitly
+referenced in your schema.xml, edit your config to use the functionally identical
+ClassicSimilarityFactory.  See <a href="http://issues.apache.org/jira/browse/SOLR-8239">SOLR-8239</a> for more details.
+</li>
+      <li>The implicit default Similarity used when no &lt;similarity/&gt; is configured in schema.xml has
+been changed to SchemaSimilarityFactory.  Users who wish to preserve back-compatible behavior should
+either explicitly configure ClassicSimilarityFactory, or ensure that the luceneMatchVersion
+for the collection is less then 6.0.  See <a href="http://issues.apache.org/jira/browse/SOLR-8270">SOLR-8270</a> + <a href="http://issues.apache.org/jira/browse/SOLR-8271">SOLR-8271</a> for details.
+</li>
+      <li>SchemaSimilarityFactory has been modified to use BM25Similarity as the default for fieldTypes that
+do not explicitly declare a Similarity.  The legacy behavior of using ClassicSimilarity as the
+default will occur if the luceneMatchVersion for the collection is less then 6.0, or the
+'defaultSimFromFieldType' configuration option may be used to specify any default of your choosing.
+See <a href="http://issues.apache.org/jira/browse/SOLR-8261">SOLR-8261</a> + <a href="http://issues.apache.org/jira/browse/SOLR-8329">SOLR-8329</a> for more details.
+<p/>
+</li>
+      <li>If your solrconfig.xml file doesn't explicitly mention the schemaFactory to use then Solr will choose
+the ManagedIndexSchemaFactory by default. Previously it would have chosen ClassicIndexSchemaFactory.
+This means that the Schema APIs ( /&lt;collection&gt;/schema ) are enabled and the schema is mutable.
+When Solr starts your schema.xml file will be renamed to managed-schema. If you want to retain the old behaviour
+then please ensure that the solrconfig.xml explicitly uses the ClassicIndexSchemaFactory :
+&lt;schemaFactory class="ClassicIndexSchemaFactory"/&gt; or your luceneMatchVersion in the solrconfig.xml is less than 6.0
+<p/>
+</li>
+      <li>SolrIndexSearcher.QueryCommand and QueryResult were moved to their own classes. If you reference them
+in your code, you should import them under o.a.s.search (or use your IDE's "Organize Imports").
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8698">SOLR-8698</a>: 'useParams' attribute specified in request handler cannot be overridden from request params
+<p/>
+</li>
+      <li>When requesting stats in date fields, "sum" is now a double value instead of a date. See <a href="http://issues.apache.org/jira/browse/SOLR-8671">SOLR-8671</a>
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8736">SOLR-8736</a>: The deprecated GET methods for schema are now accessible through the bulk API. The output
+has less details and is not backward compatible.
+<p/>
+</li>
+      <li>In the past, Solr guaranteed that retrieval of multi-valued fields would preserve the order of values.
+Because values may now be retrieved from column-stored fields (docValues="true"), in conjunction with the
+fact that docValues do not currently preserve order, means that users should set useDocValuesAsStored="false"
+to prevent future optizations from using the column-stored values over the row-stored values when
+fields have both stored="true" and docValues="true".
+<p/>
+</li>
+      <li>Formatted date-times from Solr have some differences. If the year is more than 4 digits, there is a leading '+'.
+When there is a non-zero number of milliseconds, it is padded with zeros to 3 digits. Negative year (BC) dates are
+now possible.  Parsing: It is now an error to supply a portion of the date out of its, range, like 67 seconds.
+<p/>
+</li>
+      <li>SolrJ no longer includes DateUtil. If for some reason you need to format or parse dates, simply use Instant.format()
+and Instant.parse().
+<p/>
+</li>
+    </ol>
+  </li>
+  <h4>Detailed Change List</h4>
+  <li><a id="v6.0.0.new_features" href="javascript:toggleList('v6.0.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(33)
+    <ol id="v6.0.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-3085">SOLR-3085</a>: New edismax param mm.autoRelax which helps in certain cases of the stopwords/zero-hits issue
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7560">SOLR-7560</a>: Parallel SQL Support
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7707">SOLR-7707</a>: Add StreamExpression Support to RollupStream
+<br /><span class="attrib">(Dennis Gove, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7903">SOLR-7903</a>: Add the FacetStream to the Streaming API and wire it into the SQLHandler
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7986">SOLR-7986</a>: JDBC Driver for SQL Interface
+<br /><span class="attrib">(Uwe Schindler, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8038">SOLR-8038</a>: Add the StatsStream to the Streaming API and wire it into the SQLHandler
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8086">SOLR-8086</a>: Add support for SELECT DISTINCT queries to the SQL interface
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7543">SOLR-7543</a>: Basic graph traversal query
+Example: {!graph from="node_id" to="edge_id"}id:doc_1
+<br /><span class="attrib">(Kevin Watters, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-6273">SOLR-6273</a>: Cross Data Center Replication. Active/passive replication for separate
+SolrClouds hosted on separate data centers.
+<br /><span class="attrib">(Renaud Delbru, Yonik Seeley via Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7938">SOLR-7938</a>: MergeStream now supports merging more than 2 streams together
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8198">SOLR-8198</a>: Change ReducerStream to use StreamEqualitor instead of StreamComparator
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8268">SOLR-8268</a>: StatsStream now implements the Expressible interface
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7584">SOLR-7584</a>: Adds Inner and LeftOuter Joins to the Streaming API and Streaming Expressions
+<br /><span class="attrib">(Dennis Gove, Corey Wu)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8188">SOLR-8188</a>: Adds Hash and OuterHash Joins to the Streaming API and Streaming Expressions
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7669">SOLR-7669</a>: Add SelectStream and Tuple Operations to the Streaming API and Streaming Expressions
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8337">SOLR-8337</a>: Add ReduceOperation and wire it into the ReducerStream
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7904">SOLR-7904</a>: Add StreamExpression Support to FacetStream
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-6398">SOLR-6398</a>: Add IterativeMergeStrategy to support running Parallel Iterative Algorithms inside of Solr
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8436">SOLR-8436</a>: Real-time get now supports filters.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7535">SOLR-7535</a>: Add UpdateStream to Streaming API and Streaming Expression
+<br /><span class="attrib">(Jason Gerlowski, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8479">SOLR-8479</a>: Add JDBCStream to Streaming API and Streaming Expressions for integration with external data sources
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8002">SOLR-8002</a>: Add column alias support to the Parallel SQL Interface
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7525">SOLR-7525</a>: Add ComplementStream and IntersectStream to the Streaming API and Streaming Expressions
+<br /><span class="attrib">(Dennis Gove, Jason Gerlowski, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8415">SOLR-8415</a>: Provide command to switch between non/secure mode in ZK
+<br /><span class="attrib">(Mike Drob, Gregory Chanan)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8556">SOLR-8556</a>: Add ConcatOperation to be used with the SelectStream
+<br /><span class="attrib">(Joel Bernstein, Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8550">SOLR-8550</a>: Add asynchronous DaemonStreams to the Streaming API
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8285">SOLR-8285</a>: Ensure the /export handler works with NULL field values
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8502">SOLR-8502</a>: Improve Solr JDBC Driver to support SQL Clients like DBVisualizer
+<br /><span class="attrib">(Kevin Risden, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8588">SOLR-8588</a>: Add TopicStream to the streaming API to support publish/subscribe messaging
+<br /><span class="attrib">(Joel Bernstein, Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8666">SOLR-8666</a>: Adds header 'zkConnected' to response of SearchHandler and PingRequestHandler to notify the client when
+a connection to zookeeper has been lost and there is a possibility of stale data on the node the request is coming
+from.
+<br /><span class="attrib">(Keith Laban, Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8522">SOLR-8522</a>: Make it possible to use ip fragments in replica placement rules , such as ip_1, ip_2 etc
+<br /><span class="attrib">(Arcadius Ahouansou, noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8698">SOLR-8698</a>: params.json can now specify 'appends' and 'invariants'
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8831">SOLR-8831</a>: allow _version_ field to be retrievable via docValues
+<br /><span class="attrib">(yonik)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.bug_fixes" href="javascript:toggleList('v6.0.0.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(40)
+    <ol id="v6.0.0.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8386">SOLR-8386</a>: Add field option in the new admin UI schema page loads up even when no schemaFactory has been
+explicitly specified since the default is ManagedIndexSchemaFactory.
+<br /><span class="attrib">(Erick Erickson, Upayavira, Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8191">SOLR-8191</a>: Guard against CloudSolrStream close method NullPointerException
+<br /><span class="attrib">(Kevin Risden, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8485">SOLR-8485</a>: SelectStream now properly handles non-lowercase and/or quoted select field names
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8525">SOLR-8525</a>: Fix a few places that were failing to pass dimensional
+values settings when copying a FieldInfo
+<br /><span class="attrib">(Ishan Chattopadhyaya via
+Mike McCandless)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8409">SOLR-8409</a>: Ensures that quotes in solr params (eg. q param) are properly handled
+<br /><span class="attrib">(Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8640">SOLR-8640</a>: CloudSolrClient does not send credentials for update request
+<br /><span class="attrib">(noble, hoss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8461">SOLR-8461</a>: CloudSolrStream and ParallelStream can choose replicas that are not active
+<br /><span class="attrib">(Cao Manh Dat, Varun Thacker, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8527">SOLR-8527</a>: Improve JdbcTest to cleanup properly on failures
+<br /><span class="attrib">(Kevin Risden, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8578">SOLR-8578</a>: Successful or not, requests are not always fully consumed by Solrj clients and we
+count on HttpClient or the JVM.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8683">SOLR-8683</a>: Always consume the full request on the server, not just in the case of an error.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8416">SOLR-8416</a>: The collections create API should return after all replicas are active.
+<br /><span class="attrib">(Michael Sun, Mark Miller, Alexey Serba)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8701">SOLR-8701</a>: CloudSolrClient decides that there are no healthy nodes to handle a request too early.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8694">SOLR-8694</a>: DistributedMap/Queue can create too many Watchers and some code simplification.
+<br /><span class="attrib">(Scott Blum via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8695">SOLR-8695</a>: Ensure ZK watchers are not triggering our watch logic on connection events and
+make this handling more consistent.
+<br /><span class="attrib">(Scott Blum via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8633">SOLR-8633</a>: DistributedUpdateProcess processCommit/deleteByQuery call finish on DUP and
+SolrCmdDistributor, which violates the lifecycle and can cause bugs.
+<br /><span class="attrib">(hossman via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8656">SOLR-8656</a>: PeerSync should use same nUpdates everywhere.
+<br /><span class="attrib">(Ramsey Haddad via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8697">SOLR-8697</a>, <a href="http://issues.apache.org/jira/browse/SOLR-8837">SOLR-8837</a>: Scope ZK election nodes by session to prevent elections from interfering with each other
+and other small LeaderElector improvements.
+<br /><span class="attrib">(Scott Blum via Mark Miller, Alan
+Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8599">SOLR-8599</a>: After a failed connection during construction of SolrZkClient attempt to retry until a connection
+can be made.
+<br /><span class="attrib">(Keith Laban, Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8497">SOLR-8497</a>: Merge index does not mark the Directory objects it creates as 'done' and they are retained in the
+Directory cache.
+<br /><span class="attrib">(Sivlio Sanchez, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8696">SOLR-8696</a>: Start the Overseer before actions that need the overseer on init and when reconnecting after
+zk expiration and improve init logic.
+<br /><span class="attrib">(Scott Blum, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8420">SOLR-8420</a>: Fix long overflow in sumOfSquares for Date statistics.
+<br /><span class="attrib">(Tom Hill, Christine Poerschke,
+Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8748">SOLR-8748</a>: OverseerTaskProcessor limits number of concurrent tasks to just 10 even though the thread pool
+size is 100. The limit has now been increased to 100.
+<br /><span class="attrib">(Scott Blum, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8375">SOLR-8375</a>: ReplicaAssigner rejects valid nodes
+<br /><span class="attrib">(Kelvin Tan, noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8738">SOLR-8738</a>: Fixed false success response when invalid deleteByQuery requests intially hit non-leader
+cloud nodes
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8771">SOLR-8771</a>: Multi-threaded core shutdown creates executor per core.
+<br /><span class="attrib">(Mike Drob via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8145">SOLR-8145</a>: Fix position of OOM killer script when starting Solr in the background
+<br /><span class="attrib">(Jurian Broertjes via
+Timothy Potter)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8769">SOLR-8769</a>: Fix document exclusion in mlt query parser in Cloud mode for schemas that have non-"id"
+unique field
+<br /><span class="attrib">(Erik Hatcher, Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8728">SOLR-8728</a>: ReplicaAssigner throws NPE when a partial list of nodes are only participating in replica
+placement. splitshard should preassign nodes using rules, if rules are present
+<br /><span class="attrib">(noble, Shai Erera)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8779">SOLR-8779</a>: Fix missing InterruptedException handling in ZkStateReader.java
+<br /><span class="attrib">(Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8449">SOLR-8449</a>: Fix the core restore functionality to allow restoring multiple times on the same core
+<br /><span class="attrib">(Johannes Brucher, Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8155">SOLR-8155</a>: JSON Facet API - field faceting on a multi-valued string field without
+docValues (i.e. UnInvertedField implementation), but with a prefix or with a sort
+other than count, resulted in incorrect results.  This has been fixed, and facet.prefix
+support for facet.method=uif has been enabled.
+<br /><span class="attrib">(Mikhail Khludnev, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8135">SOLR-8135</a>: If a core reload is fired after a core close, it is not a non-recoverable error
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8790">SOLR-8790</a>: Collections API responses contain node name in the core-level responses that are
+returned.
+<br /><span class="attrib">(Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8804">SOLR-8804</a>: Fix a race condition in the ClusterStatus API call whereby the call would fail when a concurrent delete
+collection api command was executed
+<br /><span class="attrib">(Alexey Serba, Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8835">SOLR-8835</a>: JSON Facet API: fix faceting exception on multi-valued numeric fields that
+have docValues.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8838">SOLR-8838</a>: Returning non-stored docValues is incorrect for negative floats and doubles.
+<br /><span class="attrib">(Ishan Chattopadhyaya, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8867">SOLR-8867</a>: {!frange} queries will now avoid matching documents without a value in the
+numeric field.  For more complex functions, FunctionValues.exists() must also return true
+for the document to match.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8886">SOLR-8886</a>: Fix TrieField.toObject(IndexableField) to work for field with docValues
+enabled.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8891">SOLR-8891</a>: Fix StrField.toObject and toExternal to work with docValue IndexableField
+instances.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8865">SOLR-8865</a>: Real-time get sometimes fails to retrieve stored fields from docValues.
+<br /><span class="attrib">(Ishan Chattopadhyaya, yonik)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.optimizations" href="javascript:toggleList('v6.0.0.optimizations')">Optimizations</a>&nbsp;&nbsp;&nbsp;(7)
+    <ol id="v6.0.0.optimizations.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7876">SOLR-7876</a>: Speed up queries and operations that use many terms when timeAllowed has not been
+specified.  Speedups of up to 8% were observed.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8037">SOLR-8037</a>: Speed up creation of filters from term range queries (i.e. non-numeric range queries)
+and use the filter cache for term range queries that are part of larger queries.  Some observed
+speedups were up to 2.5x for production of filters, and up to 10x for query evaluation with
+embedded term range queres that resulted in filter cache hits.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8559">SOLR-8559</a>: FCS facet performance optimization which significantly speeds up processing when terms
+are high cardinality and the matching docset is small. When facet minCount &gt; 0 and the number of
+matching documents is small (or 0) this enhancement prevents considering terms which have a 0
+count. Also includes change to move to the next non-zero term value when selecting a segment
+position.
+<br /><span class="attrib">(Keith Laban, Steve Bower, Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8532">SOLR-8532</a>: Optimize GraphQuery when maxDepth is set by not collecting edges at the maxDepth level.
+<br /><span class="attrib">(Kevin Watters via yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8669">SOLR-8669</a>: Non binary responses use chunked encoding because we flush the outputstream early.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8720">SOLR-8720</a>: ZkController#publishAndWaitForDownStates should use #publishNodeAsDown.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8082">SOLR-8082</a>: Can't query against negative float or double values when indexed="false"
+docValues="true" multiValued="false".
+<br /><span class="attrib">(hossman, Ishan Chattopadhyaya, yonik, Steve Rowe)</span></li>
+    </ol>
+  </li>
+  <li><a id="v6.0.0.other_changes" href="javascript:toggleList('v6.0.0.other_changes')">Other Changes</a>&nbsp;&nbsp;&nbsp;(52)
+    <ol id="v6.0.0.other_changes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-6127">SOLR-6127</a>: Improve example docs, using films data
+<br /><span class="attrib">(Varun Thacker via ehatcher)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-6895">SOLR-6895</a>: Deprecated SolrServer classes have been removed
+<br /><span class="attrib">(Alan Woodward,
+Erik Hatcher)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-6954">SOLR-6954</a>: Deprecated SolrClient.shutdown() method removed
+<br /><span class="attrib">(Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7355">SOLR-7355</a>: Switch from Google's ConcurrentLinkedHashMap to Caffeine.  Only
+affects HDFS support.
+<br /><span class="attrib">(Ben Manes via Shawn Heisey)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7624">SOLR-7624</a>: Remove deprecated zkCredientialsProvider element in solrcloud section of solr.xml.
+<br /><span class="attrib">(Xu Zhang, Per Steffensen, Ramkumar Aiyengar, Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7513">SOLR-7513</a>: Add Equalitors to Streaming Expressions
+<br /><span class="attrib">(Dennis Gove, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7528">SOLR-7528</a>: Simplify Interfaces used in Streaming Expressions
+<br /><span class="attrib">(Dennis Gove, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7554">SOLR-7554</a>: Add checks in Streams for incoming stream order
+<br /><span class="attrib">(Dennis Gove, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7441">SOLR-7441</a>: Improve overall robustness of the Streaming stack: Streaming API,
+Streaming Expressions, Parallel SQL
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8153">SOLR-8153</a>: Support upper case and mixed case column identifiers in the SQL interface
+<br /><span class="attrib">(Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8132">SOLR-8132</a>: HDFSDirectoryFactory now defaults to using the global block cache.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8261">SOLR-8261</a>: Change SchemaSimilarityFactory default to BM25Similarity
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8259">SOLR-8259</a>: Remove deprecated JettySolrRunner.getDispatchFilter()
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8258">SOLR-8258</a>: Change default hdfs tlog replication factor from 1 to 3.
+<br /><span class="attrib">(Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8270">SOLR-8270</a>: Change implicit default Similarity to use BM25 when luceneMatchVersion &gt;= 6
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8271">SOLR-8271</a>: Change implicit default Similarity to use SchemaSimilarityFactory when luceneMatchVersion &gt;= 6
+<br /><span class="attrib">(hossman)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8179">SOLR-8179</a>: SQL JDBC - DriverImpl loadParams doesn't support keys with no values in the connection string
+<br /><span class="attrib">(Kevin Risden, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8131">SOLR-8131</a>: Make ManagedIndexSchemaFactory the default schemaFactory when luceneMatchVersion &gt;= 6
+<br /><span class="attrib">(Uwe Schindler, shalin, Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8266">SOLR-8266</a>: Remove Java Serialization from the Streaming API. The /stream handler now only accepts
+Streaming Expressions.
+<br /><span class="attrib">(Jason Gerlowski, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8426">SOLR-8426</a>: Enable /export, /stream and /sql handlers by default and remove them from example configs.
+<br /><span class="attrib">(shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8443">SOLR-8443</a>: Change /stream handler http param from "stream" to "expr"
+<br /><span class="attrib">(Joel Bernstein, Dennis Gove)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5209">SOLR-5209</a>: Unloading or deleting the last replica of a shard now no longer
+cascades to remove the shard from the clusterstate.
+<br /><span class="attrib">(Christine Poerschke)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8190">SOLR-8190</a>: Implement Closeable on TupleStream
+<br /><span class="attrib">(Kevin Risden, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8529">SOLR-8529</a>: Improve JdbcTest to not use plain assert statements
+<br /><span class="attrib">(Kevin Risden, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7339">SOLR-7339</a>: Upgrade Jetty to v9.3.8.v20160314.
+<br /><span class="attrib">(Gregg Donovan, shalin, Mark Miller, Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5730">SOLR-5730</a>: Make Lucene's SortingMergePolicy and EarlyTerminatingSortingCollector configurable in Solr.
+<br /><span class="attrib">(Christine Poerschke, hossmann, Tomás Fernández Löbbe, Shai Erera)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8677">SOLR-8677</a>: Prevent shards containing invalid characters from being created.  Checks added server-side
+and in SolrJ.
+<br /><span class="attrib">(Shai Erera, Jason Gerlowski, Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8693">SOLR-8693</a>: Improve ZkStateReader logging.
+<br /><span class="attrib">(Scott Blum via Mark Miller)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8710">SOLR-8710</a>: Upgrade morfologik-stemming to version 2.1.0.
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8711">SOLR-8711</a>: Upgrade Carrot2 clustering dependency to 3.12.0.
+<br /><span class="attrib">(Dawid Weiss)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8690">SOLR-8690</a>: Make peersync fingerprinting optional with solr.disableFingerprint system
+property.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8691">SOLR-8691</a>: Cache index fingerprints per searcher.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8746">SOLR-8746</a>: Renamed Overseer.getInQueue to getStateUpdateQueue, getInternalQueue to getInternalWorkQueue
+and added javadocs.
+<br /><span class="attrib">(Scott Blum, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8752">SOLR-8752</a>: Add a test for SizeLimitedDistributedMap and improve javadocs.
+<br /><span class="attrib">(shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8671">SOLR-8671</a>: Date statistics: make "sum" a double instead of a long/date
+<br /><span class="attrib">(Tom Hill, Christine Poerschke,
+Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8713">SOLR-8713</a>: new UI and example solrconfig files point to Reference Guide for Solr Query Syntax instead
+of the wiki.
+<br /><span class="attrib">(Marius Grama via Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8758">SOLR-8758</a>: Add a new SolrCloudTestCase class, using MiniSolrCloudCluster
+<br /><span class="attrib">(Alan
+Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8764">SOLR-8764</a>: Remove all deprecated methods and classes from master prior to the 6.0 release.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8780">SOLR-8780</a>: Remove unused OverseerCollectionMessageHandler#getClusterStatus method.
+<br /><span class="attrib">(Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8778">SOLR-8778</a>: Deprecate CSVStrategy's setters, and make its pre-configured strategies immutable.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7010">SOLR-7010</a>: Remove facet.date client functionality.
+<br /><span class="attrib">(Steve Rowe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8725">SOLR-8725</a>: Allow hyphen in collection, core, shard, and alias name as the non-first character
+<br /><span class="attrib">(Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8423">SOLR-8423</a>: DeleteShard and DeleteReplica should cleanup instance and data directory by default and add
+support for optionally retaining the directories.
+<br /><span class="attrib">(Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8736">SOLR-8736</a>: schema GET operations on fields, dynamicFields, fieldTypes, copyField are
+reimplemented as a part of the bulk API with less details
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8766">SOLR-8766</a>: Remove deprecated &lt;admin&gt; tag in solrconfig.xml and support for admin/gettableFiles
+<br /><span class="attrib">(noble, Jason Gerlowski, Varun Thacker)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8799">SOLR-8799</a>: Improve error message when tuple can't be read by SolrJ JDBC
+<br /><span class="attrib">(Kevin Risden, Joel Bernstein)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8836">SOLR-8836</a>: Return 400, and a SolrException when an invalid json is provided to the update handler
+instead of 500.
+<br /><span class="attrib">(Jason Gerlowski via Anshum Gupta)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8740">SOLR-8740</a>: docValues are now enabled by default for most non-text (string, date, and numeric) fields
+in the schema templates.
+<br /><span class="attrib">(yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8819">SOLR-8819</a>: Implement DatabaseMetaDataImpl getTables() and fix getSchemas().
+<br /><span class="attrib">(Trey Cahill,
+Joel Bernstein, Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8810">SOLR-8810</a>: Implement Connection.setReadOnly, Statement.set/getFetchSize,
+ResultSet.getType
+<br /><span class="attrib">(Kevin Risden)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8904">SOLR-8904</a>: All dates are formatted via Instant.toString() (ISO-8601); see Solr upgrade notes for differences. Will
+now parse (and format) dates with a leading '+' or '-' (BC dates or dates &gt; 4 digit year.
+[value] and ms() and contrib/analytics now parse with date math.
+<br /><span class="attrib">(David Smiley)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8904">SOLR-8904</a>: DateUtil in SolrJ moved to the extraction contrib as ExtractionDateUtil.  Obsolete methods were removed.
+<br /><span class="attrib">(David Smiley)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v5.5.1" href="javascript:toggleList('v5.5.1')">Release 5.5.1  [2016-05-05]</a></h3>
+<ul id="v5.5.1.list">
+  <li><a id="v5.5.1.bug_fixes" href="javascript:toggleList('v5.5.1.bug_fixes')">Bug Fixes</a>&nbsp;&nbsp;&nbsp;(7)
+    <ol id="v5.5.1.bug_fixes.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8737">SOLR-8737</a>: Managed synonym lists do not include the original term in the expand
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8734">SOLR-8734</a>: fix (maxMergeDocs|mergeFactor) deprecation warnings: in solrconfig.xml
+&lt;maxMergeDocs|mergeFactor&gt; may not be combined with &lt;mergePolicyFactory&gt; and
+&lt;maxMergeDocs|mergeFactor&gt; on their own or combined with &lt;mergePolicy&gt; is a warning.
+<br /><span class="attrib">(Christine Poerschke, Shai Erera)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8712">SOLR-8712</a>: Variable solr.core.instanceDir was not being resolved
+<br /><span class="attrib">(Kristine
+Jetzke, Shawn Heisey, Alan Woodward)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8793">SOLR-8793</a>: Fix Core admin status API to not fail when computing the size of the segments_N
+file if the file no longer exists (for example, if a commit happened and the IndexReader
+hasn't refreshed yet). In this case the reported size of the file is -1.
+<br /><span class="attrib">(Shai Erera, Alexey Serba, Richard Coggins)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8870">SOLR-8870</a>: AngularJS Query tab no longer URL-encodes the /select part of the request, fixing possible 404 issue
+when Solr is behind a proxy. Also, now supports old-style &amp;qt param when handler not prefixed with "/"
+<br /><span class="attrib">(janhoy)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8908">SOLR-8908</a>: Fix to OnReconnect listener registration to allow listeners to deregister, such
+as when a core is reloaded or deleted to avoid a memory leak.
+<br /><span class="attrib">(Timothy Potter)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-9007">SOLR-9007</a>: Remove mention of the managed_schema_configs as valid config directory when creating
+the collection for the SolrCloud example.
+<br /><span class="attrib">(Timothy Potter)</span></li>
+    </ol>
+  </li>
+</ul>
+<h3><a id="v5.5.0" href="javascript:toggleList('v5.5.0')">Release 5.5.0  [2016-02-23]</a></h3>
+<ul id="v5.5.0.list">
+      <li>Consult the <a href="http://lucene.apache.org/core/6_1_0/changes/Changes.html">LUCENE_CHANGES.txt</a> file for additional, low level, changes in this release
+</li>
+  </li>
+  <li><a id="v5.5.0.versions_of_major_components" href="javascript:toggleList('v5.5.0.versions_of_major_components')">Versions of Major Components</a>&nbsp;&nbsp;&nbsp;(6)
+    <ol id="v5.5.0.versions_of_major_components.list">
+      <li>Apache Tika 1.7
+</li>
+      <li>Carrot2 3.10.4
+</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.2.13.v20150730
+</li>
+    </ol>
+  </li>
+  <li><a id="v5.5.0.upgrading_from_solr_5.4" href="javascript:toggleList('v5.5.0.upgrading_from_solr_5.4')">Upgrading from Solr 5.4</a>&nbsp;&nbsp;&nbsp;(7)
+    <ol id="v5.5.0.upgrading_from_solr_5.4.list">
+      <li>The Solr schema version has been increased to 1.6. Since schema version 1.6, all non-stored docValues fields
+will be returned along with other stored fields when all fields (or pattern matching globs) are specified
+to be returned (e.g. fl=*) for search queries. This behavior can be turned on and off by setting
+'useDocValuesAsStored' parameter for a field or a field type to true (default since schema version 1.6)
+or false (default till schema version 1.5).
+Note that enabling this property has performance implications because DocValues are column-oriented and may
+therefore incur additional cost to retrieve for each returned document. All example schema are upgraded to
+version 1.6 but any older schemas will default to useDocValuesAsStored=false and continue to work as in
+older versions of Solr. If this new behavior is desirable, then you should set version attribute in your
+schema file to '1.6'. Re-indexing is not necessary to upgrade the schema version.
+Also note that while returning non-stored fields from docValues (default in schema versions 1.6+, unless
+useDocValuesAsStored is false), the values of a multi-valued field are returned in sorted order.
+If you require the multi-valued fields to be returned in the original insertion order, then make your
+multi-valued field as stored. This requires re-indexing.
+See <a href="http://issues.apache.org/jira/browse/SOLR-8220">SOLR-8220</a> for more details.
+<p/>
+</li>
+      <li>All protected methods from CoreAdminHandler other than handleCustomAction() is removed by <a href="http://issues.apache.org/jira/browse/SOLR-8476">SOLR-8476</a> and can
+no more be overridden. If you still wish to override those methods, override the handleRequestBody()
+<p/>
+</li>
+      <li>The PERSIST CoreAdmin action which was a NOOP and returned a deprecated message has been removed. See <a href="http://issues.apache.org/jira/browse/SOLR-8476">SOLR-8476</a>
+for more details. The corresponding SolrJ action has also been removed.
+<p/>
+</li>
+      <li>bin/post now defaults application/json files to the /update/json/docs end-point.  Use `-format solr` to force
+files to the /update end-point.   See <a href="http://issues.apache.org/jira/browse/SOLR-7042">SOLR-7042</a> for more details.
+<p/>
+</li>
+      <li>In solrconfig.xml the &lt;mergePolicy&gt; element is deprecated in favor of a similar &lt;mergePolicyFactory&gt; element,
+the &lt;mergeFactor&gt; and &lt;maxMergeDocs&gt; elements are also deprecated, please see <a href="http://issues.apache.org/jira/browse/SOLR-8621">SOLR-8621</a> for full details.
+<p/>
+To migrate your existing solrconfig.xml, you can replace elements as follows:
+<p/>
+&lt;!-- TieredMergePolicy example --&gt;
+&lt;!-- deprecated --&gt;
+&lt;mergeFactor&gt;??&lt;/mergeFactor&gt;
+&lt;mergePolicy class="org.apache.lucene.index.TieredMergePolicy"&gt;
+  &lt;bool name="useCompoundFile"&gt;???&lt;/bool&gt; &lt;!-- deprecated since Lucene/Solr 4.4.0 --&gt;
+  ...
+&lt;/mergePolicy&gt;
+&lt;!-- replacement --&gt;
+&lt;useCompoundFile&gt;???&lt;/useCompoundFile&gt; &lt;!-- since Lucene/Solr 4.4.0 --&gt;
+&lt;mergePolicyFactory class="org.apache.solr.index.TieredMergePolicyFactory"&gt;
+  &lt;int name="maxMergeAtOnce"&gt;??&lt;/int&gt; &lt;!-- formerly the &lt;mergeFactor&gt; element implicitly set this --&gt;
+  &lt;int name="segmentsPerTier"&gt;??&lt;/int&gt; &lt;!-- formerly the &lt;mergeFactor&gt; element implicitly set this --&gt;
+  ...
+&lt;/mergePolicyFactory&gt;
+<p/>
+&lt;!-- Log(ByteSize|Doc)MergePolicy example --&gt;
+&lt;!-- deprecated --&gt;
+&lt;maxMergeDocs&gt;????&lt;/maxMergeDocs&gt;
+&lt;mergeFactor&gt;??&lt;/mergeFactor&gt;
+&lt;mergePolicy class="org.apache.lucene.index.Log?MergePolicy"&gt;
+  &lt;bool name="useCompoundFile"&gt;???&lt;/bool&gt; &lt;!-- deprecated since Lucene/Solr 4.4.0 --&gt;
+  ...
+&lt;/mergePolicy&gt;
+&lt;!-- replacement --&gt;
+&lt;useCompoundFile&gt;???&lt;/useCompoundFile&gt; &lt;!-- since Lucene/Solr 4.4.0 --&gt;
+&lt;mergePolicyFactory class="org.apache.solr.index.Log?MergePolicyFactory"&gt;
+  &lt;int name="maxMergeDocs"&gt;????&lt;/int&gt; &lt;!-- formerly the &lt;maxMergeDocs&gt; element set this --&gt;
+  &lt;int name="mergeFactor"&gt;??&lt;/int&gt; &lt;!-- formerly the &lt;mergeFactor&gt; element set this --&gt;
+  ...
+&lt;/mergePolicyFactory&gt;
+<p/>
+</li>
+      <li>Clearing up stored async collection api responses via REQUESTSTATUS call is now deprecated and would be
+removed in 6.0. See <a href="http://issues.apache.org/jira/browse/SOLR-8648">SOLR-8648</a> for more details.
+<p/>
+</li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-6594">SOLR-6594</a>: Deprecated the old schema API which will be removed in a later major release
+<p/>
+</li>
+    </ol>
+  </li>
+  <h4>Detailed Change List</h4>
+  <li><a id="v5.5.0.new_features" href="javascript:toggleList('v5.5.0.new_features')">New Features</a>&nbsp;&nbsp;&nbsp;(22)
+    <ol id="v5.5.0.new_features.list">
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-7928">SOLR-7928</a>: Improve CheckIndex to work against HdfsDirectory
+<br /><span class="attrib">(Mike Drob, Gregory Chanan)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8378">SOLR-8378</a>: Add upconfig and downconfig commands to the bin/solr script
+<br /><span class="attrib">(Erick Erickson)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8434">SOLR-8434</a>: Add wildcard support to role, to match any role in RuleBasedAuthorizationPlugin
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-4280">SOLR-4280</a>: Allow specifying "spellcheck.maxResultsForSuggest" as a percentage of filter
+query results
+<br /><span class="attrib">(Markus Jelsma via James Dyer)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8429">SOLR-8429</a>: Add a flag 'blockUnknown' to BasicAuthPlugin to block unauthenticated requests
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8230">SOLR-8230</a>: JSON Facet API: add "facet-info" into debug section of response when debugQuery=true
+<br /><span class="attrib">(Michael Sun, yonik)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8428">SOLR-8428</a>: RuleBasedAuthorizationPlugin adds an 'all' permission
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-5743">SOLR-5743</a>: BlockJoinFacetComponent and BlockJoinDocSetFacetComponent for calculating facets by
+child.facet.field parameter with {!parent ..}.. query. They count facets on children documents
+aggregating (deduplicating) counts by parent documents
+<br /><span class="attrib">(Dr. Oleg Savrasov via Mikhail Khludnev)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8220">SOLR-8220</a>: Read field from DocValues for non stored fields.
+<br /><span class="attrib">(Keith Laban, yonik, Erick Erickson, Ishan Chattopadhyaya, shalin)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8470">SOLR-8470</a>: Make TTL of PKIAuthenticationPlugin's tokens configurable through a system property
+(pkiauth.ttl)
+<br /><span class="attrib">(noble)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-8477">SOLR-8477</a>: Let users choose compression mode in SchemaCodecFactory
+<br /><span class="attrib">(Tomás Fernández Löbbe)</span></li>
+      <li><a href="http://issues.apache.org/jira/browse/SOLR-839">SOLR-839</a>: XML QueryParser support (defType=xmlparser)
+Lucene includes a queryparser that supports the creation of Lucene queries from XML.
+The queries supported by lucene.queryparser.xml.CoreParser are now supported by the newly
+created solr.search.SolrCoreParser and in future SolrCoreParser could support additional
+queries also.
+Example: &lt;BooleanQuery fieldName="description"&gt;
+           &lt;Clause occurs="must"&gt; &lt;TermQuery&gt;shirt&lt;/TermQuery&gt; &lt;/Clause&gt;
+           &lt;Clause occurs="mustnot"&gt; &lt;TermQuery&gt;plain&lt;/TermQuery&gt; &lt;/Clause&gt;
+           &lt;Clause occurs="should"&gt; &lt;TermQuery&gt;cotton&lt;/TermQuery&gt; &lt;/Clause&gt;
+           &lt;Clause occurs="must"&gt;
+             &lt;BooleanQuery fieldName="size"&gt;

[... 12089 lines stripped ...]