Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps the go-modules group with 10 updates in the / directory:

Package From To
github.com/PuerkitoBio/goquery 1.10.3 1.11.0
github.com/gabriel-vasile/mimetype 1.4.10 1.4.11
github.com/gdamore/tcell/v2 2.9.0 2.11.0
github.com/getsentry/sentry-go 0.35.3 0.38.0
github.com/hashicorp/consul/api 1.32.4 1.33.0
github.com/internetarchive/gowarc 0.8.90 0.8.96
github.com/ncruces/go-sqlite3 0.29.1 0.30.1
github.com/pdfcpu/pdfcpu 0.11.0 0.11.1
github.com/plar/go-adaptive-radix-tree/v2 2.0.3 2.0.4
github.com/samber/slog-multi 1.5.0 1.6.0

Updates github.com/PuerkitoBio/goquery from 1.10.3 to 1.11.0

Release notes

Sourced from github.com/PuerkitoBio/goquery's releases.

v1.11.0

Note that Go1.24 is now required (use goquery < 1.11.0 if you can't use go1.24+).

Commits
  • d3e3ce5 Merge pull request #534 from PuerkitoBio/mna-prepare-1.11
  • 9841a36 Update readme for 1.11 release
  • 469d4ea Merge pull request #533 from PuerkitoBio/dependabot/go_modules/golang.org/x/n...
  • a03654e Bump golang.org/x/net from 0.43.0 to 0.47.0
  • faf16ca Merge pull request #523 from PuerkitoBio/dependabot/github_actions/actions/ch...
  • 4c1c718 Update test matrix to run on Go 1.24 and 1.25
  • 62bfb67 Bump actions/checkout from 4 to 5
  • e314281 Merge pull request #525 from PuerkitoBio/dependabot/github_actions/actions/se...
  • 0961921 Bump actions/setup-go from 5 to 6
  • 695fbfd Merge pull request #522 from PuerkitoBio/dependabot/go_modules/golang.org/x/n...
  • Additional commits viewable in compare view

Updates github.com/gabriel-vasile/mimetype from 1.4.10 to 1.4.11

Release notes

Sourced from github.com/gabriel-vasile/mimetype's releases.

v1.4.11 cpio, wordperfect support

What's Changed

Full Changelog: gabriel-vasile/mimetype@v1.4.10...v1.4.11

Commits
  • 9914830 msoxml: match files and directories for first zip entry
  • 5ec1912 json: prevent one alloc by re-using the same slice (#726)
  • 7cfd614 performance: use regular funcs instead of var funcs (#670)
  • 71a0f37 aaf: remove individual node for aaf
  • d0ad103 supported_mimes: fix lint and make test short
  • fa141bd supported_mimes: add .git-blame-ignore-revs
  • 16a062b supported_mimes: add hierarchy to table
  • 49f3862 clone: stop cloning MIME when there is no charset
  • d0a95af dxf: add support; closes #719
  • 54d3513 markup: fix for duplicate branch warning from linter
  • Additional commits viewable in compare view

Updates github.com/gdamore/tcell/v2 from 2.9.0 to 2.11.0

Commits
  • ed6d27c Turn off CSI-u before leaving alternate screen mode
  • b559d03 chore: use strings.CutPrefix
  • 7e562ab chore: fix windows mode declarations
  • b80ab38 feat: Add support for NO_COLOR (unix only)
  • 7c30f53 Bump golang.org/x/term from 0.36.0 to 0.37.0
  • b129680 fix: Default to East Asian ambiguous width as 1 unless RUNEWIDTH_EASTASIAN is...
  • ef3e35b Bump golang.org/x/text from 0.30.0 to 0.31.0
  • f5ac851 fix(keys): Fix ALT handling for older terminal types (ESC- emulated)
  • d0ad80f chore: Update README to reflect current priorities
  • 9337200 chore(terminfo): remove the EnterUrl/ExitUrl definitions (unused)
  • Additional commits viewable in compare view

Updates github.com/getsentry/sentry-go from 0.35.3 to 0.38.0

Release notes

Sourced from github.com/getsentry/sentry-go's releases.

0.38.0

Breaking Changes

Features

  • Introduce a new async envelope transport and telemetry buffer to prioritize and batch events (#1094, #1093, #1107).

    • Advantages:
      • Prioritized, per-category buffers (errors, transactions, logs, check-ins) reduce starvation and improve resilience under load
      • Batching for high-volume logs (up to 100 items or 5s) cuts network overhead
      • Bounded memory with eviction policies
      • Improved flush behavior with context-aware flushing
  • Add ClientOptions.DisableTelemetryBuffer to opt out and fall back to the legacy transport layer (HTTPTransport / HTTPSyncTransport).

    err := sentry.Init(sentry.ClientOptions{
      Dsn: "__DSN__",
      DisableTelemetryBuffer: true, // fallback to legacy transport
    })

Notes

  • If a custom Transport is provided, the SDK automatically disables the telemetry buffer and uses the legacy transport for compatibility.

0.37.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.37.0.

Breaking Changes

  • Behavioral change for the TraceIgnoreStatusCodes option. The option now defaults to ignoring 404 status codes (#1122).

Features

  • Add sentry.origin attribute to structured logs to identify log origin for slog and logrus integrations (auto.log.slog, auto.log.logrus) (#1121).

Bug Fixes

  • Fix slog event handler to use the initial context, ensuring events use the correct hub/span when the emission context lacks one (#1133).
  • Improve exception chain processing by checking pointer values when tracking visited errors, avoiding instability for certain wrapped errors (#1132).

Misc

  • Bump golang.org/x/net to v0.38.0 (#1126).

0.36.2

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.36.2.

Bug Fixes

  • Fix context propagation for logs to ensure logger instances correctly inherit span and hub information from their creation context (#1118)

... (truncated)

Changelog

Sourced from github.com/getsentry/sentry-go's changelog.

0.38.0

Breaking Changes

Features

  • Introduce a new async envelope transport and telemetry buffer to prioritize and batch events (#1094, #1093, #1107).

    • Advantages:
      • Prioritized, per-category buffers (errors, transactions, logs, check-ins) reduce starvation and improve resilience under load
      • Batching for high-volume logs (up to 100 items or 5s) cuts network overhead
      • Bounded memory with eviction policies
      • Improved flush behavior with context-aware flushing
  • Add ClientOptions.DisableTelemetryBuffer to opt out and fall back to the legacy transport layer (HTTPTransport / HTTPSyncTransport).

    err := sentry.Init(sentry.ClientOptions{
      Dsn: "__DSN__",
      DisableTelemetryBuffer: true, // fallback to legacy transport
    })

Notes

  • If a custom Transport is provided, the SDK automatically disables the telemetry buffer and uses the legacy transport for compatibility.

0.37.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.37.0.

Breaking Changes

  • Behavioral change for the TraceIgnoreStatusCodes option. The option now defaults to ignoring 404 status codes (#1122).

Features

  • Add sentry.origin attribute to structured logs to identify log origin for slog and logrus integrations (auto.log.slog, auto.log.logrus) (#1121).

Bug Fixes

  • Fix slog event handler to use the initial context, ensuring events use the correct hub/span when the emission context lacks one (#1133).
  • Improve exception chain processing by checking pointer values when tracking visited errors, avoiding instability for certain wrapped errors (#1132).

Misc

  • Bump golang.org/x/net to v0.38.0 (#1126).

0.36.2

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.36.2.

... (truncated)

Commits

Updates github.com/hashicorp/consul/api from 1.32.4 to 1.33.0

Changelog

Sourced from github.com/hashicorp/consul/api's changelog.

1.22.0 Enterprise (October 24, 2025)

SECURITY:

  • connect: Upgrade Consul's bundled Envoy version to 1.35.3 and remove support for 1.31.10. This update also includes a fix to prevent Envoy (v1.35+) startup failures by only configuring the TLS transport socket when the CA bundle is present. [GH-22824]
  • security: Adding warning when remote/local script checks are enabled without enabling ACL's [GH-22877]
  • security: Improved validation of the Content-Length header in the Consul KV endpoint to prevent potential denial of service attacksCVE-2025-11374 [GH-22916]
  • security: adding a maximum Content-Length on the event endpoint to fix denial-of-service (DoS) attacks. This resolves CVE-2025-11375. [GH-22836]
  • security: breaking change - adding a key name validation on the key/value endpoint along side with the DisableKVKeyValidation config to disable/enable it to fix path traversal attacks on misconfigured or missing ACL policies. [GH-22850]

FEATURES:

  • Added support to register a service in consul with multiple ports [GH-22769]
  • agent: Added IsDualStack utility function to detect if the agent is configured for both IPv4 and IPv6 (dual-stack mode) based on its bind address retrieved from "agent/self" API. [GH-22741]
  • install: Updated license information displayed during post-install
  • ipv6: addtition of ip6tables changes for ipv6 and dual stack support [GH-22787]
  • oidc: add client authentication using JWT assertion and PKCE. default PKCE is enabled. [GH-22732]

IMPROVEMENTS:

  • security: Upgrade golang to 1.25.3. [GH-22926]
  • ui: Fixes computed property override issues currently occurring and in some cases pre-emptively as this has been deprecated in ember v4 [GH-22947]
  • ui: removes send action instances as part of https://deprecations.emberjs.com/id/ember-component-send-action/ [GH-22938]
  • ui: replaced ember partials with components as an incremental step to upgrade to ember v4 [GH-22888]
  • api: Added a new API (/v1/operator/utilization) to support enterprise API for Manual Snapshot Reporting [GH-22837]
  • cmd: Added new subcommand consul operator utilization [-today-only] [-message] [-y] to generate a bundle with census utilization snapshot. Main flow is implemented in consul-enterprise http: Added a new API Handler for /v1/operator/utilization. Core functionality to be implemented in consul-enterprise agent: Always enabled census metrics collection with configurable option to export it to Hashicorp Reporting [GH-22843]
  • cli: snapshot agent now supports authenticating to Azure Blob Storage using Azure Managed Service Identities (MSI). [GH-11171]
  • command: connect envoy bootstrap defaults to 127.0.0.1 in IPv4-only environment and to ::1 in IPv6/DualStack environment. [GH-22763]
  • connect: default upstream.local_bind_address to ::1 for IPv6 agent bind address [GH-22773]
  • proxy: default proxy.local_service_address to ::1 for IPv6 agent bind address [GH-22772]
  • ui: Improved accessibility features in the Consul UI to enhance usability for users with disabilities [GH-22770]
  • ui: Replace yarn with pnpm for package management [GH-22790]
  • ui: auth method config values were overflowing. This PR fixes the issue and adds word break for table elements with large content. [GH-22813]

BUG FIXES:

  • ui: Allow FQDN to be displayed in the Consul web interface. [GH-22779]
  • ui: fixes the issue where namespaces where disappearing and Welcome to Namespace screen showed up after tab switching [GH-22789]
  • ui: fixes the issue where when doing deletes of multiple tokens or policies, the three dots on the right hand side stops responding after the first delete. [GH-22752]
  • cmd: Fix consul operator utilization --help to show only available options without extra parameters. [GH-22912]

1.22.0 (October 24, 2025)

SECURITY:

  • connect: Upgrade Consul's bundled Envoy version to 1.35.3 and remove support for 1.31.10. This update also includes a fix to prevent Envoy (v1.35+) startup failures by only configuring the TLS transport socket when the CA bundle is present. [GH-22824]
  • security: Adding warning when remote/local script checks are enabled without enabling ACL's [GH-22877]
  • security: Improved validation of the Content-Length header in the Consul KV endpoint to prevent potential denial of service attacksCVE-2025-11374 [GH-22916]

... (truncated)

Commits
  • 1a47ec5 submodule version update
  • 5d2aa72 post release changes (#22950) (#22980)
  • c0922f9 Backport of [UI] replace direct use of transitionTo with router service's tra...
  • f7c80bc Backport of upgrade: logrus to v1.9.3 into release/1.22.x (#22974)
  • 5efc188 Backport of upgrade golang to latest patch into release/1.22.x (#22968)
  • 36140dc Backport of upgrades ember-collection into release/1.22.x (#22966)
  • 504ec51 [UI] deprecation this property fallback into 1.22.x(#22928) (#22964)
  • 9562c06 Backport of [UI] Remove send Action deprecation into release/1.22.x (#22957)
  • 70583a7 Backport of UI/Deprecation Computed property override into release/1.22.x (#2...
  • 0b00c01 Backport of UI/deprecation ember views partial into release/1.22.x (#22952)
  • Additional commits viewable in compare view

Updates github.com/internetarchive/gowarc from 0.8.90 to 0.8.96

Release notes

Sourced from github.com/internetarchive/gowarc's releases.

v0.8.96

What's Changed

Full Changelog: internetarchive/gowarc@v0.8.95...v0.8.96

v0.8.95

What's Changed

Full Changelog: internetarchive/gowarc@v0.8.94...v0.8.95

v0.8.94

What's Changed

Full Changelog: internetarchive/gowarc@v0.8.93...v0.8.94

v0.8.93

What's Changed

This fixes a potential issue where the WARC version is incorrectly reported as being invalid.

Full Changelog: internetarchive/gowarc@v0.8.92...v0.8.93

v0.8.92

What's Changed

Full Changelog: internetarchive/gowarc@v0.8.91...v0.8.92

v0.8.91

What's Changed

New Contributors

... (truncated)

Commits
  • a5b6f10 Add support for memory detection on Windows (#159)
  • 4501d83 build(deps): bump the go-modules group across 1 directory with 3 updates (#158)
  • 7b5340a Add configurable DNS parallelization & round-robin (#156)
  • ab0a13e Add platform-specific memory management for macOS to spooledtempfile (#150)
  • 52f00a3 fix: the value of warcVer changed unexpectedly (#154)
  • 7d95a70 build(deps): bump the go-modules group with 2 updates (#153)
  • 33b826c Add proper types for context keys (#151)
  • ddae3ba build(deps): bump golang.org/x/net from 0.44.0 to 0.46.0 in the go-modules gr...
  • 4dfb7f9 Add mend CLI command (#145)
  • 401e95d fixed README example and adjusted underlying implementation accordingly (#147)
  • Additional commits viewable in compare view

Updates github.com/ncruces/go-sqlite3 from 0.29.1 to 0.30.1

Release notes

Sourced from github.com/ncruces/go-sqlite3's releases.

v0.30.1

What's Changed

Updates:

  • SQLite 3.51.0
  • wazero v1.10.1

Changes:

  • SQLite CANTOPEN and IOERR errors wrap the file system error that caused them

Fixes:

Full Changelog: ncruces/go-sqlite3@v0.30.0...v0.30.1

Artifact attestations

v0.30.0

What's Changed

Updates:

  • SQLite 3.51.0
  • Gorm v1.31.1

Changes:

  • SQLite CANTOPEN and IOERR errors wrap the file system error that caused them

Breaking changes:

Full Changelog: ncruces/go-sqlite3@v0.29.1...v0.30.0

Artifact attestations

Commits

Updates github.com/pdfcpu/pdfcpu from 0.11.0 to 0.11.1

Release notes

Sourced from github.com/pdfcpu/pdfcpu's releases.

v0.11.1

Maintenance Release

🛠️ Fixes and Improvements

Added a new configuration parameter:

# Limit form field content for display purposes when using 'pdfcpu form list'.
# If > 0, this setting truncates the following columns: AltName, Default, and Value.
formFieldListMaxColWidth: 0

This helps improve readability when listing form fields with long content when using pdfcpu form list.

Please update your config by executing: pdfcpu config reset

General code cleanups, lots of parser improvements and dependency updates for improved stability.

🙏🏻 Thanks 🙏🏻

everybody for testing and feeding back your bug reports. This time shoutouts 👏🏻 go to @​SveLil and @​fank for putting time into submitting PR's.

We fixed #846, #1097, #1193, #1202, #1203 and the following:

Changelog

  • c4b560d Bump version
  • 2e3ab97 Fix PDF version check in parseTrailerDict
  • 9a6983c Fix #1231
  • 66ea5de Fix #1112 – ASCII85 decode now handles CRLF line endings
  • aecc027 Fix #1226
  • dcfe153 Handle form field DV using indirect reference; add config parameter formFieldListMaxColWidth
  • 9bdbec5 Fix #1188
  • 565bbca Fix #1235
  • 670efa4 Fix #1230
  • 45fd922 Upgrade build to Go 1.25
  • 6dad16b Fix #1216
  • 8f53738 Fix #1156
  • c5b2e7c Fix #1166
  • bca1778 Fix #1195
  • b6e9642 Add support for inherited textfields
  • 79a1276 Fix #1194
  • f55e600 Fix #1189
  • 9e69220 Fix #1176
  • 6cfff8e Fix #1187
  • b108369 Fix #1177
  • 3744f3c Fix #1185
  • 042c910 Fix #1183
  • ebac205 Fix #1173
  • cea5481 Relax date validation for 1-digit seconds
Commits

Updates github.com/plar/go-adaptive-radix-tree/v2 from 2.0.3 to 2.0.4

Release notes

Sourced from github.com/plar/go-adaptive-radix-tree/v2's releases.

Fix reverse iterator for Node48

What's Changed

Full Changelog: plar/go-adaptive-radix-tree@v2.0.3...v2.0.4

Commits

Updates github.com/samber/slog-multi from 1.5.0 to 1.6.0

Release notes

Sourced from github.com/samber/slog-multi's releases.

v1.6.0

What's Changed

Other

New Contributors

Full Changelog: samber/slog-multi@v1.5.0...v1.6.0

Commits

Updates golang.org/x/net from 0.44.0 to 0.47.0

Commits
  • 9a29643 go.mod: update golang.org/x dependencies
  • 07cefd8 context: deprecate
  • 5ac9dac publicsuffix: don't treat ip addresses as domain names
  • d1f64cc quic: use testing/synctest
  • fff0469 http2: document that RFC 7540 prioritization does not work with small payloads
  • f35e3a4 http2: fix weight overflow in RFC 7540 write scheduler
  • 89adc90 http2: fix typo referring to RFC 9218 as RFC 9128 instead
  • 8d76a2c quic: don't defer MAX_STREAMS frames indefinitely
  • 027f8b7 quic: fix expected ACK Delay in client's ACK after HANDSHAKE_DONE
  • dec9fe7 dns/dnsmessage: update SVCB packing to prohibit name compression
  • Additional commits viewable in compare view

Updates golang.org/x/sync from 0.17.0 to 0.18.0

Commits

Updates golang.org/x/sys from 0.36.0 to 0.38.0

Commits
  • 15129aa cpu: also use MRS instruction in getmmfr1
  • ed38ca2 unix: add SizeofNhmsg and SizeofNexthopGrp
  • 3675c4c cpu: use MRS instruction to read arm64 system registers
  • 2a15272 unix: add consts for ELF handling
  • 6239615 cpu: add HPDS, LOR, PAN detection for arm64
  • ea436ef windows: add iphlpapi routing functions
  • 28c5bda unix: add SetMemPolicy and its mode/flag values
  • b731f78 unix/linux: switch to ubuntu 25.04, Go 1.25.1
  • 1edeebe unix: mkall.sh: fail if docker build failed
  • ecada54 unix: use slices.{Equal,Sort} in tests
  • Additional commits viewable in compare view

Updates golang.org/x/text from 0.29.0 to 0.31.0

Commits
  • e7ff6b3 go.mod: update golang.org/x dependencies
  • fbf012b all: use reflect.TypeFor instead of reflect.TypeOf
  • c6abd03 go.mod: update golang.org/x dependencies
  • 42f038d x/text: fix nil dereference in gotext extract
  • a42f0e2 all: use built-in max/min to simplify the code
  • See full diff 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Nov 24, 2025
…ates

Bumps the go-modules group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/PuerkitoBio/goquery](https://github.com/PuerkitoBio/goquery) | `1.10.3` | `1.11.0` |
| [github.com/gabriel-vasile/mimetype](https://github.com/gabriel-vasile/mimetype) | `1.4.10` | `1.4.11` |
| [github.com/gdamore/tcell/v2](https://github.com/gdamore/tcell) | `2.9.0` | `2.11.0` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.35.3` | `0.38.0` |
| [github.com/hashicorp/consul/api](https://github.com/hashicorp/consul) | `1.32.4` | `1.33.0` |
| [github.com/internetarchive/gowarc](https://github.com/internetarchive/gowarc) | `0.8.90` | `0.8.96` |
| [github.com/ncruces/go-sqlite3](https://github.com/ncruces/go-sqlite3) | `0.29.1` | `0.30.1` |
| [github.com/pdfcpu/pdfcpu](https://github.com/pdfcpu/pdfcpu) | `0.11.0` | `0.11.1` |
| [github.com/plar/go-adaptive-radix-tree/v2](https://github.com/plar/go-adaptive-radix-tree) | `2.0.3` | `2.0.4` |
| [github.com/samber/slog-multi](https://github.com/samber/slog-multi) | `1.5.0` | `1.6.0` |



Updates `github.com/PuerkitoBio/goquery` from 1.10.3 to 1.11.0
- [Release notes](https://github.com/PuerkitoBio/goquery/releases)
- [Commits](PuerkitoBio/goquery@v1.10.3...v1.11.0)

Updates `github.com/gabriel-vasile/mimetype` from 1.4.10 to 1.4.11
- [Release notes](https://github.com/gabriel-vasile/mimetype/releases)
- [Commits](gabriel-vasile/mimetype@v1.4.10...v1.4.11)

Updates `github.com/gdamore/tcell/v2` from 2.9.0 to 2.11.0
- [Release notes](https://github.com/gdamore/tcell/releases)
- [Changelog](https://github.com/gdamore/tcell/blob/main/CHANGESv2.md)
- [Commits](gdamore/tcell@v2.9.0...v2.11.0)

Updates `github.com/getsentry/sentry-go` from 0.35.3 to 0.38.0
- [Release notes](https://github.com/getsentry/sentry-go/releases)
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-go@v0.35.3...v0.38.0)

Updates `github.com/hashicorp/consul/api` from 1.32.4 to 1.33.0
- [Release notes](https://github.com/hashicorp/consul/releases)
- [Changelog](https://github.com/hashicorp/consul/blob/main/CHANGELOG.md)
- [Commits](hashicorp/consul@api/v1.32.4...api/v1.33.0)

Updates `github.com/internetarchive/gowarc` from 0.8.90 to 0.8.96
- [Release notes](https://github.com/internetarchive/gowarc/releases)
- [Commits](internetarchive/gowarc@v0.8.90...v0.8.96)

Updates `github.com/ncruces/go-sqlite3` from 0.29.1 to 0.30.1
- [Release notes](https://github.com/ncruces/go-sqlite3/releases)
- [Commits](ncruces/go-sqlite3@v0.29.1...v0.30.1)

Updates `github.com/pdfcpu/pdfcpu` from 0.11.0 to 0.11.1
- [Release notes](https://github.com/pdfcpu/pdfcpu/releases)
- [Changelog](https://github.com/pdfcpu/pdfcpu/blob/master/.goreleaser.yml)
- [Commits](pdfcpu/pdfcpu@v0.11.0...v0.11.1)

Updates `github.com/plar/go-adaptive-radix-tree/v2` from 2.0.3 to 2.0.4
- [Release notes](https://github.com/plar/go-adaptive-radix-tree/releases)
- [Commits](plar/go-adaptive-radix-tree@v2.0.3...v2.0.4)

Updates `github.com/samber/slog-multi` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/samber/slog-multi/releases)
- [Commits](samber/slog-multi@v1.5.0...v1.6.0)

Updates `golang.org/x/net` from 0.44.0 to 0.47.0
- [Commits](golang/net@v0.44.0...v0.47.0)

Updates `golang.org/x/sync` from 0.17.0 to 0.18.0
- [Commits](golang/sync@v0.17.0...v0.18.0)

Updates `golang.org/x/sys` from 0.36.0 to 0.38.0
- [Commits](golang/sys@v0.36.0...v0.38.0)

Updates `golang.org/x/text` from 0.29.0 to 0.31.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.29.0...v0.31.0)

---
updated-dependencies:
- dependency-name: github.com/PuerkitoBio/goquery
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/gabriel-vasile/mimetype
  dependency-version: 1.4.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/gdamore/tcell/v2
  dependency-version: 2.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/hashicorp/consul/api
  dependency-version: 1.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/internetarchive/gowarc
  dependency-version: 0.8.96
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/ncruces/go-sqlite3
  dependency-version: 0.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/pdfcpu/pdfcpu
  dependency-version: 0.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/plar/go-adaptive-radix-tree/v2
  dependency-version: 2.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/samber/slog-multi
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: golang.org/x/net
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: golang.org/x/sync
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: golang.org/x/sys
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: golang.org/x/text
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/go-modules-4500b773ca branch from fa484b1 to 71f87d2 Compare December 1, 2025 06:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant