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.8.0 - 2025-01-23
- Migrate to B2 Native API v3.
- Fix continuation for started large files with no fully finished parts.
- Perform re-authentication for empty 401 responses returned for
HEADrequests.
- Remove yapf in favor of ruff.
2.7.0 - 2024-12-12
- Make Event Notifications generally available. (#518)
- Switch a pytest hook from path to collection_path.
- Add upload token reset after upload timeout.
- Fix file/directory permission handling for Windows during the B2 sync.
- Fix event notification tests when introducing new keys in API outputs.
2.6.0 - 2024-10-28
- Remove Python 3.7 support in new releases.
Under Python 3.7
pipwill 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_headersreturnsdict[str, str]mapping.
- Add
unhide_filemethod to Bucket class.
- Improve
download_file_from_urlmethods type hints.
- Limit max CI (Github Actions) duration to 90 minutes.
2.4.1 - 2024-06-19
- Fix
LocalFolderregression (introduced in 2.4.0) which causedLocalFolderto not list files by path lexicographical order. This is also a fix forsynchronizerre-uploading files on every run in some cases. (#502)
2.4.0 - 2024-06-17
- In
b2sdk.v3theB2Apiwill always createcachefromAccountInfoobject, unlesscacheis provided explicitly. The current stableb2sdk.v2remains unchanged, i.e.DummyCacheis created by default ifaccount_infowas provided, but notcache. Documentation forb2sdk.v2was 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_typesdependency for type annotations that include basic value validation. - Add
daysFromStartingToCancelingUnfinishedLargeFilesoption tolifecycle_rulestype annotation. - Add non-retryable
NoPaymentHistoryexception. 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_fileparameter tob2sdk.v2.Bucket.ls, that if set toTruewill allow listing a file versions if path is an exact match. This parameter won't be included inb2sdk.v3.Bucket.lsand unless suppliedpathends with/, the possibility of path pointing to file will be considered first.
2.2.1 - 2024-05-09
- Fix
__str__ofb2sdk.v2.BucketIdNotFoundto return full error message and not just missing bucket ID value.
2.2.0 - 2024-05-08
- Add
has_errors_or_warningsmethod toProgressReportclass.
- Ensure
b2sdk.v2.b2httpemitsb2sdk.v2.BucketIdNotFoundexception instead ofb2sdk._v3.BucketIdNotFound. (#437) - Ensure
unprintable_to_hexandunprintable_to_hexreturn 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=Truecausing 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
tqdmdependency. Nowtqdmhas to be explicitly installed to useTqdmProgressListenerclass. - Remove
[doc]extras dependency group - moved to dev dependencies. - Remove unnecessary
packagingpackage dependency. It's functionality was never explicitly exposed.
- Move non-apiver packages (e.g. packages other than
b2sdk.v1,b2sdk.v2, ...) tob2sdk._internalto 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.v2instead ofb2sdk. - Move logging setup and
UrllibWarningFilterclass fromb2sdk.__init__.pytob2sdk._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_pathto 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
setuptoolsfrom default dependency list.
- Added control character escaping methods.
1.32.0 - 2024-02-26
- Add
set_thread_pool_size,get_thread_pool_sizeto *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_sizethat is greater than defaultrecommended_part_sizevalue, without having to explicitly setrecommended_part_sizevalue. - Add
GETmethod support toB2Http. - Add
JSONtype annotation and fix type hints inB2Httpmethods. - 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
rufflinter 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
realmoptional 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
-vto 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
assertwith 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.normalizein Python 3.12.
1.27.0 - 2023-11-26
- Add dependency on
setuptoolsandpackagingas they are not shipped by cpython 3.12 and are used in production code.
- Fix closing of passed progress listeners in
Bucket.uploadandBucket.copy
1.26.0 - 2023-11-20
- Add
expires,content_disposition,content_encoding,content_languagearguments to variousBucketmethods (#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_FILEPATHconstants - Add
points_to_fifo,points_to_stdoutfunctions
- Mark
TempDiras 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_nameto the B2Api class
- Require
typing_extensionson Python 3.11 (already required on earlier versions) for better compatibility with pydantic v2 - Fix
RawSimulatorhandling ofcache_controlparameter 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_rulesargument type annotations
- Deprecate
file_infosargument. Usefile_infoinstead. Old argument name won't be supported in v3.
version_utilsdecorators now ignorecurrent_versionparameter to better fitapiverneeds
- 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
pyflakeswithrufffor 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_cacheparameter 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.lsoperation supports wildcard matching strings- Documentation for
AbstractUploadSourceand its children InvalidJsonResponsewhen the received error is not a proper JSON document- Raising
PotentialS3EndpointPassedAsRealmwhen a specific misconfiguration is suspected - Add
large_file_sha1support - 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
OSErrorexceptions when usingDownloadedFile.save_toto 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_fileparameter to B2Api class and underlying structures - Add
is_file_lock_enabledparameter toBucket.update()and related methods
- Replace
ReplicationScanResult.source_has_sse_c_enabledwithsource_encryption_mode - Fix
B2Api.get_key()andRawSimulator.delete_key() - Fix calling
CopySizeTooBigexception
- 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_headerswhen encryption key isNone
- Fix download integration tests on non-production environments
- Add
B2_DEBUG_HTTPenv 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_sourcesmodule for keeping track of included modified third-party libraries - Add
include_existing_filesparameter toReplicationSetupHelper - Add
get_b2sdk_doc_urlsfunction for extraction of external documentation URLs during runtime
- Downloading compressed files with
Content-Encodingheader 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
ReplicationConfigurationinterface - Reorder actions of
ReplicationSetupHelperto 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
scanmodule - 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
ReplicationConfigurationWILL change - The interface of
FileVersion.replication_statusMIGHT change - The interface of
FileVersionDownloadMIGHT change
- Add basic replication support to
BucketandFileVersion - Add
is_master_key()method toAbstractAccountInfo - Add
readBucketReplicationsandwriteBucketReplicationstoALL_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_tomethod - 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-metadatarequirement is less strictly bound now (just >=3.3.0 for python > 3.5). B2Apiupdate_file_legal_holdandupdate_file_retention_settingnow return the set values
BucketIdNotFoundthrown based on B2 cloud response_clonemethod toFileVersionandDownloadVersiondelete,update_legal_hold,update_retentionanddownloadmethods added toFileVersion
- FileSimulator returns special file info headers properly
- One unused import.
1.11.0 - 2021-06-24
- apiver
v2interface 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_statemethod added toFileVersionandBucket
download_file_*methods refactored to allow for inspecting DownloadVersion before downloading the whole fileB2Api.get_file_inforeturns aFileVersionobject in v2B2RawApirenamed toB2RawHTTPApiB2HTTPtests are now commonB2HttpApiConfigclass introduced to provide parameters likeuser_agent_appendtoB2Apiwithout using internal classes in v2Bucket.updatereturns aBucketobject in v2Bucket.lsargumentshow_versionsrenamed tolatest_onlyin v2B2Apiapplication key methods refactored to operate with dataclasses instead of dicts in v2B2Api.list_keysis a generator lazily fetching all keys in v2account_idandbucket_idadded 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
SyncReportmethods
1.9.0 - 2021-06-07
ScanPoliciesManageris able to filter b2 files by upload timestamp
Synchronizer.make_file_sync_actionsandSynchronizer.make_folder_sync_actionswere made private in v2 interface- Refactored
sync.file.*Fileandsync.file.*FileVersiontosync.path.*SyncPathin v2 - Refactored
FileVersionInfotoFileVersionin v2 ScanPoliciesManagerexclusion interface changed in v2B2Apiunittests for v0, v1 and v2 are now commonB2Api.cancel_large_filereturns aFileIdAndNameobject instead of aFileVersionobject in v2FileVersionhas a mandatoryapiparameter in v2B2Folderholds a handle to B2ApiBucketunit 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_idtoAccountInfoandCache - 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.syncrefactored to reflectb2sdk.syncstructure- Make
B2Api.get_bucket_by_idreturn populated bucket objects in v2 - Add proper support of
recommended_part_sizeandabsolute_minimum_part_sizeinAccountInfo - Refactored
minimum_part_sizetorecommended_part_size(the value used stays the same) - Encryption settings, types and providers are now part of the public API
- Remove
Bucket.copy_fileandBucket.start_large_file - Remove
FileVersionInfo.format_ls_entryandFileVersionInfo.format_folder_ls_entry
1.7.0 - 2021-04-22
- Add
__slots__and__eq__toFileVersionInfofor memory usage optimization and ease of testing - Add support for SSE-C server-side encryption mode
- Add support for
XDG_CONFIG_HOMEfor determining the location ofSqliteAccountInfodb file
BasicSyncEncryptionSettingsProvidersupports 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_fileetc.) - 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.0as>=6.0doesn't support Python 3.5
1.4.0 - 2021-03-03
- Add an ability to provide
bucket_idfilter parameter forlist_buckets - Add
is_same_keymethod 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_idandget_file_info_by_nametoBucket FileNotPresentandNonExistentBucketnow subclass new exceptionsFileOrBucketNotFoundandResourceNotFound
- Fix missing import in the synchronization example
- Use
setuptools-scmfor 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
lsto 10000
- Drop Python 2 and Python 3.4 support 🎉
- Remove
--prefixfromls(it didn't really work, usefolderNameargument)
- 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_versionsmethod 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_filesignature
0.1.8 - 2019-06-28
- Add support for b2_copy_file
- Add support for
prefixparameter 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)