Skip to content

build(deps): bump the minor-and-patch group across 1 directory with 8 updates - #37

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/minor-and-patch-f29d0f1ac0
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/minor-and-patch-f29d0f1ac0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown

Bumps the minor-and-patch group with 6 updates in the / directory:

Package From To
github.com/a-h/templ 0.3.1001 0.3.1020
github.com/redis/go-redis/v9 9.21.0 9.22.0
github.com/xraph/forge 1.9.13 1.11.0
github.com/xraph/forge/extensions/auth 1.10.0 1.11.0
go.mongodb.org/mongo-driver/v2 2.5.0 2.9.1
go.opentelemetry.io/otel 1.44.0 1.46.0

Updates github.com/a-h/templ from 0.3.1001 to 0.3.1020

Release notes

Sourced from github.com/a-h/templ's releases.

v0.3.1020

Changelog

  • 09d6b02 chore: bump version
  • a411f13 chore: fix linter warning in test code
  • 524cd39 feat: add -check flag, closes #1007 (#1373)
  • f3d595c feat: add Range to ExpressionAttribute nodes (#1347)
  • 82af17c feat: add Range to GoCode nodes (#1348)
  • cf98cdc feat: add Range to StringExpression nodes (#1349)
  • ff38cee feat: add ranges for attribute node values (#1383)
  • 552ed02 feat: support concurrent rendering of templ components (#1359)
  • b310a97 fix(generatecmd): check cmd.Start() error before inserting cmd in to running map (#1382)
  • 410a80e fix(lsp): delete $GOROOT hack in uri.File
  • 95a0854 fix: allow JSFuncCall on arbitrary HTML attributes (#1375)
  • e581c01 fix: attributes containing a conditional, are always multiline (#1380)
  • b2952ed fix: clear children context in Fragment.Render (#1360)
  • 8fecf2d fix: prevent corrupted output in watch mode with gzip, fixes #1365 (#1366)
  • 7adcb62 fix: show correct updates based on written Go files without watch (#1363)
  • aa493e0 fix: track Range for non-JavaScript ScriptExpression nodes (#1350)
  • d52d64e fix: use dedicated shadow host in Suspense example to ensure header is rendered (#1370)
  • 83176f9 fix: vulnerabilities in x/net (only affects templ watch mode and tests), fixes #1354
Commits
  • 09d6b02 chore: bump version
  • ff38cee feat: add ranges for attribute node values (#1383)
  • e581c01 fix: attributes containing a conditional, are always multiline (#1380)
  • b310a97 fix(generatecmd): check cmd.Start() error before inserting cmd in to `run...
  • 95a0854 fix: allow JSFuncCall on arbitrary HTML attributes (#1375)
  • 8fecf2d fix: prevent corrupted output in watch mode with gzip, fixes #1365 (#1366)
  • a411f13 chore: fix linter warning in test code
  • 524cd39 feat: add -check flag, closes #1007 (#1373)
  • d52d64e fix: use dedicated shadow host in Suspense example to ensure header is render...
  • 552ed02 feat: support concurrent rendering of templ components (#1359)
  • Additional commits viewable in compare view

Updates github.com/redis/go-redis/v9 from 9.21.0 to 9.22.0

Release notes

Sourced from github.com/redis/go-redis/v9's releases.

9.22.0

This is a minor release introducing two flagship (experimental) features — client-side caching and automatic pipelining — alongside support for Redis 8.10, new commands, and a large batch of stability and parser-robustness fixes. It consolidates everything shipped in 9.22.0-beta.1, so the notes below cover the full 9.21.0 → 9.22.0 upgrade.

⚠️ Two changes to be aware of when upgrading from 9.21.0:

  • Default configuration values changed (#3918): read/write timeouts, retry backoff, cluster state reload interval, and TCP keep-alive defaults are now aligned with the cross-SDK configuration proposal (see the highlight below). Explicitly configured values are unaffected.
  • WaitAOF return type corrected (#3888): WaitAOF now returns *IntSliceCmd, matching the two-integer reply of WAITAOF (previously *IntCmd, which failed to parse the reply at runtime). Code referencing the old return type needs a one-line update.

🚀 Highlights

Client-Side Caching (Experimental)

The standalone Client gains server-assisted client-side caching built on RESP3 CLIENT TRACKING. Enable it by setting ClientSideCacheConfig in Options (or supply your own cache via ClientSideCache — e.g. to share one cache across clients). Cacheable read results are served from a local in-process cache and invalidated automatically when the server reports a change, cutting round trips for read-heavy workloads.

The invalidation architecture is selected by ClientSideCacheStrategy; the default (and currently only) strategy is CSCStrategySharedTracking: one shared cache, every pool connection runs plain CLIENT TRACKING ON, and a background drainer applies buffered invalidations — portable (no BCAST) and consistent with the other Redis client libraries. Requirements and guardrails: RESP3 (Protocol: 3), standalone client, DB 0 only; commands that would change the connection identity (SELECT, AUTH, ...) are rejected while caching is enabled, and CSC is disabled when a credentials provider is set (fixed Username/Password work and are namespaced). See the README's client-side caching section and the runnable example.

Experimental: the API may change in a minor release.

(#3941) by @​ofekshenawa

Automatic Pipelining (Experimental)

AutoPipeliner is a background batcher that coalesces commands from many concurrent goroutines into Redis pipelines, multiplying throughput without any manual pipeline management. It comes in two faces, available on Client and ClusterClient (and configurable via Options.AutoPipelineOptions / UniversalOptions.AutoPipelineOptions):

  • AutoPipeline() — the blocking face: a drop-in Cmdable where each call blocks until executed, exactly like a plain client, while concurrent callers' commands batch together under the hood (measured locally over loopback: ~1M+ SET/sec vs ~100k unpipelined; indicative, not a guarantee). Per-goroutine command order is preserved.
  • AsyncAutoPipeline() — the deferred face: command calls return immediately and every typed result accessor (Val/Result/Err/...) blocks until the command has executed. Submit a window of commands, then read the results, to keep pipelines deep (~2–3M SET/sec locally; indicative).

AutoPipelineOptions controls batching: MaxBatchSize (soft target, default 200; the blocking face's preset uses 300), MaxBatchBytes (approximate payload cap so huge values flush as several bounded writes), MaxFlushDelay with optional AdaptiveDelay (delay scales down as the queue fills), and MaxConcurrentBatches (default 1 = a single ordered batch stream; raising it requires Unordered: true, so ordering is never lost by accident — Validate() rejects the combination otherwise). A usage tour and throughput comparison live in https://github.com/redis/go-redis/blob/HEAD/example/autopipeline.

Experimental: the API may change in a future release — pin your go-redis version if you adopt it.

(#3942) by @​ndyakov, with help from @​cxljs

Redis 8.10 Support

This release adds support for Redis 8.10. The README's supported-versions list now includes Redis 8.10, and CI runs the full suite against the redislabs/client-libs-test:8.10.0 image by default (#3920, #3940).

Coverage for the new commands and options that ship with Redis 8.10:

  • HIMPORT (#3919) — bulk hash import via server-side fieldsets, exposed as HImportPrepare, HImportSet, HImportDiscard, and HImportDiscardAll. Fieldsets are session state scoped to a single physical connection, which does not mix well with connection pooling — so the client keeps a versioned fieldset registry and lazily replays the PREPARE on whichever pooled connection executes a SET that needs it, at most once per connection, with no extra round trip (the PREPARE is injected into the same write as the SET).
  • LMOVEM / BLMOVEM (#3913) — move multiple elements between lists in one call.
  • SUNIONCARD / SDIFFCARD (#3897) — cardinality of set union/difference without materializing the result.
  • XREAD / XREADGROUP MAXCOUNT and MAXSIZE (#3898) — bound how much data a stream read returns.
  • TS.READ (#3896), TS.QUERYLABELS (#3926), TS.NRANGE / TS.NREVRANGE (#3870) with multiple aggregators per key (#3937), and EXCLUDEEMPTY on TS.MRANGE / TS.MREVRANGE (#3912) — new time-series query surface.
  • FT.ALIASLIST (#3925), COLLECT reducer for FT.AGGREGATE (#3886), RERANK on HNSW vector fields in FT.CREATE (#3927), and FT.HYBRID timeout warnings (#3911) — search coverage.

Cross-SDK Aligned Defaults

Default configuration values now follow the cross-SDK configuration proposal shared by all Redis client libraries (#3918):

... (truncated)

Changelog

Sourced from github.com/redis/go-redis/v9's changelog.

9.22.0 (2026-08-03)

This is a minor release introducing two flagship (experimental) features — client-side caching and automatic pipelining — alongside support for Redis 8.10, new commands, and a large batch of stability and parser-robustness fixes. It consolidates everything shipped in 9.22.0-beta.1, so the notes below cover the full 9.21.0 → 9.22.0 upgrade.

⚠️ Two changes to be aware of when upgrading from 9.21.0:

  • Default configuration values changed (#3918): read/write timeouts, retry backoff, cluster state reload interval, and TCP keep-alive defaults are now aligned with the cross-SDK configuration proposal (see the highlight below). Explicitly configured values are unaffected.
  • WaitAOF return type corrected (#3888): WaitAOF now returns *IntSliceCmd, matching the two-integer reply of WAITAOF (previously *IntCmd, which failed to parse the reply at runtime). Code referencing the old return type needs a one-line update.

🚀 Highlights

Client-Side Caching (Experimental)

The standalone Client gains server-assisted client-side caching built on RESP3 CLIENT TRACKING. Enable it by setting ClientSideCacheConfig in Options (or supply your own cache via ClientSideCache — e.g. to share one cache across clients). Cacheable read results are served from a local in-process cache and invalidated automatically when the server reports a change, cutting round trips for read-heavy workloads.

The invalidation architecture is selected by ClientSideCacheStrategy; the default (and currently only) strategy is CSCStrategySharedTracking: one shared cache, every pool connection runs plain CLIENT TRACKING ON, and a background drainer applies buffered invalidations — portable (no BCAST) and consistent with the other Redis client libraries. Requirements and guardrails: RESP3 (Protocol: 3), standalone client, DB 0 only; commands that would change the connection identity (SELECT, AUTH, ...) are rejected while caching is enabled, and CSC is disabled when a credentials provider is set (fixed Username/Password work and are namespaced). See the README's client-side caching section and the runnable example.

Experimental: the API may change in a minor release.

(#3941) by @​ofekshenawa

Automatic Pipelining (Experimental)

AutoPipeliner is a background batcher that coalesces commands from many concurrent goroutines into Redis pipelines, multiplying throughput without any manual pipeline management. It comes in two faces, available on Client and ClusterClient (and configurable via Options.AutoPipelineOptions / UniversalOptions.AutoPipelineOptions):

  • AutoPipeline() — the blocking face: a drop-in Cmdable where each call blocks until executed, exactly like a plain client, while concurrent callers' commands batch together under the hood (measured locally over loopback: ~1M+ SET/sec vs ~100k unpipelined; indicative, not a guarantee). Per-goroutine command order is preserved.
  • AsyncAutoPipeline() — the deferred face: command calls return immediately and every typed result accessor (Val/Result/Err/...) blocks until the command has executed. Submit a window of commands, then read the results, to keep pipelines deep (~2–3M SET/sec locally; indicative).

AutoPipelineOptions controls batching: MaxBatchSize (soft target, default 200; the blocking face's preset uses 300), MaxBatchBytes (approximate payload cap so huge values flush as several bounded writes), MaxFlushDelay with optional AdaptiveDelay (delay scales down as the queue fills), and MaxConcurrentBatches (default 1 = a single ordered batch stream; raising it requires Unordered: true, so ordering is never lost by accident — Validate() rejects the combination otherwise). A usage tour and throughput comparison live in https://github.com/redis/go-redis/blob/master/example/autopipeline.

Experimental: the API may change in a future release — pin your go-redis version if you adopt it.

(#3942) by @​ndyakov, with help from @​cxljs

Redis 8.10 Support

This release adds support for Redis 8.10. The README's supported-versions list now includes Redis 8.10, and CI runs the full suite against the redislabs/client-libs-test:8.10.0 image by default (#3920, #3940).

Coverage for the new commands and options that ship with Redis 8.10:

  • HIMPORT (#3919) — bulk hash import via server-side fieldsets, exposed as HImportPrepare, HImportSet, HImportDiscard, and HImportDiscardAll. Fieldsets are session state scoped to a single physical connection, which does not mix well with connection pooling — so the client keeps a versioned fieldset registry and lazily replays the PREPARE on whichever pooled connection executes a SET that needs it, at most once per connection, with no extra round trip (the PREPARE is injected into the same write as the SET).
  • LMOVEM / BLMOVEM (#3913) — move multiple elements between lists in one call.
  • SUNIONCARD / SDIFFCARD (#3897) — cardinality of set union/difference without materializing the result.
  • XREAD / XREADGROUP MAXCOUNT and MAXSIZE (#3898) — bound how much data a stream read returns.
  • TS.READ (#3896), TS.QUERYLABELS (#3926), TS.NRANGE / TS.NREVRANGE (#3870) with multiple aggregators per key (#3937), and EXCLUDEEMPTY on TS.MRANGE / TS.MREVRANGE (#3912) — new time-series query surface.
  • FT.ALIASLIST (#3925), COLLECT reducer for FT.AGGREGATE (#3886), RERANK on HNSW vector fields in FT.CREATE (#3927), and FT.HYBRID timeout warnings (#3911) — search coverage.

Cross-SDK Aligned Defaults

Default configuration values now follow the cross-SDK configuration proposal shared by all Redis client libraries (#3918):

... (truncated)

Commits
  • c7f59a2 chore(release): prepare 9.22.0 (#3947)
  • c994cfc feat(autopipeline): automatic command pipelining (#3942)
  • 228b463 chore(deps): bump actions/stale from 10 to 11 (#3944)
  • a6be850 feat(csc): add standalone client-side caching (#3941)
  • 82b0213 chore(release): prepare 9.22.0-beta.1 (#3940)
  • 8eb9583 fix(rediscmd): redact credential args in AppendCmd (#3939)
  • 90fd088 chore(ci): point 8.10 testing at custom client-libs-test image (#3938)
  • 93f961a feat(timeseries): support multiple aggregators per key in TS.NRANGE (#3937)
  • 49e0041 feat(himport): HIMPORT command with lazy per-connection prepare (#3919)
  • 3dd9675 fix(proto): peek push notification name without demanding 36 bytes (#3936)
  • Additional commits viewable in compare view

Updates github.com/xraph/forge from 1.9.13 to 1.11.0

Release notes

Sourced from github.com/xraph/forge's releases.

v1.11.0

Forge Framework v1.11.0 (2026-09-06T18:53:55Z)

Welcome to this new release of Forge Framework!

Changelog

New Features

  • 82e3626e898294959585663667e210b0e6114ce9: feat(dashboard): gate trace ingest on recent dashboard use (@​juicycleff)
  • d75b6e5c01a97530078a5cdb227bc8f6e3a35b4c: feat(dashboard): let the trace store gate ingest on demand (@​juicycleff)
  • 0c0b5dee6180228e5d830447a9398bcfe7d1d2c0: feat(logger): adopt the rewritten logger with automatic format selection (@​juicycleff)

Bug Fixes

  • 29a4655a5b3f26d04ba4720a9c6b057098e05531: fix(ci): reconcile release-please with the repository's real tags (@​juicycleff)
  • 167819bd4630b4836e2798eab521325833b1f783: fix(dashboard): bound caller-controlled span attribute values (@​juicycleff)
  • 2d271ee57c0efc0cefe50a269e0263105817ca84: fix(dashboard): bound the remaining span fields and wire the per-trace cap (@​juicycleff)
  • 2c78625e2e5a3d9ef995ae74bfe4cd0550aaaa4b: fix(dashboard): cap the spans a single trace can retain (@​juicycleff)
  • 87ed90492d91f2b44173c328f9267309250e75b3: fix(dashboard): drain trace notifications on one goroutine, not one per span (@​juicycleff)
  • adef7831e0f4d867b82d4f0b3557697b4cb861cf: fix(dashboard): handle edge cases in truncateAttr and add comprehensive tests (@​juicycleff)
  • cb87fb893ff8d6b32c5aafa3b408ee7ca7235c90: fix(dashboard): keep gate open for SSE viewers, tighten dashboard path match (@​juicycleff)
  • 306999f01c4e3dcfe8c3c42970b12856c135d3fb: fix(dashboard): make goroutine-per-span regression test discriminate reliably (@​juicycleff)
  • 5013a4a28f3c971e9e6817f83ed3f17f0aaaffed: fix(deps): move to confy v1.0.3 (#77) (@​juicycleff)

Documentation Updates

  • 8dd10aa7cd661dfe6a4fdc7092ca0bba6278fa78: docs(changelog): update CHANGELOG.md for v1.10.0 (@​github-actions[bot])

Other Changes

  • 8caa6b423582c922e80656e0fe24928875d0c086: chore((main)): release 1.11.0 (#76) (@​juicycleff)
  • 4551b6d05d944c5de851b7500b391b4a9225fda0: chore(hooks): reject bad commit messages before they reach CI (@​juicycleff)
  • 3a5c42280115efa23a91e459618c3c303042c66c: test(dashboard): consolidate goroutine guard, fix gate test to discriminate (@​juicycleff)
  • a55f6eece192343ca99cd11221f07fc0a7573011: test(dashboard): pin collector heap and goroutine bounds (@​juicycleff)

Installation

Using Go Install

go install github.com/xraph/forge/cmd/forge@v1.11.0

Download Binary

Download the appropriate binary for your platform from the assets below.

Using Package Managers

# Homebrew (macOS/Linux)
brew install xraph/tap/forge
Scoop (Windows)
scoop bucket add xraph https://github.com/xraph/scoop-bucket
scoop install forge

What's Changed

Full changelog: xraph/forge@v1.10.0...v1.11.0

... (truncated)

Changelog

Sourced from github.com/xraph/forge's changelog.

1.11.0 (2026-09-06)

Features

  • dashboard: gate trace ingest on recent dashboard use (82e3626)
  • dashboard: let the trace store gate ingest on demand (d75b6e5)
  • logger: adopt the rewritten logger with automatic format selection (0c0b5de)

Bug Fixes

  • ci: reconcile release-please with the repository's real tags (29a4655)
  • dashboard: bound caller-controlled span attribute values (167819b)
  • dashboard: bound the remaining span fields and wire the per-trace cap (2d271ee)
  • dashboard: cap the spans a single trace can retain (2c78625)
  • dashboard: drain trace notifications on one goroutine, not one per span (87ed904)
  • dashboard: handle edge cases in truncateAttr and add comprehensive tests (adef783)
  • dashboard: keep gate open for SSE viewers, tighten dashboard path match (cb87fb8)
  • dashboard: make goroutine-per-span regression test discriminate reliably (306999f)
  • dashboard: stop the trace collector retaining spans nobody is watching (351fbf1)

Documentation

  • changelog: update CHANGELOG.md for v1.10.0 (8dd10aa)

1.10.0 (2026-09-02)

Features

  • client-core: carry the settle time across hydration (4201b402)
  • client-vue,client-angular: read staleTime reactively (0b03fc2d)
  • client-core: carry a codec reference, not only an id (384dfbaa)
  • client: classify a changed staleTime as compatible in diff (5f78f6d8)
  • client: emit staleTime into the generated manifest (1c31d3dc)
  • client: carry staleTime through x-forge-stale-time (2e3ccb68)
  • client: declare a per-endpoint staleTime on a route (3e4d813b)
  • core: add a shared scheduler for periodic work (c7bdd23d)
  • client: accept a per-call staleTime in all three adapters (2e0d08c6)
  • client-core: add poll, an interval refetch on an injected clock (fc35e716)
  • client-core: revalidate on focus and on reconnect, opt in (0b98dd45)
  • client-core: add revalidate, the seam ambient triggers drive (18518df6)
  • client-core: refetch a time-expired query when it mounts (53968779)
  • client-core: resolve a staleTime per subscriber, strictest wins (feb56ada)
  • client-core: stamp a settle time from an injected clock (428da9ed)
  • client-react-devtools: mount the devtools from React (f95d8d10)
  • client-devtools: add the streams and frames tabs (0ec69690)
  • client-devtools: add the query detail pane and the action bar (f3d8c08f)

... (truncated)

Commits
  • 5013a4a fix(deps): move to confy v1.0.3 (#77)
  • 8caa6b4 chore((main)): release 1.11.0 (#76)
  • 29a4655 fix(ci): reconcile release-please with the repository's real tags
  • 0c0b5de feat(logger): adopt the rewritten logger with automatic format selection
  • 351fbf1 Merge pull request #73 from xraph/fix/dashboard-collector-memory
  • 8f8b660 Merge pull request #72 from xraph/chore/commit-msg-hook
  • 4551b6d chore(hooks): reject bad commit messages before they reach CI
  • 2d271ee fix(dashboard): bound the remaining span fields and wire the per-trace cap
  • cb87fb8 fix(dashboard): keep gate open for SSE viewers, tighten dashboard path match
  • 82e3626 feat(dashboard): gate trace ingest on recent dashboard use
  • Additional commits viewable in compare view

Updates github.com/xraph/forge/extensions/auth from 1.10.0 to 1.11.0

Release notes

Sourced from github.com/xraph/forge/extensions/auth's releases.

v1.11.0

Forge Framework v1.11.0 (2026-09-06T18:53:55Z)

Welcome to this new release of Forge Framework!

Changelog

New Features

  • 82e3626e898294959585663667e210b0e6114ce9: feat(dashboard): gate trace ingest on recent dashboard use (@​juicycleff)
  • d75b6e5c01a97530078a5cdb227bc8f6e3a35b4c: feat(dashboard): let the trace store gate ingest on demand (@​juicycleff)
  • 0c0b5dee6180228e5d830447a9398bcfe7d1d2c0: feat(logger): adopt the rewritten logger with automatic format selection (@​juicycleff)

Bug Fixes

  • 29a4655a5b3f26d04ba4720a9c6b057098e05531: fix(ci): reconcile release-please with the repository's real tags (@​juicycleff)
  • 167819bd4630b4836e2798eab521325833b1f783: fix(dashboard): bound caller-controlled span attribute values (@​juicycleff)
  • 2d271ee57c0efc0cefe50a269e0263105817ca84: fix(dashboard): bound the remaining span fields and wire the per-trace cap (@​juicycleff)
  • 2c78625e2e5a3d9ef995ae74bfe4cd0550aaaa4b: fix(dashboard): cap the spans a single trace can retain (@​juicycleff)
  • 87ed90492d91f2b44173c328f9267309250e75b3: fix(dashboard): drain trace notifications on one goroutine, not one per span (@​juicycleff)
  • adef7831e0f4d867b82d4f0b3557697b4cb861cf: fix(dashboard): handle edge cases in truncateAttr and add comprehensive tests (@​juicycleff)
  • cb87fb893ff8d6b32c5aafa3b408ee7ca7235c90: fix(dashboard): keep gate open for SSE viewers, tighten dashboard path match (@​juicycleff)
  • 306999f01c4e3dcfe8c3c42970b12856c135d3fb: fix(dashboard): make goroutine-per-span regression test discriminate reliably (@​juicycleff)
  • 5013a4a28f3c971e9e6817f83ed3f17f0aaaffed: fix(deps): move to confy v1.0.3 (#77) (@​juicycleff)

Documentation Updates

  • 8dd10aa7cd661dfe6a4fdc7092ca0bba6278fa78: docs(changelog): update CHANGELOG.md for v1.10.0 (@​github-actions[bot])

Other Changes

  • 8caa6b423582c922e80656e0fe24928875d0c086: chore((main)): release 1.11.0 (#76) (@​juicycleff)
  • 4551b6d05d944c5de851b7500b391b4a9225fda0: chore(hooks): reject bad commit messages before they reach CI (@​juicycleff)
  • 3a5c42280115efa23a91e459618c3c303042c66c: test(dashboard): consolidate goroutine guard, fix gate test to discriminate (@​juicycleff)
  • a55f6eece192343ca99cd11221f07fc0a7573011: test(dashboard): pin collector heap and goroutine bounds (@​juicycleff)

Installation

Using Go Install

go install github.com/xraph/forge/cmd/forge@v1.11.0

Download Binary

Download the appropriate binary for your platform from the assets below.

Using Package Managers

# Homebrew (macOS/Linux)
brew install xraph/tap/forge
Scoop (Windows)
scoop bucket add xraph https://github.com/xraph/scoop-bucket
scoop install forge

What's Changed

Full changelog: xraph/forge@v1.10.0...v1.11.0

Changelog

Sourced from github.com/xraph/forge/extensions/auth's changelog.

1.11.0 (2026-09-06)

Features

  • dashboard: gate trace ingest on recent dashboard use (82e3626)
  • dashboard: let the trace store gate ingest on demand (d75b6e5)
  • logger: adopt the rewritten logger with automatic format selection (0c0b5de)

Bug Fixes

  • ci: reconcile release-please with the repository's real tags (29a4655)
  • dashboard: bound caller-controlled span attribute values (167819b)
  • dashboard: bound the remaining span fields and wire the per-trace cap (2d271ee)
  • dashboard: cap the spans a single trace can retain (2c78625)
  • dashboard: drain trace notifications on one goroutine, not one per span (87ed904)
  • dashboard: handle edge cases in truncateAttr and add comprehensive tests (adef783)
  • dashboard: keep gate open for SSE viewers, tighten dashboard path match (cb87fb8)
  • dashboard: make goroutine-per-span regression test discriminate reliably (306999f)
  • dashboard: stop the trace collector retaining spans nobody is watching (351fbf1)

Documentation

  • changelog: update CHANGELOG.md for v1.10.0 (8dd10aa)
Commits
  • 5013a4a fix(deps): move to confy v1.0.3 (#77)
  • 8caa6b4 chore((main)): release 1.11.0 (#76)
  • 29a4655 fix(ci): reconcile release-please with the repository's real tags
  • 0c0b5de feat(logger): adopt the rewritten logger with automatic format selection
  • 351fbf1 Merge pull request #73 from xraph/fix/dashboard-collector-memory
  • 8f8b660 Merge pull request #72 from xraph/chore/commit-msg-hook
  • 4551b6d chore(hooks): reject bad commit messages before they reach CI
  • 2d271ee fix(dashboard): bound the remaining span fields and wire the per-trace cap
  • cb87fb8 fix(dashboard): keep gate open for SSE viewers, tighten dashboard path match
  • 82e3626 feat(dashboard): gate trace ingest on recent dashboard use
  • Additional commits viewable in compare view

Updates github.com/xraph/go-utils from 1.2.2 to 1.3.0

Release notes

Sourced from github.com/xraph/go-utils's releases.

v1.3.0

1.3.0 (2026-09-06)

Features

  • log: rewrite the logger with automatic format selection (d7271db), closes #6
Changelog

Sourced from github.com/xraph/go-utils's changelog.

1.3.0 (2026-09-06)

Features

  • log: rewrite the logger with automatic format selection (d7271db), closes #6
Commits

Updates go.mongodb.org/mongo-driver/v2 from 2.5.0 to 2.9.1

Release notes

Sourced from go.mongodb.org/mongo-driver/v2's releases.

MongoDB Go Driver 2.9.1

The MongoDB Go Driver Team is pleased to release version 2.9.1 of the official MongoDB Go Driver.

Release Highlights

[!WARNING]
Go Driver versions v1.0.0 through v1.17.9 and v2.0.0 through v2.9.0 are affected by a security issue CVE-2026-88031 in the GridFS delete methods. This release resolves that security issue in Go Driver v2. Users are encouraged to upgrade to Go Driver v2.9.1 as soon as possible. For the fix in Go Driver v1, see the v1.17.10 release.

This release addresses CVE-2026-88031, a security issue in GridFS delete methods where the file ID lookup could match more loosely than intended, potentially causing unintended file (and chunk) deletions instead of an exact match on the given file ID.

Users can manually restrict the file ID with a $eq operator before passing it to GridFSBucket methods using code like the following.

func exactMatch(id any) bson.D {
	return bson.D{{"$eq", id}}
}
// e.g., for v2, (*GridFSBucket).Delete() with an exact match on the file ID.
gridFSBucket.Delete(context.TODO(), exactMatch(id))

What's Changed

🐛 Fixed

  • GODRIVER-4081: Use exact match for file ID in GridFS delete methods. by @​qingyang-hu

Full Changelog: v2.9.0...v2.9.1

For a full list of tickets included in this release, please see the list of fixed issues.

Documentation for the Go Driver can be found on pkg.go.dev and the MongoDB documentation site. BSON library documentation is also available on pkg.go.dev. For issues with, questions about, or feedback for the Go Driver, please look into our support channels, including StackOverflow. Bugs can be reported in the Go Driver project in the MongoDB JIRA where a list of current issues can be found. Your feedback on the Go Driver is greatly appreciated!

MongoDB Go Driver 2.9.0

The MongoDB Go Driver Team is pleased to release version 2.9.0 of the official MongoDB Go Driver.

Release Highlights

[!WARNING] The minimum supported MongoDB server version is now 4.4.

[!WARNING] The minimum supported Go version is now 1.25. The Go Driver supports the last 2 Go minor versions.

New ext/awsauth module

The new ext/awsauth module adds support for all AWS authentication methods via the official AWS SDK for Go. Applications running on AWS can now use an awsauth.CredentialsProvider in ClientOptions, ClientEncryptionOptions, and AutoEncryptionOptions.

For example, to configure a mongo.Client with the new ext/awsauth module:

import (
</tr></table> 

... (truncated)

Commits
  • 5d8c3a2 BUMP v2.9.1
  • ba2ddbf Merge commit from fork
  • 9a88e59 Merge branch 'release/2.9' into godriver4081-gridFsId
  • 099a81f BUMP v2.9.0
  • 3c87f21 GODRIVER-4101 Add tlsDisableCertificateRevocationCheck option. (#2571)
  • 5e5fba9 Bump testdata/specifications from d9d69f5 to 70a628b (#2576)
  • ac30cac GODRIVER-4109: Exclude OCSP errors from backpressure label (#2584)
  • 15ca7a0 GODRIVER-4096 Fix panic in Collection.insert on out-of-order write errors (#2...
  • 325f1ac Bump github/codeql-action from 4.37.8 to 4.37.9 in the actions group (#2583)
  • 4fe3377 GODRIVER-4062 Remove the ServerOverloadedError retry example. (#2568)
  • Additional commits viewable in compare view

Updates go.opentelemetry.io/otel from 1.44.0 to 1.46.0

Release notes

Sourced from go.opentelemetry.io/otel's releases.

v1.46.0/v0.68.0/v0.22.0/v0.0.19

This release is the last to support Go 1.25. The next release will require at least Go 1.26.

Added

  • Support testing of Go 1.27. (#8811)
  • Support http/json protocol in go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp. (#8273, #8775, #8831)
  • Add Hasher struct and methods in go.opentelemetry.io/otel/attribute to compute authoritative Distinct hashes incrementally for attribute filtering and deduplication. (#8598)

Changed

  • Lazily evaluate filtered and dropped attributes on measurement hot paths in go.opentelemetry.io/otel/sdk/metric to avoid unnecessary attribute set allocations. (#8598)
  • Add ErrExporterShutdown to go.opentelemetry.io/otel/sdk/log and return it from the go.opentelemetry.io/otel/exporters/stdout/stdoutlog, go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc, and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp exporters when Export is called after Shutdown. (#8773)
  • Clarify in go.opentelemetry.io/otel/log that calling Logger.Enabled is optional and that cached results can become stale. (#8764)

Fixed

  • Export dropped attribute counts in OTLP log records from go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc and go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp. (#8829)
  • Name span events created from OpenTracing logs after the event log field, falling back to log, instead of always using an empty name in go.opentelemetry.io/otel/bridge/opentracing. (#8648)
  • Count exception attributes omitted due to the attribute count limit as dropped in go.opentelemetry.io/otel/sdk/log. (#8796)
  • Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in go.opentelemetry.io/otel/sdk/log. (#8797)
  • Fix a data race when span attributes are read concurrently in go.opentelemetry.io/otel/sdk/trace. (#8706)
  • Prevent a panic in (*Set).Filter when called on a nil receiver in go.opentelemetry.io/otel/attribute. (#8792)
  • The simple span and log processors record otel.sdk.processor.{span,log}.processed when the record is submitted to the exporter instead of after the export completes, and no longer set error.type from the export outcome, in go.opentelemetry.io/otel/sdk/trace and go.opentelemetry.io/otel/sdk/log. (#8705)
  • Prevent Resource.MarshalLog from panicking on nil resources in go.opentelemetry.io/otel/sdk/resource. (#8758)

What's Changed

… updates

Bumps the minor-and-patch group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/a-h/templ](https://github.com/a-h/templ) | `0.3.1001` | `0.3.1020` |
| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.21.0` | `9.22.0` |
| [github.com/xraph/forge](https://github.com/xraph/forge) | `1.9.13` | `1.11.0` |
| [github.com/xraph/forge/extensions/auth](https://github.com/xraph/forge) | `1.10.0` | `1.11.0` |
| [go.mongodb.org/mongo-driver/v2](https://github.com/mongodb/mongo-go-driver) | `2.5.0` | `2.9.1` |
| [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) | `1.44.0` | `1.46.0` |



Updates `github.com/a-h/templ` from 0.3.1001 to 0.3.1020
- [Release notes](https://github.com/a-h/templ/releases)
- [Commits](a-h/templ@v0.3.1001...v0.3.1020)

Updates `github.com/redis/go-redis/v9` from 9.21.0 to 9.22.0
- [Release notes](https://github.com/redis/go-redis/releases)
- [Changelog](https://github.com/redis/go-redis/blob/master/RELEASE-NOTES.md)
- [Commits](redis/go-redis@v9.21.0...v9.22.0)

Updates `github.com/xraph/forge` from 1.9.13 to 1.11.0
- [Release notes](https://github.com/xraph/forge/releases)
- [Changelog](https://github.com/xraph/forge/blob/main/CHANGELOG.md)
- [Commits](xraph/forge@v1.9.13...v1.11.0)

Updates `github.com/xraph/forge/extensions/auth` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/xraph/forge/releases)
- [Changelog](https://github.com/xraph/forge/blob/main/CHANGELOG.md)
- [Commits](xraph/forge@v1.10.0...v1.11.0)

Updates `github.com/xraph/go-utils` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/xraph/go-utils/releases)
- [Changelog](https://github.com/xraph/go-utils/blob/main/CHANGELOG.md)
- [Commits](xraph/go-utils@v1.2.2...v1.3.0)

Updates `go.mongodb.org/mongo-driver/v2` from 2.5.0 to 2.9.1
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.5.0...v2.9.1)

Updates `go.opentelemetry.io/otel` from 1.44.0 to 1.46.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.44.0...v1.46.0)

Updates `go.opentelemetry.io/otel/trace` from 1.44.0 to 1.46.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.44.0...v1.46.0)

---
updated-dependencies:
- dependency-name: github.com/a-h/templ
  dependency-version: 0.3.1020
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: github.com/redis/go-redis/v9
  dependency-version: 9.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/xraph/forge
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/xraph/forge/extensions/auth
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: github.com/xraph/go-utils
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: go.opentelemetry.io/otel
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: go.opentelemetry.io/otel/trace
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 14, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies, go. Please create them before Dependabot can add them to a pull request.

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

This branch has not been deployed

No deployments
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