Commit 59d3b8ad authored by Drupal Lady's avatar Drupal Lady
Browse files

Issue #3257909. Mark the default connector as deprecated and the basic auth as recommended.

parent f047923d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@
  },
  "license": "GPL-2.0+",
  "require": {
    "php": ">=7.1",
    "php": "^7.3|^8.0",
    "drupal/search_api_solr": "^4.1",
    "drupal/key": "^1.10",
    "ext-zip": "*"
@@ -39,7 +39,7 @@
  "extra": {
    "drush": {
      "services": {
        "drush.services.yml": "^9"
        "drush.services.yml": "^9 || ^10 || ^11"
      }
    }
  }
+1 −1
Original line number Diff line number Diff line
type: module
name: 'Search API opensolr'
description: 'Offers an implementation of the Search API that uses opensolr 3rd party service.'
core_version_requirement: ^8.8 || ^9
core_version_requirement: ^8.9 || ^9
php: 7.2
package: Search
configure: search_api_opensolr.opensolr_config_form
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ use Drupal\search_api_solr\SolrConnector\BasicAuthTrait;
 *
 * @SolrConnector(
 *   id = "basic_auth_opensolr",
 *   label = @Translation("Opensolr with Basic Auth"),
 *   label = @Translation("Opensolr with Basic Auth (recommended)"),
 *   description = @Translation("A connector usable for Solr installations managed through opensolr that uses basic auth.")
 * )
 */
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
 *
 * @SolrConnector(
 *   id = "opensolr",
 *   label = @Translation("Opensolr"),
 *   label = @Translation("Opensolr (deprecated)"),
 *   description = @Translation("A connector usable for Solr installations managed through opensolr.")
 * )
 */