From 8b5cc022651df18b97fd63fd954958d576fd67de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cumitbuyuksahin=E2=80=9D?= Date: Wed, 20 Jul 2022 09:58:12 +0200 Subject: [PATCH 1/2] Fixed udf path generate method --- exasol_bucketfs_utils_python/bucketfs_location.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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, From dbd02ab294dc1f2be23a1186546b26e82611e882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cumitbuyuksahin=E2=80=9D?= Date: Wed, 20 Jul 2022 10:12:05 +0200 Subject: [PATCH 2/2] Updated changelog for release --- doc/changes/changes_0.3.0.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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