File tree Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Expand file tree Collapse file tree 1 file changed +15
-10
lines changed Original file line number Diff line number Diff line change 1
1
# ClickHouse Connect ChangeLog
2
2
3
- ## UNRELEASED
4
-
5
- ## Improvements
6
- - Added a standalone test file (` tests/unit_tests/test_driver/test_cursor.py ` ) for testing cursor behavior
7
-
8
- ## Bug Fixes
9
- - Reset cursor location after performing an execute.
10
- - Fix behavior of ` fetchall ` to only return rows from the current cursor location.
11
- - Fixes logic of ` fetchmany ` to respect size parameter.
12
-
13
3
### WARNING -- Breaking change for AsyncClient close()
14
4
The AsyncClient close() method is now async and should be called as an async function.
15
5
@@ -31,6 +21,21 @@ release (0.9.0), unrecognized arguments/keywords for these methods of creating a
31
21
instead of being passed as ClickHouse server settings. This is in conjunction with some refactoring in Client construction.
32
22
The supported method of passing ClickHouse server settings is to prefix such arguments/query parameters with` ch_ ` .
33
23
24
+ ## 0.8.18, 2025-06-24
25
+
26
+ ### Improvements
27
+ - Added a standalone test file (` tests/unit_tests/test_driver/test_cursor.py ` ) for testing cursor behavior
28
+
29
+ ### Bug Fixes
30
+ - Fix SQLAlchemy execution error by using text() function by @lakako in https://github.com/ClickHouse/clickhouse-connect/pull/491
31
+ - Test fixes for main by @genzgd in https://github.com/ClickHouse/clickhouse-connect/pull/497
32
+ - Ensure types are returned even if there are no rows by @orian in https://github.com/ClickHouse/clickhouse-connect/pull/500
33
+ - Added a standalone test file (` tests/unit_tests/test_driver/test_cursor.py ` ) for testing cursor behavior
34
+ - Fix some issues with cursor behavior by @joe-clickhouse in https://github.com/ClickHouse/clickhouse-connect/pull/506
35
+ - Reset cursor location after performing an execute.
36
+ - Fix behavior of ` fetchall ` to only return rows from the current cursor location.
37
+ - Fixes logic of ` fetchmany ` to respect size parameter.
38
+
34
39
## 0.8.17, 2025-04-10
35
40
36
41
### Improvements
You can’t perform that action at this time.
0 commit comments