diff --git a/CHANGELOG.md b/CHANGELOG.md index bbbb84366..4d60df8d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,24 @@ upcoming release can be found in [changelog.d](changelog.d). +## [2.11.0](https://github.com/Backblaze/b2-sdk-python/releases/tag/v2.11.0) - 2026-05-01 + + +### Fixed + +- Handle null case when encoding / decoding `content_sha1` in BaseFileVersion. ([#553](https://github.com/Backblaze/b2-sdk-python/issues/553)) +- Fix `SqliteAccountInfo` to explicitly close temporary sqlite connections used during setup, add a `close()` method for cached connection. + +### Added + +- Declare official support for Python 3.14 and include it in the CI test matrix. +- Introduce a reusable validator to ensure remote B2 file names are safe to use as local paths. + +### Infrastructure + +- Bump tornado dependency from 6.5.4 to 6.5.5. + + ## [2.10.4](https://github.com/Backblaze/b2-sdk-python/releases/tag/v2.10.4) - 2026-03-03 diff --git a/changelog.d/+path-validation-helper.added.md b/changelog.d/+path-validation-helper.added.md deleted file mode 100644 index f22ca87af..000000000 --- a/changelog.d/+path-validation-helper.added.md +++ /dev/null @@ -1 +0,0 @@ -Introduce a reusable validator to ensure remote B2 file names are safe to use as local paths. diff --git a/changelog.d/+python314.added.md b/changelog.d/+python314.added.md deleted file mode 100644 index 736a3e43e..000000000 --- a/changelog.d/+python314.added.md +++ /dev/null @@ -1 +0,0 @@ -Declare official support for Python 3.14 and include it in the CI test matrix. diff --git a/changelog.d/+sqlite-account-info-connections.fixed.md b/changelog.d/+sqlite-account-info-connections.fixed.md deleted file mode 100644 index 7cda57b90..000000000 --- a/changelog.d/+sqlite-account-info-connections.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Fix `SqliteAccountInfo` to explicitly close temporary sqlite connections used during setup, add a `close()` method for cached connection. diff --git a/changelog.d/+tornado.infrastructure.md b/changelog.d/+tornado.infrastructure.md deleted file mode 100644 index 1d1fd5dce..000000000 --- a/changelog.d/+tornado.infrastructure.md +++ /dev/null @@ -1 +0,0 @@ -Bump tornado dependency from 6.5.4 to 6.5.5. diff --git a/changelog.d/553.fixed.md b/changelog.d/553.fixed.md deleted file mode 100644 index f98074617..000000000 --- a/changelog.d/553.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Handle null case when encoding / decoding `content_sha1` in BaseFileVersion.