From 59e91b6bd37982013f3a9b7a79eda8ceedf526d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 14:56:07 +0200 Subject: [PATCH] version: 0.5.0 (#47) ## v0.5.0 - 2024-09-23 ### Features * `compile_sql` method for getting the compiled SQL of a query * Allow saved queries in `query` and `compile_sql` ### Fixes * Fixed wrong annotation for `saved_queries` in sync client. ### Under the Hood * Better error messages * Client-side validation of query parameters Co-authored-by: serramatutu --- .changes/unreleased/Features-20240920-180550.yaml | 3 --- .changes/unreleased/Features-20240920-201139.yaml | 3 --- .changes/unreleased/Fixes-20240920-202558.yaml | 3 --- .../unreleased/Under the Hood-20240906-184939.yaml | 3 --- .../unreleased/Under the Hood-20240920-201151.yaml | 3 --- .changes/v0.5.0.md | 9 +++++++++ CHANGELOG.md | 10 ++++++++++ dbtsl/__about__.py | 2 +- 8 files changed, 20 insertions(+), 16 deletions(-) delete mode 100644 .changes/unreleased/Features-20240920-180550.yaml delete mode 100644 .changes/unreleased/Features-20240920-201139.yaml delete mode 100644 .changes/unreleased/Fixes-20240920-202558.yaml delete mode 100644 .changes/unreleased/Under the Hood-20240906-184939.yaml delete mode 100644 .changes/unreleased/Under the Hood-20240920-201151.yaml create mode 100644 .changes/v0.5.0.md diff --git a/.changes/unreleased/Features-20240920-180550.yaml b/.changes/unreleased/Features-20240920-180550.yaml deleted file mode 100644 index 78cc925..0000000 --- a/.changes/unreleased/Features-20240920-180550.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Features -body: '`compile_sql` method for getting the compiled SQL of a query' -time: 2024-09-20T18:05:50.976574+02:00 diff --git a/.changes/unreleased/Features-20240920-201139.yaml b/.changes/unreleased/Features-20240920-201139.yaml deleted file mode 100644 index 265a176..0000000 --- a/.changes/unreleased/Features-20240920-201139.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Features -body: Allow saved queries in `query` and `compile_sql` -time: 2024-09-20T20:11:39.216931+02:00 diff --git a/.changes/unreleased/Fixes-20240920-202558.yaml b/.changes/unreleased/Fixes-20240920-202558.yaml deleted file mode 100644 index 9393c16..0000000 --- a/.changes/unreleased/Fixes-20240920-202558.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Fixes -body: Fixed wrong annotation for `saved_queries` in sync client. -time: 2024-09-20T20:25:58.362587+02:00 diff --git a/.changes/unreleased/Under the Hood-20240906-184939.yaml b/.changes/unreleased/Under the Hood-20240906-184939.yaml deleted file mode 100644 index 0b8fa6a..0000000 --- a/.changes/unreleased/Under the Hood-20240906-184939.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Under the Hood -body: Better error messages -time: 2024-09-06T18:49:39.208985+02:00 diff --git a/.changes/unreleased/Under the Hood-20240920-201151.yaml b/.changes/unreleased/Under the Hood-20240920-201151.yaml deleted file mode 100644 index 7bc5432..0000000 --- a/.changes/unreleased/Under the Hood-20240920-201151.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Under the Hood -body: Client-side validation of query parameters -time: 2024-09-20T20:11:51.575942+02:00 diff --git a/.changes/v0.5.0.md b/.changes/v0.5.0.md new file mode 100644 index 0000000..5f173b9 --- /dev/null +++ b/.changes/v0.5.0.md @@ -0,0 +1,9 @@ +## v0.5.0 - 2024-09-23 +### Features +* `compile_sql` method for getting the compiled SQL of a query +* Allow saved queries in `query` and `compile_sql` +### Fixes +* Fixed wrong annotation for `saved_queries` in sync client. +### Under the Hood +* Better error messages +* Client-side validation of query parameters diff --git a/CHANGELOG.md b/CHANGELOG.md index a637881..c169e09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.5.0 - 2024-09-23 +### Features +* `compile_sql` method for getting the compiled SQL of a query +* Allow saved queries in `query` and `compile_sql` +### Fixes +* Fixed wrong annotation for `saved_queries` in sync client. +### Under the Hood +* Better error messages +* Client-side validation of query parameters + ## v0.4.0 - 2024-08-20 ### Features * Add `Export` list to `SavedQuery` diff --git a/dbtsl/__about__.py b/dbtsl/__about__.py index 6cc293e..c91a341 100644 --- a/dbtsl/__about__.py +++ b/dbtsl/__about__.py @@ -1 +1 @@ -VERSION = "0.4.0" +VERSION = "0.5.0"