Skip to content

chore(deps): bump the go-modules group with 5 updates#586

Merged
NGTmeaty merged 2 commits intomainfrom
dependabot/go_modules/go-modules-1609c4053c
Apr 9, 2026
Merged

chore(deps): bump the go-modules group with 5 updates#586
NGTmeaty merged 2 commits intomainfrom
dependabot/go_modules/go-modules-1609c4053c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2026

Bumps the go-modules group with 5 updates:

Package From To
github.com/ada-url/goada 1.1.0 1.2.0
github.com/getsentry/sentry-go 0.43.0 0.44.1
github.com/grafana/pyroscope-go 1.2.7 1.2.8
github.com/hashicorp/consul/api 1.33.4 1.33.7
github.com/samber/slog-multi 1.7.1 1.8.0

Updates github.com/ada-url/goada from 1.1.0 to 1.2.0

Release notes

Sourced from github.com/ada-url/goada's releases.

Version 1.2.0

What's Changed

Full Changelog: ada-url/goada@v1.1.0...v1.2.0

Commits

Updates github.com/getsentry/sentry-go from 0.43.0 to 0.44.1

Release notes

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

0.44.1

[!NOTE]
v0.44.0 had to be released as v0.44.1 due to a technical issue.

New Features ✨

  • Add RemoveAttribute api on the scope. by @​giortzisg in #1224
  • Deprecate Scope.SetExtra, Scope.SetExtras, and Scope.RemoveExtra in favor of Scope.SetAttributes and Scope.RemoveAttribute by @​giortzisg in #1224
    • The recommended migration path is to use SetAttributes to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use SetTag or SetContext instead.
    • Before:
    scope.SetExtra("key.string", "str")
    scope.SetExtra("key.int", 42)
    • After (for error events) — use tags and contexts:
    scope.SetTag("key.string", "str")
    scope.SetContext("my_data", sentry.Context{"key.int": 42})
    • After (for logs and metrics) — use attributes:
    scope.SetAttributes(
        attribute.String("key.string", "str"),
        attribute.Int("key.int", 42),
    )
  • Add support for homogenous arrays by @​giortzisg in #1203
  • Add support for client reports by @​giortzisg in #1192
  • Add org id propagation in sentry_baggage by @​giortzisg in #1210
  • Add OrgID and StrictTraceContinuation client options. by @​giortzisg in #1210
  • Add the option to set attributes on the scope by @​giortzisg in #1208

Bug Fixes 🐛

Internal Changes 🔧

Ai

Deps

Other

... (truncated)

Changelog

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

0.44.1

[!NOTE]
The v0.44.0 is missing due to a technical issue and had to be released again as v0.44.1

New Features ✨

  • Add RemoveAttribute api on the scope. by @​giortzisg in #1224
  • Deprecate Scope.SetExtra, Scope.SetExtras, and Scope.RemoveExtra in favor of Scope.SetAttributes and Scope.RemoveAttribute by @​giortzisg in #1224
    • The recommended migration path is to use SetAttributes to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use SetTag or SetContext instead.
    • Before:
    scope.SetExtra("key.string", "str")
    scope.SetExtra("key.int", 42)
    • After (for error events) — use tags and contexts:
    scope.SetTag("key.string", "str")
    scope.SetContext("my_data", sentry.Context{"key.int": 42})
    • After (for logs and metrics) — use attributes:
    scope.SetAttributes(
        attribute.String("key.string", "str"),
        attribute.Int("key.int", 42),
    )
  • Add support for homogenous arrays by @​giortzisg in #1203
  • Add support for client reports by @​giortzisg in #1192
  • Add org id propagation in sentry_baggage by @​giortzisg in #1210
  • Add OrgID and StrictTraceContinuation client options. by @​giortzisg in #1210
  • Add the option to set attributes on the scope by @​giortzisg in #1208

Bug Fixes 🐛

Internal Changes 🔧

Ai

Deps

... (truncated)

Commits

Updates github.com/grafana/pyroscope-go from 1.2.7 to 1.2.8

Release notes

Sourced from github.com/grafana/pyroscope-go's releases.

godeltaprof/v0.1.8 fix panic on go 1.23

Fixes:

Chore:

Commits
  • 2e107d3 chore: remove golang.org/x/tools dependency from compat tests (#189)
  • 9a5e26d chore: Update CI with latest Go versions (#188)
  • 9d4bcf8 fix(deps): update module google.golang.org/grpc to v1.79.3 [security] (#187)
  • 18b0c51 chore(deps): update actions/checkout action to v5 (#181)
  • 10f47f9 Migrate to self-hosted agents (#167)
  • 14524e1 chore: replace flameql with labelset (#166)
  • See full diff in compare view

Updates github.com/hashicorp/consul/api from 1.33.4 to 1.33.7

Commits
  • 9b276c0 api submodule update
  • a9606a1 api: prepare go.mod and go.sum for release (commented out replace, tidied)
  • 2eac01d Backport of Update google.golang.org/grpc to fix CVE-2026-33186 into release/...
  • 3469af2 Backport of fixes socket.io vulnerability into release/1.22.x (#23384)
  • 6c4b285 Backport go and version upgrade in 1.22.x (#23378)
  • c986167 Backport of Migrate to use HDS:Card instead of custom setup into release/1.22...
  • 7beff96 Backport of fix immutable and underscore libraries versions into release/1.22...
  • 8066c55 Backport of remove unused custom-element addon into release/1.22.x (#23363)
  • d5243ec Backport of Rishabh gupta/UI/a11y fix non functional icons into release/1.22....
  • f0bef79 Backport of Update Slack notification channel ID into release/1.22.x (#23328)
  • Additional commits viewable in compare view

Updates github.com/samber/slog-multi from 1.7.1 to 1.8.0

Release notes

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

v1.8.0

Upgrading min Go version from 1.21 to 1.22. We moved from math/rand to math/rand/v2 for a x50 perf improvement on random number generation.

What's Changed

Full Changelog: samber/slog-multi@v1.7.1...v1.8.0

Commits
  • def755d bump v1.8.0
  • 795d6f8 chore(ci): fix go version
  • 45882b8 chore(deps): upgrading samber/slog-common
  • 8caa06f perf/optimizations (#51)
  • d2c3484 test: add benchmarks, adversarial tests, and improved fuzz coverage (#50)
  • a7bfab4 test: add fuzz and stress tests for concurrent safety (#49)
  • 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 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

Bumps the go-modules group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/ada-url/goada](https://github.com/ada-url/goada) | `1.1.0` | `1.2.0` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.43.0` | `0.44.1` |
| [github.com/grafana/pyroscope-go](https://github.com/grafana/pyroscope-go) | `1.2.7` | `1.2.8` |
| [github.com/hashicorp/consul/api](https://github.com/hashicorp/consul) | `1.33.4` | `1.33.7` |
| [github.com/samber/slog-multi](https://github.com/samber/slog-multi) | `1.7.1` | `1.8.0` |


Updates `github.com/ada-url/goada` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/ada-url/goada/releases)
- [Commits](ada-url/goada@v1.1.0...v1.2.0)

Updates `github.com/getsentry/sentry-go` from 0.43.0 to 0.44.1
- [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.43.0...v0.44.1)

Updates `github.com/grafana/pyroscope-go` from 1.2.7 to 1.2.8
- [Release notes](https://github.com/grafana/pyroscope-go/releases)
- [Commits](grafana/pyroscope-go@v1.2.7...v1.2.8)

Updates `github.com/hashicorp/consul/api` from 1.33.4 to 1.33.7
- [Release notes](https://github.com/hashicorp/consul/releases)
- [Changelog](https://github.com/hashicorp/consul/blob/main/CHANGELOG.md)
- [Commits](hashicorp/consul@api/v1.33.4...api/v1.33.7)

Updates `github.com/samber/slog-multi` from 1.7.1 to 1.8.0
- [Release notes](https://github.com/samber/slog-multi/releases)
- [Commits](samber/slog-multi@v1.7.1...v1.8.0)

---
updated-dependencies:
- dependency-name: github.com/ada-url/goada
  dependency-version: 1.2.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.44.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/grafana/pyroscope-go
  dependency-version: 1.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/hashicorp/consul/api
  dependency-version: 1.33.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/samber/slog-multi
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Mar 30, 2026
This is no longer needed due to improvements from goada and infact is no longer present in the upstream API.

See: ada-url/goada#12
@codecov-commenter
Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 56.52%. Comparing base (ce2eb77) to head (193647f).

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #586      +/-   ##
==========================================
+ Coverage   56.42%   56.52%   +0.09%     
==========================================
  Files         133      133              
  Lines        6747     6746       -1     
==========================================
+ Hits         3807     3813       +6     
+ Misses       2561     2554       -7     
  Partials      379      379              
Flag Coverage Δ
e2etests 41.90% <ø> (+0.09%) ⬆️
unittests 29.11% <ø> (-0.02%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@NGTmeaty NGTmeaty merged commit b9fd69f into main Apr 9, 2026
5 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/go-modules-1609c4053c branch April 9, 2026 02:48
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.

2 participants