Skip to content

build(deps): bump the gomod group with 11 updates#43

Merged
glitchedmob merged 1 commit into
mainfrom
dependabot/go_modules/gomod-fe0fcb56a0
Apr 6, 2026
Merged

build(deps): bump the gomod group with 11 updates#43
glitchedmob merged 1 commit into
mainfrom
dependabot/go_modules/gomod-fe0fcb56a0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 1, 2026

Bumps the gomod group with 11 updates:

Package From To
github.com/aws/aws-cdk-go/awscdk/v2 2.240.0 2.246.0
github.com/aws/aws-lambda-go 1.52.0 1.54.0
github.com/aws/aws-sdk-go-v2 1.41.2 1.41.5
github.com/aws/aws-sdk-go-v2/config 1.32.10 1.32.13
github.com/aws/aws-sdk-go-v2/credentials 1.19.10 1.19.13
github.com/aws/aws-sdk-go-v2/service/ssm 1.68.1 1.68.4
github.com/aws/constructs-go/constructs/v10 10.5.1 10.6.0
github.com/brianvoe/gofakeit/v7 7.14.0 7.14.1
github.com/getsentry/sentry-go 0.43.0 0.44.1
github.com/getsentry/sentry-go/slog 0.43.0 0.44.1
github.com/samber/slog-multi 1.7.1 1.8.0

Updates github.com/aws/aws-cdk-go/awscdk/v2 from 2.240.0 to 2.246.0

Commits
  • 623ad09 chore(release): appstagingsynthesizeralpha@v2.246.0-alpha.0
  • 00c3051 chore(release): appstagingsynthesizeralpha@v2.245.0-alpha.0
  • 51f3938 chore(release): appstagingsynthesizeralpha@v2.244.0-alpha.0
  • bc091fa chore(release): appstagingsynthesizeralpha@v2.243.0-alpha.0
  • 8c5c60f chore(release): appstagingsynthesizeralpha@v2.242.0-alpha.0
  • 7f03a9e chore(release): appstagingsynthesizeralpha@v2.241.0-alpha.0
  • See full diff in compare view

Updates github.com/aws/aws-lambda-go from 1.52.0 to 1.54.0

Release notes

Sourced from github.com/aws/aws-lambda-go's releases.

v1.54.0

What's Changed

New Contributors

Full Changelog: aws/aws-lambda-go@v1.54.0...v1.53.0

v1.53.0

What's Changed

New Contributors

Full Changelog: aws/aws-lambda-go@v1.53.0...v1.52.0

Commits
  • ca19f6f Allow ClientContext.Custom unmarshaling for non-string (JSON) values (#620)
  • 9c32960 Merge pull request #619 from maximrub/inbound-federation
  • ebe38d9 add support for Cognito Inbound federation Lambda trigger
  • 71624ac Fix spelling typos (#616)
  • 33e4dc3 Update workflows for go 1.26 (#617)
  • e1cb461 Merge pull request #612 from yhamano0312/feat/add-s3-event-fields
  • a66ce2d Merge branch 'main' into feat/add-s3-event-fields
  • be52e48 feat: add lifecycle event data structure and corresponding test for S3 events
  • 5516bce feat: add intelligent tiering event data structure and corresponding test for...
  • 1f8f7e8 feat: add restore event data structure and corresponding test for S3 events
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.41.2 to 1.41.5

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.32.10 to 1.32.13

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.19.10 to 1.19.13

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ssm from 1.68.1 to 1.68.4

Commits

Updates github.com/aws/constructs-go/constructs/v10 from 10.5.1 to 10.6.0

Commits

Updates github.com/brianvoe/gofakeit/v7 from 7.14.0 to 7.14.1

Commits
  • ee08eae Merge pull request #392 from shubhamatkal/fix/password-guarantee-character-sets
  • c38fe1a github - workflow less verbose
  • 22b9112 datetime - yearly fix
  • 3552006 fix: guarantee at least one char per enabled set in Password()
  • See full diff in compare view

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/getsentry/sentry-go/slog from 0.43.0 to 0.44.1

Release notes

Sourced from github.com/getsentry/sentry-go/slog'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/slog'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/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 gomod group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/aws/aws-cdk-go/awscdk/v2](https://github.com/aws/aws-cdk-go) | `2.240.0` | `2.246.0` |
| [github.com/aws/aws-lambda-go](https://github.com/aws/aws-lambda-go) | `1.52.0` | `1.54.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.2` | `1.41.5` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.10` | `1.32.13` |
| [github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2) | `1.19.10` | `1.19.13` |
| [github.com/aws/aws-sdk-go-v2/service/ssm](https://github.com/aws/aws-sdk-go-v2) | `1.68.1` | `1.68.4` |
| [github.com/aws/constructs-go/constructs/v10](https://github.com/aws/constructs-go) | `10.5.1` | `10.6.0` |
| [github.com/brianvoe/gofakeit/v7](https://github.com/brianvoe/gofakeit) | `7.14.0` | `7.14.1` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.43.0` | `0.44.1` |
| [github.com/getsentry/sentry-go/slog](https://github.com/getsentry/sentry-go) | `0.43.0` | `0.44.1` |
| [github.com/samber/slog-multi](https://github.com/samber/slog-multi) | `1.7.1` | `1.8.0` |


Updates `github.com/aws/aws-cdk-go/awscdk/v2` from 2.240.0 to 2.246.0
- [Commits](aws/aws-cdk-go@awscdk/v2.240.0...awscdk/v2.246.0)

Updates `github.com/aws/aws-lambda-go` from 1.52.0 to 1.54.0
- [Release notes](https://github.com/aws/aws-lambda-go/releases)
- [Commits](aws/aws-lambda-go@v1.52.0...v1.54.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.41.2 to 1.41.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.41.2...v1.41.5)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.32.10 to 1.32.13
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.32.10...config/v1.32.13)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.19.10 to 1.19.13
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/iam/v1.19.10...credentials/v1.19.13)

Updates `github.com/aws/aws-sdk-go-v2/service/ssm` from 1.68.1 to 1.68.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ecs/v1.68.1...service/ssm/v1.68.4)

Updates `github.com/aws/constructs-go/constructs/v10` from 10.5.1 to 10.6.0
- [Release notes](https://github.com/aws/constructs-go/releases)
- [Commits](aws/constructs-go@constructs/v10.5.1...constructs/v10.6.0)

Updates `github.com/brianvoe/gofakeit/v7` from 7.14.0 to 7.14.1
- [Release notes](https://github.com/brianvoe/gofakeit/releases)
- [Commits](brianvoe/gofakeit@v7.14.0...v7.14.1)

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/getsentry/sentry-go/slog` 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/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/aws/aws-cdk-go/awscdk/v2
  dependency-version: 2.246.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/aws/aws-lambda-go
  dependency-version: 1.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.19.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ssm
  dependency-version: 1.68.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/aws/constructs-go/constructs/v10
  dependency-version: 10.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/brianvoe/gofakeit/v7
  dependency-version: 7.14.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.44.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/getsentry/sentry-go/slog
  dependency-version: 0.44.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/samber/slog-multi
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
...

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 Apr 1, 2026
@glitchedmob glitchedmob merged commit dfd29c9 into main Apr 6, 2026
1 check passed
@dependabot dependabot Bot deleted the dependabot/go_modules/gomod-fe0fcb56a0 branch April 6, 2026 17:15
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