diff --git a/CHANGELOG.md b/CHANGELOG.md index a6860a9..ca364a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [Version 1.1.3](https://github.com/dataiku/dss-plugin-onedrive/releases/tag/v1.1.3) - Bugfix release - 2026-04-30 + +- Accepts subfolders in shared folders box + ## [Version 1.1.2](https://github.com/dataiku/dss-plugin-onedrive/releases/tag/v1.1.2) - Bugfix release - 2025-11-21 - Fix access to shared folders diff --git a/plugin.json b/plugin.json index 449ad3e..afa02d2 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "id": "onedrive", - "version": "1.1.2", + "version": "1.1.3", "meta": { "label": "OneDrive", "description": "Read and write data from/to your OneDrive account", diff --git a/python-lib/dss_constants.py b/python-lib/dss_constants.py index f612440..a8c6297 100644 --- a/python-lib/dss_constants.py +++ b/python-lib/dss_constants.py @@ -11,4 +11,4 @@ class DSSConstants(object): CHILDREN = 'children' AUTH_OAUTH = "oauth" AUTH_LOGIN = "login" - PLUGIN_VERSION = "1.1.0" + PLUGIN_VERSION = "1.1.3-beta.1" diff --git a/python-lib/onedrive_client.py b/python-lib/onedrive_client.py index 7f87738..a1d2d64 100644 --- a/python-lib/onedrive_client.py +++ b/python-lib/onedrive_client.py @@ -125,8 +125,9 @@ def get_item(self, path): onedrive_item = OneDriveItem(response.json()) return onedrive_item - def get_shared_directory_drive_id(self, shared_directory_name): + def get_shared_directory_drive_id(self, shared_directory_path): url = self.SHARED_WITH_ME_URL + shared_directory_name = shared_directory_path.split("/")[-1] while url: items = self.get(url, headers=self.generate_header()) for item in items.get("value", []):