Update go dependencies - #1689
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
Contributor
Author
|
renovate
Bot
force-pushed
the
renovate/go-dependencies
branch
5 times, most recently
from
September 12, 2026 10:40
f3b4268 to
24594aa
Compare
renovate
Bot
force-pushed
the
renovate/go-dependencies
branch
10 times, most recently
from
September 19, 2026 15:43
2355913 to
d6a6aae
Compare
renovate
Bot
force-pushed
the
renovate/go-dependencies
branch
from
September 19, 2026 20:49
d6a6aae to
41d5da5
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
v0.25.2→v0.25.3v0.33.1→v0.33.2v0.27.0→v0.27.2v0.29.1→v0.29.2v0.29.1→v0.29.2v0.29.1→v0.29.2v0.26.3→v0.26.5v5.10.0→v5.11.0v3.27.3→v3.28.0v0.58.0→v0.59.0v0.22.0→v0.23.0Release Notes
go-openapi/loads (github.com/go-openapi/loads)
v0.25.3Compare Source
0.25.3 - 2026-09-04
Full Changelog: go-openapi/loads@v0.25.2...v0.25.3
4 commits in this release.
Documentation
Miscellaneous tasks
Updates
People who contributed to this release
loads license terms
go-openapi/runtime (github.com/go-openapi/runtime)
v0.33.2Compare Source
0.33.2 - 2026-09-03
Full Changelog: go-openapi/runtime@v0.33.1...v0.33.2
11 commits in this release.
Documentation
Miscellaneous tasks
Updates
Other (technical)
People who contributed to this release
runtime license terms
Per-module changes
client-middleware/opentracing (0.33.2)
Miscellaneous tasks
Updates
Other (technical)
docs/examples (0.33.2)
Miscellaneous tasks
Updates
Other (technical)
server-middleware (0.33.2)
Miscellaneous tasks
Updates
go-openapi/strfmt (github.com/go-openapi/strfmt)
v0.27.2Compare Source
0.27.2 - 2026-09-03
Full Changelog: go-openapi/strfmt@v0.27.1...v0.27.2
2 commits in this release.
Miscellaneous tasks
People who contributed to this release
strfmt license terms
Per-module changes
enable/mongodb (0.27.2)
Miscellaneous tasks
internal/testintegration (0.27.2)
Miscellaneous tasks
v0.27.1Compare Source
0.27.1 - 2026-09-03
Full Changelog: go-openapi/strfmt@v0.27.0...v0.27.1
18 commits in this release.
Fixed bugs
Documentation
Miscellaneous tasks
Updates
People who contributed to this release
strfmt license terms
Per-module changes
enable/mongodb (0.27.1)
Miscellaneous tasks
Updates
internal/testintegration (0.27.1)
Miscellaneous tasks
Updates
go-openapi/swag (github.com/go-openapi/swag/conv)
v0.29.2Compare Source
0.29.2 - 2026-09-04
Full Changelog: go-openapi/swag@v0.29.1...v0.29.2
8 commits in this release.
Documentation
Miscellaneous tasks
Updates
People who contributed to this release
swag license terms
Per-module changes
cmdutils (0.29.2)
Miscellaneous tasks
conv (0.29.2)
Miscellaneous tasks
Updates
fileutils (0.29.2)
Miscellaneous tasks
Updates
jsonname (0.29.2)
Miscellaneous tasks
Updates
jsonutils/adapters/easyjson (0.29.2)
Miscellaneous tasks
Updates
jsonutils/adapters/testintegration/benchmarks (0.29.2)
Miscellaneous tasks
Updates
jsonutils/adapters/testintegration (0.29.2)
Miscellaneous tasks
Updates
jsonutils/fixtures_test (0.29.2)
Miscellaneous tasks
Updates
jsonutils (0.29.2)
Miscellaneous tasks
Updates
loading (0.29.2)
Miscellaneous tasks
Updates
mangling (0.29.2)
Miscellaneous tasks
Updates
netutils (0.29.2)
Miscellaneous tasks
Updates
pools (0.29.2)
Miscellaneous tasks
Updates
stringutils (0.29.2)
Miscellaneous tasks
Updates
typeutils (0.29.2)
Miscellaneous tasks
Updates
yamlutils (0.29.2)
Miscellaneous tasks
Updates
go-openapi/validate (github.com/go-openapi/validate)
v0.26.5Compare Source
0.26.5 - 2026-08-25
Full Changelog: go-openapi/validate@v0.26.4...v0.26.5
7 commits in this release.
Fixed bugs
Testing
Miscellaneous tasks
Other (technical)
People who contributed to this release
validate license terms
v0.26.4Compare Source
0.26.4 - 2026-08-24
Full Changelog: go-openapi/validate@v0.26.3...v0.26.4
19 commits in this release.
Implemented enhancements
Fixed bugs
Documentation
Code quality
Testing
Miscellaneous tasks
Security
Updates
Other (technical)
People who contributed to this release
validate license terms
jackc/pgx (github.com/jackc/pgx/v5)
v5.11.0Compare Source
This release adds direct PostgreSQL type scanning through
database/sqlon Go 1.27, improves compatibility withlibpq connection strings and PostgreSQL date/time values, and includes further decoder hardening. See Changes for
connection-string and date/time behavior changes that may affect existing applications.
Features
driver.RowsColumnScanner, allowing PostgreSQL types such as arrays and ranges to bescanned directly into Go values without
pgtype.Map.SQLScanner. Existingdatabase/sqlscalar conversions andsql.Scannerbehavior are preserved. The minimum supported Go version remains 1.25.Rows.TypeMapto expose the type map used to decode rows, including rows created byRowsFromResultReaderthat have no underlying
Conn. Custom implementations ofRows, including mocks, must add this method.Config.MaxProtocolMessageBodyLento configure the maximum incoming protocol message body size(carter-ya)
ErrReadOnlyConnection,ErrReadWriteConnection,ErrPrimaryConnection, andErrStandbyConnectionsentinel errors for
target_session_attrsvalidation, allowing callers to useerrors.Is(Adrian-Stefan Mares)pool_ping_timeoutin connection strings to configureConfig.PingTimeout. The default is zero;zero and negative durations mean no timeout (1991santhu)
Changes
Name-based row-to-struct mapping now matches explicit
dbtags case-insensitively, with exact matches takingprecedence so tags can still distinguish quoted column names that differ only by case (AlisinaDevelo)
pgconn: resolve the OS user account only when no user is supplied by the connection string, environment, or service
file, avoiding unnecessary account lookups and crashes in some restricted container environments. Home-directory
defaults for password, service, and TLS files remain available independently of the account lookup. On Unix these
now use
$HOMErather than the OS account's home directory (Mohamed MAACHE)pgtype:
date,timestampandtimestamptztext values are now parsed and written by a hand-written parser andencoder for PostgreSQL's ISO date/time format instead of
time.Parseandtime.Format. Go's layout language cannotexpress a variable-width year or the BC era, which is the root of the bugs below. The text scan path is roughly 2.5x
faster for
timestampandtimestamptz. Bug fixes:timestampandtimestamptzno longer silently move February 29 of a BC leap year to March 1 when encoding.time.Date(-4712, 2, 29, ...)was written as4713-03-01 BCand is now written as4713-02-29 BC. Thisaffected ordinary four-digit BC years, not only extended-range ones.
datewas never affected.timestampandtimestamptzcan now scan BC leap days.4713-02-29 BCpreviously failed withday out of range.datecould already scan them.10000-01-02 03:04:05previously failed to parse, sotimestampandtimestamptzvalues at the high end of PostgreSQL's range were unreadable over the simple protocol and in anyother text-format result.
time.Timearguments in the simple protocol now encode BC dates correctly, using the same timestamp encoder.carrying into the rest of the value) instead of being kept at full precision. PostgreSQL never sends more than six
fractional digits, so this only affects values from other sources.
Behavior changes:
datenow rejects impossible dates instead of normalizing them.2024-02-30returned2024-03-01and2024-13-01returned2025-01-01; both are now errors.timestampandtimestamptzalready rejected them.text format. PostgreSQL never sends out-of-range dates, so this only affects corrupt or hand-built input; the range
is checked in both formats so that whether a value is accepted does not depend on
QueryExecMode.timestamptzalso rejects time zone displacements outside PostgreSQL's signed 32-bit seconds range, while acceptingthe wider
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Enabled.
♻ 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 was generated by Mend Renovate. View the repository job log.