Skip to content

chore(deps): update go-minor#172

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

chore(deps): update go-minor#172
renovate[bot] wants to merge 1 commit intomainfrom
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/jackc/pgx/v5 v5.8.0v5.9.1 age adoption passing confidence
github.com/lib/pq v1.11.2v1.12.1 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

jackc/pgx (github.com/jackc/pgx/v5)

v5.9.1

Compare Source

v5.9.0

Compare Source

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

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


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.


  • 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 from 4968211 to e57c591 Compare March 30, 2026 09:56
@renovate renovate bot force-pushed the renovate-main/go-minor branch from e57c591 to 5ce7182 Compare March 30, 2026 17:10
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