From adcb355b0c2fe810939e13f288190fd508005585 Mon Sep 17 00:00:00 2001 From: Alex Bourret Date: Thu, 30 Apr 2026 13:56:34 +0200 Subject: [PATCH 1/3] allow subfolders in 'Shared folder name' box --- python-lib/onedrive_client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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", []): From bfa38af17c790a3fff7f427daf0d2429f257134c Mon Sep 17 00:00:00 2001 From: Alex Bourret Date: Thu, 30 Apr 2026 14:47:50 +0200 Subject: [PATCH 2/3] v1.1.3 --- plugin.json | 2 +- python-lib/dss_constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" From 4a369f431132021f0085c5bd0bb30fe79e3ee4be Mon Sep 17 00:00:00 2001 From: Alex Bourret Date: Thu, 30 Apr 2026 14:47:55 +0200 Subject: [PATCH 3/3] update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) 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