File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed
Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff line change 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'
23simplejson == 3.17.6
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff 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' }
You can’t perform that action at this time.
0 commit comments