Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2025

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the production-dependencies group with 8 updates in the / directory:

Package From To
github.com/pitabwire/frame 1.58.9 1.58.11
github.com/valkey-io/valkey-go 1.0.64 1.0.65
go.mau.fi/util 0.9.0 0.9.1
maunium.net/go/mautrix 0.25.0 0.25.1
github.com/ebitengine/purego 0.8.4 0.9.0
github.com/mailru/easyjson 0.9.0 0.9.1
github.com/nats-io/nats.go 1.45.0 1.46.0
go.opentelemetry.io/auto/sdk 1.2.0 1.2.1

Updates github.com/pitabwire/frame from 1.58.9 to 1.58.11

Release notes

Sourced from github.com/pitabwire/frame's releases.

v1.58.11 🌈

Changes

v1.58.10 🌈

Changes

Commits

Updates github.com/valkey-io/valkey-go from 1.0.64 to 1.0.65

Release notes

Sourced from github.com/valkey-io/valkey-go's releases.

1.0.65

Changes

  • feat: new ReadNodeSelector option allowing more fine-grained control over load balancing among nodes and deprecating the old ReplicaSelector.
  • feat: new BYPOLYGON option in GEOSEARCH command.
  • feat: new SAFE option in SHUTDOWN command.
  • feat: new DELIFEQ command.
  • fix: correctly handle early exit in Scanner iterators.

Experimental

  • feat: new experimental pipelining queue implementation, which is context aware and can be enabled by setting the RUEIDIS_QUEUE_TYPE environment variable to flowbuffer.

Contributors

We'd like to thank all the contributors who worked on this release!

@​Krish8955, @​ash2k, @​ayush-sarda, @​bbangert, @​proost, @​rueian and @​wandering-salesman

