Releases: dbt-msft/dbt-sqlserver
Releases · dbt-msft/dbt-sqlserver
v0.21.0rc2
v0.21.0rc1
What's Changed
Please see dbt-core v0.21.0 release notes for upstream changes
- in dbt-sqlserver v0.20.0, users couldn't use some out of the box tests, such as accepted_values. users can now also use CTEs in their
bespokecustom data tests #167 - fixes issue with changing column types in incremental table column type #152 #169
- workaround for Azure CLI token expires after one hour. Now we get new tokens for every transaction. #156 #158
- refresh token if within 5 minutes of expiring; else reuse by @swanderz in #158
- add sqlserver__alter_column_type macro by @dlarsen5 in #169
- small changes for 0.21.0 by @swanderz in #168
New Contributors
Full Changelog: v0.20.1...v0.21.0rc1
dbt-sqlserver v0.20.1
dbt-sqlserver v0.19.3
dbt-sqlserver v0.19.3rc1
dbt-sqlserver v0.19.3rc1
fixes
- workaround for Azure CLI token expires after one hour. Now we get new tokens for every transaction. #156
dbt-sqlserver v0.20.0
dbt-sqlserver v0.20.0
features:
- dbt-sqlserver will now work with dbt
v0.20.0
. Please see dbt's upgrading tov0.20.0
docs for more info. - users can now declare a custom
max_batch_size
in the project configuration to set the batch size used by the seed file loader. #127 and #151 thanks @jacobm001
under the hood
sqlserver__load_csv_rows
now has a safety provided bycalc_batch_size()
to ensure the insert statements won't exceed SQL Server's 2100 parameter limit. #127 and #151 thanks @jacobm001- switched to using a
MANIFEST.in
to declare which files should be included - updated
pyodbc
andazure-identity
dependencies to their latest versions
dbt-sqlserver v0.20.0rc1
v0.20.0rc1 (release cut 1)
cutting a release for last minute testing and to make it easier to bring dbt-synapse to
features:
- dbt-sqlserver will now work with dbt
v0.20.0
. Please see dbt's upgrading tov0.20.0
docs for more info. - users can now declare a custom
max_batch_size
in the project configuration to set the batch size used by the seed file loader. #127 and #151 thanks @jacobm001
under the hood
sqlserver__load_csv_rows
now has a safety provided bycalc_batch_size()
to ensure the insert statements won't exceed SQL Server's 2100 parameter limit. #127 and #151 thanks @jacobm001- switched to using a
MANIFEST.in
to declare which files should be included - updated
pyodbc
andazure-identity
dependencies to their latest versions
dbt-sqlserver v0.19.2
v0.19.2
this will (hopefully) be the last release on 0.19.*
before v0.20.0
fixes
- fixing and issue with empty seed table that dbt-redshift already addressed with fishtown-analytics/dbt#2255 #147
- drop unneeded debugging code that only was run when "Active Directory integrated" was given as the auth method #149
- hotfix for regression introduced by #126 that wouldn't surface syntax errors from the SQL engine #140 thanks @jeroen-mostert!
under the hood:
- ensure that macros are not recreated for incremental models #116 thanks @infused-kim
- authentication now is case-insensitive and accepts both
CLI
andcli
as options. #100 thanks (@JCZuurmond)[https://github.com/JCZuurmond] - add unit tests for azure-identity related token fetching