From d1c252e6207951ab887c1e7d4c371c09b6f4eeb3 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Tue, 10 Sep 2024 03:46:53 +0000 Subject: [PATCH] Bumping version to 1.5.0 and generate changelog --- .changes/1.5.0.md | 11 +++++++++++ .../unreleased/Dependencies-20240909-200011.yaml | 6 ------ .changes/unreleased/Features-20240621-143024.yaml | 6 ------ .changes/unreleased/Features-20240818-005131.yaml | 6 ------ .changes/unreleased/Features-20240905-180956.yaml | 7 ------- CHANGELOG.md | 15 ++++++++++++++- dbt/adapters/__about__.py | 2 +- 7 files changed, 26 insertions(+), 27 deletions(-) create mode 100644 .changes/1.5.0.md delete mode 100644 .changes/unreleased/Dependencies-20240909-200011.yaml delete mode 100644 .changes/unreleased/Features-20240621-143024.yaml delete mode 100644 .changes/unreleased/Features-20240818-005131.yaml delete mode 100644 .changes/unreleased/Features-20240905-180956.yaml diff --git a/.changes/1.5.0.md b/.changes/1.5.0.md new file mode 100644 index 00000000..e4c54bdc --- /dev/null +++ b/.changes/1.5.0.md @@ -0,0 +1,11 @@ +## dbt-adapters 1.5.0 - September 10, 2024 + +### Features + +- Compare 'snapshot_get_time' and snapshot 'updated_at' data types ([#242](https://github.com/dbt-labs/dbt-adapters/issues/242)) +- Add Behavior Flag framework ([#281](https://github.com/dbt-labs/dbt-adapters/issues/281)) +- Add EventTimeFilter to BaseRelation, which renders a filtered relation when start or end is set ([#294](https://github.com/dbt-labs/dbt-adapters/issues/294)) + +### Dependencies + +- Update dbt-common pin to >=1.8 ([#299](https://github.com/dbt-labs/dbt-adapters/pull/299)) diff --git a/.changes/unreleased/Dependencies-20240909-200011.yaml b/.changes/unreleased/Dependencies-20240909-200011.yaml deleted file mode 100644 index a6364130..00000000 --- a/.changes/unreleased/Dependencies-20240909-200011.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Dependencies -body: Update dbt-common pin to >=1.8 -time: 2024-09-09T20:00:11.335813-07:00 -custom: - Author: colin-rogers-dbt - PR: "299" diff --git a/.changes/unreleased/Features-20240621-143024.yaml b/.changes/unreleased/Features-20240621-143024.yaml deleted file mode 100644 index 526745a7..00000000 --- a/.changes/unreleased/Features-20240621-143024.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Compare 'snapshot_get_time' and snapshot 'updated_at' data types -time: 2024-06-21T14:30:24.336219-04:00 -custom: - Author: gshank - Issue: "242" diff --git a/.changes/unreleased/Features-20240818-005131.yaml b/.changes/unreleased/Features-20240818-005131.yaml deleted file mode 100644 index 17260206..00000000 --- a/.changes/unreleased/Features-20240818-005131.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Add Behavior Flag framework -time: 2024-08-18T00:51:31.753656-04:00 -custom: - Author: mikealfare - Issue: "281" diff --git a/.changes/unreleased/Features-20240905-180956.yaml b/.changes/unreleased/Features-20240905-180956.yaml deleted file mode 100644 index 6ca843c4..00000000 --- a/.changes/unreleased/Features-20240905-180956.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: Add EventTimeFilter to BaseRelation, which renders a filtered relation when - start or end is set -time: 2024-09-05T18:09:56.159385-04:00 -custom: - Author: 'michelleark QMalcolm' - Issue: "294" diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a6a3cc8..7d80911c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ 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.5.0 - September 10, 2024 + +### Features + +- Compare 'snapshot_get_time' and snapshot 'updated_at' data types ([#242](https://github.com/dbt-labs/dbt-adapters/issues/242)) +- Add Behavior Flag framework ([#281](https://github.com/dbt-labs/dbt-adapters/issues/281)) +- Add EventTimeFilter to BaseRelation, which renders a filtered relation when start or end is set ([#294](https://github.com/dbt-labs/dbt-adapters/issues/294)) + +### Dependencies + +- Update dbt-common pin to >=1.8 ([#299](https://github.com/dbt-labs/dbt-adapters/pull/299)) + + + ## dbt-adapters 1.4.1 - August 09, 2024 ### Fixes @@ -19,7 +33,6 @@ and is generated by [Changie](https://github.com/miniscruff/changie). - [@jeancochrane](https://github.com/jeancochrane) ([#5273](https://github.com/dbt-labs/dbt-adapters/issues/5273)) - [@leahwicz](https://github.com/leahwicz) ([#219](https://github.com/dbt-labs/dbt-adapters/issues/219)) - ## dbt-adapters 1.4.0 - July 30, 2024 ### Features diff --git a/dbt/adapters/__about__.py b/dbt/adapters/__about__.py index 6abaa204..e3a0f015 100644 --- a/dbt/adapters/__about__.py +++ b/dbt/adapters/__about__.py @@ -1 +1 @@ -version = "1.4.1" +version = "1.5.0"