Skip to content

chore(deps): bump the go-minor group across 1 directory with 3 updates#4986

Merged
github-actions[bot] merged 2 commits intodevelopfrom
dependabot/go_modules/go-minor-59c53e40ad
Mar 25, 2026
Merged

chore(deps): bump the go-minor group across 1 directory with 3 updates#4986
github-actions[bot] merged 2 commits intodevelopfrom
dependabot/go_modules/go-minor-59c53e40ad

Conversation

@dependabot
Copy link
Contributor

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

Bumps the go-minor group with 3 updates in the / directory: github.com/getsentry/sentry-go, github.com/slack-go/slack and github.com/zalando/go-keyring.

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/slack-go/slack from 0.19.0 to 0.20.0

Release notes

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

v0.20.0

[!WARNING] trigger_id and workflow_id are NOT in any documentation or in any of the official libraries, so exercise caution if you use these.

Added

  • workflow_id and trigger_id in Message — It seems that some types of messages, e.g: bot_message, can carry trigger_id and workflow_id. WorkflowID was added by @​clayallsopp in slack-go/slack#1537
  • RichTextQuote.Border field — optional border toggle (matches the docs now)
  • RichTextPreformatted.Language field — enables syntax highlighting for preformatted blocks

Fixed

  • Remove embedding of RichTextSectionRichTextQuote and RichTextPreformatted are now flattened as they should have always been. This is a breaking change for anyone using these structs directly.

New Contributors

Full Changelog: slack-go/slack@v0.19.0...v0.20.0

Changelog

Sourced from github.com/slack-go/slack's changelog.

[0.20.0] - 2026-03-21

[!WARNING] trigger_id and workflow_id are NOT in any documentation or in any of the official libraries, so exercise caution if you use these.

Added

  • workflow_id and trigger_id in Message — It seems that some types of messages, e.g: bot_message, can carry trigger_id and workflow_id.
  • RichTextQuote.Border field — optional border toggle (matches the docs now)
  • RichTextPreformatted.Language field — enables syntax highlighting for preformatted blocks

Fixed

  • Remove embedding of RichTextSectionRichTextQuote and RichTextPreformatted are now flattened as they should have always been. This is a breaking change for anyone using these structs directly.
Commits
  • 449e341 chore: v0.20.0
  • 442f330 chore: update CHANGELOG
  • 0b4eb25 feat!: flatten RichTextPreformatted to remove RichTextSection embedding
  • 46d7b49 feat!: add Border to RichTextQuote and Language to RichTextPreformatted
  • c93b916 Revise warning for trigger_id and workflow_id
  • 561f12f feat: add TriggerID to Message
  • 8e62a1a Add WorkflowID to message (#1537)
  • 891d7e5 chore: add golangci-lint to mise
  • 8917d11 docs: update README with links and remove old warning
  • See full diff in compare view

Updates github.com/zalando/go-keyring from 0.2.6 to 0.2.8

Release notes

Sourced from github.com/zalando/go-keyring's releases.

v0.2.8

What's Changed

Full Changelog: zalando/go-keyring@v0.2.7...v0.2.8

v0.2.7

What's Changed

New Contributors

Full Changelog: zalando/go-keyring@v0.2.6...v0.2.7

Commits
  • a8cdfe3 Merge pull request #141 from zalando/gh/hardening-workflows
  • d4162d9 gh: hardening workflows
  • e0dd98f Merge pull request #140 from zalando/dependabot/go_modules/all-go-mod-patch-a...
  • 98f9091 Merge pull request #139 from zalando/dependabot/github_actions/actions/setup-...
  • 40806c2 Merge pull request #138 from zalando/dependabot/github_actions/actions/checko...
  • 1d4d07c Bump the all-go-mod-patch-and-minor group with 2 updates
  • e6c0d8a Bump actions/setup-go from 5 to 6
  • 0151d30 Bump actions/checkout from 4 to 6
  • d6ac580 Merge pull request #137 from zalando/security/gh-actions
  • 036041f security: GH Actions should be able read only
  • 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 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-minor group with 3 updates in the / directory: [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go), [github.com/slack-go/slack](https://github.com/slack-go/slack) and [github.com/zalando/go-keyring](https://github.com/zalando/go-keyring).


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/slack-go/slack` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/slack-go/slack/releases)
- [Changelog](https://github.com/slack-go/slack/blob/master/CHANGELOG.md)
- [Commits](slack-go/slack@v0.19.0...v0.20.0)

Updates `github.com/zalando/go-keyring` from 0.2.6 to 0.2.8
- [Release notes](https://github.com/zalando/go-keyring/releases)
- [Commits](zalando/go-keyring@v0.2.6...v0.2.8)

---
updated-dependencies:
- 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-minor
- dependency-name: github.com/slack-go/slack
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor
- dependency-name: github.com/zalando/go-keyring
  dependency-version: 0.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor
...

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 25, 2026
@dependabot dependabot bot requested a review from a team as a code owner March 25, 2026 00:09
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 25, 2026
@github-actions github-actions bot enabled auto-merge (squash) March 25, 2026 00:10
@coveralls
Copy link

coveralls commented Mar 25, 2026

Pull Request Test Coverage Report for Build 23542909342

Warning: This coverage report may be inaccurate.

This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • 5 unchanged lines in 1 file lost coverage.
  • Overall coverage decreased (-0.02%) to 63.16%

Files with Coverage Reduction New Missed Lines %
internal/utils/git.go 5 57.14%
Totals Coverage Status
Change from base Build 23542893825: -0.02%
Covered Lines: 9191
Relevant Lines: 14552

💛 - Coveralls

@github-actions github-actions bot merged commit e8ef41e into develop Mar 25, 2026
15 checks passed
@github-actions github-actions bot deleted the dependabot/go_modules/go-minor-59c53e40ad branch March 25, 2026 13: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.

2 participants