-
Notifications
You must be signed in to change notification settings - Fork 0
Pulling in new changes from parent #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
52ced95
574ed50
511f97c
858c408
fcc9c41
30291fa
9500d1b
c61bb19
e8f8718
493caa4
1facffe
6cc97e9
660bd77
c00b4c8
3eae948
b9494c3
af15236
405bdcf
b49e3b4
ec4cffe
2e43978
0272d44
cb955c4
8f0bee7
f9816df
4c2d9dd
d576a4a
493b422
42e23ca
faee0aa
2f90a00
4966dce
df2908a
c9ff3fd
59c1fe5
0abe336
03b9adb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,3 +1,22 @@ | ||||||
### 1.5.0 | ||||||
- feat: #133: Fix simultaneous queries error when iteration is interrupted | ||||||
- feat: #130: Add `distributed_migrations` database setting to support distributed migration queries. | ||||||
- feat: #129: Add `toYearWeek` datetime functionality | ||||||
|
||||||
### 1.4.0 | ||||||
|
||||||
- feat: #119 Allow query results returned in columns and deserialized to `numpy` objects | ||||||
- feat: #125 Add database functions `toStartOfMinute`, `toStartOfFiveMinutes`, `toStartOfTenMinutes`, `toStartOfFifteenMinutes` and `toStartofHour` | ||||||
- feat: #122 Django 5.2 Support | ||||||
|
||||||
### 1.3.2 | ||||||
|
||||||
- feat(aggragation-function): add anyLast function. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo: 'aggragation' should be 'aggregation'.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
- fix: pass DSN to clickhouse-client if configured. | ||||||
- feat: #108 Queryset.iterator use clickhouse_driver.Client.execute_iter. | ||||||
- chore: test for python3.13. | ||||||
- refactor: Using collections.abc.Iterable instead of deprecated django.utils.itercompat.is_iterable | ||||||
|
||||||
### 1.3.1 | ||||||
|
||||||
- fix: #99 update value containing "where" cause exception. | ||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,5 +1,5 @@ | ||||||
from clickhouse_backend.utils.version import get_version | ||||||
|
||||||
VERSION = (1, 3, 1, "final", 0) | ||||||
VERSION = (1, 4, 0, "final", 0) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Version tuple indicates 1.4.0 while CHANGELOG documents 1.5.0 at the top. Align the package version with the latest documented release (or adjust the changelog) to avoid release confusion.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
|
||||||
__version__ = get_version(VERSION) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo: 'toStartofHour' should be 'toStartOfHour' (capital 'O').
Copilot uses AI. Check for mistakes.