Skip to content

fix(deps): update go-minor#172

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate-main/go-minor
Open

fix(deps): update go-minor#172
renovate[bot] wants to merge 1 commit into
mainfrom
renovate-main/go-minor

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 16, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/IBM/sarama v1.47.0v1.48.2 age adoption passing confidence
github.com/lib/pq v1.11.2v1.12.3 age adoption passing confidence
github.com/onsi/gomega v1.39.1v1.40.0 age adoption passing confidence
github.com/testcontainers/testcontainers-go v0.41.0v0.42.0 age adoption passing confidence
github.com/testcontainers/testcontainers-go/modules/postgres v0.41.0v0.42.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

IBM/sarama (github.com/IBM/sarama)

v1.48.2: Version 1.48.2 (2026-05-13)

Compare Source

What's Changed

🎉 New Features / Improvements
🐛 Fixes
🔧 Maintenance

Full Changelog: IBM/sarama@v1.48.1...v1.48.2

v1.48.1: Version 1.48.1 (2026-05-10)

Compare Source

What's Changed

🐛 Fixes
📦 Dependency updates
🔧 Maintenance

New Contributors

Full Changelog: IBM/sarama@v1.48.0...v1.48.1

v1.48.0: Version 1.48.0 (2026-04-24)

Compare Source

What's Changed

🎉 New Features / Improvements
🐛 Fixes
📦 Dependency updates
🔧 Maintenance
📝 Documentation
➕ Other Changes

New Contributors

Full Changelog: IBM/sarama@v1.47.0...v1.48.0

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

v1.12.3

