-
Notifications
You must be signed in to change notification settings - Fork 2
fix(deps): update module github.com/clickhouse/clickhouse-go/v2 to v2.40.1 #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
Open
contentsquare-renovate
wants to merge
1
commit into
main
Choose a base branch
from
rnvt-0-golang-non-critical
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ℹ 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v2.8.3
->v2.40.1
Release Notes
ClickHouse/clickhouse-go (github.com/ClickHouse/clickhouse-go/v2)
v2.40.1
Compare Source
What's Changed
Bug fixes 🐛
database/sql
Nullable(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.0
Compare Source
What's Changed
Enhancements 🎉
database/sql
scanning json intostring
/[]byte
/json.RawMessage
by @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.0
Compare Source
What's Changed
Bug fixes 🐛
ReadTimeout
so that it applies to each call toconn.Read
not 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.Options
ReadTimeout
to a reasonable value, and that yourcontext.WithDeadline
is 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.1
Compare Source
What's Changed
Bug fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.38.0...v2.38.1
v2.38.0
Compare Source
What's Changed
Enhancements 🎉
Dynamic
serialization version 3 by @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1588JSON
serialization version 3 by @SpencerTorres in https://github.com/ClickHouse/clickhouse-go/pull/1589client_protocol_version
param 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 singleSharedVariant
type. Same for JSON, if you exceeded the maximum dynamic paths the data would also become unreadable since it was stored in aSharedData
structure.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_serialization
in 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.2
Compare Source
What's Changed
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.37.1...v2.37.2
v2.37.1
Compare Source
What's Changed
Bug fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.37.0...v2.37.1
v2.37.0
Compare Source
What's Changed
Enhancements 🎉
sql.Scanner
interface. 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/sql
interface, but now you can useProtocol: clickhouse.HTTP
in yourclickhouse.Open
options.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.0
Compare Source
What's Changed
Enhancements 🎉
Close
function 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.0
Compare Source
What's Changed
Enhancements 🎉
database
in 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.0
Compare Source
What's Changed
Enhancements 🎉
string
by @rutaka-n in https://github.com/ClickHouse/clickhouse-go/pull/1532Bug fixes 🐛
FixedString
to 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.1
Compare Source
What's Changed
Bug fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.33.0...v2.33.1
v2.33.0
Compare Source
What's Changed
Enhancements 🎉
Bug fixes 🐛
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.32.2...v2.33.0
v2.32.2
Compare Source
What's Changed
Bug Fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.32.1...v2.32.2
v2.32.1
Compare Source
What's Changed
Bug Fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.32.0...v2.32.1
v2.32.0
Compare 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.0
Compare Source
What's Changed
Enhancements 🎉
clickhouse.JSON
Serializer 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.3
Compare Source
What's Changed
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.30.2...v2.30.3
v2.30.2
Compare Source
What's Changed
Bug fixes 🐛
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.30.1...v2.30.2
v2.30.1
Compare Source
What's Changed
Enhancements 🎉
Fixes 🐛
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.30.0...v2.30.1
v2.30.0
Compare Source
What's Changed
Enhancements 🎉
Fixes 🐛
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.29.0...v2.30.0
v2.29.0
Compare Source
What's Changed
Enhancements 🎉
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.28.3...v2.29.0
v2.28.3
Compare Source
What's Changed
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.28.2...v2.28.3
v2.28.2
Compare Source
What's Changed
Fixes 🐛
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.28.1...v2.28.2
v2.28.1
Compare Source
What's Changed
Fixes 🐛
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.28.0...v2.28.1
v2.28.0
Compare Source
What's Changed
Fixes 🐛
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.27.2...v2.28.0
v2.27.2
Compare Source
What's Changed
Enhancements 🎉
Fixes 🐛
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.27.1...v2.27.2
v2.27.1
Compare Source
What's Changed
Fixes 🐛
Full Changelog: ClickHouse/clickhouse-go@v2.27.0...v2.27.1
v2.27.0
Compare 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.0
Compare Source
What's Changed
Enhancements 🎉
Columns() []column.Interface
method by @egsam98 in https://github.com/ClickHouse/clickhouse-go/pull/1277Fixes 🐛
X-Clickhouse-SSL-Certificate-Auth
header correctly givenX-ClickHouse-Key
by @gogingersnap777 in https://github.com/ClickHouse/clickhouse-go/pull/1316database/sql
interface by @tommyzli in https://github.com/ClickHouse/clickhouse-go/pull/1330Other Changes 🛠
allow_suspicious_low_cardinality_types
andallow_suspicious_low_cardinality_types
settings 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.0
Compare Source
What's Changed
Breaking Changes 🚨
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.24.0...v2.25.0
v2.24.0
Compare Source
What's Changed
Enhancements 🎉
Fixes 🐛
values
substring in table name by @Wang in https://github.com/ClickHouse/clickhouse-go/pull/1290Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.23.2...v2.24.0
v2.23.2
Compare Source
What's Changed
Fixes 🐛
Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.23.1...v2.23.2
v2.23.1
Compare Source
What's Changed
Fixes 🐛
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.23.0...v2.23.1
v2.23.0
Compare Source
What's Changed
Enhancements 🎉
ConnBeginTx
as replacement for deprecatedBegin
by @FelipeLema in https://github.com/ClickHouse/clickhouse-go/pull/1255Other Changes 🛠
New Contributors
Full Changelog: ClickHouse/clickhouse-go@v2.22.4...v2.23.0
v2.22.4
Compare Source
What's Changed
Fixes 🐛
Other Changes 🛠
Full Changelog: ClickHouse/clickhouse-go@v2.22.3...v2.22.4
v2.22.3
[Compare Source](https://redirect.github.com/ClickHouse/clickhouse-go/compare/
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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.