diff --git a/.changes/1.1.0-rc2.md b/.changes/1.1.0-rc2.md new file mode 100644 index 00000000..d5f63e58 --- /dev/null +++ b/.changes/1.1.0-rc2.md @@ -0,0 +1,20 @@ +## dbt-adapter 1.1.0-rc2 - April 29, 2024 + +### Features + +* 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 + +### Under the Hood + +* Validate that dbt-core and dbt-adapters remain de-coupled +* remove dbt_version from query comment test fixture + +### Dependencies + +* add support for py3.12 diff --git a/.changes/unreleased/Dependencies-20240424-140142.yaml b/.changes/1.1.0/Dependencies-20240424-140142.yaml similarity index 100% rename from .changes/unreleased/Dependencies-20240424-140142.yaml rename to .changes/1.1.0/Dependencies-20240424-140142.yaml diff --git a/.changes/unreleased/Features-20240412-192040.yaml b/.changes/1.1.0/Features-20240412-192040.yaml similarity index 100% rename from .changes/unreleased/Features-20240412-192040.yaml rename to .changes/1.1.0/Features-20240412-192040.yaml diff --git a/.changes/unreleased/Features-20240418-155123.yaml b/.changes/1.1.0/Features-20240418-155123.yaml similarity index 100% rename from .changes/unreleased/Features-20240418-155123.yaml rename to .changes/1.1.0/Features-20240418-155123.yaml diff --git a/.changes/unreleased/Features-20240418-155531.yaml b/.changes/1.1.0/Features-20240418-155531.yaml similarity index 100% rename from .changes/unreleased/Features-20240418-155531.yaml rename to .changes/1.1.0/Features-20240418-155531.yaml diff --git a/.changes/unreleased/Fixes-20240411-185203.yaml b/.changes/1.1.0/Fixes-20240411-185203.yaml similarity index 100% rename from .changes/unreleased/Fixes-20240411-185203.yaml rename to .changes/1.1.0/Fixes-20240411-185203.yaml diff --git a/.changes/unreleased/Under the Hood-20240417-192843.yaml b/.changes/1.1.0/Under the Hood-20240417-192843.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20240417-192843.yaml rename to .changes/1.1.0/Under the Hood-20240417-192843.yaml diff --git a/.changes/unreleased/Under the Hood-20240423-094843.yaml b/.changes/1.1.0/Under the Hood-20240423-094843.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20240423-094843.yaml rename to .changes/1.1.0/Under the Hood-20240423-094843.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 0af6f692..c528dfdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## dbt-adapter 1.1.0-rc2 - April 29, 2024 + +### Features + +* 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 + +### Under the Hood + +* Validate that dbt-core and dbt-adapters remain de-coupled +* remove dbt_version from query comment test fixture + +### Dependencies + +* add support for py3.12 + ## dbt-adapter 1.1.0-rc1 - April 17, 2024 ### Features diff --git a/dbt/adapters/__about__.py b/dbt/adapters/__about__.py index d37cdcc7..685a4b25 100644 --- a/dbt/adapters/__about__.py +++ b/dbt/adapters/__about__.py @@ -1 +1 @@ -version = "1.1.0rc1" +version = "1.1.0rc2"