Compare Source

  • Send datestyle startup parameter, improving compatbility with database engines
    that use a different default datestyle such as EnterpriseDB (#​1312).

v1.12.2

Compare Source

  • Treat io.ErrUnexpectedEOF as driver.ErrBadConn so database/sql discards the
    connection. Since v1.12.0 this could result in permanently broken connections,
    especially with CockroachDB which frequently sends partial messages (#​1299).

v1.12.1

Compare Source

  • Look for pgpass file in ~/.pgpass instead of ~/.postgresql/pgpass (#​1300).

  • Don't clear password if directly set on pq.Config (#​1302).

v1.12.0

Compare Source

  • The next release may change the default sslmode from require to prefer.
    See #​1271 for details.

  • CopyIn() and CopyInToSchema() have been marked as deprecated. These are
    simple query builders and not needed for COPY [..] FROM STDIN support (which
    is not deprecated). (#​1279)

    // Old
    tx.Prepare(CopyIn("temp", "num", "text", "blob", "nothing"))
    
    // Replacement
    tx.Prepare(`copy temp (num, text, blob, nothing) from stdin`)
    
Features
  • Support protocol 3.2, and the min_protocol_version and
    max_protocol_version DSN parameters (#​1258).

  • Support sslmode=prefer and sslmode=allow (#​1270).

  • Support ssl_min_protocol_version and ssl_max_protocol_version (#​1277).

  • Support connection service file to load connection details (#​1285).

  • Support sslrootcert=system and use ~/.postgresql/root.crt as the default
    value of sslrootcert (#​1280, #​1281).

  • Add a new pqerror package with PostgreSQL error codes (#​1275).

    For example, to test if an error is a UNIQUE constraint violation:

    if pqErr, ok := errors.AsType[*pq.Error](err); ok && pqErr.Code == pqerror.UniqueViolation {
        log.Fatalf("email %q already exsts", email)
    }
    

    To make this a bit more convenient, it also adds a pq.As() function:

    pqErr := pq.As(err, pqerror.UniqueViolation)
    if pqErr != nil {
        log.Fatalf("email %q already exsts", email)
    }
    
Fixes
  • Fix SSL key permission check to allow modes stricter than 0600/0640#1265 (#​1265).

  • Fix Hstore to work with binary parameters (#​1278).

  • Clearer error when starting a new query while pq is still processing another
    query (#​1272).

  • Send intermediate CAs with client certificates, so they can be signed by an
    intermediate CA (#​1267).

  • Use time.UTC for UTC aliases such as Etc/UTC (#​1282).

onsi/gomega (github.com/onsi/gomega)

v1.40.0

Compare Source

1.40.0

We're adopting a new release strategy to minimize dependency bloat in projects that consume Gomega. It is a limitation of the go mod toolchain that test subdependencies of your project's direct dependencies get pulled in as indirect dependencies. In the case of Gomega, this ends up pulling in all of Ginkgo into your go.mod even if you are only using Gomega (Gomega uses Ginkgo for its own tests).

Going forward, releases will strip out all tests, tidy up the go.mod and then push this stripped down version to a new master-lite branch. These stripped-down versions will receive the vx.y.z git tag and will be picked up by the go toolchain.

Please open an issue if this new release process causes unexpected changes for your projects.

testcontainers/testcontainers-go (github.com/testcontainers/testcontainers-go)

v0.42.0

Compare Source

What's Changed

⚠️ Breaking Changes

🔒 Security

🐛 Bug Fixes

🧹 Housekeeping

📦 Dependency updates


Configuration

📅 Schedule: (UTC)

  • 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.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Mar 16, 2026

ℹ️ Artifact update notice

File name: maas/maas-service/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 19 additional dependencies were updated

Details:

Package Change
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 -> v0.0.0-20250102033503-faa5f7b0171c
github.com/bits-and-blooms/bitset v1.20.0 -> v1.24.4
github.com/cenkalti/backoff/v4 v4.2.1 -> v4.3.0
github.com/ebitengine/purego v0.8.4 -> v0.10.0
github.com/failsafe-go/failsafe-go v0.8.5 -> v0.9.5
github.com/gabriel-vasile/mimetype v1.4.10 -> v1.4.12
github.com/golang-jwt/jwt/v5 v5.3.0 -> v5.3.1
github.com/knadh/koanf/providers/file v1.2.0 -> v1.2.1
github.com/moby/go-archive v0.1.0 -> v0.2.0
github.com/moby/term v0.5.0 -> v0.5.2
github.com/pierrec/lz4/v4 v4.1.22 -> v4.1.25
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c -> v0.0.0-20240221224432-82ca36839d55
github.com/shirou/gopsutil/v4 v4.25.6 -> v4.26.2
github.com/tklauser/go-sysconf v0.3.12 -> v0.3.16
github.com/tklauser/numcpus v0.6.1 -> v0.11.0
go.opentelemetry.io/auto/sdk v1.1.0 -> v1.2.1
go.opentelemetry.io/otel v1.35.0 -> v1.41.0
go.opentelemetry.io/otel/metric v1.35.0 -> v1.41.0
go.opentelemetry.io/otel/trace v1.35.0 -> v1.41.0

@renovate renovate Bot force-pushed the renovate-main/go-minor branch from e01f563 to a7ac053 Compare March 16, 2026 14:11
@Smet2133 Smet2133 closed this Mar 16, 2026
@renovate renovate Bot changed the title chore(deps): update go-minor chore(deps): update go-minor - autoclosed Mar 16, 2026
@renovate renovate Bot deleted the renovate-main/go-minor branch March 16, 2026 14:43
@github-actions github-actions Bot locked and limited conversation to collaborators Mar 16, 2026
@renovate renovate Bot changed the title chore(deps): update go-minor - autoclosed chore(deps): update module github.com/lib/pq to v1.12.0 Mar 18, 2026
@renovate renovate Bot reopened this Mar 18, 2026
@renovate renovate Bot force-pushed the renovate-main/go-minor branch from 87fbebd to a7ac053 Compare March 18, 2026 17:32
@renovate renovate Bot force-pushed the renovate-main/go-minor branch 4 times, most recently from acf2504 to 84771a0 Compare March 20, 2026 12:43
@renovate renovate Bot changed the title chore(deps): update module github.com/lib/pq to v1.12.0 chore(deps): update go-minor Mar 21, 2026
@renovate renovate Bot force-pushed the renovate-main/go-minor branch 2 times, most recently from 735f43d to 4968211 Compare March 22, 2026 17:24
@renovate renovate Bot force-pushed the renovate-main/go-minor branch 4 times, most recently from 9fd332a to 621e2b2 Compare April 13, 2026 07:51
@renovate renovate Bot force-pushed the renovate-main/go-minor branch 7 times, most recently from e8b2612 to 77d8ee3 Compare April 29, 2026 15:08
@renovate renovate Bot force-pushed the renovate-main/go-minor branch 5 times, most recently from 68d99ce to 28465de Compare May 7, 2026 21:31
@renovate renovate Bot force-pushed the renovate-main/go-minor branch 3 times, most recently from af9bc48 to 9d0535e Compare May 13, 2026 16:37
@renovate renovate Bot force-pushed the renovate-main/go-minor branch 7 times, most recently from c2a1f64 to 5ffb9aa Compare May 19, 2026 17:31
@renovate renovate Bot force-pushed the renovate-main/go-minor branch from 5ffb9aa to 61af344 Compare May 20, 2026 12:57
@renovate renovate Bot changed the title chore(deps): update go-minor fix(deps): update go-minor May 20, 2026
@github-actions github-actions Bot added the bug Something isn't working label May 20, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant