From 5b99d745c4e2133418f5faffb3fcc7c75138fc28 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Mon, 11 Nov 2024 19:05:30 +0000 Subject: [PATCH] Bumping version to 1.11.0 and generate changelog --- .changes/1.11.0.md | 12 ++++++++++++ .changes/unreleased/Features-20241001-165406.yaml | 7 ------- .../unreleased/Under the Hood-20241105-121440.yaml | 6 ------ CHANGELOG.md | 14 +++++++++++++- dbt/adapters/__about__.py | 2 +- 5 files changed, 26 insertions(+), 15 deletions(-) create mode 100644 .changes/1.11.0.md delete mode 100644 .changes/unreleased/Features-20241001-165406.yaml delete mode 100644 .changes/unreleased/Under the Hood-20241105-121440.yaml diff --git a/.changes/1.11.0.md b/.changes/1.11.0.md new file mode 100644 index 00000000..fbe85222 --- /dev/null +++ b/.changes/1.11.0.md @@ -0,0 +1,12 @@ +## dbt-adapters 1.11.0 - November 11, 2024 + +### Features + +- Use a behavior flag to gate microbatch functionality (instead of an environment variable) ([#327](https://github.com/dbt-labs/dbt-adapters/issues/327)) + +### Under the Hood + +- Add `query_id` to SQLQueryStatus ([#342](https://github.com/dbt-labs/dbt-adapters/issues/342)) + +### Contributors +- [@cmcarthur](https://github.com/cmcarthur) ([#342](https://github.com/dbt-labs/dbt-adapters/issues/342)) diff --git a/.changes/unreleased/Features-20241001-165406.yaml b/.changes/unreleased/Features-20241001-165406.yaml deleted file mode 100644 index 609684d4..00000000 --- a/.changes/unreleased/Features-20241001-165406.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: Use a behavior flag to gate microbatch functionality (instead of an environment - variable) -time: 2024-10-01T16:54:06.121016-05:00 -custom: - Author: QMalcolm - Issue: "327" diff --git a/.changes/unreleased/Under the Hood-20241105-121440.yaml b/.changes/unreleased/Under the Hood-20241105-121440.yaml deleted file mode 100644 index 11946fc4..00000000 --- a/.changes/unreleased/Under the Hood-20241105-121440.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Add `query_id` to SQLQueryStatus -time: 2024-11-05T12:14:40.181931-05:00 -custom: - Author: cmcarthur - Issue: "342" diff --git a/CHANGELOG.md b/CHANGELOG.md index 9971e5ff..b6617204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,22 @@ 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.10.3 - October 29, 2024 +## dbt-adapters 1.11.0 - November 11, 2024 + +### Features + +- Use a behavior flag to gate microbatch functionality (instead of an environment variable) ([#327](https://github.com/dbt-labs/dbt-adapters/issues/327)) + +### Under the Hood + +- Add `query_id` to SQLQueryStatus ([#342](https://github.com/dbt-labs/dbt-adapters/issues/342)) +### Contributors +- [@cmcarthur](https://github.com/cmcarthur) ([#342](https://github.com/dbt-labs/dbt-adapters/issues/342)) +## dbt-adapters 1.10.3 - October 29, 2024 + ## dbt-adapters 1.10.2 - October 01, 2024 ### Under the Hood diff --git a/dbt/adapters/__about__.py b/dbt/adapters/__about__.py index 6aaa73b8..b6c30336 100644 --- a/dbt/adapters/__about__.py +++ b/dbt/adapters/__about__.py @@ -1 +1 @@ -version = "1.8.0" +version = "1.11.0"