-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-incremental-merge-for-nullable-fields
- Loading branch information
Showing
210 changed files
with
1,128 additions
and
402 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## dbt-adapter 1.0.0 - April 01, 2024 | ||
|
||
### Fixes | ||
|
||
* Add field wrapper to BaseRelation members that were missing it. | ||
* Add "description" and "meta" fields to RelationConfig protocol | ||
|
||
### Under the Hood | ||
|
||
* Lazy load agate to improve dbt-core performance | ||
* add BaseAdapater.MAX_SCHEMA_METADATA_RELATIONS | ||
|
||
### Security | ||
|
||
* Pin `black>=24.3` in `pyproject.toml` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
## dbt-adapter 1.1.0 - May 01, 2024 | ||
|
||
### Features | ||
|
||
* Debug log when `type_code` fails to convert to a `data_type` | ||
* Introduce TableLastModifiedMetadataBatch and implement BaseAdapter.calculate_freshness_from_metadata_batch | ||
* Support for sql fixtures in unit testing | ||
* Cross-database `cast` macro | ||
* Allow adapters to opt out of aliasing the subquery generated by render_limited | ||
* subquery alias generated by render_limited now includes the relation name to mitigate duplicate aliasing | ||
|
||
### Fixes | ||
|
||
* Fix adapter-specific cast handling for constraint enforcement | ||
|
||
### Docs | ||
|
||
* Use `dbt-adapters` throughout the contributing guide | ||
|
||
### Under the Hood | ||
|
||
* Add the option to set the log level of the AdapterRegistered event | ||
* Update dependabot config to cover GHA | ||
* Validate that dbt-core and dbt-adapters remain de-coupled | ||
* remove dbt_version from query comment test fixture | ||
|
||
### Dependencies | ||
|
||
* add support for py3.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## dbt-adapter 1.1.1 - May 07, 2024 | ||
|
||
### Features | ||
|
||
* Enable serialization contexts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## dbt-adapter 1.8.0 - May 09, 2024 | ||
|
||
### Features | ||
|
||
* Cross-database `date` macro | ||
|
||
### Fixes | ||
|
||
* Update Clone test to reflect core change removing `deferred` attribute from nodes |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# This codeowners file is used to ensure all PRs require reviews from the adapters team | ||
|
||
* @dbt-labs/adapters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
version: 2 | ||
updates: | ||
# python dependencies | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
rebase-strategy: "disabled" | ||
- package-ecosystem: "pip" | ||
directory: "/dbt-tests-adapter" | ||
schedule: | ||
interval: "daily" | ||
rebase-strategy: "disabled" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
rebase-strategy: "disabled" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.