diff --git a/CHANGELOG.md b/CHANGELOG.md index 2affd678e..a725d3126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,19 @@ upcoming release can be found in [changelog.d](changelog.d). +## [2.2.0](https://github.com/Backblaze/b2-sdk-python/releases/tag/v2.2.0) - 2024-05-08 + +### Added + +- Add `has_errors_or_warnings` method to `ProgressReport` class. + +### Fixed + +- Ensure `b2sdk.v2.b2http` emits `b2sdk.v2.BucketIdNotFound` exception instead of `b2sdk._v3.BucketIdNotFound`. ([#437](https://github.com/Backblaze/b2-sdk-python/issues/437)) +- Ensure `unprintable_to_hex` and `unprintable_to_hex` return empty string (instead of `None`) if empty string was supplied as argument. +- Skip files with invalid filenames when scanning directories (for `sync`, ...) instead of raising an exception. + + ## [2.1.0](https://github.com/Backblaze/b2-sdk-python/releases/tag/v2.1.0) - 2024-04-15 diff --git a/changelog.d/+escape_funcs.fixed.md b/changelog.d/+escape_funcs.fixed.md deleted file mode 100644 index d968f89ee..000000000 --- a/changelog.d/+escape_funcs.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Ensure `unprintable_to_hex` and `unprintable_to_hex` return empty string (instead of `None`) if empty string was supplied as argument. diff --git a/changelog.d/+invalid-filename.fixed.md b/changelog.d/+invalid-filename.fixed.md deleted file mode 100644 index 4117c4ecd..000000000 --- a/changelog.d/+invalid-filename.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Report and skip invalid filenames found when scanning directories (for `sync`, ...). \ No newline at end of file diff --git a/changelog.d/437.fixed.md b/changelog.d/437.fixed.md deleted file mode 100644 index 89941029d..000000000 --- a/changelog.d/437.fixed.md +++ /dev/null @@ -1 +0,0 @@ -Ensure `b2sdk.v2.b2http` emits `b2sdk.v2.BucketIdNotFound` exception instead of `b2sdk._v3.BucketIdNotFound`.