From 1d381dba93d49aa695c4ed548c385432be9d74f2 Mon Sep 17 00:00:00 2001 From: Joseph Hamman Date: Fri, 7 Mar 2025 09:09:22 -0800 Subject: [PATCH 1/3] fix release note file names --- changes/{2796.chore.rst => 2796.misc.rst} | 0 changes/{2847.fix.rst => 2847.bugfix.rst} | 0 changes/{2850.fix.rst => 2850.bugfix.rst} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename changes/{2796.chore.rst => 2796.misc.rst} (100%) rename changes/{2847.fix.rst => 2847.bugfix.rst} (100%) rename changes/{2850.fix.rst => 2850.bugfix.rst} (100%) diff --git a/changes/2796.chore.rst b/changes/2796.misc.rst similarity index 100% rename from changes/2796.chore.rst rename to changes/2796.misc.rst diff --git a/changes/2847.fix.rst b/changes/2847.bugfix.rst similarity index 100% rename from changes/2847.fix.rst rename to changes/2847.bugfix.rst diff --git a/changes/2850.fix.rst b/changes/2850.bugfix.rst similarity index 100% rename from changes/2850.fix.rst rename to changes/2850.bugfix.rst From cf69fccd8f01a6cd223af9c8397d18b159f78d1f Mon Sep 17 00:00:00 2001 From: Joseph Hamman Date: Fri, 7 Mar 2025 09:19:42 -0800 Subject: [PATCH 2/3] update release notes --- changes/2665.feature.rst | 1 - changes/2796.misc.rst | 1 - changes/2847.bugfix.rst | 1 - changes/2850.bugfix.rst | 2 -- changes/2851.bugfix.rst | 1 - changes/2870.bugfix.rst | 1 - docs/release-notes.rst | 25 +++++++++++++++++++++++++ 7 files changed, 25 insertions(+), 7 deletions(-) delete mode 100644 changes/2665.feature.rst delete mode 100644 changes/2796.misc.rst delete mode 100644 changes/2847.bugfix.rst delete mode 100644 changes/2850.bugfix.rst delete mode 100644 changes/2851.bugfix.rst delete mode 100644 changes/2870.bugfix.rst diff --git a/changes/2665.feature.rst b/changes/2665.feature.rst deleted file mode 100644 index 40bec542ce..0000000000 --- a/changes/2665.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Adds functions for concurrently creating multiple arrays and groups. \ No newline at end of file diff --git a/changes/2796.misc.rst b/changes/2796.misc.rst deleted file mode 100644 index 0ef1b8d31e..0000000000 --- a/changes/2796.misc.rst +++ /dev/null @@ -1 +0,0 @@ -The docs environment is now built with ``astroid`` pinned to a version less than 4. This allows the docs to build in CI. \ No newline at end of file diff --git a/changes/2847.bugfix.rst b/changes/2847.bugfix.rst deleted file mode 100644 index 148e191b98..0000000000 --- a/changes/2847.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug where ``ArrayV2Metadata`` could save ``filters`` as an empty array. \ No newline at end of file diff --git a/changes/2850.bugfix.rst b/changes/2850.bugfix.rst deleted file mode 100644 index dbba120ce2..0000000000 --- a/changes/2850.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fixed a bug where ``StorePath`` creation would not apply standard path normalization to the ``path`` parameter, -which led to the creation of arrays and groups with invalid keys. \ No newline at end of file diff --git a/changes/2851.bugfix.rst b/changes/2851.bugfix.rst deleted file mode 100644 index 977f683847..0000000000 --- a/changes/2851.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix a bug when setting values of a smaller last chunk. diff --git a/changes/2870.bugfix.rst b/changes/2870.bugfix.rst deleted file mode 100644 index 7779835892..0000000000 --- a/changes/2870.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Prevent update_attributes calls from deleting old attributes \ No newline at end of file diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 93466a0992..33ceed833b 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -3,6 +3,31 @@ Release notes .. towncrier release notes start +3.0.5 (2025-03-07) +------------------ + +Features +~~~~~~~~ + +- Adds functions for concurrently creating multiple arrays and groups. (:issue:`2665`) + + +Bugfixes +~~~~~~~~ + +- Fixed a bug where ``ArrayV2Metadata`` could save ``filters`` as an empty array. (:issue:`2847`) +- Fixed a bug where ``StorePath`` creation would not apply standard path normalization to the ``path`` parameter, + which led to the creation of arrays and groups with invalid keys. (:issue:`2850`) +- Fix a bug when setting values of a smaller last chunk. (:issue:`2851`) +- Prevent update_attributes calls from deleting old attributes (:issue:`2870`) + + +Misc +~~~~ + +- :issue:`2796` + + 3.0.3 (2025-02-14) ------------------ From 7b1e16da048043a7f2b687c563c5be74946489f8 Mon Sep 17 00:00:00 2001 From: Joseph Hamman Date: Fri, 7 Mar 2025 09:40:40 -0800 Subject: [PATCH 3/3] add missing release notes section for 3.0.4 --- docs/release-notes.rst | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 33ceed833b..21876770a2 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -6,26 +6,37 @@ Release notes 3.0.5 (2025-03-07) ------------------ +Bugfixes +~~~~~~~~ + +- Fixed a bug where ``StorePath`` creation would not apply standard path normalization to the ``path`` parameter, + which led to the creation of arrays and groups with invalid keys. (:issue:`2850`) +- Prevent update_attributes calls from deleting old attributes (:issue:`2870`) + + +Misc +~~~~ + +- :issue:`2796` + +3.0.4 (2025-02-23) +------------------ + Features ~~~~~~~~ - Adds functions for concurrently creating multiple arrays and groups. (:issue:`2665`) - Bugfixes ~~~~~~~~ - Fixed a bug where ``ArrayV2Metadata`` could save ``filters`` as an empty array. (:issue:`2847`) -- Fixed a bug where ``StorePath`` creation would not apply standard path normalization to the ``path`` parameter, - which led to the creation of arrays and groups with invalid keys. (:issue:`2850`) - Fix a bug when setting values of a smaller last chunk. (:issue:`2851`) -- Prevent update_attributes calls from deleting old attributes (:issue:`2870`) - Misc ~~~~ -- :issue:`2796` +- :issue:`2828` 3.0.3 (2025-02-14)