[PR #116] fix(deps): bump github.com/getsentry/sentry-go from 0.42.0 to 0.43.0 in /backend #116

Open
opened 2026-03-03 16:34:14 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/NdoleStudio/gist-cleaner/pull/116
Author: @dependabot[bot]
Created: 3/1/2026
Status: 🔄 Open

Base: masterHead: dependabot/go_modules/backend/github.com/getsentry/sentry-go-0.43.0


📝 Commits (1)

  • be7169f fix(deps): bump github.com/getsentry/sentry-go in /backend

📊 Changes

2 files changed (+3 additions, -3 deletions)

View changed files

📝 backend/go.mod (+1 -1)
📝 backend/go.sum (+2 -2)

📄 Description

Bumps github.com/getsentry/sentry-go from 0.42.0 to 0.43.0.

Release notes

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

0.43.0

Breaking Changes 🛠

  • Add support for go 1.26 by @​giortzisg in #1193
    • bump minimum supported go version to 1.24
  • change type signature of attributes for Logs and Metrics. by @​giortzisg in #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 @​giortzisg in #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

Bug Fixes 🐛

Internal Changes 🔧

Deps

Other

Changelog

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

0.43.0

Breaking Changes 🛠

  • Add support for go 1.26 by @​giortzisg in #1193
    • bump minimum supported go version to 1.24
  • change type signature of attributes for Logs and Metrics. by @​giortzisg in #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 @​giortzisg in #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

Bug Fixes 🐛

Internal Changes 🔧

Deps

Other

Commits
  • 8dbf970 release: 0.43.0
  • 44caaae ref!: modify Attributes type for Logs and Metrics (#1205)
  • 71a7230 fix: improve otel span map cleanup performance (#1200)
  • 0fe1ae5 feat: add zap logging integration (#1184)
  • e1e8ceb feat!: Send uint64 overflowing attributes as numbers for slog and logrus (#1198)
  • 0faba36 chore: add omitzero and remove custom serialization (#1197)
  • 648d2d2 build(deps): bump golang.org/x/crypt to 0.48.0 (#1196)
  • 18c50b9 fix(deps): use go1.24.0 (#1195)
  • 2d5637b build(deps)!: add support for go1.26 (#1193)
  • f057a8d fix: ensure correct signal delivery on multi-client setups (#1190)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/NdoleStudio/gist-cleaner/pull/116 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/1/2026 **Status:** 🔄 Open **Base:** `master` ← **Head:** `dependabot/go_modules/backend/github.com/getsentry/sentry-go-0.43.0` --- ### 📝 Commits (1) - [`be7169f`](https://github.com/NdoleStudio/gist-cleaner/commit/be7169fe3346b57d7d9cbe93fb64b80cf5937855) fix(deps): bump github.com/getsentry/sentry-go in /backend ### 📊 Changes **2 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `backend/go.mod` (+1 -1) 📝 `backend/go.sum` (+2 -2) </details> ### 📄 Description Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) from 0.42.0 to 0.43.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-go/releases">github.com/getsentry/sentry-go's releases</a>.</em></p> <blockquote> <h2>0.43.0</h2> <h3>Breaking Changes 🛠</h3> <ul> <li>Add support for go 1.26 by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1193">#1193</a> <ul> <li>bump minimum supported go version to 1.24</li> </ul> </li> <li>change type signature of attributes for Logs and Metrics. by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1205">#1205</a> <ul> <li>users are not supposed to modify Attributes directly on the Log/Metric itself, but this is still is a breaking change on the type.</li> </ul> </li> <li>Send uint64 overflowing attributes as numbers. by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1198">#1198</a> <ul> <li>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.</li> <li>It is expected that overflowing unsigned integers would now get dropped, instead of converted to strings.</li> </ul> </li> </ul> <h3>New Features ✨</h3> <ul> <li>Add zap logging integration by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1184">#1184</a></li> <li>Log specific message for RequestEntityTooLarge by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1185">#1185</a></li> </ul> <h3>Bug Fixes 🐛</h3> <ul> <li>Improve otel span map cleanup performance by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1200">#1200</a></li> <li>Ensure correct signal delivery on multi-client setups by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1190">#1190</a></li> </ul> <h3>Internal Changes 🔧</h3> <h4>Deps</h4> <ul> <li>Bump golang.org/x/crypto to 0.48.0 by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1196">#1196</a></li> <li>Use go1.24.0 by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1195">#1195</a></li> <li>Bump github.com/gofiber/fiber/v2 from 2.52.9 to 2.52.11 in /fiber by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1191">#1191</a></li> <li>Bump getsentry/craft from 2.19.0 to 2.20.1 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1187">#1187</a></li> </ul> <h4>Other</h4> <ul> <li>Add omitzero and remove custom serialization by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1197">#1197</a></li> <li>Rename Telemetry Processor components by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1186">#1186</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md">github.com/getsentry/sentry-go's changelog</a>.</em></p> <blockquote> <h2>0.43.0</h2> <h3>Breaking Changes 🛠</h3> <ul> <li>Add support for go 1.26 by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1193">#1193</a> <ul> <li>bump minimum supported go version to 1.24</li> </ul> </li> <li>change type signature of attributes for Logs and Metrics. by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1205">#1205</a> <ul> <li>users are not supposed to modify Attributes directly on the Log/Metric itself, but this is still is a breaking change on the type.</li> </ul> </li> <li>Send uint64 overflowing attributes as numbers. by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1198">#1198</a> <ul> <li>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.</li> <li>It is expected that overflowing unsigned integers would now get dropped, instead of converted to strings.</li> </ul> </li> </ul> <h3>New Features ✨</h3> <ul> <li>Add zap logging integration by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1184">#1184</a></li> <li>Log specific message for RequestEntityTooLarge by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1185">#1185</a></li> </ul> <h3>Bug Fixes 🐛</h3> <ul> <li>Improve otel span map cleanup performance by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1200">#1200</a></li> <li>Ensure correct signal delivery on multi-client setups by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1190">#1190</a></li> </ul> <h3>Internal Changes 🔧</h3> <h4>Deps</h4> <ul> <li>Bump golang.org/x/crypto to 0.48.0 by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1196">#1196</a></li> <li>Use go1.24.0 by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1195">#1195</a></li> <li>Bump github.com/gofiber/fiber/v2 from 2.52.9 to 2.52.11 in /fiber by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1191">#1191</a></li> <li>Bump getsentry/craft from 2.19.0 to 2.20.1 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1187">#1187</a></li> </ul> <h4>Other</h4> <ul> <li>Add omitzero and remove custom serialization by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1197">#1197</a></li> <li>Rename Telemetry Processor components by <a href="https://github.com/giortzisg"><code>@​giortzisg</code></a> in <a href="https://redirect.github.com/getsentry/sentry-go/pull/1186">#1186</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/getsentry/sentry-go/commit/8dbf970375c9e4f6d16026bfd47801400938ddaa"><code>8dbf970</code></a> release: 0.43.0</li> <li><a href="https://github.com/getsentry/sentry-go/commit/44caaaebddd7fb0941d4e5ec7138959eb31fbca4"><code>44caaae</code></a> ref!: modify Attributes type for Logs and Metrics (<a href="https://redirect.github.com/getsentry/sentry-go/issues/1205">#1205</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/71a723095f8f006fe8536f37f917fbf4a969186b"><code>71a7230</code></a> fix: improve otel span map cleanup performance (<a href="https://redirect.github.com/getsentry/sentry-go/issues/1200">#1200</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/0fe1ae59c07fca8ab35ad7e030b0243514eb0485"><code>0fe1ae5</code></a> feat: add zap logging integration (<a href="https://redirect.github.com/getsentry/sentry-go/issues/1184">#1184</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/e1e8ceb07d7ae747e384a6b12131a5d2cb033527"><code>e1e8ceb</code></a> feat!: Send uint64 overflowing attributes as numbers for slog and logrus (<a href="https://redirect.github.com/getsentry/sentry-go/issues/1198">#1198</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/0faba363a348eceddedb918de72f6805f39ee68a"><code>0faba36</code></a> chore: add omitzero and remove custom serialization (<a href="https://redirect.github.com/getsentry/sentry-go/issues/1197">#1197</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/648d2d28e7f2c1f1ceafc5cad578c76660a87f00"><code>648d2d2</code></a> build(deps): bump golang.org/x/crypt to 0.48.0 (<a href="https://redirect.github.com/getsentry/sentry-go/issues/1196">#1196</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/18c50b96a3d5af19267cd2796182c2bdb2684172"><code>18c50b9</code></a> fix(deps): use go1.24.0 (<a href="https://redirect.github.com/getsentry/sentry-go/issues/1195">#1195</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/2d5637b9baf119468a58e03d0fc450af6e1c03fc"><code>2d5637b</code></a> build(deps)!: add support for go1.26 (<a href="https://redirect.github.com/getsentry/sentry-go/issues/1193">#1193</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/f057a8dab7d5897213c810007bc19e78a61e2dc3"><code>f057a8d</code></a> fix: ensure correct signal delivery on multi-client setups (<a href="https://redirect.github.com/getsentry/sentry-go/issues/1190">#1190</a>)</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-go/compare/v0.42.0...v0.43.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/getsentry/sentry-go&package-manager=go_modules&previous-version=0.42.0&new-version=0.43.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/gist-cleaner#116
No description provided.