From a5a4469596d3c0743476ebb032e760e8d4e3b2a1 Mon Sep 17 00:00:00 2001 From: "Chris M. Hostetter" Date: Wed, 4 Feb 2015 16:56:03 +0000 Subject: [PATCH] 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 git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1657314 13f79535-47bb-0310-9956-ffa450edef68 --- solr/CHANGES.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index a94eed94d32..17c281bd5e6 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -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)