diff --git a/.changes/1.3.3.md b/.changes/1.3.3.md new file mode 100644 index 00000000..22ab18e3 --- /dev/null +++ b/.changes/1.3.3.md @@ -0,0 +1,9 @@ +## dbt-adapters 1.3.3 - July 09, 2024 + +### Fixes + +* Fix scenario where using the `--empty` flag causes metadata queries to contain limit clauses + +### Under the Hood + +* --limit flag no longer subshells the query. This resolves the dbt Cloud experience issue where limit prevents ordering elements.. diff --git a/.changes/1.9.2.md b/.changes/1.9.2.md new file mode 100644 index 00000000..26505f20 --- /dev/null +++ b/.changes/1.9.2.md @@ -0,0 +1 @@ +## dbt-adapters 1.9.2 - July 09, 2024 diff --git a/.changes/unreleased/Fixes-20240702-161935.yaml b/.changes/unreleased/Fixes-20240702-161935.yaml deleted file mode 100644 index 0b0f21ee..00000000 --- a/.changes/unreleased/Fixes-20240702-161935.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Fix scenario where using the `--empty` flag causes metadata queries to contain limit clauses -time: 2024-07-02T16:19:35.457997-04:00 -custom: - Author: mikealfare - Issue: "213" diff --git a/.changes/unreleased/Under the Hood-20240624-231955.yaml b/.changes/unreleased/Under the Hood-20240624-231955.yaml deleted file mode 100644 index e3eaccb7..00000000 --- a/.changes/unreleased/Under the Hood-20240624-231955.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Under the Hood -body: --limit flag no longer subshells the query. This resolves the dbt Cloud experience - issue where limit prevents ordering elements.. -time: 2024-06-24T23:19:55.611142-07:00 -custom: - Author: versusfacit - Issue: "207" diff --git a/CHANGELOG.md b/CHANGELOG.md index ce8d7837..1a2f1833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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-adapters 1.9.2 - July 09, 2024 + ## dbt-adapters 1.9.1 - June 20, 2024 ## dbt-adapters 1.9.0 - June 18, 2024 @@ -19,6 +21,16 @@ and is generated by [Changie](https://github.com/miniscruff/changie). * Update Clone test to reflect core change removing `deferred` attribute from nodes +## dbt-adapters 1.3.3 - July 09, 2024 + +### Fixes + +* Fix scenario where using the `--empty` flag causes metadata queries to contain limit clauses + +### Under the Hood + +* --limit flag no longer subshells the query. This resolves the dbt Cloud experience issue where limit prevents ordering elements.. + ## dbt-adapters 1.3.2 - July 02, 2024 ### Under the Hood diff --git a/dbt-tests-adapter/dbt/tests/__about__.py b/dbt-tests-adapter/dbt/tests/__about__.py index 70227976..1b022739 100644 --- a/dbt-tests-adapter/dbt/tests/__about__.py +++ b/dbt-tests-adapter/dbt/tests/__about__.py @@ -1 +1 @@ -version = "1.9.1" +version = "1.9.2" diff --git a/dbt/adapters/__about__.py b/dbt/adapters/__about__.py index 2238c8f6..cfa2db68 100644 --- a/dbt/adapters/__about__.py +++ b/dbt/adapters/__about__.py @@ -1 +1 @@ -version = "1.3.2" +version = "1.3.3"