From 78b2b4c5867e13d07f5c5d9bb4ffcd6081aedd22 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Tue, 9 Jul 2024 20:07:46 +0000 Subject: [PATCH] Bumping version to 1.3.3 and generate changelog --- .changes/1.3.3.md | 9 +++++++++ .changes/unreleased/Fixes-20240702-161935.yaml | 6 ------ .../unreleased/Under the Hood-20240624-231955.yaml | 7 ------- CHANGELOG.md | 10 ++++++++++ dbt/adapters/__about__.py | 2 +- 5 files changed, 20 insertions(+), 14 deletions(-) create mode 100644 .changes/1.3.3.md delete mode 100644 .changes/unreleased/Fixes-20240702-161935.yaml delete mode 100644 .changes/unreleased/Under the Hood-20240624-231955.yaml 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/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..8834049e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,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/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"