forked from exasol/bucketfs-utils-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepared for the release 0.10.0 (#133)
* Prepared for the release 0.10.0 * Prepared for the release 0.10.0 * Prepared for the release 0.10.0 * [run-saas-tests]
- Loading branch information
Showing
6 changed files
with
54 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# BucketFs Python 0.10.0, released 2024-05-15 | ||
|
||
## Feature | ||
- Added logging support | ||
**Overview** | ||
|
||
The bucketfs logger can be referenced via `exasol.bucketfs` | ||
|
||
```python | ||
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. | ||
|
||
```python | ||
import logging | ||
|
||
logging.basicConfig(level=logging.INFO) | ||
``` | ||
|
||
- Support for viewing BucketFS as a directory | ||
|
||
Added the PathLike protocol as described in the [design document](../design/bucketpath.rst). | ||
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` to `v3.0.0` | ||
- Update actions/setup-python from `v2` to `v5` | ||
- Added build system section to project `pyproject.toml` | ||
- Restructure internals of bucketfs package | ||
- Updated the SLC base flavour to python3.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1 @@ | ||
# Unreleased | ||
|
||
## Added | ||
- Added logging support | ||
**Overview** | ||
|
||
The bucketfs logger can be referenced via `exasol.bucketfs` | ||
|
||
```python | ||
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. | ||
|
||
```python | ||
import logging | ||
|
||
logging.basicConfig(level=logging.INFO) | ||
``` | ||
|
||
- Support for viewing BucketFS as a directory | ||
|
||
Added the PathLike protocol as described in the [design document](../design/bucketpath.rst). | ||
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` to `v3.0.0` | ||
- Update actions/setup-python from `v2` to `v5` | ||
- Added build system section to project `pyproject.toml` | ||
- Restructure internals of bucketfs package | ||
- Updated the SLC base flavour to python3.10 | ||
# Unreleased |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters