You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ds...@apache.org on 2020/12/04 22:59:28 UTC

[lucene-solr] branch master updated: SOLR: Remove CHANGES.md; use solr/CHANGES.txt

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 21b8890  SOLR: Remove CHANGES.md; use solr/CHANGES.txt
21b8890 is described below

commit 21b8890f58927f8c7f9c5c847bc4a10964522ae2
Author: David Smiley <ds...@salesforce.com>
AuthorDate: Fri Dec 4 17:59:07 2020 -0500

    SOLR: Remove CHANGES.md; use solr/CHANGES.txt
    
    For now, any way.  See dev list discussion.
---
 solr/CHANGES.txt                            | 25 +++++++++++++++++++++++++
 solr/contrib/prometheus-exporter/CHANGES.md | 20 --------------------
 solr/docker/CHANGES.md                      | 28 ----------------------------
 3 files changed, 25 insertions(+), 48 deletions(-)

diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index abf6f1b..dcb2a31 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -49,6 +49,22 @@ Improvements
   properly regardless of the mode (standalone, distributed). The API has been stripped of ancient, unused, interfaces
   and simplified. (Dawid Weiss)
 
+* SOLR-14972: Prometheus: Change default port of prometheus exporter to 8989
+  because it clashed with default embedded zookeeper port (janhoy)
+
+* SOLR-14001: Docker: Removed /var/solr initialization from the Dockerfile; depend on init_var_solr.sh instead.
+  This leads to more consistent behavior no matter how /var/solr is mounted.
+  * init_var_solr.sh is now invoked by docker-entrypoint.sh; not in a bunch of other places.
+  * as before, you can set NO_INIT_VAR_SOLR=1 to short-circuit this.
+  * init_var_solr.sh no longer echo's anything.  For verbosity, set VERBOSE=yes.
+  (David Smiley)
+
+* SOLR-14957: Docker, Prometheus: Add Prometheus Exporter to docker PATH. Fix classpath issues.
+  (Houston Putman)
+
+* SOLR-14949: Docker: Ability to customize the FROM image when building.
+  (Houston Putman)
+
 Other Changes
 ----------------------
 * SOLR-14656: Autoscaling framework removed (Ishan Chattopadhyaya, noble, Ilan Ginzburg)
@@ -153,6 +169,15 @@ Other Changes
 
 * SOLR-14934: Remove redundent deprecated "solr.solr.home" logic (hossman)
 
+* SOLR-14915: Prometheus: Reduced dependencies from Solr server down to just SolrJ.  Don't add WEB-INF/lib.
+  * Can run via gradle, "gradlew run"
+  * Has own log4j2.xml now
+  * Was missing some dependencies in lib/; now has all except SolrJ & logging.
+  (David Smiley, Houston Putman)
+
+* SOLR-14789: Docker: Migrate docker image creation from docker-solr repo to solr/docker.
+  (Houston Putman, Martijn Koster, Tim Potter, David Smiley, janhoy, Mike Drob)
+
 Bug Fixes
 ---------------------
 * SOLR-14546: Fix for a relatively hard to hit issue in OverseerTaskProcessor that could lead to out of order execution
diff --git a/solr/contrib/prometheus-exporter/CHANGES.md b/solr/contrib/prometheus-exporter/CHANGES.md
deleted file mode 100644
index 42deac6..0000000
--- a/solr/contrib/prometheus-exporter/CHANGES.md
+++ /dev/null
@@ -1,20 +0,0 @@
-This file lists release notes for this module.
-Prior to version 9, changes were in Solr's CHANGES.txt
-
-9.0.0
-======================
-
-Improvements
-----------------------
-* SOLR-14972: Change default port of prometheus exporter to 8989 
-  because it clashed with default embedded zookeeper port (janhoy)
-
-Other Changes
-----------------------
-* SOLR-14915: Reduced dependencies from Solr server down to just SolrJ.  Don't add WEB-INF/lib.
-  * Can run via gradle, "gradlew run"
-  * Has own log4j2.xml now
-  * Was missing some dependencies in lib/; now has all except SolrJ & logging.
-  (David Smiley, Houston Putman)
-
-* SOLR-14957: Add Prometheus Exporter to docker PATH. Fix classpath issues. (Houston Putman)
diff --git a/solr/docker/CHANGES.md b/solr/docker/CHANGES.md
deleted file mode 100644
index 04a767c..0000000
--- a/solr/docker/CHANGES.md
+++ /dev/null
@@ -1,28 +0,0 @@
-This file lists release notes for this module.
-Prior to version 9, the module existed in another repository and changes were not tracked in this manner.
-You could browse the commit history here instead:
-https://github.com/docker-solr/docker-solr
- 
-9.0.0
-==================
-
-Improvements
-----------------------
-* SOLR-14001: Removed /var/solr initialization from the Dockerfile; depend on init_var_solr.sh instead.
-  This leads to more consistent behavior no matter how /var/solr is mounted.
-  * init_var_solr.sh is now invoked by docker-entrypoint.sh; not in a bunch of other places.
-  * as before, you can set NO_INIT_VAR_SOLR=1 to short-circuit this.
-  * init_var_solr.sh no longer echo's anything.  For verbosity, set VERBOSE=yes.
-  (David Smiley)
-
-* SOLR-14957: Add Prometheus Exporter to docker PATH. Fix classpath issues.
-  (Houston Putman)
-  
-* SOLR-14949: Ability to customize the FROM image when building.
-  (Houston Putman)
-
-Other Changes
-------------------
-* SOLR-14789: Migrate docker image creation from docker-solr repo to solr/docker. 
-  (Houston Putman, Martijn Koster, Tim Potter, David Smiley, janhoy, Mike Drob)
-