From 7a7f3f35fb4e7ff7499f83aa99c2c9f743fa169e Mon Sep 17 00:00:00 2001 From: Paul Haesler Date: Tue, 18 Jan 2022 12:51:18 +1100 Subject: [PATCH 1/2] Increment default version number. --- datacube_ows/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datacube_ows/__init__.py b/datacube_ows/__init__.py index 09543eae1..dae3d647e 100644 --- a/datacube_ows/__init__.py +++ b/datacube_ows/__init__.py @@ -6,4 +6,4 @@ try: from ._version import version as __version__ except ImportError: - __version__ = "1.8.23+?" + __version__ = "1.8.24+?" From c5bdfb17a11cfd31148565afd12761b7df2d0a6e Mon Sep 17 00:00:00 2001 From: Paul Haesler Date: Tue, 18 Jan 2022 12:57:18 +1100 Subject: [PATCH 2/2] Update History.rst --- HISTORY.rst | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index 1bc879743..195a24221 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -7,6 +7,29 @@ History Datacube-ows version 1.8.x indicates that it is designed work with datacube-core versions 1.8.x. +1.8.24 (2022-01-18) +------------------- + +Introduces support for internationalisation (translation) of style legends - see the documentation for details: + +https://datacube-ows.readthedocs.io/en/latest/configuration.html#metadata-separation-and-internationalisation +https://datacube-ows.readthedocs.io/en/latest/cfg_styling.html#url + +This is the first formal release since the 9th December, although there were several interim releases in +mid-December when we were testing the Prometheus metric changes (see below). + +Due to an oversight in deprecation warnings several releases ago, some configurations that worked in 1.8.23 +will now raise errors. Affected configurations have legacy "legend" hints embedded inside the colour ramp +definitions. Such hints have not been read by OWS for quite some time, having been replaced by the "tick_labels" entry in the "legend" section. Digital Earth Australia and Digital Earth Africa configurations have already been updated. + +Changes since 1.8.23: + +* Prometheus metric enhancements and release notes for interim releases (#777, #778, #779, #780, #781, #782) +* Github integration tests against a large real world OWS configuration (DEA) (#784) +* Internationalisation of style legends. (#783, #786) +* Fix WCS1 DescribeCoverage regression (missing SRS/CRS) (#787) +* Update History.RST and increment default version number (#788) + 1.8.23.3 (2021-12-16) ---------------------