You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2021/07/14 01:57:57 UTC

[lucene] branch main updated: reorder items in CHANGES.txt to better match branch_8x !

This is an automated email from the ASF dual-hosted git repository.

rmuir pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/main by this push:
     new c21b0ad  reorder items in CHANGES.txt to better match branch_8x !
c21b0ad is described below

commit c21b0adb14bfd2f494d4d909bc18b92a0531518c
Author: Robert Muir <rm...@apache.org>
AuthorDate: Tue Jul 13 21:56:56 2021 -0400

    reorder items in CHANGES.txt to better match branch_8x !
    
    There are other abnormalities, but the order of entries is an easy thing
    to fix.
---
 lucene/CHANGES.txt | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index 41fe5f0..ce9efa7 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -342,19 +342,25 @@ Other
 
 API Changes
 ---------------------
+* LUCENE-9962: DrillSideways allows sub-classes to provide "drill down" FacetsCollectors. They
+  may provide a null collector if they choose to bypass "drill down" facet collection. (Greg Miller)
+
 * LUCENE-9902: Change the getValue method from IntTaxonomyFacets to be protected instead of private.
   Users can now access the count of an ordinal directly without constructing an extra FacetLabel.
   Also use variable length arguments for the getOrdinal call in TaxonomyReader. (Gautam Worah)
 
-* LUCENE-9962: DrillSideways allows sub-classes to provide "drill down" FacetsCollectors. They
-  may provide a null collector if they choose to bypass "drill down" facet collection. (Greg Miller)
-
 New Features
 ---------------------
 (No changes)
 
 Improvements
 ---------------------
+* LUCENE-9944: Allow DrillSideways users to provide their own CollectorManager without also requiring
+  them to provide an ExecutorService. (Greg Miller)
+
+* LUCENE-9946: Support for multi-value fields in LongRangeFacetCounts and
+  DoubleRangeFacetCounts. (Greg Miller)
+
 * LUCENE-9965: Added QueryProfilerIndexSearcher and ProfilerCollector to support debugging
   query execution strategy and timing. (Jack Conradson, Julie Tibshirani)
 
@@ -372,12 +378,6 @@ Improvements
 
 * LUCENE-9983: Stop sorting determinize powersets unnecessarily. (Patrick Zhai)
 
-* LUCENE-9946: Support for multi-value fields in LongRangeFacetCounts and
-  DoubleRangeFacetCounts. (Greg Miller)
-
-* LUCENE-9944: Allow DrillSideways users to provide their own CollectorManager without also requiring
-  them to provide an ExecutorService. (Greg Miller)
-
 * LUCENE-9177: ICUNormalizer2CharFilter no longer requires normalization-inert
   characters as boundaries for incremental processing, vastly improving worst-case
   performance. (Michael Gibney)