Releases: exasol/bucketfs-python
2.0.0
2.0.0 - 2025-07-04
Security
- #228: Relocked dependencies for CVE-2025-50182 and CVE-2025-50181 for transitive dependence
urllib3
Refactorings
- #230: Updated exasol-saas-api (1.1.1 -> 2.2.0) and pytest-exasol-backend (0.4.0 -> 1.0.0)
1.1.0
1.1.0 - 2025-06-12
Security
- #193: Dependency updates, notably Jinja2 (3.1.4 -> 3.1.5), luigi (-> 3.6.0)
- #206: Dependency updates, notably cryptography(43.0.3->44.0.2), Jinja2 (3.1.5 -> 3.1.6)
- Due to changes in cryptography's Python support (!=3.9.0 and 3.9.1), we updated our support to Python ^3.9.2.
- #212: Dependency updates, notably h11(0.14.0->0.16.0)
- #217: Dependency updates, notably setuptools (78.1.0 -> 80.9.0), tornado (6.4.2 -> 6.5.1)
- #223: Dependency updates, notably requests (2.24.0 -> 2.32.4)
Bug fixing
- #202: Fixed the bug in the
Pathlike._navigate()
resulting in false positiveexists
. - #204: Fixed the automatic decompression when downloading a tar.gz file.
Refactorings
1.0.1
1.0.0
0.14.0
0.13.0
0.12.0
0.12.0 - 2024-07-11
Summary
The current release adds a dependency to plugin pytest_exasol_saas
and replaces individual test fixtures by those provided by the plugin.
Additionally the release fixes vulnerabilities by updating dependencies.
Security
- Fixed vulnerabilities by updating dependencies
- Vulnerability CVE-2024-21503 in transitive dependency via
exasol-toolbox
toblack
in versions below24.3.0
- Vulnerability CVE-2024-35195 in dependency
requests
in versions below2.32.0
- Vulnerability CVE-2024-21503 in transitive dependency via
Refactorings
- #141: Used plugin
pytest_exasol_saas
Documentation
0.11.0
0.10.0
BucketFs Python 0.10.0, released 2024-05-15
Feature
-
Added logging support
OverviewThe bucketfs logger can be referenced via
exasol.bucketfs
import logging # Get the logger for 'exasol.bucketfs' logger = logging.getLogger('exasol.bucketfs')
For most use cases it should be sufficient to just configure the root logger, in order
to retrieve the logs from bucketfs.import logging logging.basicConfig(level=logging.INFO)
-
Support for viewing BucketFS as a directory
Added the PathLike protocol as described in the design document.
Extracted bucket interface into BucketLike protocol.
Implemented PathLike for buckets based on BucketLike protocol.
Added a path factory function.
Added implementation of the BucketLike for the SaaS BucketFS. -
verify
parameter to the old interface.
-
Bug Fixing
- Fixed a bug with the propagation of the verify flag from a Service object to the Buckets.
Internal
- Relock dependencies
- Update abatilo/actions-poetry from
v2.1.4
tov3.0.0
- Update actions/setup-python from
v2
tov5
- Added build system section to project
pyproject.toml
- Restructure internals of bucketfs package
- Updated the SLC base flavour to python3.10