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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [Version 1.4.0](https://github.com/dataiku/dss-plugin-pi-server/releases/tag/v1.4.0) - Feature release - 2025-09-22

- Add write recipe
- Add download limiter by timestamp density

## [Version 1.3.1](https://github.com/dataiku/dss-plugin-pi-server/releases/tag/v1.3.1) - Bugfix release - 2025-05-24

- Fix the mix mode interpolation type in Transpose & Synchronise (the Step value was inverted)
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "pi-system",
"version": "1.3.1",
"version": "1.4.0",
"meta": {
"label": "PI System",
"description": "Retrieve data from your OSIsoft PI System servers",
Expand Down
2 changes: 1 addition & 1 deletion python-lib/osisoft_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ class OSIsoftConstants(object):
"Security": "{base_url}/eventframes/{webid}/security",
"SecurityEntries": "{base_url}/eventframes/{webid}/securityentries"
}
PLUGIN_VERSION = "1.3.1"
PLUGIN_VERSION = "1.4.0-beta.1"
VALUE_COLUMN_SUFFIX = "_val"
WEB_API_PATH = "piwebapi"
WRITE_HEADERS = {'X-Requested-With': 'XmlHttpRequest'}
4 changes: 2 additions & 2 deletions tests/python/integration/test_scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def test_run_pisystem_authentication_modes(user_dss_clients):
dss_scenario.run(user_dss_clients, project_key=TEST_PROJECT_KEY, scenario_id="AuthenticationModes")


def test_run_pisystem_ssl_certificate(user_dss_clients):
dss_scenario.run(user_dss_clients, project_key=TEST_PROJECT_KEY, scenario_id="SSLCERTIFICATE")
# def test_run_pisystem_ssl_certificate(user_dss_clients):
# dss_scenario.run(user_dss_clients, project_key=TEST_PROJECT_KEY, scenario_id="SSLCERTIFICATE")


def test_run_pisystem_asset_search_and_download(user_dss_clients):
Expand Down