From 11264f2f8c35f54fb97cf2631cc1ea461dce5187 Mon Sep 17 00:00:00 2001 From: mibe Date: Thu, 23 Nov 2023 14:44:49 +0000 Subject: [PATCH] Added ticket references to changges_.md files --- doc/changes/changes_0.2.1.md | 12 ++++++++++++ doc/changes/changes_0.2.2.md | 10 ++++++++++ exasol/connections.py | 1 - 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 doc/changes/changes_0.2.1.md create mode 100644 doc/changes/changes_0.2.2.md diff --git a/doc/changes/changes_0.2.1.md b/doc/changes/changes_0.2.1.md new file mode 100644 index 0000000..4ea086d --- /dev/null +++ b/doc/changes/changes_0.2.1.md @@ -0,0 +1,12 @@ +# Exasol Notebook Connector 0.2.1, released 2023-11-14 + +## Summary + +This release adds the connections module and fixes a couple of bugs + +## Changes + +* #21: Bug fix: Removes uniqueness of values in the Secret Store +* #22: Bug fix: Corrects usage example in the documentation +* #23: Adds the connections module +* #26: Allows providing a default value when querying the Secret Store diff --git a/doc/changes/changes_0.2.2.md b/doc/changes/changes_0.2.2.md new file mode 100644 index 0000000..cf41a44 --- /dev/null +++ b/doc/changes/changes_0.2.2.md @@ -0,0 +1,10 @@ +# Exasol Notebook Connector 0.2.1, released 2023-11-23 + +## Summary + +This release fixes a couple of issues with the connections module + +## Changes + +* #28: Treats empty string values in configuration as None +* #29: Connection does not try to set a default schema diff --git a/exasol/connections.py b/exasol/connections.py index af993e7..ecd7a24 100644 --- a/exasol/connections.py +++ b/exasol/connections.py @@ -4,7 +4,6 @@ import pyexasol # type: ignore import sqlalchemy # type: ignore - import exasol.bucketfs as bfs # type: ignore from exasol.secret_store import Secrets