Skip to content

build(deps): bump github.com/getsentry/sentry-go from 0.44.1 to 0.45.0#779

Merged
BeryJu merged 1 commit intomainfrom
dependabot/go_modules/github.com/getsentry/sentry-go-0.45.0
Apr 10, 2026
Merged

build(deps): bump github.com/getsentry/sentry-go from 0.44.1 to 0.45.0#779
BeryJu merged 1 commit intomainfrom
dependabot/go_modules/github.com/getsentry/sentry-go-0.45.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 10, 2026

Bumps github.com/getsentry/sentry-go from 0.44.1 to 0.45.0.

Release notes

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

0.45.0

Breaking Changes 🛠

New Features ✨

  • Add OTLP trace exporter via new otel/otlp sub-module by @​giortzisg in #1229
    • sentryotlp.NewTraceExporter sends OTel spans directly to Sentry's OTLP endpoint.
    • sentryotel.NewOtelIntegration links Sentry errors, logs, and metrics to the active OTel trace. Works with both direct-to-Sentry and collector-based setups.
    • NewSentrySpanProcessor, NewSentryPropagator, and SentrySpanMap are deprecated and will be removed in 0.47.0. To Migrate use sentryotlp.NewTraceExporter instead:
    // Before
    sentry.Init(sentry.ClientOptions{Dsn: dsn, EnableTracing: true, TracesSampleRate: 1.0})
    tp := sdktrace.NewTracerProvider(
    sdktrace.WithSpanProcessor(sentryotel.NewSentrySpanProcessor()),
    )
    otel.SetTextMapPropagator(sentryotel.NewSentryPropagator())
    otel.SetTracerProvider(tp)
    // After:
    sentry.Init(sentry.ClientOptions{
    Dsn: dsn, EnableTracing: true, TracesSampleRate: 1.0,
    Integrations: func(i []sentry.Integration) []sentry.Integration {
    return append(i, sentryotel.NewOtelIntegration())
    },
    })
    exporter, _ := sentryotlp.NewTraceExporter(ctx, dsn)
    tp := sdktrace.NewTracerProvider(sdktrace.WithBatcher(exporter))
    otel.SetTracerProvider(tp)

  • Add IsSensitiveHeader helper to easily distinguish which headers to scrub for PII. by @​giortzisg in #1239

Bug Fixes 🐛

Internal Changes 🔧

Deps

... (truncated)

Changelog

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

0.45.0

Breaking Changes 🛠

New Features ✨

  • Add OTLP trace exporter via new otel/otlp sub-module by @​giortzisg in #1229
    • sentryotlp.NewTraceExporter sends OTel spans directly to Sentry's OTLP endpoint.
    • sentryotel.NewOtelIntegration links Sentry errors, logs, and metrics to the active OTel trace. Works with both direct-to-Sentry and collector-based setups.
    • NewSentrySpanProcessor, NewSentryPropagator, and SentrySpanMap are deprecated and will be removed in 0.47.0. To Migrate use sentryotlp.NewTraceExporter instead:
    // Before
    sentry.Init(sentry.ClientOptions{Dsn: dsn, EnableTracing: true, TracesSampleRate: 1.0})
    tp := sdktrace.NewTracerProvider(
    sdktrace.WithSpanProcessor(sentryotel.NewSentrySpanProcessor()),
    )
    otel.SetTextMapPropagator(sentryotel.NewSentryPropagator())
    otel.SetTracerProvider(tp)
    // After:
    sentry.Init(sentry.ClientOptions{
    Dsn: dsn, EnableTracing: true, TracesSampleRate: 1.0,
    Integrations: func(i []sentry.Integration) []sentry.Integration {
    return append(i, sentryotel.NewOtelIntegration())
    },
    })
    exporter, _ := sentryotlp.NewTraceExporter(ctx, dsn)
    tp := sdktrace.NewTracerProvider(sdktrace.WithBatcher(exporter))
    otel.SetTracerProvider(tp)

  • Add IsSensitiveHeader helper to easily distinguish which headers to scrub for PII. by @​giortzisg in #1239

Bug Fixes 🐛

Internal Changes 🔧

Deps

... (truncated)

Commits
  • 0f536b1 release: 0.45.0
  • c8ccbf3 feat: add OTLP integration support (#1229)
  • e9ba5cb fix(fiber): Use UserContext for transaction to enable OTel trace linking (#1252)
  • 18546ff test: add serialization panic reproduction (#1249)
  • e507be6 fix: race when getting envelope identifier (#1250)
  • 2cec51a feat!: add support for Echo v5 (#1183)
  • 6ba0638 build(otel): Bump OpenTelemetry SDK to 1.40.0 (#1243)
  • 9c4eb66 build(deps): bump changelog-preview.yml from 2.24.1 to 2.25.2 (#1247)
  • b0a3a30 build(deps): bump getsentry/craft from 2.24.1 to 2.25.2 (#1248)
  • 2f54259 build(deps): bump codecov/codecov-action from 5.5.2 to 6.0.0 (#1245)
  • 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)

Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) from 0.44.1 to 0.45.0.
- [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.44.1...v0.45.0)

---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.45.0
  dependency-type: direct:production
  update-type: version-update:semver-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 Apr 10, 2026
@codecov
Copy link
Copy Markdown

codecov bot commented Apr 10, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 38.37%. Comparing base (8705130) to head (dde141f).
⚠️ Report is 5 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #779      +/-   ##
==========================================
+ Coverage   38.06%   38.37%   +0.30%     
==========================================
  Files         205      205              
  Lines        6953     6953              
==========================================
+ Hits         2647     2668      +21     
+ Misses       3976     3956      -20     
+ Partials      330      329       -1     
Flag Coverage Δ
go-e2e 42.51% <ø> (+0.49%) ⬆️
go-integration 15.70% <ø> (ø)
go-macos-15 13.93% <ø> (ø)
go-ubuntu-24.04 13.43% <ø> (ø)
go-ubuntu-24.04-arm 12.93% <ø> (ø)
go-windows-2025 13.16% <ø> (ø)

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.

@codecov
Copy link
Copy Markdown

codecov bot commented Apr 10, 2026

Bundle Report

Bundle size has no change ✅

@BeryJu BeryJu merged commit 725a667 into main Apr 10, 2026
33 of 35 checks passed
@BeryJu BeryJu deleted the dependabot/go_modules/github.com/getsentry/sentry-go-0.45.0 branch April 10, 2026 11:42
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