You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ja...@apache.org on 2022/04/26 10:18:06 UTC

[solr] branch branch_9x updated: Update github PR link to use the new solr repo (#797)

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

janhoy pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 4d2882bc89b Update github PR link to use the new solr repo (#797)
4d2882bc89b is described below

commit 4d2882bc89b4ff8974c9de7ca344d2af859d7d63
Author: Jan Høydahl <ja...@users.noreply.github.com>
AuthorDate: Tue Apr 26 12:16:38 2022 +0200

    Update github PR link to use the new solr repo (#797)
    
    * Remove the two existing PR references (#120 and #11) as none of those were actually correct with the old github repo anyway.
    Co-authored-by: Christine Poerschke <cp...@apache.org>
    
    (cherry picked from commit d5ab86e4e029506f48798c0352d2df97ec778bd5)
---
 gradle/documentation/changes-to-html/changes2html.pl | 5 ++++-
 solr/CHANGES.txt                                     | 4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/gradle/documentation/changes-to-html/changes2html.pl b/gradle/documentation/changes-to-html/changes2html.pl
index 0d55437721c..20f86fa0062 100755
--- a/gradle/documentation/changes-to-html/changes2html.pl
+++ b/gradle/documentation/changes-to-html/changes2html.pl
@@ -25,7 +25,7 @@ use strict;
 use warnings;
 
 my $jira_url_prefix = 'http://issues.apache.org/jira/browse/';
-my $github_pull_request_prefix = 'https://github.com/apache/lucene-solr/pull/';
+my $github_pull_request_prefix = 'https://github.com/apache/solr/pull/';
 my $month_regex = &setup_month_regex;
 my %month_nums = &setup_month_nums;
 my %lucene_bugzilla_jira_map = &setup_lucene_bugzilla_jira_map;
@@ -575,6 +575,9 @@ for my $rel (@releases) {
       $item =~ s{((?:(?:(?:github|gh)\s+)?pull\s+request\s*(?:\#?\s*)?|gh-)(\d+))}
                 {<a href="${github_pull_request_prefix}$2">$1</a>}gi;
       # Link "LUCENE_CHANGES.txt" to Lucene's same-release Changes.html
+      # TODO: We can no longer rely on this since Solr may have a different Lucene version
+      # But it will still work for pre-9.0 changes, and from 9.0 we can instead provide
+      # full links.
       if ($product eq 'SOLR') {
         $item =~ s[(LUCENE_CHANGES.txt)]
                   [<a href="${lucene_javadoc_url}changes/Changes.html">$1</a>]g;
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 345eb37bbbc..86f37bb2486 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -12375,7 +12375,7 @@ Other Changes
 
 * SOLR-6448: Add SolrJ support for all current Collection API calls. (Anshum Gupta)
 
-* Fixed a typo in various solrconfig.xml files.  (sdumitriu - pull request #120)
+* Fixed a typo in various solrconfig.xml files.  (sdumitriu)
 
 * SOLR-6895: SolrServer classes are renamed to *SolrClient.  The existing
   classes still exist, but are deprecated. (Alan Woodward, Erik Hatcher)
@@ -13986,7 +13986,7 @@ Other Changes
   (Karl Wright via Shawn Heisey)
 
 * SOLR-2794: change the default of hl.phraseLimit to 5000.
-  (Michael Della Bitta via Robert Muir, Koji, zarni - pull request #11)
+  (Michael Della Bitta via Robert Muir, Koji, zarni)
 
 * SOLR-5632: Improve response message for reloading a non-existent core.
   (Anshum Gupta via Mark Miller)