Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eo3 generalised in Time MV - and 1.8.39 release #999

Merged
merged 6 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ History

Datacube-ows version 1.8.x indicates that it is designed work with datacube-core versions 1.8.x.

1.8.39 (2024-03-13)
-------------------

Emergency release to complete half-implemented new feature.

The changes to the spatial materialised view introduced in the previous release are now also implemented
in the time materialised view.

Please run `datacube-ows-update --schema --role <ows_db_username>` again with this new release
to access the new behaviour.

* Automatic CI action update (#998)
* Fix materialised view definition to handle all eo3 compatible metadata types (#999)
* Update HISTORY.rst and increment default version for release (#999)

1.8.38 (2024-03-12)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion datacube_ows/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
try:
from ._version import version as __version__
except ImportError:
__version__ = "1.8.38+?"
__version__ = "1.8.39+?"
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ select
'[]'
) as temporal_extent
from agdc.dataset where
metadata_type_ref in (select id from metadata_lookup where name in ('eo3_landsat_ard','eo3', 'eo3_sentinel_ard'))
metadata_type_ref in (select id from metadata_lookup where name like 'eo3_%')
and archived is null
Loading