@@ -20,6 +20,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated minimum CKAN version requirement from `2.9` to `2.10`. Please run `ckan db upgrade` after updating.
- Replaced `is_okd_compliant` with `od_conformance` and `is_osi_compliant` with `osd_conformance` in the [licenses.json](./ckanext/odsh/resources/licenses.json) file.
- Deprecated methods replaced with their respective new versions from plugin interfaces:
-`ckan.plugins.interfaces.IResourceController`:
- Replaced `before_create` with `before_resource_create`
- Replaced `after_create` with `after_resource_create`
- Replaced `before_update` with `before_resource_update`
- Replaced `after_update` with `after_resource_update`
- Replaced `before_delete` with `before_resource_delete`
- Replaced `after_delete` with `after_resource_delete`
- Replaced `before_show` with `before_resource_show`
-`ckan.plugins.interfaces.IPackageController`:
- Replaced `after_create` with `after_dataset_create`
- Replaced `after_update` with `after_dataset_update`
- Replaced `after_delete` with `after_dataset_delete`
- Replaced `after_show` with `after_dataset_show`
- Replaced `before_search` with `before_dataset_search`
- Replaced `after_search` with `after_dataset_search`
- Replaced `before_index` with `before_dataset_index`