From 22dcd4e32e2998a1efd7a82d4126ff0a5a8086bb Mon Sep 17 00:00:00 2001 From: Alex Bourret Date: Wed, 5 Nov 2025 10:00:48 +0100 Subject: [PATCH 1/4] v1.2.0 --- 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 19a0f89..8054bd7 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "id": "sharepoint-online", - "version": "1.1.9", + "version": "1.2.0", "meta": { "label": "SharePoint Online", "description": "Read and write data from/to your SharePoint Online account", diff --git a/python-lib/dss_constants.py b/python-lib/dss_constants.py index ecad3dd..2bde5da 100644 --- a/python-lib/dss_constants.py +++ b/python-lib/dss_constants.py @@ -38,7 +38,7 @@ class DSSConstants(object): "sharepoint_oauth": "The access token is missing" } PATH = 'path' - PLUGIN_VERSION = "1.1.9" + PLUGIN_VERSION = "1.2.0" SECRET_PARAMETERS_KEYS = ["Authorization", "sharepoint_username", "sharepoint_password", "client_secret", "client_certificate", "passphrase"] SITE_APP_DETAILS = { "sharepoint_tenant": "The tenant name is missing", From 6ba926009593429135abd77a720e113b5d08038f Mon Sep 17 00:00:00 2001 From: Alex Bourret Date: Wed, 5 Nov 2025 10:01:03 +0100 Subject: [PATCH 2/4] update changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1653497..b0c5559 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [Version 1.2.0](https://github.com/dataiku/dss-plugin-sharepoint-online/releases/tag/v1.2.2) - Feature release - 2025-11-05 + +- Handles strings longer than 255 characters + - In append mode, check whether the SharePoint column is single or multiple lines of text, and chunk accordingly the string to be uploaded + - In overwrite mode, initially recreate the columns as single line, and convert to multiple lines if a column contains a string longer than 255 characters + ## [Version 1.1.9](https://github.com/dataiku/dss-plugin-sharepoint-online/releases/tag/v1.1.9) - Bugfix release - 2025-09-23 - Fix handling of username / password error message From 3f9a4be8f876163b1780393e3dceb50b17e74e3e Mon Sep 17 00:00:00 2001 From: Alex Bourret Date: Wed, 5 Nov 2025 10:02:42 +0100 Subject: [PATCH 3/4] use new tags and adds category --- plugin.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/plugin.json b/plugin.json index 8054bd7..9d3e08b 100644 --- a/plugin.json +++ b/plugin.json @@ -6,11 +6,12 @@ "description": "Read and write data from/to your SharePoint Online account", "author": "Dataiku (Alex Bourret)", "icon": "icon-cloud", + "category": "Connect", "tags": [ - "Connector", - "Cloud", - "Azure", - "Format" + "Data source", + "Export", + "Recipe", + "Dataset" ], "url": "https://www.dataiku.com/product/plugins/sharepoint-online/", "licenseInfo": "Apache Software License" From 0ad48aefd9753c7a7c7bfb691954b8a189a2c072 Mon Sep 17 00:00:00 2001 From: Alex Bourret Date: Wed, 5 Nov 2025 10:08:01 +0100 Subject: [PATCH 4/4] fix version number in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0c5559..8d8ef85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Version 1.2.0](https://github.com/dataiku/dss-plugin-sharepoint-online/releases/tag/v1.2.2) - Feature release - 2025-11-05 +## [Version 1.2.0](https://github.com/dataiku/dss-plugin-sharepoint-online/releases/tag/v1.2.0) - Feature release - 2025-11-05 - Handles strings longer than 255 characters - In append mode, check whether the SharePoint column is single or multiple lines of text, and chunk accordingly the string to be uploaded