Skip to content

Commit

Permalink
version: 0.6.0 (#56)
Browse files Browse the repository at this point in the history
## 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`
### Deprecations
* Deprecate `TimeGranularity` enum and all other fields that used it
### Features
* Specifying order by with `OrderByMetric` and `OrderByGroupBy`
* Add support for custom time granularity
### Fixes
* Order by for `compile_sql` now works as expected
### Under the Hood
* Improved internal representation of query parameters and added better validation
* Improve error display
* Add new mechanisms to deprecate fields and classes

Co-authored-by: serramatutu <[email protected]>
  • Loading branch information
github-actions[bot] and serramatutu authored Oct 21, 2024
1 parent 7ab6312 commit c6c0866
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 25 deletions.
3 changes: 0 additions & 3 deletions .changes/unreleased/Breaking Changes-20241001-160946.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Deprecations-20241017-163158.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Features-20241001-155522.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Features-20241017-163057.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Fixes-20241001-155448.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Under the Hood-20241001-155544.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Under the Hood-20241008-160709.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Under the Hood-20241017-163037.yaml

This file was deleted.

14 changes: 14 additions & 0 deletions .changes/v0.6.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 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`
### Deprecations
* Deprecate `TimeGranularity` enum and all other fields that used it
### Features
* Specifying order by with `OrderByMetric` and `OrderByGroupBy`
* Add support for custom time granularity
### Fixes
* Order by for `compile_sql` now works as expected
### Under the Hood
* Improved internal representation of query parameters and added better validation
* Improve error display
* Add new mechanisms to deprecate fields and classes
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.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`
### Deprecations
* Deprecate `TimeGranularity` enum and all other fields that used it
### Features
* Specifying order by with `OrderByMetric` and `OrderByGroupBy`
* Add support for custom time granularity
### Fixes
* Order by for `compile_sql` now works as expected
### Under the Hood
* Improved internal representation of query parameters and added better validation
* Improve error display
* Add new mechanisms to deprecate fields and classes

## v0.5.0 - 2024-09-23
### Features
* `compile_sql` method for getting the compiled SQL of a query
Expand Down
2 changes: 1 addition & 1 deletion dbtsl/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.5.0"
VERSION = "0.6.0"

0 comments on commit c6c0866

Please sign in to comment.