stac-fastapi-core 6.7.1__tar.gz → 6.7.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/PKG-INFO +1 -1
  2. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/core.py +1 -1
  3. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/version.py +1 -1
  4. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/.gitignore +0 -0
  5. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/README.md +0 -0
  6. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/pyproject.toml +0 -0
  7. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/pytest.ini +0 -0
  8. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/__init__.py +0 -0
  9. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/base_database_logic.py +0 -0
  10. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/base_settings.py +0 -0
  11. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/basic_auth.py +0 -0
  12. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/datetime_utils.py +0 -0
  13. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/extensions/__init__.py +0 -0
  14. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/extensions/aggregation.py +0 -0
  15. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/extensions/collections_search.py +0 -0
  16. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/extensions/fields.py +0 -0
  17. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/extensions/filter.py +0 -0
  18. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/extensions/query.py +0 -0
  19. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/models/__init__.py +0 -0
  20. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/models/links.py +0 -0
  21. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/models/search.py +0 -0
  22. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/rate_limit.py +0 -0
  23. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/redis_utils.py +0 -0
  24. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/route_dependencies.py +0 -0
  25. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/serializers.py +0 -0
  26. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/session.py +0 -0
  27. {stac_fastapi_core-6.7.1 → stac_fastapi_core-6.7.2}/stac_fastapi/core/utilities.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stac_fastapi_core
3
- Version: 6.7.1
3
+ Version: 6.7.2
4
4
  Summary: Core library for the Elasticsearch and Opensearch stac-fastapi backends.
5
5
  Project-URL: Homepage, https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch
6
6
  License: MIT
@@ -830,7 +830,7 @@ class CoreClient(AsyncBaseCoreClient):
830
830
  search = await self.database.apply_cql2_filter(search, cql2_filter)
831
831
  except Exception as e:
832
832
  raise HTTPException(
833
- status_code=400, detail=f"Error with cql2_json filter: {e}"
833
+ status_code=400, detail=f"Error with cql2 filter: {e}"
834
834
  )
835
835
 
836
836
  if hasattr(search_request, "q"):
@@ -1,2 +1,2 @@
1
1
  """library version."""
2
- __version__ = "6.7.1"
2
+ __version__ = "6.7.2"