File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
32
### v1.4.0
4
33
5
34
* @Elliot2718 made their first contribution in https://github.com/dbt-msft/dbt-sqlserver/pull/204
Original file line number Diff line number Diff line change 1
- version = "1.4.0 "
1
+ version = "1.4.1 "
You can’t perform that action at this time.
0 commit comments