From f5e4eb2967e8a64d28a3d68b3c189064da6817f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 19:04:16 +0100 Subject: [PATCH] version: 0.7.0 (#60) ## v0.7.0 - 2024-11-14 ### Features * Support for adhoc queries with only groupby. This is equivalent to listing dimension values. ### Fixes * Fixes issue with `orderBy` and `where` when going via GraphQL ### Chore * Fix release PR action to use correct title for PR Co-authored-by: serramatutu --- .changes/unreleased/Chore-20241114-150932.yaml | 3 --- .changes/unreleased/Features-20241112-154335.yaml | 3 --- .changes/unreleased/Fixes-20241111-182559.yaml | 3 --- .changes/v0.7.0.md | 7 +++++++ CHANGELOG.md | 8 ++++++++ dbtsl/__about__.py | 2 +- 6 files changed, 16 insertions(+), 10 deletions(-) delete mode 100644 .changes/unreleased/Chore-20241114-150932.yaml delete mode 100644 .changes/unreleased/Features-20241112-154335.yaml delete mode 100644 .changes/unreleased/Fixes-20241111-182559.yaml create mode 100644 .changes/v0.7.0.md diff --git a/.changes/unreleased/Chore-20241114-150932.yaml b/.changes/unreleased/Chore-20241114-150932.yaml deleted file mode 100644 index 896dcdd..0000000 --- a/.changes/unreleased/Chore-20241114-150932.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Chore -body: Fix release PR action to use correct title for PR -time: 2024-11-14T15:09:32.92416+01:00 diff --git a/.changes/unreleased/Features-20241112-154335.yaml b/.changes/unreleased/Features-20241112-154335.yaml deleted file mode 100644 index 0f12605..0000000 --- a/.changes/unreleased/Features-20241112-154335.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Features -body: Support for adhoc queries with only groupby. This is equivalent to listing dimension values. -time: 2024-11-12T15:43:35.746064+01:00 diff --git a/.changes/unreleased/Fixes-20241111-182559.yaml b/.changes/unreleased/Fixes-20241111-182559.yaml deleted file mode 100644 index 7925833..0000000 --- a/.changes/unreleased/Fixes-20241111-182559.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Fixes -body: Fixes issue with `orderBy` and `where` when going via GraphQL -time: 2024-11-11T18:25:59.874757+01:00 diff --git a/.changes/v0.7.0.md b/.changes/v0.7.0.md new file mode 100644 index 0000000..ecacee5 --- /dev/null +++ b/.changes/v0.7.0.md @@ -0,0 +1,7 @@ +## v0.7.0 - 2024-11-14 +### Features +* Support for adhoc queries with only groupby. This is equivalent to listing dimension values. +### Fixes +* Fixes issue with `orderBy` and `where` when going via GraphQL +### Chore +* Fix release PR action to use correct title for PR diff --git a/CHANGELOG.md b/CHANGELOG.md index d839564..c1c863a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. Do not edit this file manually, it is generated automatically by [changie](https://github.com/miniscruff/changie). +## v0.7.0 - 2024-11-14 +### Features +* Support for adhoc queries with only groupby. This is equivalent to listing dimension values. +### Fixes +* Fixes issue with `orderBy` and `where` when going via GraphQL +### Chore +* Fix release PR action to use correct title for PR + ## v0.6.0 - 2024-10-21 ### Breaking Changes * `order_by` clause of queries using saved queries no longer support string inputs and require explicit `OrderByMetric` or `OrderByGroupBy` diff --git a/dbtsl/__about__.py b/dbtsl/__about__.py index 5a2867d..f406109 100644 --- a/dbtsl/__about__.py +++ b/dbtsl/__about__.py @@ -1 +1 @@ -VERSION = "0.6.0" +VERSION = "0.7.0"