diff --git a/CHANGELOG.md b/CHANGELOG.md index 036a787c5..d5c1c9fd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,25 @@ upcoming release can be found in [changelog.d](changelog.d). +## [1.28.0](https://github.com/Backblaze/b2-sdk-python/releases/tag/v1.28.0) - 2023-12-06 + + +### Changed + +- On XDG compatible OSes (Linux, BSD), the profile file is now created in `$XDG_CONFIG_HOME` (with a fallback to `~/.config/` in absence of given env. variable). +- Replace blank `assert` with exception when size values for parts upload are misaligned. + +### Fixed + +- Streaming from empty stream no longer ends with "Empty emerge parts iterator" error. + +### Infrastructure + +- Changelog entries are now validated as a part of CI pipeline. +- Disable dependabot requests for updates unrelated to security issues. +- Fixed tests failing because of changes made to `locale.normalize` in Python 3.12. + + ## [1.27.0](https://github.com/Backblaze/b2-sdk-python/releases/tag/v1.27.0) - 2023-11-26 diff --git a/changelog.d/+can-stream-empty-stream.fixed.md b/changelog.d/+can-stream-empty-stream.fixed.md deleted file mode 100644 index b472a74fb..000000000 --- a/changelog.d/+can-stream-empty-stream.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Streaming from empty stream no longer ends with "Empty emerge parts iterator" error. diff --git a/changelog.d/+checking-changelog-entries.infrastructure.md b/changelog.d/+checking-changelog-entries.infrastructure.md deleted file mode 100644 index 7fa6d6276..000000000 --- a/changelog.d/+checking-changelog-entries.infrastructure.md +++ /dev/null @@ -1 +0,0 @@ -Changelog entries are now validated as a part of CI pipeline. diff --git a/changelog.d/+dependabot-disable-non-security-updates.infrastructure.md b/changelog.d/+dependabot-disable-non-security-updates.infrastructure.md deleted file mode 100644 index 49dc84bac..000000000 --- a/changelog.d/+dependabot-disable-non-security-updates.infrastructure.md +++ /dev/null @@ -1 +0,0 @@ -Disable dependabot requests for updates unrelated to security issues. \ No newline at end of file diff --git a/changelog.d/+py312-setlocale-fail.infrastructure.md b/changelog.d/+py312-setlocale-fail.infrastructure.md deleted file mode 100644 index d13015278..000000000 --- a/changelog.d/+py312-setlocale-fail.infrastructure.md +++ /dev/null @@ -1 +0,0 @@ -Fixed tests failing because of changes made to `locale.normalize` in Python 3.12. diff --git a/changelog.d/+upload-check-replace-assert.changed.md b/changelog.d/+upload-check-replace-assert.changed.md deleted file mode 100644 index 141e42bf0..000000000 --- a/changelog.d/+upload-check-replace-assert.changed.md +++ /dev/null @@ -1 +0,0 @@ -Replace blank `assert` with exception when size values for parts upload are misaligned. diff --git a/changelog.d/+xdg-config-home-fallback.changed.md b/changelog.d/+xdg-config-home-fallback.changed.md deleted file mode 100644 index 804d8a35a..000000000 --- a/changelog.d/+xdg-config-home-fallback.changed.md +++ /dev/null @@ -1 +0,0 @@ -On XDG compatible OSes (Linux, BSD), the profile file is now created in `$XDG_CONFIG_HOME` (with a fallback to `~/.config/` in absence of given env. variable).