diff --git a/doc/changes/changes_0.3.0.md b/doc/changes/changes_0.3.0.md index 504fa5d6..9c444b1d 100644 --- a/doc/changes/changes_0.3.0.md +++ b/doc/changes/changes_0.3.0.md @@ -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 @@ -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 diff --git a/exasol_bucketfs_utils_python/bucketfs_location.py b/exasol_bucketfs_utils_python/bucketfs_location.py index e471e593..c00e91b9 100644 --- a/exasol_bucketfs_utils_python/bucketfs_location.py +++ b/exasol_bucketfs_utils_python/bucketfs_location.py @@ -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,