-
Notifications
You must be signed in to change notification settings - Fork 1
fix(deps): update golang-non-critical #46
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?
Conversation
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
67f29b2 to
f43b88d
Compare
f43b88d to
8d1962d
Compare
8d1962d to
1a0d75f
Compare
1a0d75f to
44ea11b
Compare
🎉 Snyk checks have passed. No issues have been found so far.✅ code/snyk check is complete. No issues have been found. (View Details) |
44ea11b to
81b838c
Compare
81b838c to
d9c469c
Compare
d9c469c to
cca8109
Compare
cca8109 to
72fb8ae
Compare
72fb8ae to
682cc45
Compare
682cc45 to
588b5ad
Compare
588b5ad to
0c3a2a5
Compare
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) ✅ license/snyk check is complete. No issues have been found. (View Details) ✅ code/snyk check is complete. No issues have been found. (View Details) |
17f89d2 to
6fc8508
Compare
6fc8508 to
b47ebc6
Compare
This PR contains the following updates:
v2.8.3->v2.40.3v0.18.0->v0.20.0v1.10.0->v1.11.1Release Notes
ClickHouse/clickhouse-go (github.com/ClickHouse/clickhouse-go/v2)
v2.40.3Compare Source
What's Changed
Enhancements 🎉
Other Changes 🛠
Nullable(JSON)withnilmap. Inserting Null into a Nullable(JSON) column via a batch insert non-null value before by @kavirajk in https://github.com/ClickHouse/clickhouse-go/pull/1667New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.40.2...v2.40.3
v2.40.2Compare Source
What's Changed
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.40.1...v2.40.2
v2.40.1Compare Source
What's Changed
Bug fixes 🐛
database/sqlNullable(JSON) string scan by @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1625Full Changelog: ClickHouse/clickhouse-go@v2.40.0...v2.40.1
v2.40.0Compare Source
What's Changed
Enhancements 🎉
database/sqlscanning json intostring/[]byte/json.RawMessageby @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1623Bug fixes 🐛
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.39.0...v2.40.0
v2.39.0Compare Source
What's Changed
Bug fixes 🐛
ReadTimeoutso that it applies to each call toconn.Readnot just the first read block by @GeorgeMac in https://github.com/ClickHouse/clickhouse-go/pull/1616, @SpencerTorres https://github.com/ClickHouse/clickhouse-go/pull/1617Read Timeout behavior changes
This bug fix has potential to affect longer running queries, ensure you're setting
clickhouse.OptionsReadTimeoutto a reasonable value, and that yourcontext.WithDeadlineis also set to a reasonable value. The read timeout will now be applied to all blocks, previously it was only set for the first block.New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.38.1...v2.39.0
v2.38.1Compare Source
What's Changed
Bug fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.38.0...v2.38.1
v2.38.0Compare Source
What's Changed
Enhancements 🎉
Dynamicserialization version 3 by @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1588JSONserialization version 3 by @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1589client_protocol_versionparam for HTTP interface by @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1594Bug fixes 🐛
Other Changes 🛠
Upgrades for Dynamic / JSON
Dynamic and JSON were never fully functional in previous versions. If you exceeded the maximum types for
Dynamic, the data would become unreadable since it was encoded as a singleSharedVarianttype. Same for JSON, if you exceeded the maximum dynamic paths the data would also become unreadable since it was stored in aSharedDatastructure.In ClickHouse 25.6, a setting was added that abstracts these structures away so that clients don't have to implement them.
To begin using Dynamic and JSON to their fullest ability, upgrade to ClickHouse 25.6 along with clickhouse-go v2.38.0, and enable
output_format_native_use_flattened_dynamic_and_json_serializationin your connection settings. This will allow you to read all Dynamic and JSON data, even the portions that are stored in the SharedVariant and SharedData blobs on the server.If you are using older versions of ClickHouse, things will continue to work as before (with the previously mentioned limitations).
Feel free to create an issue in the clickhouse-go repository to report any concerns or bugs with this change.
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.37.2...v2.38.0
v2.37.2Compare Source
What's Changed
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.37.1...v2.37.2
v2.37.1Compare Source
What's Changed
Bug fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.37.0...v2.37.1
v2.37.0Compare Source
What's Changed
Enhancements 🎉
sql.Scannerinterface. by @zapateo in https://github.com/ClickHouse/clickhouse-go/pull/1570Bug fixes 🐛
HTTP in ClickHouse API
This release includes a bug fix / enhancement for the "ClickHouse API" interface. Previously the only way to use HTTP was through the
database/sqlinterface, but now you can useProtocol: clickhouse.HTTPin yourclickhouse.Openoptions.HTTP still has some limitations to be aware of for things like batch flushing and session context, so be cautious when switching over code to this protocol. Please report any issues you may have with this change. Native protocol shouldn't be affected, but you can downgrade to v2.36.x if you notice any issues.
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.36.0...v2.37.0
v2.36.0Compare Source
What's Changed
Enhancements 🎉
Closefunction to batch interface by @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1566Full Changelog: ClickHouse/clickhouse-go@v2.35.0...v2.36.0
v2.35.0Compare Source
What's Changed
Enhancements 🎉
databasein DSN URL by @kokizzu in https://github.com/ClickHouse/clickhouse-go/pull/1541Full Changelog: ClickHouse/clickhouse-go@v2.34.0...v2.35.0
v2.34.0Compare Source
What's Changed
Enhancements 🎉
stringby @rutaka-n in https://github.com/ClickHouse/clickhouse-go/pull/1532Bug fixes 🐛
FixedStringto prevent panic by @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1534Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.33.1...v2.34.0
v2.33.1Compare Source
What's Changed
Bug fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.33.0...v2.33.1
v2.33.0Compare Source
What's Changed
Enhancements 🎉
Bug fixes 🐛
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.32.2...v2.33.0
v2.32.2Compare Source
What's Changed
Bug Fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.32.1...v2.32.2
v2.32.1Compare Source
What's Changed
Bug Fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.32.0...v2.32.1
v2.32.0Compare Source
What's Changed
Enhancements 🎉
Performance 🏎️
Bug fixes 🐛
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.31.0...v2.32.0
v2.31.0Compare Source
What's Changed
Enhancements 🎉
clickhouse.JSONSerializer interface by @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1491Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.30.3...2.31.0
v2.30.3Compare Source
What's Changed
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.30.2...v2.30.3
v2.30.2Compare Source
What's Changed
Bug fixes 🐛
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.30.1...v2.30.2
v2.30.1Compare Source
What's Changed
Enhancements 🎉
Fixes 🐛
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.30.0...v2.30.1
v2.30.0Compare Source
What's Changed
Enhancements 🎉
Fixes 🐛
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.29.0...v2.30.0
v2.29.0Compare Source
What's Changed
Enhancements 🎉
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.28.3...v2.29.0
v2.28.3Compare Source
What's Changed
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.28.2...v2.28.3
v2.28.2Compare Source
What's Changed
Fixes 🐛
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.28.1...v2.28.2
v2.28.1Compare Source
What's Changed
Fixes 🐛
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.28.0...v2.28.1
v2.28.0Compare Source
What's Changed
Fixes 🐛
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.27.2...v2.28.0
v2.27.2Compare Source
What's Changed
Enhancements 🎉
Fixes 🐛
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.27.1...v2.27.2
v2.27.1Compare Source
What's Changed
Fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.27.0...v2.27.1
v2.27.0Compare Source
Breaking change notice
v2.25.0 was released with a breaking change in https://github.com/ClickHouse/clickhouse-go/pull/1306. Please review your implementation.
What's Changed
Enhancements 🎉
Fixes 🐛
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.26.0...v2.27.0
v2.26.0Compare Source
What's Changed
Enhancements 🎉
Columns() []column.Interfacemethod by @egsam98 in https://github.com/ClickHouse/clickhouse-go/pull/1277Fixes 🐛
X-Clickhouse-SSL-Certificate-Authheader correctly givenX-ClickHouse-Keyby @gogingersnap777 in https://github.com/ClickHouse/clickhouse-go/pull/1316database/sqlinterface by @tommyzli in https://github.com/ClickHouse/clickhouse-go/pull/1330Other Changes 🛠
allow_suspicious_low_cardinality_typesandallow_suspicious_low_cardinality_typessettings in tests due to ClickHouse Cloud incompatibility by @jkaflik in https://github.com/ClickHouse/clickhouse-go/pull/1331New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.25.0...v2.26.0
v2.25.0Compare Source
What's Changed
Breaking Changes 🚨
Other Changes 🛠
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot.