Skip to content

Commit

Permalink
Merge pull request ckan#8375 from ckan/solr-schema-version-2.11
Browse files Browse the repository at this point in the history
Bump solr schema version for 2.11
  • Loading branch information
wardi authored Jul 26, 2024
2 parents 3eaa299 + 6ae1071 commit e04fd6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ckan/config/solr/schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
schema. We used to use the `version` attribute for this but this is an internal
attribute that should not be used so starting from CKAN 2.10 we use the `name`
attribute with the form `ckan-X.Y` -->
<schema name="ckan-2.10" version="1.6">
<schema name="ckan-2.11" version="1.6">

<types>
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
Expand Down
2 changes: 1 addition & 1 deletion ckan/lib/search/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def text_traceback() -> str:
return res


SUPPORTED_SCHEMA_VERSIONS = ['2.8', '2.9', '2.10']
SUPPORTED_SCHEMA_VERSIONS = ['2.8', '2.9', '2.10', '2.11']

DEFAULT_OPTIONS = {
'limit': 20,
Expand Down

0 comments on commit e04fd6b

Please sign in to comment.