Skip to content

Commit b7ce67f

Browse files
committed
bump for 1.4 and add changelog
1 parent 78a661e commit b7ce67f

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
### v1.4.1
4+
5+
This is a minor release following up on 1.4.0 with fixes of long outstanding issues.
6+
Thanks to all the people who contributed to this release!
7+
8+
#### Features
9+
10+
* Added support for a custom schema owner. You can now add `schema_authorization` (or `schema_auth`) to your profile.
11+
If you do so, dbt will create schemas with the `authorization` option suffixed by this value.
12+
If you are authorizing dbt users or service principals on Azure SQL based on an Azure AD group,
13+
it's recommended to set this value to the name of the group.
14+
* Documentation: added more information about the permissions which you'll need to grant to run dbt.
15+
* Support for `DATETIMEOFFSET` as type to be used in dbt source freshness tests.
16+
* `nolock` for all information_schema/sys tables and views. dbt runs a lot of queries on these metadata schemas.
17+
This can often lead to deadlock issues if you are using a high number of threads
18+
or if you are running multiple dbt commands in parallel. Adding `nolock` to these queries avoids the deadlocks.
19+
20+
#### Bugfixes
21+
22+
* Fixed issues with databases with a case-sensitive collation.
23+
* Index names are now MD5 hashed to avoid running into the maximum amount of characters in index names.
24+
* Fixed the batch size calculation for seeds. Seeds will run more efficiently now.
25+
26+
#### Under the hood
27+
28+
* Fixed more concurrency issues with automated Azure integration testing.
29+
* Removed extra `__init__.py` files.
30+
* Added commits to be ignored in git blame for easier blaming.
31+
332
### v1.4.0
433

534
* @Elliot2718 made their first contribution in https://github.com/dbt-msft/dbt-sqlserver/pull/204

dbt/adapters/sqlserver/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.4.0"
1+
version = "1.4.1"

0 commit comments

Comments
 (0)