Skip to content

Commit bd0ade6

Browse files
Update release notes
1 parent f860696 commit bd0ade6

File tree

4 files changed

+25
-12
lines changed

4 files changed

+25
-12
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# v2.22.3, 2024-03-25 <!-- Release notes generated using configuration in .github/release.yml at main -->
2+
3+
## What's Changed
4+
### Fixes 🐛
5+
* Fix panic on tuple scan on []any by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1249
6+
### Other Changes 🛠
7+
* Error channel deadlock fix test case by @threadedstream in https://github.com/ClickHouse/clickhouse-go/pull/1239
8+
* Add a test case for #1127 by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1242
9+
* Run cloud/head jobs when label by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1250
10+
11+
12+
**Full Changelog**: https://github.com/ClickHouse/clickhouse-go/compare/v2.22.2...v2.22.3
13+
114
# v2.22.2, 2024-03-18 <!-- Release notes generated using configuration in .github/release.yml at main -->
215

316
## What's Changed

client_info.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const ClientName = "clickhouse-go"
3030
const (
3131
ClientVersionMajor = 2
3232
ClientVersionMinor = 22
33-
ClientVersionPatch = 2
33+
ClientVersionPatch = 3
3434
ClientTCPProtocolVersion = proto.DBMS_TCP_PROTOCOL_VERSION
3535
)
3636

contributors/list

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Lukas Eklund <leklund@gmail.com>
1+
Kuba Kaflik <kuba.kaflik@clickhouse.com>

tests/json_test.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -2322,16 +2322,16 @@ func TestJSONEscapeKeys(t *testing.T) {
23222322
ctx := context.Background()
23232323
batch := prepareBatch(t, conn, ctx)
23242324
row1 := map[string][]int64{
2325-
"56": {1, 2, 3},
2326-
"1.1": {4, 5, 6},
2327-
"世界世界世界": {7, 8, 9},
2328-
"1.1a": {10, 11, 12},
2329-
"a22.2": {13, 14, 15},
2330-
"a22`": {16, 17, 18},
2331-
"22.2`": {19, 20, 21},
2332-
"22.2\\`": {22, 23, 24},
2333-
"s'": {22, 23, 24},
2334-
"a`a\\\\": {22, 23, 24},
2325+
"56": {1, 2, 3},
2326+
"1.1": {4, 5, 6},
2327+
"世界世界世界": {7, 8, 9},
2328+
"1.1a": {10, 11, 12},
2329+
"a22.2": {13, 14, 15},
2330+
"a22`": {16, 17, 18},
2331+
"22.2`": {19, 20, 21},
2332+
"22.2\\`": {22, 23, 24},
2333+
"s'": {22, 23, 24},
2334+
"a`a\\\\": {22, 23, 24},
23352335
}
23362336
require.NoError(t, batch.Append(row1))
23372337
require.NoError(t, batch.Send())

0 commit comments

Comments
 (0)