diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4442f02..6f6551b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.6.4 +current_version = 2.6.5 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7827836..e57c6ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ + +# tap-mssql 2.6.5 2024-10-24 +* Adding support for ntext to list of valid STRING_TYPES. + # tap-mssql 2.6.4 2024-10-24 * Update to handle `timestamp` (not a datetime value, a [deprecated](https://learn.microsoft.com/en-us/sql/t-sql/data-types/rowversion-transact-sql?view=sql-server-ver16#remarks) synonym of internal `rowversion`) as string * Add tests for incremental syncing using a `timestamp` column as `replication-key` diff --git a/pyproject.toml b/pyproject.toml index bda38b2..677a547 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tap-mssql" -version = "2.6.4" +version = "2.6.5" description = "A pipelinewise compatible tap for connecting Microsoft SQL Server" authors = ["Rob Winters "] license = "GNU Affero" diff --git a/tap_mssql/__init__.py b/tap_mssql/__init__.py index d813870..445b703 100644 --- a/tap_mssql/__init__.py +++ b/tap_mssql/__init__.py @@ -51,6 +51,7 @@ "uniqueidentifier", "nvarchar", "nchar", + "ntext", ] )