Skip to content
This repository was archived by the owner on Sep 26, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions doc/changes/changes_0.3.0.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# BucketFs Utils Python 0.3.0, released XXXX-XX-XX

# BucketFs Utils Python 0.3.0, released 2022-07-20
Code name: Added method to BucketFSLocation to generate bucket udf path and upgraded Python version to >=3.8.

## Summary

This release adds generate_bucket_udf_path method in BucketFSLoction.
In addition, bugs in the listing and uploading methods are fixed. Furthermore,
Python version is upgraded to >=3.8

## Features / Enhancements

Expand All @@ -12,15 +14,13 @@

- #63: Corrected uploading fileobject method of the mock bucketfs
- #66: Corrected listing method of localfs mock bucketfs
- #74: Fixed generating bucket udf path method

## Refactoring

- #53: Upgraded Python version to >=3.8, removed numpy from source again
- #38: Replaced old bash scripts for building documentation with Sphinx_Github-Pages-generator, migrated to Nox

## Security

- /

## Documentation

Expand Down
3 changes: 2 additions & 1 deletion exasol_bucketfs_utils_python/bucketfs_location.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def generate_bucket_udf_path(
self, path_in_bucket: Union[None, str, PurePosixPath]) \
-> PurePosixPath:
return bucketfs_utils.generate_bucket_udf_path(
self.bucket_config, path_in_bucket)
self.bucket_config,
self.get_complete_file_path_in_bucket(path_in_bucket))

def get_complete_file_path_in_bucket(
self,
Expand Down