You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASENOTES.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ v0.8.2
3
3
4
4
**Breaking Changes:**
5
5
* Removed obsolete MySQL compatibility mapping TIME -> Int64.
6
-
* Json serialization of bool arrays now uses the Boolean type instead of UInt8, and is now consistent with bool elements.
6
+
* Json serialization of bool arrays now uses the Boolean type instead of UInt8 (it is now consistent with how bool values outside arrays were handled).
7
7
8
8
**New Features/Improvements:**
9
9
* Added support for BFloat16. It is converted to and from a 32-bit float.
@@ -13,8 +13,10 @@ v0.8.2
13
13
* Now supports parsing Json that includes Maps; they are read into JsonObjects.
14
14
* Added support for decoding BigInteger types, UUID, IPv4, IPv6, and ClickHouseDecimal types (they are handled as strings).
15
15
* Expanded binary parsing to cover all types.
16
-
* Improved handling of numeric types: now properly detects and preserves integer vs floating-point types (previously all numeric types were handled as double).
17
-
* Null values in arrays are now handled properly.
16
+
* Improved handling of numeric types when writing Json using BulkCopy: now properly detects and preserves Int32/In64 in addition to double (previously all numeric types were handled as double).
17
+
* Parsing null values in arrays is now handled properly.
18
+
* ClickHouseConnection.ConnectionString can now be set after creating the connection, to support cases where passing the connection string to the constructor is not possible.
19
+
* ClickHouseConnection.CreateCommand() now has an optional argument for the command text.
18
20
19
21
**Bug Fixes:**
20
22
* Fixed a bug where serializing to json with an array of bools with both true and false elements would fail.
0 commit comments