-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Update plugin version to 0.5.0 * Cleanup connector manifest * Allow starting tests for a specified connector * Add fingerprint support to ODBC connector * Add unit tests for fingerprint * Apply suggestions from code review Co-authored-by: jakobbraun <[email protected]>
- Loading branch information
1 parent
f7a1d12
commit e7b9f2f
Showing
18 changed files
with
178 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# Exasol Tableau Connector 0.5.0, released 2022-02-?? | ||
# Exasol Tableau Connector 0.5.0, released 2022-02-02 | ||
|
||
Code name: | ||
Code name: TLS certificate fingerprint support for ODBC connector | ||
|
||
## Summary | ||
|
||
|
||
This release allows the user to enter a TLS certificate fingerprint for an ODBC connection. Entering a fingerprint is required when the Exasol database uses a self-signed TLS certificate. | ||
|
||
## Features | ||
|
||
* #43: Added TLS certificate fingerprint support for ODBC connector | ||
|
||
## Tests | ||
|
||
* #42: Added unit tests for ODBC Connector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<connection-fields> | ||
<field name="server" label="Server" value-type="string" optional="false" category="endpoint" /> | ||
|
||
<field name="port" label="Port" value-type="string" optional="false" category="endpoint" default-value="8563" /> | ||
|
||
<field name="authentication" label="Authentication" category="authentication" value-type="string" editable="false" default-value="auth-user-pass" /> | ||
|
||
<field name="username" label="Username" value-type="string" category="authentication" /> | ||
|
||
<field name="password" label="Password" value-type="string" category="authentication" secure="true" /> | ||
|
||
<field name="v-fingerprint" label="Server Certificate Fingerprint" value-type="string" optional="true" category="general" /> | ||
</connection-fields> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<connection-metadata> | ||
<database enabled='false' /> | ||
<schema enabled='true' label="Schema" /> | ||
<table enabled='true' label="Table" /> | ||
</connection-metadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.