Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [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
- 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
Expand Down
11 changes: 6 additions & 5 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"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",
"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"
Expand Down
2 changes: 1 addition & 1 deletion python-lib/dss_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down