Skip to content

Commit ab459ad

Browse files
fix(deps): Update module github.com/getsentry/sentry-go to v0.44.1 (#2471)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/getsentry/sentry-go](https://redirect.github.com/getsentry/sentry-go) | `v0.42.0` → `v0.44.1` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgetsentry%2fsentry-go/v0.44.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgetsentry%2fsentry-go/v0.42.0/v0.44.1?slim=true) | --- ### Release Notes <details> <summary>getsentry/sentry-go (github.com/getsentry/sentry-go)</summary> ### [`v0.44.1`](https://redirect.github.com/getsentry/sentry-go/releases/tag/v0.44.1): 0.44.1 [Compare Source](https://redirect.github.com/getsentry/sentry-go/compare/v0.44.0...v0.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 [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1224](https://redirect.github.com/getsentry/sentry-go/pull/1224) - Deprecate `Scope.SetExtra`, `Scope.SetExtras`, and `Scope.RemoveExtra` in favor of `Scope.SetAttributes` and `Scope.RemoveAttribute` by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1224](https://redirect.github.com/getsentry/sentry-go/pull/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: ```go scope.SetExtra("key.string", "str") scope.SetExtra("key.int", 42) ``` - After (for error events) — use tags and contexts: ```go scope.SetTag("key.string", "str") scope.SetContext("my_data", sentry.Context{"key.int": 42}) ``` - After (for logs and metrics) — use attributes: ```go scope.SetAttributes( attribute.String("key.string", "str"), attribute.Int("key.int", 42), ) ``` - Add support for homogenous arrays by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1203](https://redirect.github.com/getsentry/sentry-go/pull/1203) - Add support for client reports by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1192](https://redirect.github.com/getsentry/sentry-go/pull/1192) - Add org id propagation in sentry\_baggage by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1210](https://redirect.github.com/getsentry/sentry-go/pull/1210) - Add OrgID and StrictTraceContinuation client options. by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1210](https://redirect.github.com/getsentry/sentry-go/pull/1210) - Add the option to set attributes on the scope by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1208](https://redirect.github.com/getsentry/sentry-go/pull/1208) ##### Bug Fixes 🐛 - (serialization) Pre-serialize mutable event fields to prevent race panics by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1214](https://redirect.github.com/getsentry/sentry-go/pull/1214) - Use HEROKU\_BUILD\_COMMIT with HEROKU\_SLUG\_COMMIT as fallback by [@&#8203;ericapisani](https://redirect.github.com/ericapisani) in [#&#8203;1220](https://redirect.github.com/getsentry/sentry-go/pull/1220) ##### Internal Changes 🔧 ##### Ai - Add AGENTS.md and testing guidelines by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1216](https://redirect.github.com/getsentry/sentry-go/pull/1216) - Add dotagents configuration by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1211](https://redirect.github.com/getsentry/sentry-go/pull/1211) ##### Deps - Bump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [#&#8203;1231](https://redirect.github.com/getsentry/sentry-go/pull/1231) - Bump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [#&#8203;1209](https://redirect.github.com/getsentry/sentry-go/pull/1209) ##### Other - Pin GitHub Actions to full-length commit SHAs by [@&#8203;joshuarli](https://redirect.github.com/joshuarli) in [#&#8203;1230](https://redirect.github.com/getsentry/sentry-go/pull/1230) - Bump getsentry/craft to 2.24.1 by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1225](https://redirect.github.com/getsentry/sentry-go/pull/1225) - Handle independent go module versions for integrations by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1217](https://redirect.github.com/getsentry/sentry-go/pull/1217) ### [`v0.44.0`](https://redirect.github.com/getsentry/sentry-go/releases/tag/v0.44.0): 0.44.0 [Compare Source](https://redirect.github.com/getsentry/sentry-go/compare/v0.43.0...v0.44.0) > \[!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 [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1224](https://redirect.github.com/getsentry/sentry-go/pull/1224) - Deprecate `Scope.SetExtra`, `Scope.SetExtras`, and `Scope.RemoveExtra` in favor of `Scope.SetAttributes` and `Scope.RemoveAttribute` by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1224](https://redirect.github.com/getsentry/sentry-go/pull/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: ```go scope.SetExtra("key.string", "str") scope.SetExtra("key.int", 42) ``` - After (for error events) — use tags and contexts: ```go scope.SetTag("key.string", "str") scope.SetContext("my_data", sentry.Context{"key.int": 42}) ``` - After (for logs and metrics) — use attributes: ```go scope.SetAttributes( attribute.String("key.string", "str"), attribute.Int("key.int", 42), ) ``` - Add support for homogenous arrays by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1203](https://redirect.github.com/getsentry/sentry-go/pull/1203) - Add support for client reports by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1192](https://redirect.github.com/getsentry/sentry-go/pull/1192) - Add org id propagation in sentry\_baggage by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1210](https://redirect.github.com/getsentry/sentry-go/pull/1210) - Add OrgID and StrictTraceContinuation client options. by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1210](https://redirect.github.com/getsentry/sentry-go/pull/1210) - Add the option to set attributes on the scope by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1208](https://redirect.github.com/getsentry/sentry-go/pull/1208) ##### Bug Fixes 🐛 - (serialization) Pre-serialize mutable event fields to prevent race panics by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1214](https://redirect.github.com/getsentry/sentry-go/pull/1214) - Use HEROKU\_BUILD\_COMMIT with HEROKU\_SLUG\_COMMIT as fallback by [@&#8203;ericapisani](https://redirect.github.com/ericapisani) in [#&#8203;1220](https://redirect.github.com/getsentry/sentry-go/pull/1220) ##### Internal Changes 🔧 ##### Ai - Add AGENTS.md and testing guidelines by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1216](https://redirect.github.com/getsentry/sentry-go/pull/1216) - Add dotagents configuration by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1211](https://redirect.github.com/getsentry/sentry-go/pull/1211) ##### Deps - Bump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [#&#8203;1231](https://redirect.github.com/getsentry/sentry-go/pull/1231) - Bump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [#&#8203;1209](https://redirect.github.com/getsentry/sentry-go/pull/1209) ##### Other - Pin GitHub Actions to full-length commit SHAs by [@&#8203;joshuarli](https://redirect.github.com/joshuarli) in [#&#8203;1230](https://redirect.github.com/getsentry/sentry-go/pull/1230) - Bump getsentry/craft to 2.24.1 by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1225](https://redirect.github.com/getsentry/sentry-go/pull/1225) - Handle independent go module versions for integrations by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1217](https://redirect.github.com/getsentry/sentry-go/pull/1217) ### [`v0.43.0`](https://redirect.github.com/getsentry/sentry-go/releases/tag/v0.43.0): 0.43.0 [Compare Source](https://redirect.github.com/getsentry/sentry-go/compare/v0.42.0...v0.43.0) ##### Breaking Changes 🛠 - Add support for go 1.26 by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1193](https://redirect.github.com/getsentry/sentry-go/pull/1193) - bump minimum supported go version to 1.24 - change type signature of attributes for Logs and Metrics. by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1205](https://redirect.github.com/getsentry/sentry-go/pull/1205) - users are not supposed to modify Attributes directly on the Log/Metric itself, but this is still is a breaking change on the type. - Send uint64 overflowing attributes as numbers. by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1198](https://redirect.github.com/getsentry/sentry-go/pull/1198) - The SDK was converting overflowing uint64 attributes to strings for slog and logrus integrations. To eliminate double types for these attributes, the SDK now sends the overflowing attribute as is, and lets the server handle the overflow appropriately. - It is expected that overflowing unsigned integers would now get dropped, instead of converted to strings. ##### New Features ✨ - Add zap logging integration by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1184](https://redirect.github.com/getsentry/sentry-go/pull/1184) - Log specific message for RequestEntityTooLarge by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1185](https://redirect.github.com/getsentry/sentry-go/pull/1185) ##### Bug Fixes 🐛 - Improve otel span map cleanup performance by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1200](https://redirect.github.com/getsentry/sentry-go/pull/1200) - Ensure correct signal delivery on multi-client setups by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1190](https://redirect.github.com/getsentry/sentry-go/pull/1190) ##### Internal Changes 🔧 ##### Deps - Bump golang.org/x/crypto to 0.48.0 by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1196](https://redirect.github.com/getsentry/sentry-go/pull/1196) - Use go1.24.0 by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1195](https://redirect.github.com/getsentry/sentry-go/pull/1195) - Bump github.com/gofiber/fiber/v2 from 2.52.9 to 2.52.11 in /fiber by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [#&#8203;1191](https://redirect.github.com/getsentry/sentry-go/pull/1191) - Bump getsentry/craft from 2.19.0 to 2.20.1 by [@&#8203;dependabot](https://redirect.github.com/dependabot) in [#&#8203;1187](https://redirect.github.com/getsentry/sentry-go/pull/1187) ##### Other - Add omitzero and remove custom serialization by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1197](https://redirect.github.com/getsentry/sentry-go/pull/1197) - Rename Telemetry Processor components by [@&#8203;giortzisg](https://redirect.github.com/giortzisg) in [#&#8203;1186](https://redirect.github.com/getsentry/sentry-go/pull/1186) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My42My4wIiwidXBkYXRlZEluVmVyIjoiNDMuNjMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
1 parent c721da4 commit ab459ad

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/simple_plugin/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ require (
3737
github.com/cloudquery/plugin-pb-go v1.27.13 // indirect
3838
github.com/cloudquery/plugin-sdk/v2 v2.7.0 // indirect
3939
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
40-
github.com/getsentry/sentry-go v0.42.0 // indirect
40+
github.com/getsentry/sentry-go v0.44.1 // indirect
4141
github.com/ghodss/yaml v1.0.0 // indirect
4242
github.com/go-logr/logr v1.4.3 // indirect
4343
github.com/go-logr/stdr v1.2.2 // indirect

examples/simple_plugin/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ github.com/dlclark/regexp2 v1.11.0 h1:G/nrcoOa7ZXlpoa/91N3X7mM3r8eIlMBBJZvsz/mxK
7171
github.com/dlclark/regexp2 v1.11.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
7272
github.com/fatih/color v1.16.0 h1:zmkK9Ngbjj+K0yRhTVONQh1p/HknKYSlNT+vZCzyokM=
7373
github.com/fatih/color v1.16.0/go.mod h1:fL2Sau1YI5c0pdGEVCbKQbLXB6edEj1ZgiY4NijnWvE=
74-
github.com/getsentry/sentry-go v0.42.0 h1:eeFMACuZTbUQf90RE8dE4tXeSe4CZyfvR1MBL7RLEt8=
75-
github.com/getsentry/sentry-go v0.42.0/go.mod h1:eRXCoh3uvmjQLY6qu63BjUZnaBu5L5WhMV1RwYO8W5s=
74+
github.com/getsentry/sentry-go v0.44.1 h1:/cPtrA5qB7uMRrhgSn9TYtcEF36auGP3Y6+ThvD/yaI=
75+
github.com/getsentry/sentry-go v0.44.1/go.mod h1:XDotiNZbgf5U8bPDUAfvcFmOnMQQceESxyKaObSssW0=
7676
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=
7777
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
7878
github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/cloudquery/codegen v0.4.0
1414
github.com/cloudquery/plugin-pb-go v1.27.13
1515
github.com/cloudquery/plugin-sdk/v2 v2.7.0
16-
github.com/getsentry/sentry-go v0.42.0
16+
github.com/getsentry/sentry-go v0.44.1
1717
github.com/goccy/go-json v0.10.6
1818
github.com/golang/mock v1.6.0
1919
github.com/google/go-cmp v0.7.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ github.com/dlclark/regexp2 v1.11.0 h1:G/nrcoOa7ZXlpoa/91N3X7mM3r8eIlMBBJZvsz/mxK
7474
github.com/dlclark/regexp2 v1.11.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
7575
github.com/fatih/color v1.16.0 h1:zmkK9Ngbjj+K0yRhTVONQh1p/HknKYSlNT+vZCzyokM=
7676
github.com/fatih/color v1.16.0/go.mod h1:fL2Sau1YI5c0pdGEVCbKQbLXB6edEj1ZgiY4NijnWvE=
77-
github.com/getsentry/sentry-go v0.42.0 h1:eeFMACuZTbUQf90RE8dE4tXeSe4CZyfvR1MBL7RLEt8=
78-
github.com/getsentry/sentry-go v0.42.0/go.mod h1:eRXCoh3uvmjQLY6qu63BjUZnaBu5L5WhMV1RwYO8W5s=
77+
github.com/getsentry/sentry-go v0.44.1 h1:/cPtrA5qB7uMRrhgSn9TYtcEF36auGP3Y6+ThvD/yaI=
78+
github.com/getsentry/sentry-go v0.44.1/go.mod h1:XDotiNZbgf5U8bPDUAfvcFmOnMQQceESxyKaObSssW0=
7979
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=
8080
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
8181
github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA=

0 commit comments

Comments
 (0)