diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 53fe313..0a7bc53 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.6.1 +current_version = 2.6.2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b8364b..fdb1e82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# tap-mssql 2.6.2 2024-10-09 +* Resolving issue when a table has a primary key and unique key. Both unique and primary key + columns were being identified as the primary key for the target table. Prioritising the + primary key first, and unique key secondary if there is no primary key. + # tap-mssql 2.6.1 2024-10-09 * Resolving issue with call get the prior LSN number (passing in unescaped table). diff --git a/pyproject.toml b/pyproject.toml index 2295f03..0173a77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tap-mssql" -version = "2.6.1" +version = "2.6.2" description = "A pipelinewise compatible tap for connecting Microsoft SQL Server" authors = ["Rob Winters "] license = "GNU Affero"