From 7a6485b05893ec5bac9323a0bf52e2aed5f9ec00 Mon Sep 17 00:00:00 2001 From: Simon K <6615834+simon-20@users.noreply.github.com> Date: Fri, 12 Sep 2025 08:45:46 +0100 Subject: [PATCH 1/2] fix: restore deprecated output fields --- src/bulk_data_service/data_converters.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bulk_data_service/data_converters.py b/src/bulk_data_service/data_converters.py index 614de2f..c84be3c 100644 --- a/src/bulk_data_service/data_converters.py +++ b/src/bulk_data_service/data_converters.py @@ -173,6 +173,7 @@ def get_full_dataset_hierarchical_dto_definition() -> list[tuple[str, str | None """ return [ ("id", None, "id", str), + ("last_known_good_dataset_cached_dataset_xml_url", "last_known_good_dataset", "cached_dataset_url_xml", None), ("last_known_good_dataset_cached_dataset_xml_url", "last_known_good_dataset", "cached_dataset_xml_url", None), ( "last_known_good_dataset_cached_dataset_zip_etag", @@ -181,6 +182,7 @@ def get_full_dataset_hierarchical_dto_definition() -> list[tuple[str, str | None None, ), ("last_known_good_dataset_cached_dataset_zip_url", "last_known_good_dataset", "cached_dataset_zip_url", None), + ("last_known_good_dataset_cached_dataset_zip_url", "last_known_good_dataset", "cached_dataset_url_zip", None), ("last_known_good_dataset_hash", "last_known_good_dataset", "hash", None), ( "last_known_good_dataset_hash_excluding_generated_timestamp", @@ -253,6 +255,8 @@ def get_minimal_dataset_hierarchical_dto_definition() -> list[tuple[str, str | N return [ ("id", None, "id", str), ("last_update_check", None, "last_update_check", None), + ("last_known_good_dataset_cached_dataset_xml_url", "last_known_good_dataset", "cached_dataset_url_xml", None), + ("last_known_good_dataset_cached_dataset_zip_url", "last_known_good_dataset", "cached_dataset_url_zip", None), ("last_known_good_dataset_cached_dataset_xml_url", "last_known_good_dataset", "cached_dataset_xml_url", None), ("last_known_good_dataset_cached_dataset_zip_url", "last_known_good_dataset", "cached_dataset_zip_url", None), ("last_known_good_dataset_downloaded", "last_known_good_dataset", "downloaded", None), From 513c59be8bca98c860c2ce274436832c55cc4f6c Mon Sep 17 00:00:00 2001 From: Simon K <6615834+simon-20@users.noreply.github.com> Date: Fri, 12 Sep 2025 08:45:54 +0100 Subject: [PATCH 2/2] build: version bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b2ee1f6..6cc8d2b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "bulk-data-service" -version = "1.3.0" +version = "1.3.1" requires-python = ">= 3.12.6" readme = "README.md" dependencies = [