You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by md...@apache.org on 2021/04/12 19:43:09 UTC

[lucene-solr] branch branch_8x updated: Add bugfix version 8.8.2

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

mdrob pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new a53ace0  Add bugfix version 8.8.2
a53ace0 is described below

commit a53ace02a2b8d3080d76dc6fd67922fbc9102142
Author: Mike Drob <md...@apple.com>
AuthorDate: Mon Apr 12 14:42:51 2021 -0500

    Add bugfix version 8.8.2
---
 .../src/java/org/apache/lucene/util/Version.java    |  7 +++++++
 solr/CHANGES.txt                                    | 21 +++++++++++++++------
 2 files changed, 22 insertions(+), 6 deletions(-)

diff --git a/lucene/core/src/java/org/apache/lucene/util/Version.java b/lucene/core/src/java/org/apache/lucene/util/Version.java
index 282d106..eb27bf3 100644
--- a/lucene/core/src/java/org/apache/lucene/util/Version.java
+++ b/lucene/core/src/java/org/apache/lucene/util/Version.java
@@ -265,6 +265,13 @@ public final class Version {
   public static final Version LUCENE_8_8_1 = new Version(8, 8, 1);
 
   /**
+   * Match settings and bugs in Lucene's 8.8.2 release.
+   * @deprecated Use latest
+   */
+  @Deprecated
+  public static final Version LUCENE_8_8_2 = new Version(8, 8, 2);
+
+  /**
    * Match settings and bugs in Lucene's 8.9.0 release.
    * <p>
    * Use this to get the latest &amp; greatest settings, bug
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 1f1b875..83d4e9f 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -48,8 +48,6 @@ Improvements
 
 * SOLR-15155: Let CloudHttp2SolrClient accept an external Http2SolrClient Builder (Tomás Fernández Löbbe)
 
-* SOLR-15217: Use shardsWhitelist in ReplicationHandler. (Bruno Roustant)
-
 Optimizations
 ---------------------
 * SOLR-15079: Block Collapse - Faster collapse code when groups are co-located via Block Join style nested doc indexing.
@@ -72,16 +70,12 @@ Bug Fixes
 
 * SOLR-15216: Fix for Invalid Reference to data.followers in Admin UI. (Dean Pearce)
 
-* SOLR-15249: Properly set ZK ACLs on /security.json (Mike Drob)
-
 * SOLR-15273: Fix NullPointerException in StoredFieldsShardResponseProcessor that happened when a field name alias is
   used for the unique key field in searches with distributed result grouping. (limingnihao via Christine Poerschke)
 
 * SOLR-11921: Move "cursorMark" logic from QueryComponent to SearchHandler so it can work with things like QueryElevationComponent
   that modify the SortSpec in prepare(), as well as possible custom "search" components other then QueryComponent.  (hossman)
 
-* SOLR-15233: Set doAs param in ConfigurableInternodeAuthHadoopPlugin (Geza Nagy, Jason Gerlowski, Mike Drob)
-
 * SOLR-15317: Correctly handle user principals with whitespace in PKIAuthPlugin (Dominik Dresel, Mike Drob)
 
 Other Changes
@@ -92,6 +86,21 @@ Other Changes
   be problematic with multiple replicas.  In 9.0 this situation will prevent collection initialization. (hossman)
 
 
+==================  8.8.2 ==================
+
+Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
+
+Bug Fixes
+---------------------
+
+* SOLR-15249: Properly set ZK ACLs on /security.json (Mike Drob)
+
+* SOLR-15288: Hardening NODEDOWN event in PRS collections (noble)
+
+* SOLR-15233: Set doAs param in ConfigurableInternodeAuthHadoopPlugin (Geza Nagy, Jason Gerlowski, Mike Drob)
+
+* SOLR-15217: Use shardsWhitelist in ReplicationHandler. (Bruno Roustant)
+
 ==================  8.8.1 ==================
 
 Bug Fixes