Commits
  • 9ac1f17 feat: bump v1.0.65
  • 5a5d854 perf: reduce unnecessary goroutines for getting zone info with EnableReplicaA...
  • 65dc4eb feat: add new queue which is context aware (#896)
  • 57418ff docs: replace ReplicaSelector with ReadNodeSelector in the README
  • 39f1d53 feat: read command routing between primary and replica nodes (#894)
  • 9844917 fix: correctly handle early exit in Scanner iterators (#898)
  • 02ecf13 Support new BYPOLYGON option in GEOSEARCH
  • 9040800 Support new BYPOLYGON option in GEOSEARCH & (#74)
  • 305efe7 Support new SAFE option in SHUTDOWN (#73)
  • d4865cb Support new DELIFEQ command #67 (#70)
  • Additional commits viewable in compare view

Updates go.mau.fi/util from 0.9.0 to 0.9.1

Release notes

Sourced from go.mau.fi/util's releases.

v0.9.1

  • (dbutil) Added general documentation.
  • (random) Added StringCharset for generating a random string with a custom character set and AppendSequence for generating a random slice with a completely arbitrary types.
  • (exslices) Added methods for deduplicating a slice by custom key.
  • (exsync) Added WaitTimeoutCtx for waiting for an Event with both a timeout and a context.
Changelog

Sourced from go.mau.fi/util's changelog.

v0.9.1 (2025-09-16)

  • (dbutil) Added general documentation.
  • (random) Added StringCharset for generating a random string with a custom character set and AppendSequence for generating a random slice with a completely arbitrary types.
  • (exslices) Added methods for deduplicating a slice by custom key.
  • (exsync) Added WaitTimeoutCtx for waiting for an Event with both a timeout and a context.
Commits
  • 2fd3e67 Bump version to v0.9.1
  • 914cf96 exsync: add WaitTimeoutCtx to combine Wait and WaitTimeout
  • 419604f exslices: add more deduplication options
  • 56e213c Merge pull request #33 from mautrix/rr-dbutil-godoc
  • eb18131 dbutil: Document
  • 5f1c92c dbutil: include error in slow query logs
  • 3873c5c random: add AppendSequence for arbitrary data
  • 0eea8a3 random: add StringCharset for generating string with custom charset
  • a49496d random: use exbytes.UnsafeString instead of manual call
  • See full diff in compare view

Updates golang.org/x/exp from 0.0.0-20250819193227-8b4c13bb791b to 0.0.0-20250911091902-df9299821621

Commits

Updates maunium.net/go/mautrix from 0.25.0 to 0.25.1

Release notes

Sourced from maunium.net/go/mautrix's releases.

v0.25.1

  • (client) Fixed HTTP method of delete devices API call (thanks to @​fmseals in #393).
  • (client) Added wrappers for MSC4323: User suspension & locking endpoints (thanks to @​nexy7574 in #407).
  • (client) Stabilized support for extensible profiles.
  • (client) Stabilized support for state_after in sync.
  • (client) Removed deprecated MSC2716 requests.
  • (crypto) Added fallback to ensure m.relates_to is always copied even if the content struct doesn't implement Relatable.
  • (crypto) Changed olm unwedging to ignore newly created sessions if they haven't been used successfully in either direction.
  • (federation) Added utilities for generating, parsing, validating and authorizing PDUs.
    • Note: the new PDU code depends on GOEXPERIMENT=jsonv2
  • (event) Added is_animated flag from MSC4230 to file info.
  • (event) Added types for MSC4332: In-room bot commands.
  • (event) Added missing poll end event type for MSC3381.
  • (appservice) Fixed URLs not being escaped properly when using unix socket for homeserver connections.
  • (format) Added more helpers for forming markdown links.
  • (event,bridgev2) Added support for Beeper's disappearing message state event.
  • (bridgev2) Redesigned group creation interface and added support in commands and provisioning API.
  • (bridgev2) Added GetEvent to Matrix interface to allow network connectors to get an old event. The method is best effort only, as some configurations don't allow fetching old events.
  • (bridgev2) Added shared logic for provisioning that can be reused by the API, commands and other sources.
  • (bridgev2) Fixed mentions and URL previews not being copied over when caption and media are merged.
  • (bridgev2) Removed config option to change provisioning API prefix, which had already broken in the previous release.
Changelog

Sourced from maunium.net/go/mautrix's changelog.

v0.25.1 (2025-09-16)

  • (client) Fixed HTTP method of delete devices API call (thanks to @​fmseals in #393).
  • (client) Added wrappers for [MSC4323]: User suspension & locking endpoints (thanks to [@​nexy7574] in #407).
  • (client) Stabilized support for extensible profiles.
  • (client) Stabilized support for state_after in sync.
  • (client) Removed deprecated MSC2716 requests.
  • (crypto) Added fallback to ensure m.relates_to is always copied even if the content struct doesn't implement Relatable.
  • (crypto) Changed olm unwedging to ignore newly created sessions if they haven't been used successfully in either direction.
  • (federation) Added utilities for generating, parsing, validating and authorizing PDUs.
    • Note: the new PDU code depends on GOEXPERIMENT=jsonv2
  • (event) Added is_animated flag from [MSC4230] to file info.
  • (event) Added types for [MSC4332]: In-room bot commands.
  • (event) Added missing poll end event type for [MSC3381].
  • (appservice) Fixed URLs not being escaped properly when using unix socket for homeserver connections.
  • (format) Added more helpers for forming markdown links.
  • (event,bridgev2) Added support for Beeper's disappearing message state event.
  • (bridgev2) Redesigned group creation interface and added support in commands and provisioning API.
  • (bridgev2) Added GetEvent to Matrix interface to allow network connectors to get an old event. The method is best effort only, as some configurations don't allow fetching old events.
  • (bridgev2) Added shared logic for provisioning that can be reused by the API, commands and other sources.
  • (bridgev2) Fixed mentions and URL previews not being copied over when caption and media are merged.
  • (bridgev2) Removed config option to change provisioning API prefix, which had already broken in the previous release.

#393: mautrix/go#393 #407: mautrix/go#407 [MSC3381]: matrix-org/matrix-spec-proposals#3381 [MSC4230]: matrix-org/matrix-spec-proposals#4230 [MSC4323]: matrix-org/matrix-spec-proposals#4323 [MSC4332]: matrix-org/matrix-spec-proposals#4332

Commits
  • c37ddcc Bump version to v0.25.1
  • b5bec2e client: stabilize support for state_after
  • 717c8c3 bridgev2/database: normalize disappearing settings before insert
  • 3a6f20b crypto/sqlstore: ignore unused sessions in olm unwedging
  • 4603a34 event: add org.matrix.msc3381.poll.end type (#412)
  • 5dbab3a crypto/machine: don't clear account on Destroy()
  • 87fe127 crypto/decryptolm: retry prekey decryption with goolm
  • c716f30 crypto/register: don't use init in *olm packages
  • 84e5d6b crypto/machine: allow canceling background context
  • 69869f7 crypto: log active driver
  • Additional commits viewable in compare view

Updates github.com/ebitengine/purego from 0.8.4 to 0.9.0

Release notes

Sourced from github.com/ebitengine/purego's releases.

v0.9.0

  • Added support for Objective-C blocks (#129)
  • Added support for linux/loong64
  • Minor fixes and improvements
Commits

Updates github.com/mailru/easyjson from 0.9.0 to 0.9.1

Release notes

Sourced from github.com/mailru/easyjson's releases.

v0.9.1

What's Changed

New Contributors

Full Changelog: mailru/easyjson@v0.9.0...v0.9.1

Commits
  • 58eb6f5 Merge pull request #424 from stickpro/issue-415
  • ffa0b23 feat: Add version and commit information to easyjson generator
  • fe2707c Merge pull request #411 from neal/bugfix/unmarshal-unexpected-null
  • baefa5c Fix decoding null values on non-pointer fields
  • 8580601 Merge pull request #407 from Neal/bugfix/unmarshal-null
  • 529b1f6 Fix unmarshal null to existing value
  • See full diff in compare view

Updates github.com/nats-io/nats.go from 1.45.0 to 1.46.0

Release notes

Sourced from github.com/nats-io/nats.go's releases.

Release v1.46.0

Changelog

Overview

This release enables features introduced in [email protected].

ADDED

  • JetStream:
    • Stream counters configuration option (#1932, #1939)
    • New fields in ClusterInfo (#1935)
    • AllowAtomicPublish stream configuration option (#1940)
    • PersistMode stream config option for configurable stream persistence settings (#1943)
    • AllowMsgSchedules stream configuration option to enable message scheduling (#1942)
    • Context and timeout options to Messages.Next() plus Fetch context support (#1938)
    • Support custom name prefix for ordered consumers (#1928)
  • KeyValue:
    • Added KeyValue bucket metadada support (#1944)

IMPROVED

  • JetStream:
    • Add max consumers limit error (code=10026). Thanks @​Arlet2 for the contribution (#1922)
    • Return more specific cons info error on ordered consumer recreation (#1931)

Complete Changes

nats-io/nats.go@v1.45.0...v1.46.0

Commits
  • 41de016 Release v1.46.0
  • 2d3be0c [IMPROVED] Bump nats-server test dependency
  • 9726c6f [ADDED] AllowMsgSchedules field to enable message scheduling in stream config...
  • 5e67170 [FIXED] Revert leftover no headers support changes (#1941)
  • c85e275 [ADDED] Introduce PersistMode for configurable persistence settings in stream...
  • 13d3ae2 [ADDED] AllowAtomicPublish option on stream config (#1940)
  • 60f1718 [CHANGED] Remove no headers support (#1939)
  • ec9b58f [IMPROVED] Add test veryfying if mirror can be updated to regular stream (#1934)
  • 3416ed0 [ADDED] New fields in ClusterInfo (#1935)
  • 460f3de [ADDED] Prioritized priority policy (#1937)
  • Additional commits viewable in compare view

Updates github.com/petermattis/goid from 0.0.0-20250813065127-a731cc31b4fe to 0.0.0-20250904145737-900bdf8bb490

Commits

Updates github.com/testcontainers/testcontainers-go from 0.38.0 to 0.39.0

Release notes

Sourced from github.com/testcontainers/testcontainers-go's releases.

v0.39.0

What's Changed

🚀 Features

🐛 Bug Fixes

📖 Documentation

  • docs: clarify no client SDKs in production modules/images, in contributing.md (#3279) @​nimdrak

🧹 Housekeeping

📦 Dependency updates

... (truncated)

Commits
  • da47f5d chore: use new version (v0.39.0) in modules and examples
  • 404b345 chore(atlas): simplify host-port calculation in tests (#3300)
  • 6e14bda feat(atlaslocal): add MongoDB Atlas Local module (#3254)
  • 1fdd847 chore(deps): bump golang.org/x/net from 0.28.0 to 0.38.0 (#3299)
  • 88dead6 feat: allow saving specific platforms for an image (#3218)
  • 44d970c chore(deps): bump dario.cat/mergo from 1.0.1 to 1.0.2 (#3238)
  • ac8fdd3 chore(deps): bump golang.org/x/sys from 0.32.0 to 0.36.0 (#3282)
  • d254caa feat(redpanda): add support for http proxy (#3258)
  • f54a356 chore(deps): bump github/codeql-action from 3.29.3 to 3.30.3 (#3287)
  • 7098d80 chore(go): bump to Go 1.24 as minimal version (#3298)
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/auto/sdk from 1.2.0 to 1.2.1

Release notes

Sourced from go.opentelemetry.io/auto/sdk's releases.

sdk/v1.2.1

Overview

Fixed

  • Fix uint32 bounding on 32 bit architectures in the go.opentelemetry.io/auto/sdk module. (#2810)

Removed

  • Build support for Go 1.23 in go.opentelemetry.io/auto/sdk has been removed. Use Go >= 1.24 to develop and build the project. (#2799)

What's Changed

Full Changelog: open-telemetry/opentelemetry-go-instrumentation@v0.23.0...sdk/v1.2.1

Changelog

Sourced from go.opentelemetry.io/auto/sdk's changelog.

[go.opentelemetry.io/auto/sdk v1.2.1] - 2025-09-15

Fixed

  • Fix uint32 bounding on 32 bit architectures in the go.opentelemetry.io/auto/sdk module. (#2810)
Commits
  • 715f58c Release go.opentelemetry.io/auto/sdk v1.2.1 (#2811)
  • 2ffdc0d chore(deps): update module github.com/prometheus/otlptranslator to v1 (#2800)
  • edae086 chore(deps): update golang:1.25.1 docker digest to 8305f5f (#2807)
  • c0a461c Fix 32bit arch int overflow in sdk (#2810)
  • 146fa4d fix(deps): update google.golang.org/grpc/examples digest to ca78c90 (#2806)
  • a734c70 chore(deps): update module github.com/nunnatsa/ginkgolinter to v0.21.0 (#2805)
  • 3d60895 chore(deps): update module github.com/tetafro/godot to v1.5.2 (#2804)
  • 23bec2c chore(deps): update module github.com/antonboom/testifylint to v1.6.4 (#2803)
  • 3b82e63 fix(deps): update golang.org/x (#2762)
  • 65fc170 chore(deps): update module github.com/spf13/viper to v1.21.0 (#2796)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… with 11 updates

Bumps the production-dependencies group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/pitabwire/frame](https://github.com/pitabwire/frame) | `1.58.9` | `1.58.11` |
| [github.com/valkey-io/valkey-go](https://github.com/valkey-io/valkey-go) | `1.0.64` | `1.0.65` |
| [go.mau.fi/util](https://github.com/mautrix/go-util) | `0.9.0` | `0.9.1` |
| [maunium.net/go/mautrix](https://github.com/mautrix/go) | `0.25.0` | `0.25.1` |
| [github.com/ebitengine/purego](https://github.com/ebitengine/purego) | `0.8.4` | `0.9.0` |
| [github.com/mailru/easyjson](https://github.com/mailru/easyjson) | `0.9.0` | `0.9.1` |
| [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | `1.45.0` | `1.46.0` |
| [go.opentelemetry.io/auto/sdk](https://github.com/open-telemetry/opentelemetry-go-instrumentation) | `1.2.0` | `1.2.1` |



Updates `github.com/pitabwire/frame` from 1.58.9 to 1.58.11
- [Release notes](https://github.com/pitabwire/frame/releases)
- [Commits](pitabwire/frame@v1.58.9...v1.58.11)

Updates `github.com/valkey-io/valkey-go` from 1.0.64 to 1.0.65
- [Release notes](https://github.com/valkey-io/valkey-go/releases)
- [Commits](valkey-io/valkey-go@v1.0.64...v1.0.65)

Updates `go.mau.fi/util` from 0.9.0 to 0.9.1
- [Release notes](https://github.com/mautrix/go-util/releases)
- [Changelog](https://github.com/mautrix/go-util/blob/main/CHANGELOG.md)
- [Commits](mautrix/go-util@v0.9.0...v0.9.1)

Updates `golang.org/x/exp` from 0.0.0-20250819193227-8b4c13bb791b to 0.0.0-20250911091902-df9299821621
- [Commits](https://github.com/golang/exp/commits)

Updates `maunium.net/go/mautrix` from 0.25.0 to 0.25.1
- [Release notes](https://github.com/mautrix/go/releases)
- [Changelog](https://github.com/mautrix/go/blob/main/CHANGELOG.md)
- [Commits](mautrix/go@v0.25.0...v0.25.1)

Updates `github.com/ebitengine/purego` from 0.8.4 to 0.9.0
- [Release notes](https://github.com/ebitengine/purego/releases)
- [Commits](ebitengine/purego@v0.8.4...v0.9.0)

Updates `github.com/mailru/easyjson` from 0.9.0 to 0.9.1
- [Release notes](https://github.com/mailru/easyjson/releases)
- [Commits](mailru/easyjson@v0.9...v0.9.1)

Updates `github.com/nats-io/nats.go` from 1.45.0 to 1.46.0
- [Release notes](https://github.com/nats-io/nats.go/releases)
- [Commits](nats-io/nats.go@v1.45.0...v1.46.0)

Updates `github.com/petermattis/goid` from 0.0.0-20250813065127-a731cc31b4fe to 0.0.0-20250904145737-900bdf8bb490
- [Commits](https://github.com/petermattis/goid/commits)

Updates `github.com/testcontainers/testcontainers-go` from 0.38.0 to 0.39.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.38.0...v0.39.0)

Updates `go.opentelemetry.io/auto/sdk` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-go-instrumentation/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go-instrumentation/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go-instrumentation@sdk/v1.2.0...sdk/v1.2.1)

---
updated-dependencies:
- dependency-name: github.com/pitabwire/frame
  dependency-version: 1.58.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: github.com/valkey-io/valkey-go
  dependency-version: 1.0.65
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: go.mau.fi/util
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: golang.org/x/exp
  dependency-version: 0.0.0-20250911091902-df9299821621
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: maunium.net/go/mautrix
  dependency-version: 0.25.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: github.com/ebitengine/purego
  dependency-version: 0.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: github.com/mailru/easyjson
  dependency-version: 0.9.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: github.com/nats-io/nats.go
  dependency-version: 1.46.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: github.com/petermattis/goid
  dependency-version: 0.0.0-20250904145737-900bdf8bb490
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: github.com/testcontainers/testcontainers-go
  dependency-version: 0.39.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: go.opentelemetry.io/auto/sdk
  dependency-version: 1.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 23, 2025

Assignees

The following users could not be added as assignees: antinvestor/maintainers. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added auto-merge a dependabot label dependencies a dependabot label labels Sep 23, 2025
Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Auto-approving Dependabot PR after successful tests

@github-actions
Copy link

❌ Auto-merge failed: Squash merges are not allowed on this repository.

Please merge manually after reviewing.

@pitabwire pitabwire enabled auto-merge September 24, 2025 17:29
@pitabwire pitabwire merged commit 90f065b into main Sep 24, 2025
8 checks passed
@pitabwire pitabwire deleted the dependabot/go_modules/production-dependencies-54205965d4 branch September 24, 2025 17:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

auto-merge a dependabot label dependencies a dependabot label

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants