Skip to content

fix(deps): update all non-major gomod dependencies#140

Open
red-hat-konflux[bot] wants to merge 1 commit intomainfrom
konflux/mintmaker/main/all-minor-patch-gomod
Open

fix(deps): update all non-major gomod dependencies#140
red-hat-konflux[bot] wants to merge 1 commit intomainfrom
konflux/mintmaker/main/all-minor-patch-gomod

Conversation

@red-hat-konflux
Copy link

@red-hat-konflux red-hat-konflux bot commented Feb 2, 2026

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
github.com/DATA-DOG/go-sqlmock v1.5.0 -> v1.5.2 age confidence
github.com/kr/pretty v0.3.0 -> v0.3.1 age confidence
github.com/lib/pq v1.10.7 -> v1.11.2 age confidence
github.com/rogpeppe/go-internal v1.9.0 -> v1.14.1 age confidence
github.com/stretchr/testify v1.8.1 -> v1.11.1 age confidence
golang.org/x/crypto v0.47.0 -> v0.48.0 age confidence
golang.org/x/text v0.33.0 -> v0.34.0 age confidence

Release Notes

DATA-DOG/go-sqlmock (github.com/DATA-DOG/go-sqlmock)

v1.5.2

Compare Source

What's Changed

Fixes breaking change from: #​295

Full Changelog: DATA-DOG/go-sqlmock@v1.5.1...v1.5.2

v1.5.1

Compare Source

Release was tested & verified using aws-sqk

What's Changed

New Contributors

Full Changelog: DATA-DOG/go-sqlmock@v1.5.0...v1.5.1

kr/pretty (github.com/kr/pretty)

v0.3.1

Compare Source

lib/pq (github.com/lib/pq)

v1.11.2

Compare Source

This fixes two regressions:

  • Don't send startup parameters if there is no value, improving compatibility
    with Supavisor (#​1260).

  • Don't send dbname as a startup parameter if database=[..] is used in the
    connection string. It's recommended to use dbname=, as database= is not a
    libpq option, and only worked by accident previously. (#​1261)

v1.11.1

Compare Source

This fixes two regressions present in the v1.11.0 release:

  • Fix build on 32bit systems, Windows, and Plan 9 (#​1253).

  • Named []byte types and pointers to []byte (e.g. *[]byte, json.RawMessage)
    would be treated as an array instead of bytea (#​1252).

v1.11.0

Compare Source

This version of pq requires Go 1.21 or newer.

pq now supports only maintained PostgreSQL releases, which is PostgreSQL 14 and
newer. Previously PostgreSQL 8.4 and newer were supported.

Features
  • The pq.Error.Error() text includes the position of the error (if reported
    by PostgreSQL) and SQLSTATE code (#​1219, #​1224):

    pq: column "columndoesntexist" does not exist at column 8 (42703)
    pq: syntax error at or near ")" at position 2:71 (42601)
    
  • The pq.Error.ErrorWithDetail() method prints a more detailed multiline
    message, with the Detail, Hint, and error position (if any) (#​1219):

    ERROR:   syntax error at or near ")" (42601)
    CONTEXT: line 12, column 1:
    
         10 |     name           varchar,
         11 |     version        varchar,
         12 | );
              ^
    
  • Add Config, NewConfig(), and NewConnectorConfig() to supply connection
    details in a more structured way (#​1240).

  • Support hostaddr and $PGHOSTADDR (#​1243).

  • Support multiple values in host, port, and hostaddr, which are each
    tried in order, or randomly if load_balance_hosts=random is set (#​1246).

  • Support target_session_attrs connection parameter (#​1246).

  • Support sslnegotiation to use SSL without negotiation (#​1180).

  • Allow using a custom tls.Config, for example for encrypted keys (#​1228).

  • Add PQGO_DEBUG=1 print the communication with PostgreSQL to stderr, to aid
    in debugging, testing, and bug reports (#​1223).

  • Add support for NamedValueChecker interface (#​1125, #​1238).

Fixes
  • Match HOME directory lookup logic with libpq: prefer $HOME over /etc/passwd,
    ignore ENOTDIR errors, and use APPDATA on Windows (#​1214).

  • Fix sslmode=verify-ca verifying the hostname anyway when connecting to a DNS
    name (rather than IP) (#​1226).

  • Correctly detect pre-protocol errors such as the server not being able to fork
    or running out of memory (#​1248).

  • Fix build with wasm (#​1184), appengine (#​745), and Plan 9 (#​1133).

  • Deprecate and type alias pq.NullTime to sql.NullTime (#​1211).

  • Enforce integer limits of the Postgres wire protocol (#​1161).

  • Accept the passfile connection parameter to override PGPASSFILE (#​1129).

  • Fix connecting to socket on Windows systems (#​1179).

  • Don't perform a permission check on the .pgpass file on Windows (#​595).

  • Warn about incorrect .pgpass permissions (#​595).

  • Don't set extra_float_digits (#​1212).

  • Decode bpchar into a string (#​949).

  • Fix panic in Ping() by not requiring CommandComplete or EmptyQueryResponse in
    simpleQuery() (#​1234)

  • Recognize bit/varbit (#​743) and float types (#​1166) in ColumnTypeScanType().

  • Accept PGGSSLIB and PGKRBSRVNAME environment variables (#​1143).

  • Handle ErrorResponse in readReadyForQuery and return proper error (#​1136).

  • CopyIn() and CopyInSchema() now work if the list of columns is empty, in which
    case it will copy all columns (#​1239).

  • Treat nil []byte in query parameters as nil/NULL rather than "" (#​838).

  • Accept multiple authentication methods before checking AuthOk, which improves
    compatibility with PgPool-II (#​1188).

v1.10.9

Compare Source

  • Fixes backwards incompat bug with 1.13.

  • Fixes pgpass issue

v1.10.8

Compare Source

rogpeppe/go-internal (github.com/rogpeppe/go-internal)

v1.14.1

Compare Source

What's Changed

  • testscript: remove temp dirs when finishing once again by @​mvdan in #​290

Full Changelog: rogpeppe/go-internal@v1.14.0...v1.14.1

v1.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: rogpeppe/go-internal@v1.13.1...v1.14.0

v1.13.1

Compare Source

What's Changed

New Contributors

Full Changelog: rogpeppe/go-internal@v1.12.0...v1.13.1

v1.13.0

Compare Source

v1.12.0

Compare Source

What's Changed

Full Changelog: rogpeppe/go-internal@v1.11.0...v1.12.0

v1.11.0

Compare Source

What's changed

  • The modfile, module, semver and txtar packages are all now deprecated and forward what they can to to their respective upstream packages.
  • Helper commands can now write to stdout and stderr (see #​216; Thanks @​myitcv).
  • A source of "unexpected command failure" errors on MacOS has been fixed. (See #​222; Thanks to @​bep)
  • Misspelled commands make suggestions for the correct spelling. (See #​198; Thanks to @​Merovius)
  • The lockedfile and cache packages have been updated to Go tip (Thanks to @​mvdan)
  • The README file updated with some useful context (See #​224; Thanks to @​thepudds).

v1.10.0

Compare Source

What's Changed

Full Changelog: rogpeppe/go-internal@v1.9.0...v1.10.0

stretchr/testify (github.com/stretchr/testify)

v1.11.1

Compare Source

This release fixes #​1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.

What's Changed

Full Changelog: stretchr/testify@v1.11.0...v1.11.1

v1.11.0

Compare Source

What's Changed

Functional Changes

v1.11.0 Includes a number of performance improvements.

Fixes
Documentation, Build & CI

New Contributors

Full Changelog: stretchr/testify@v1.10.0...v1.11.0

v1.10.0

Compare Source

What's Changed

Functional Changes
Fixes
Documentation, Build & CI

New Contributors

Full Changelog: stretchr/testify@v1.9.0...v1.10.0

v1.9.0

Compare Source

What's Changed


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 becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/all-minor-patch-gomod branch 2 times, most recently from 877886b to 0290b23 Compare February 4, 2026 04:12
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/all-minor-patch-gomod branch 3 times, most recently from fee0ec5 to 085a5e7 Compare February 14, 2026 08:04
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/all-minor-patch-gomod branch from 085a5e7 to 273a9bb Compare February 14, 2026 16:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants