Skip to content

Commit d494d03

Browse files
update tableau connector required version (#398)
# Update Tableau Connector Required Version ## Proposed Changes - Updated minimum Tableau version requirement from 2024.1 to 2023.3.14 in connector.json - Updated taco-toolkit dependency from version 2.1.0 to 2.0.0 in package.json - Updated documentation in README.md to reflect the new minimum Tableau version (2023.3) - Added a reference to Databricks documentation about connector limitations in README.md ## Why This change improves compatibility by supporting older Tableau versions (2023.3 and later), making the connector accessible to a wider range of users who may not have upgraded to the 2024.1 version yet. ## How is this tested The connector has been verified to work correctly with Tableau 2023.3 versions while maintaining all functionality. ## Additional Information The updated version requirements align with the broader compatibility goals for the Delta Sharing connector while ensuring all features continue to work as expected.
1 parent ec65d02 commit d494d03

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

tableau-delta-sharing-connector-oauth/README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The connector is built with the Tableau Web Data Connector 3.0 SDK and provides:
88
## Prerequisite
99
- [Python 3.7 or higher](https://www.python.org/downloads/)
1010
- [JDK 11 or higher](https://www.oracle.com/java/technologies/downloads/)
11-
- [Tableau Desktop 2024.1 or later](https://www.tableau.com/support/releases/desktop/2024.1)
12-
- Install [taco-toolkit](https://help.tableau.com/current/api/webdataconnector/en-us/index.html): `npm install -g @tableau/taco-toolkit@tableau-2024.1`
11+
- [Tableau Desktop 2023.3.14 or later](https://www.tableau.com/support/releases/desktop/2023.3.14)
12+
- Install [taco-toolkit](https://help.tableau.com/current/api/webdataconnector/en-us/index.html): `npm install -g @tableau/taco-toolkit@2.0.0`
1313

1414
## Local Test
1515

@@ -36,3 +36,6 @@ E.g. for Okta: https://developer.okta.com/docs/guides/implement-oauth-for-okta/m
3636

3737
## Run in Tableau
3838
Please refer to [Tableau doc](https://tableau.github.io/connector-plugin-sdk/docs/run-taco)
39+
40+
## Limitations
41+
Please refer to [Databricks doc](https://docs.databricks.com/aws/en/delta-sharing/read-data-open#limitations-of-the-tableau-delta-sharing-connector)

tableau-delta-sharing-connector-oauth/connector/connector.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "Delta Sharing OAuth",
33
"version": "1.0.0",
44
"tableau-version": {
5-
"min": "2024.1"
5+
"min": "2023.3.14"
66
},
77
"vendor": {
88
"name": "Databricks",

tableau-delta-sharing-connector-oauth/connector/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"dependencies": {
2525
"@popperjs/core": "^2.11.8",
26-
"@tableau/taco-toolkit": "2.1.0",
26+
"@tableau/taco-toolkit": "2.0.0",
2727
"bootstrap": "^5.3.0",
2828
"font-awesome": "^4.7.0",
2929
"react": "^18.0.0",

0 commit comments

Comments
 (0)