You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ho...@apache.org on 2015/02/04 17:56:04 UTC

svn commit: r1657314 - /lucene/dev/trunk/solr/CHANGES.txt

Author: hossman
Date: Wed Feb  4 16:56:03 2015
New Revision: 1657314

URL: http://svn.apache.org/r1657314
Log:
SOLR-6780: issue did not get backported to 4x branch correctly, fixing CHANGES to accurately record that 5.0 will be first release with fix

Modified:
    lucene/dev/trunk/solr/CHANGES.txt

Modified: lucene/dev/trunk/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/CHANGES.txt?rev=1657314&r1=1657313&r2=1657314&view=diff
==============================================================================
--- lucene/dev/trunk/solr/CHANGES.txt (original)
+++ lucene/dev/trunk/solr/CHANGES.txt Wed Feb  4 16:56:03 2015
@@ -588,6 +588,16 @@ Bug Fixes
 * SOLR-7068: Collapse on numeric field breaks when min/max values are negative. 
   (Joel Bernstein)
 
+* SOLR-6780: Fixed a bug in how default/appends/invariants params were affecting the set 
+  of all "keys" found in the request parameters, resulting in some key=value param pairs 
+  being duplicated.  This was noticeably affecting some areas of the code where iteration 
+  was done over the set of all params: 
+    * literal.* in ExtractingRequestHandler
+    * facet.* in FacetComponent
+    * spellcheck.[dictionary name].* and spellcheck.collateParam.* in SpellCheckComponent
+    * olap.* in AnalyticsComponent
+  (Alexandre Rafalovitch & hossman)
+
 Optimizations
 ----------------------
 
@@ -890,16 +900,6 @@ Bug Fixes
 * SOLR-6510: The collapse QParser would throw a NPE when used on a DocValues field on
   an empty segment/index. (Christine Poerschke, David Smiley)
 
-* SOLR-6780: Fixed a bug in how default/appends/invariants params were affecting the set 
-  of all "keys" found in the request parameters, resulting in some key=value param pairs 
-  being duplicated.  This was noticeably affecting some areas of the code where iteration 
-  was done over the set of all params: 
-    * literal.* in ExtractingRequestHandler
-    * facet.* in FacetComponent
-    * spellcheck.[dictionary name].* and spellcheck.collateParam.* in SpellCheckComponent
-    * olap.* in AnalyticsComponent
-  (Alexandre Rafalovitch & hossman)
-
 * SOLR-2927: Solr does not unregister all mbeans upon exception in constructor
   causing memory leaks. (tom liu, Sharath Babu, Cyrille Roy, shalin)