Skip to content

Commit

Permalink
Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ch-integrations-robot committed Mar 25, 2024
1 parent f860696 commit bd0ade6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 12 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# v2.22.3, 2024-03-25 <!-- Release notes generated using configuration in .github/release.yml at main -->

## What's Changed
### Fixes 🐛
* Fix panic on tuple scan on []any by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1249
### Other Changes 🛠
* Error channel deadlock fix test case by @threadedstream in https://github.com/ClickHouse/clickhouse-go/pull/1239
* Add a test case for #1127 by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1242
* Run cloud/head jobs when label by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1250


**Full Changelog**: https://github.com/ClickHouse/clickhouse-go/compare/v2.22.2...v2.22.3

# v2.22.2, 2024-03-18 <!-- Release notes generated using configuration in .github/release.yml at main -->

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion client_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const ClientName = "clickhouse-go"
const (
ClientVersionMajor = 2
ClientVersionMinor = 22
ClientVersionPatch = 2
ClientVersionPatch = 3
ClientTCPProtocolVersion = proto.DBMS_TCP_PROTOCOL_VERSION
)

Expand Down
2 changes: 1 addition & 1 deletion contributors/list
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Lukas Eklund <leklund@gmail.com>
Kuba Kaflik <kuba.kaflik@clickhouse.com>
20 changes: 10 additions & 10 deletions tests/json_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2322,16 +2322,16 @@ func TestJSONEscapeKeys(t *testing.T) {
ctx := context.Background()
batch := prepareBatch(t, conn, ctx)
row1 := map[string][]int64{
"56": {1, 2, 3},
"1.1": {4, 5, 6},
"世界世界世界": {7, 8, 9},
"1.1a": {10, 11, 12},
"a22.2": {13, 14, 15},
"a22`": {16, 17, 18},
"22.2`": {19, 20, 21},
"22.2\\`": {22, 23, 24},
"s'": {22, 23, 24},
"a`a\\\\": {22, 23, 24},
"56": {1, 2, 3},
"1.1": {4, 5, 6},
"世界世界世界": {7, 8, 9},
"1.1a": {10, 11, 12},
"a22.2": {13, 14, 15},
"a22`": {16, 17, 18},
"22.2`": {19, 20, 21},
"22.2\\`": {22, 23, 24},
"s'": {22, 23, 24},
"a`a\\\\": {22, 23, 24},
}
require.NoError(t, batch.Append(row1))
require.NoError(t, batch.Send())
Expand Down

0 comments on commit bd0ade6

Please sign in to comment.