All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
This project uses towncrier and the changes for the upcoming release can be found in changelog.d.
2.6.0 - 2024-10-28
- Remove Python 3.7 support in new releases.
Under Python 3.7
pip
will keep resolving the latest version of the package that supports active interpreter. Python 3.8 is now the minimum supported version, until it reaches EOL in October 2024. We encourage use of the latest stable Python release.
- Fixed datetime.utcnow() deprecation warnings under Python 3.12.
- Declare official support for Python 3.13 in b2sdk. Test b2sdk against Python 3.13 in CI.
- Upgraded to pytest 8 (#484).
2.5.1 - 2024-08-15
- Fix LocalFolder.all_files(..) erroring out if one of the non-excluded directories is not readable by the user running the scan. Warning is added to ProgressReport instead as other file access errors are.
2.5.0 - 2024-07-30
- Fix TruncatedOutput errors when downloading files over congested network (fixes B2_Command_Line_Tool#554).
- Ensure
FileSimulator.as_download_headers
returnsdict[str, str]
mapping.
- Add
unhide_file
method to Bucket class.
- Improve
download_file_from_url
methods type hints.
- Limit max CI (Github Actions) duration to 90 minutes.
2.4.1 - 2024-06-19
- Fix
LocalFolder
regression (introduced in 2.4.0) which causedLocalFolder
to not list files by path lexicographical order. This is also a fix forsynchronizer
re-uploading files on every run in some cases. (#502)
2.4.0 - 2024-06-17
- In
b2sdk.v3
theB2Api
will always createcache
fromAccountInfo
object, unlesscache
is provided explicitly. The current stableb2sdk.v2
remains unchanged, i.e.DummyCache
is created by default ifaccount_info
was provided, but notcache
. Documentation forb2sdk.v2
was updated with the new recommended usage, e.g.B2Api(info, cache=AuthInfoCache(info))
, to achieve the same behavior asb2sdk.v3
. (#497)
- Move scan filters before a read on filesystem access attempt. This will prevent unnecessary warnings and IO operations on paths that are not relevant to the operation. (#456)
- Fix bucket caching erroring out when using
StubAccountInfo
.
- Add
annotated_types
dependency for type annotations that include basic value validation. - Add
daysFromStartingToCancelingUnfinishedLargeFiles
option tolifecycle_rules
type annotation. - Add non-retryable
NoPaymentHistory
exception. API returns this exception when action (e.g. bucket creation or replication rules) is not allowed due to lack of payment history.
2.3.0 - 2024-05-15
- Add
folder_to_list_can_be_a_file
parameter tob2sdk.v2.Bucket.ls
, that if set toTrue
will allow listing a file versions if path is an exact match. This parameter won't be included inb2sdk.v3.Bucket.ls
and unless suppliedpath
ends with/
, the possibility of path pointing to file will be considered first.
2.2.1 - 2024-05-09
- Fix
__str__
ofb2sdk.v2.BucketIdNotFound
to return full error message and not just missing bucket ID value.
2.2.0 - 2024-05-08
- Add
has_errors_or_warnings
method toProgressReport
class.
- Ensure
b2sdk.v2.b2http
emitsb2sdk.v2.BucketIdNotFound
exception instead ofb2sdk._v3.BucketIdNotFound
. (#437) - Ensure
unprintable_to_hex
andunprintable_to_hex
return empty string (instead ofNone
) 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 - 2024-04-15
- Use ParallelDownloader for small files instead of SimpleDownloader to avoid blocking on I/O.
- Fix
decode_content=True
causing an error when downloading tiny and large files. - Prevent errors due to the use of "seekable" download strategies for seekable, but not readable files.
- Add set&get Event Notification rules methods to Bucket API as part of Event Notifications feature Private Preview. See https://www.backblaze.com/blog/announcing-event-notifications/ for details.
2.0.0 - 2024-04-02
- Remove
tqdm
dependency. Nowtqdm
has to be explicitly installed to useTqdmProgressListener
class. - Remove
[doc]
extras dependency group - moved to dev dependencies. - Remove unnecessary
packaging
package dependency. It's functionality was never explicitly exposed.
- Move non-apiver packages (e.g. packages other than
b2sdk.v1
,b2sdk.v2
, ...) tob2sdk._internal
to further discourage use of non-public internals. If you accidentally used non-public internals, most likely only thing you will need to do, is import fromb2sdk.v2
instead ofb2sdk
. - Move logging setup and
UrllibWarningFilter
class fromb2sdk.__init__.py
tob2sdk._v3
(and thusb2sdk.v2
&b2sdk.v1
). This will allow us to remove/change it in new apiver releases without the need to change the major semver version.
- Add
SqliteAccountInfo.get_user_account_info_path
to public API.
- Update to GitHub Actions using Node 20.
1.33.0 - 2024-03-15
- Escape control characters whenever printing object and bucket names to improve security.
- Remove unused
setuptools
from default dependency list.
- Added control character escaping methods.
1.32.0 - 2024-02-26
- Add
set_thread_pool_size
,get_thread_pool_size
to *Manger classes.
- Fix schema graph rendering in readthedocs documentation.
1.31.0 - 2024-02-19
- Remove obsolete test scripts from b2sdk package:
test_upload_url_concurrency
,b2sdk.b2http:test_http
. (#471)
- Allow for
min_part_size
that is greater than defaultrecommended_part_size
value, without having to explicitly setrecommended_part_size
value. - Add
GET
method support toB2Http
. - Add
JSON
type annotation and fix type hints inB2Http
methods. - Add more type hints to API methods.
1.30.1 - 2024-02-02
- Fix package author metadata.
1.30.0 - 2024-02-02
- Fix escape sequence warnings present in python 3.12. (#458)
- Handle json encoded, invalid B2 error responses, preventing exceptions such as
invalid literal for int() with base 10: 'service_unavailable'
.
- Add support for filters to
Bucket.ls()
.
- Package the library using pdm, use locked dependencies in CI.
- Update
ruff
linter and apply it to all files.
1.29.1 - 2024-01-23
- Handle non-json encoded B2 error responses, i.e. retry on 502 and 504 errors.
- Add missing import in Synchronizer docs example.
1.29.0 - 2023-12-13
- Change v3.B2Api.authorize_account signature to make
realm
optional and"production"
by default.
- Progress listener instances can now change their descriptions during run. This allows for e.g.: changing description after file headers are downloaded but before the content is fetched.
- Add
-v
to pytest in CI. - Run windows pypy3.9 tests on nightly builds.
1.28.0 - 2023-12-06
- 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.
- Streaming from empty stream no longer ends with "Empty emerge parts iterator" error.
- 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 - 2023-11-26
- Add dependency on
setuptools
andpackaging
as they are not shipped by cpython 3.12 and are used in production code.
- Fix closing of passed progress listeners in
Bucket.upload
andBucket.copy
1.26.0 - 2023-11-20
- Add
expires
,content_disposition
,content_encoding
,content_language
arguments to variousBucket
methods (#357)
- Towncrier changelog generation - to avoid conflicts when simultaneously working on PRs
- Fix towncrier generated changelog to work with mindsers/changelog-reader-action
1.25.0 - 2023-11-15
- Add
*_PART_SIZE
,BUCKET_NAME_*
,STDOUT_FILEPATH
constants - Add
points_to_fifo
,points_to_stdout
functions
- Mark
TempDir
as deprecated in favor oftempfile.TemporaryDirectory
- Fix downloading to a non-seekable file, such as /dev/stdout
- Fix ScanPoliciesManager support for compiled regexes
- Fix readthedocs build by updating to v2 configuration schema
- Fix spellcheck erroring out on LICENSE file
- Fix snyk reporting vulnerability due to tornado package use in docs generation
- Deduplicate test_base files in test suite
- Refactor integration tests for better pytest compatibility & eager bucket cleanup
1.24.1 - 2023-09-27
- Fix missing key ID for large file encrypted with SSE-C
- Fix concatenating error message when message is None
1.24.0 - 2023-08-31
- 'bypass_governance' flag to delete_file_version
1.23.0 - 2023-08-10
- Add
get_file_info_by_name
to the B2Api class
- Require
typing_extensions
on Python 3.11 (already required on earlier versions) for better compatibility with pydantic v2 - Fix
RawSimulator
handling ofcache_control
parameter during tests.
1.22.1 - 2023-07-24
- Fix regression in dir exclusion patterns introduced in 1.22.0
1.22.0 - 2023-07-21
- Declare official support of Python 3.12
- Improved
lifecycle_rules
argument type annotations
- Deprecate
file_infos
argument. Usefile_info
instead. Old argument name won't be supported in v3.
version_utils
decorators now ignorecurrent_version
parameter to better fitapiver
needs
- Circular symlinks no longer cause infinite loops when syncing a folder
- Fix crash on upload retry with unbound data source
- Remove unsupported PyPy versions (3.7, 3.8) from tests matrix and add PyPy 3.9 & 3.10 instead
- Replaced
pyflakes
withruff
for linting - Refactored logic for resuming large file uploads to unify code paths, correct inconsistencies, and enhance configurability (#381)
- Automatically set copyright date when generating the docs
- Use modern type hints in documentation (achieved through combination of PEP 563 & 585 and
sphinx-autodoc-typehints
)
1.21.0 - 2023-04-17
- Add support for custom upload timestamp
- Add support for cache control header while uploading
- Remove dependency from
arrow
- Build Python wheels for distribution
1.20.0 - 2023-03-23
- Add
use_cache
parameter toB2Api.list_buckets
- Connection timeout is now being set explicitly
- Small files downloaded twice
- Disable changelog verification for dependabot PRs
1.19.0 - 2023-01-24
- Authorizing a key for a single bucket ensures that this bucket is cached
Bucket.ls
operation supports wildcard matching strings- Documentation for
AbstractUploadSource
and its children InvalidJsonResponse
when the received error is not a proper JSON document- Raising
PotentialS3EndpointPassedAsRealm
when a specific misconfiguration is suspected - Add
large_file_sha1
support - Add support for incremental upload and sync
- Ability to stream data from an unbound source to B2 (for example stdin)
- Removed information about replication being in closed beta
- Don't throw raw
OSError
exceptions when usingDownloadedFile.save_to
to a path that doesn't exist, is a directory or the user doesn't have permissions to write to
- Additional tests for listing files/versions
- Ensured that changelog validation only happens on pull requests
- Upgraded GitHub actions checkout to v3, python-setup to v4
- Additional tests for
IncrementalHexDigester
1.18.0 - 2022-09-20
- Logging performance summary of parallel download threads
- Add
max_download_streams_per_file
parameter to B2Api class and underlying structures - Add
is_file_lock_enabled
parameter toBucket.update()
and related methods
- Replace
ReplicationScanResult.source_has_sse_c_enabled
withsource_encryption_mode
- Fix
B2Api.get_key()
andRawSimulator.delete_key()
- Fix calling
CopySizeTooBig
exception
- Fix nox's deprecated
session.install()
calls - Re-enable changelog validation in CI
- StatsCollector contains context managers for gathering performance statistics
1.17.3 - 2022-07-15
- Fix
FileVersion._get_upload_headers
when encryption key isNone
- Fix download integration tests on non-production environments
- Add
B2_DEBUG_HTTP
env variable to enable network-level test debugging - Disable changelog validation temporarily
1.17.2 - 2022-06-24
- Fix a race in progress reporter
- Fix import of replication
1.17.1 - 2022-06-23 [YANKED]
- Fix importing scan module
1.17.0 - 2022-06-23 [YANKED]
As in version 1.16.0, the replication API may still be unstable, however no backward-incompatible changes are planned at this point.
- Add
included_sources
module for keeping track of included modified third-party libraries - Add
include_existing_files
parameter toReplicationSetupHelper
- Add
get_b2sdk_doc_urls
function for extraction of external documentation URLs during runtime
- Downloading compressed files with
Content-Encoding
header set no longer causes them to be decompressed on the fly - it's an option - Change the per part retry limit from 5 to 20 for data transfer operations. Please note that the retry system is not considered to be a part of the public interface and is subject to be adjusted
- Do not wait more than 64 seconds between retry attempts (unless server asks for it)
- On longer failures wait an additional (random, up to 1s) amount of time to prevent client synchronization
- Flatten
ReplicationConfiguration
interface - Reorder actions of
ReplicationSetupHelper
to avoid zombie rules
- Fix: downloading compressed files and decompressing them on the fly now does not cause a TruncatedOutput error
- Fix
AccountInfo.is_master_key()
- Fix docstring of
SqliteAccountInfo
- Fix lifecycle rule type in the docs
- Add 3.11.0-beta.1 to CI
- Change Sphinx major version from 5 to 6
- Extract folder/bucket scanning into a new
scan
module - Enable pip cache in CI
1.16.0 - 2022-04-27
This release contains a preview of replication support. It allows for basic usage of B2 replication feature (currently in closed beta).
As the interface of the sdk (and the server api) may change, the replication support shall be considered PRIVATE interface and should be used with caution. Please consult the documentation on how to safely use the private api interface.
Expect substantial amount of work on sdk interface:
- The interface of
ReplicationConfiguration
WILL change - The interface of
FileVersion.replication_status
MIGHT change - The interface of
FileVersionDownload
MIGHT change
- Add basic replication support to
Bucket
andFileVersion
- Add
is_master_key()
method toAbstractAccountInfo
- Add
readBucketReplications
andwriteBucketReplications
toALL_CAPABILITIES
- Add log tracing of
interpret_b2_error
- Add
ReplicationSetupHelper
- Fix license test on Windows
- Fix cryptic errors when running integration tests with a non-full key
1.15.0 - 2022-04-12
- Don't run coverage in pypy in CI
- Introduce a common thread worker pool for all downloads
- Increase http timeout to 20min (for copy using 5GB parts)
- Remove inheritance from object (leftover from python2)
- Run unit tests on all CPUs
- Add pypy-3.8 to test matrix
- Add support for unverified checksum upload mode
- Add dedicated exception for unverified email
- Add a parameter to customize
sync_policy_manager
- Add parameters to set the min/max part size for large file upload/copy methods
- Add CopySourceTooBig exception
- Add an option to set a custom file version class to
FileVersionFactory
- Add an option for B2Api to turn off hash checking for downloaded files
- Add an option for B2Api to set write buffer size for
DownloadedFile.save_to
method - Add support for multiple profile files for SqliteAccountInfo
- Fix copying objects larger than 1TB
- Fix uploading objects larger than 1TB
- Fix downloading files with unverified checksum
- Fix decoding in filename and file info of
DownloadVersion
- Fix an off-by-one bug and other bugs in the Simulator copy functionality
- Drop support for Python 3.5 and Python 3.6
1.14.1 - 2022-02-23
- Fix setting permissions for local sqlite database (thanks to Jan Schejbal for responsible disclosure!)
1.14.0 - 2021-12-23
- Relax constraint on arrow to allow for versions >= 1.0.2
1.13.0 - 2021-10-24
- Add support for Python 3.10
- Update a list with all capabilities
- Fix pypy selector in CI
1.12.0 - 2021-08-06
- The
importlib-metadata
requirement is less strictly bound now (just >=3.3.0 for python > 3.5). B2Api
update_file_legal_hold
andupdate_file_retention_setting
now return the set values
BucketIdNotFound
thrown based on B2 cloud response_clone
method toFileVersion
andDownloadVersion
delete
,update_legal_hold
,update_retention
anddownload
methods added toFileVersion
- FileSimulator returns special file info headers properly
- One unused import.
1.11.0 - 2021-06-24
- apiver
v2
interface released.from b2sdk.v2 import ...
is now the recommended import, butfrom b2sdk.v1 import ...
works as before
1.10.0 - 2021-06-23
get_fresh_state
method added toFileVersion
andBucket
download_file_*
methods refactored to allow for inspecting DownloadVersion before downloading the whole fileB2Api.get_file_info
returns aFileVersion
object in v2B2RawApi
renamed toB2RawHTTPApi
B2HTTP
tests are now commonB2HttpApiConfig
class introduced to provide parameters likeuser_agent_append
toB2Api
without using internal classes in v2Bucket.update
returns aBucket
object in v2Bucket.ls
argumentshow_versions
renamed tolatest_only
in v2B2Api
application key methods refactored to operate with dataclasses instead of dicts in v2B2Api.list_keys
is a generator lazily fetching all keys in v2account_id
andbucket_id
added to FileVersion
- Fix EncryptionSetting.from_response_headers
- Fix FileVersion.size and FileVersion.mod_time_millis type ambiguity
- Old buckets (from past tests) are cleaned up before running integration tests in a single thread
- Remove deprecated
SyncReport
methods
1.9.0 - 2021-06-07
ScanPoliciesManager
is able to filter b2 files by upload timestamp
Synchronizer.make_file_sync_actions
andSynchronizer.make_folder_sync_actions
were made private in v2 interface- Refactored
sync.file.*File
andsync.file.*FileVersion
tosync.path.*SyncPath
in v2 - Refactored
FileVersionInfo
toFileVersion
in v2 ScanPoliciesManager
exclusion interface changed in v2B2Api
unittests for v0, v1 and v2 are now commonB2Api.cancel_large_file
returns aFileIdAndName
object instead of aFileVersion
object in v2FileVersion
has a mandatoryapi
parameter in v2B2Folder
holds a handle to B2ApiBucket
unit tests for v1 and v2 are now common
- Fix call to incorrect internal api in
B2Api.get_download_url_for_file_name
1.8.0 - 2021-05-21
- Add
get_bucket_name_or_none_from_bucket_id
toAccountInfo
andCache
- Add possibility to change realm during integration tests
- Add support for "file locks": file retention, legal hold and default bucket retention
- Cleanup sync errors related to directories
- Use proper error handling in
ScanPoliciesManager
- Application key restriction message reverted to previous form
- Added missing apiver wrappers for FileVersionInfo
- Fix crash when Content-Range header is missing
- Pin dependency versions appropriately
b2sdk.v1.sync
refactored to reflectb2sdk.sync
structure- Make
B2Api.get_bucket_by_id
return populated bucket objects in v2 - Add proper support of
recommended_part_size
andabsolute_minimum_part_size
inAccountInfo
- Refactored
minimum_part_size
torecommended_part_size
(the value used stays the same) - Encryption settings, types and providers are now part of the public API
- Remove
Bucket.copy_file
andBucket.start_large_file
- Remove
FileVersionInfo.format_ls_entry
andFileVersionInfo.format_folder_ls_entry
1.7.0 - 2021-04-22
- Add
__slots__
and__eq__
toFileVersionInfo
for memory usage optimization and ease of testing - Add support for SSE-C server-side encryption mode
- Add support for
XDG_CONFIG_HOME
for determining the location ofSqliteAccountInfo
db file
BasicSyncEncryptionSettingsProvider
supports different settings sets for reading and writing- Refactored AccountInfo tests to a single file using pytest
- Fix clearing cache during
authorize_account
- Fix
ChainedStream
(needed inBucket.create_file
etc.) - Make tqdm-based progress reporters less jumpy and easier to read
- Fix emerger examples in docs
1.6.0 - 2021-04-08
- Fetch S3-compatible API URL from
authorize_account
- Exclude packages inside the test package when installing
- Fix for server response change regarding SSE
1.5.0 - 2021-03-25
- Add
dependabot.yml
- Add support for SSE-B2 server-side encryption mode
- Add upper version limit for the requirements
- Pin
setuptools-scm<6.0
as>=6.0
doesn't support Python 3.5
1.4.0 - 2021-03-03
- Add an ability to provide
bucket_id
filter parameter forlist_buckets
- Add
is_same_key
method toAccountInfo
- Add upper version limit for arrow dependency, because of a breaking change
- Fix docs autogen
1.3.0 - 2021-01-13
- Add custom exception for
403 transaction_cap_exceeded
- Add
get_file_info_by_id
andget_file_info_by_name
toBucket
FileNotPresent
andNonExistentBucket
now subclass new exceptionsFileOrBucketNotFound
andResourceNotFound
- Fix missing import in the synchronization example
- Use
setuptools-scm
for versioning - Clean up CI steps
1.2.0 - 2020-11-03
- Add support for Python 3.9
- Support for bucket to bucket sync
- Add a possibility to append a string to the User-Agent in
B2Http
- Change default fetch count for
ls
to 10000
- Drop Python 2 and Python 3.4 support 🎉
- Remove
--prefix
fromls
(it didn't really work, usefolderName
argument)
- Allow to set an empty bucket info during the update
- Fix docs generation in CI
1.1.4 - 2020-07-15
- Allow specifying custom realm in B2Session.authorize_account
1.1.2 - 2020-07-06
- Fix upload part for file range on Python 2.7
1.1.0 - 2020-06-24
- Add
list_file_versions
method to buckets. - Add server-side copy support for large files
- Add ability to synthesize objects from local and remote sources
- Add AuthInfoCache, InMemoryCache and AbstractCache to public interface
- Add ability to filter in ScanPoliciesManager based on modification time
- Add ScanPoliciesManager and SyncReport to public interface
- Add md5 checksum to FileVersionInfo
- Add more keys to dicts returned by as_dict() methods
- Make sync treat hidden files as deleted
- Ignore urllib3 "connection pool is full" warning
- Remove arrow warnings caused by arrow-py/arrow#612
- Fix handling of modification time of files
1.0.2 - 2019-10-15
- Remove upper version limit for arrow dependency
1.0.0 - 2019-10-03
- Minor bug fix.
1.0.0-rc1 - 2019-07-09
- Deprecate some transitional method names to v0 in preparation for v1.0.0.
0.1.10 - 2019-07-09
- Remove a parameter (which did nothing, really) from
b2sdk.v1.Bucket.copy_file
signature
0.1.8 - 2019-06-28
- Add support for b2_copy_file
- Add support for
prefix
parameter on ls-like calls
0.1.6 - 2019-04-24
- Rename account ID for authentication to application key ID. Account ID is still backwards compatible, only the terminology has changed.
- Fix transferer crashing on empty file download attempt
0.1.4 - 2019-04-04
Initial official release of SDK as a separate package (until now it was a part of B2 CLI)