Skip to content

Commit 7f44fbf

Browse files
authored
Merge pull request #84 from dataiku/bug/sc-270364-fix-ntlm-on-dss14
Bug/sc 270364 fix ntlm on dss14
2 parents b88d2f0 + 0e228e7 commit 7f44fbf

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [Version 1.3.2](https://github.com/dataiku/dss-plugin-pi-server/releases/tag/v1.3.2) - Bugfix release - 2025-10-07
4+
5+
- Fix NTLM authentication for py3.9+
6+
37
## [Version 1.3.1](https://github.com/dataiku/dss-plugin-pi-server/releases/tag/v1.3.1) - Bugfix release - 2025-05-24
48

59
- Fix the mix mode interpolation type in Transpose & Synchronise (the Step value was inverted)
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
requests_ntlm==1.1.0
1+
requests_ntlm==1.1.0; python_version < '3.7'
2+
requests_ntlm==1.2.0; python_version >= '3.7'
23
simplejson==3.17.6

plugin.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
22
"id": "pi-system",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"meta": {
55
"label": "PI System",
66
"description": "Retrieve data from your OSIsoft PI System servers",
77
"author": "Dataiku (Alex Bourret)",
88
"icon": "icon-pi-system icon-cogs",
9-
"tags": ["Connector"],
9+
"category": "Connect",
10+
"tags": [
11+
"Data source",
12+
"Recipe",
13+
"Dataset"
14+
],
1015
"url": "https://www.dataiku.com/product/plugins/pi-system/",
1116
"licenseInfo": "Apache Software License",
1217
"supportLevel": "NOT_SUPPORTED"

python-lib/osisoft_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ class OSIsoftConstants(object):
405405
"Security": "{base_url}/eventframes/{webid}/security",
406406
"SecurityEntries": "{base_url}/eventframes/{webid}/securityentries"
407407
}
408-
PLUGIN_VERSION = "1.3.1"
408+
PLUGIN_VERSION = "1.3.2"
409409
VALUE_COLUMN_SUFFIX = "_val"
410410
WEB_API_PATH = "piwebapi"
411411
WRITE_HEADERS = {'X-Requested-With': 'XmlHttpRequest'}

0 commit comments

Comments
 (0)