From ed60c61afbf72143fc51f5af4989e05cd6a1aad6 Mon Sep 17 00:00:00 2001 From: serramatutu Date: Wed, 19 Jun 2024 14:34:07 +0200 Subject: [PATCH] version: 0.2.0 ## v0.2.0 - 2024-06-19 ### Features * Add `query()` to sync client ### Fixes * Fix import error on 3.9 * Fix `backoff` not using `exp_factor` * Dimensions query had wrong value in protocol ### Under the Hood * Add `has_session` to underlying API clients * Add `user-agent` header for telemetry ### Chore * Known first party was wrong for Ruff ### Test * Add integration tests with a real server --- .changes/unreleased/Chore-20240618-132741.yaml | 3 --- .changes/unreleased/Features-20240619-142416.yaml | 3 --- .changes/unreleased/Fixes-20240618-124639.yaml | 3 --- .changes/unreleased/Fixes-20240618-180037.yaml | 3 --- .changes/unreleased/Fixes-20240618-184029.yaml | 3 --- .changes/unreleased/Test-20240618-185102.yaml | 3 --- .../Under the Hood-20240618-140432.yaml | 3 --- .../Under the Hood-20240618-163932.yaml | 3 --- .changes/v0.2.0.md | 14 ++++++++++++++ CHANGELOG.md | 15 +++++++++++++++ dbtsl/__about__.py | 2 +- 11 files changed, 30 insertions(+), 25 deletions(-) delete mode 100644 .changes/unreleased/Chore-20240618-132741.yaml delete mode 100644 .changes/unreleased/Features-20240619-142416.yaml delete mode 100644 .changes/unreleased/Fixes-20240618-124639.yaml delete mode 100644 .changes/unreleased/Fixes-20240618-180037.yaml delete mode 100644 .changes/unreleased/Fixes-20240618-184029.yaml delete mode 100644 .changes/unreleased/Test-20240618-185102.yaml delete mode 100644 .changes/unreleased/Under the Hood-20240618-140432.yaml delete mode 100644 .changes/unreleased/Under the Hood-20240618-163932.yaml create mode 100644 .changes/v0.2.0.md diff --git a/.changes/unreleased/Chore-20240618-132741.yaml b/.changes/unreleased/Chore-20240618-132741.yaml deleted file mode 100644 index cd8fbbc..0000000 --- a/.changes/unreleased/Chore-20240618-132741.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Chore -body: Known first party was wrong for Ruff -time: 2024-06-18T13:27:41.272492+02:00 diff --git a/.changes/unreleased/Features-20240619-142416.yaml b/.changes/unreleased/Features-20240619-142416.yaml deleted file mode 100644 index 8047ca6..0000000 --- a/.changes/unreleased/Features-20240619-142416.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Features -body: Add `query()` to sync client -time: 2024-06-19T14:24:16.542965+02:00 diff --git a/.changes/unreleased/Fixes-20240618-124639.yaml b/.changes/unreleased/Fixes-20240618-124639.yaml deleted file mode 100644 index d676fcd..0000000 --- a/.changes/unreleased/Fixes-20240618-124639.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Fixes -body: Fix import error on 3.9 -time: 2024-06-18T12:46:39.22244+02:00 diff --git a/.changes/unreleased/Fixes-20240618-180037.yaml b/.changes/unreleased/Fixes-20240618-180037.yaml deleted file mode 100644 index 89b0a13..0000000 --- a/.changes/unreleased/Fixes-20240618-180037.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Fixes -body: Fix `backoff` not using `exp_factor` -time: 2024-06-18T18:00:37.645589+02:00 diff --git a/.changes/unreleased/Fixes-20240618-184029.yaml b/.changes/unreleased/Fixes-20240618-184029.yaml deleted file mode 100644 index 332d654..0000000 --- a/.changes/unreleased/Fixes-20240618-184029.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Fixes -body: Dimensions query had wrong value in protocol -time: 2024-06-18T18:40:29.942252+02:00 diff --git a/.changes/unreleased/Test-20240618-185102.yaml b/.changes/unreleased/Test-20240618-185102.yaml deleted file mode 100644 index 536edaa..0000000 --- a/.changes/unreleased/Test-20240618-185102.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Test -body: Add integration tests with a real server -time: 2024-06-18T18:51:02.089246+02:00 diff --git a/.changes/unreleased/Under the Hood-20240618-140432.yaml b/.changes/unreleased/Under the Hood-20240618-140432.yaml deleted file mode 100644 index 8c8aba9..0000000 --- a/.changes/unreleased/Under the Hood-20240618-140432.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Under the Hood -body: Add `has_session` to underlying API clients -time: 2024-06-18T14:04:32.790278+02:00 diff --git a/.changes/unreleased/Under the Hood-20240618-163932.yaml b/.changes/unreleased/Under the Hood-20240618-163932.yaml deleted file mode 100644 index 139a72f..0000000 --- a/.changes/unreleased/Under the Hood-20240618-163932.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Under the Hood -body: Add `user-agent` header for telemetry -time: 2024-06-18T16:39:32.592231+02:00 diff --git a/.changes/v0.2.0.md b/.changes/v0.2.0.md new file mode 100644 index 0000000..96c3b2e --- /dev/null +++ b/.changes/v0.2.0.md @@ -0,0 +1,14 @@ +## v0.2.0 - 2024-06-19 +### Features +* Add `query()` to sync client +### Fixes +* Fix import error on 3.9 +* Fix `backoff` not using `exp_factor` +* Dimensions query had wrong value in protocol +### Under the Hood +* Add `has_session` to underlying API clients +* Add `user-agent` header for telemetry +### Chore +* Known first party was wrong for Ruff +### Test +* Add integration tests with a real server diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ad2526..4e63037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ 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.2.0 - 2024-06-19 +### Features +* Add `query()` to sync client +### Fixes +* Fix import error on 3.9 +* Fix `backoff` not using `exp_factor` +* Dimensions query had wrong value in protocol +### Under the Hood +* Add `has_session` to underlying API clients +* Add `user-agent` header for telemetry +### Chore +* Known first party was wrong for Ruff +### Test +* Add integration tests with a real server + ## v0.1.0 - 2024-06-17 ### Features * Sync and async implementation of GraphQL and ADBC clients. diff --git a/dbtsl/__about__.py b/dbtsl/__about__.py index 1cf6267..6c5007c 100644 --- a/dbtsl/__about__.py +++ b/dbtsl/__about__.py @@ -1 +1 @@ -VERSION = "0.1.0" +VERSION = "0.2.0"