Unverified Commit ceb22115 authored by Alexandre Dias's avatar Alexandre Dias Committed by GitHub
Browse files

Issue #3236773 by saidatom, claudiu.cristea, mkalkbrenner, idimopoulos:...


Issue #3236773 by saidatom, claudiu.cristea, mkalkbrenner, idimopoulos: Missing config schema (autocomplete)

Co-authored-by: default avatarmkalkbrenner <mkalkbrenner@124705.no-reply.drupal.org>
parent 96113511
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -250,7 +250,7 @@ jobs:
                php -S localhost:8888 >& /dev/null &
                vendor/bin/drush si standard --db-url=sqlite://sites/default/files/db.sqlite --yes
                vendor/bin/drush en search_api_solr_admin,search_api_solr_defaults,search_api_solr_devel,search_api_solr_legacy --yes
                vendor/bin/drush en search_api_spellcheck,search_api_autocomplete,facets,search_api_location --yes
                vendor/bin/drush en search_api_spellcheck,search_api_solr_autocomplete,facets,search_api_location --yes
                vendor/bin/phpunit -v -c core --group search_api_solr --exclude-group not_drupal${{ matrix.drupal }},not_solr${{ matrix.solr }} modules/contrib/search_api_solr

    run-legacy-tests:
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ a Solr Query Debugger and shows how content gets indexed.
Regarding third-party features, the following are supported:

- autocomplete
  - Introduced by module: search_api_autocomplete
  - Introduced by module: search_api_solr_autocomplete
  - Lets you add autocompletion capabilities to search forms on the site.
- facets
  - Introduced by module: facet
+0 −1
Original line number Diff line number Diff line
@@ -37,7 +37,6 @@
        "drupal/devel": "^4.0",
        "drupal/facets": "1.x-dev",
        "drupal/geofield": "1.x-dev",
        "drupal/search_api_autocomplete": "1.x-dev",
        "drupal/search_api_location": "1.x-dev",
        "drupal/search_api_spellcheck": "3.x-dev"
    },
+1 −1
Original line number Diff line number Diff line
type: module
name: 'Search API Solr Admin'
description: 'Provides various Solr administration tasks.'
core_version_requirement: ^9.1
core_version_requirement: ^9.2 || ^10.0
package: Search
dependencies:
  - search_api_solr:search_api_solr
+21 −0
Original line number Diff line number Diff line
plugin.plugin_configuration.search_api_autocomplete_suggester.search_api_solr_suggester:
  type: mapping
  label: 'Search API Solr Suggester'
  mapping:
    search_api_solr/site_hash:
      type: integer
      label: 'Site hash'
    search_api/index:
      type: string
      label: 'Index ID'
    drupal/langcode:
      type: string
      label: 'Language'

plugin.plugin_configuration.search_api_autocomplete_suggester.search_api_solr_spellcheck:
  type: mapping
  label: 'Search API Solr Spellcheck'

plugin.plugin_configuration.search_api_autocomplete_suggester.search_api_solr_terms:
  type: plugin.plugin_configuration.search_api_autocomplete_suggester.server
  label: 'Search API Solr Terms'
Loading