Skip to content

chore: bump github.com/getsentry/sentry-go/echo from 0.44.1 to 0.45.0#854

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/github.com/getsentry/sentry-go/echo-0.45.0
Closed

chore: bump github.com/getsentry/sentry-go/echo from 0.44.1 to 0.45.0#854
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/github.com/getsentry/sentry-go/echo-0.45.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Release notes

Sourced from github.com/getsentry/sentry-go/echo'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/echo'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 dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 9, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 9, 2026 19:03
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 9, 2026
@dependabot dependabot Bot changed the title chore: bump github.com/getsentry/sentry-go/echo from 0.41.0 to 0.45.0 chore: bump github.com/getsentry/sentry-go/echo from 0.44.1 to 0.45.0 Apr 10, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/github.com/getsentry/sentry-go/echo-0.45.0 branch 2 times, most recently from 929b085 to afa25a6 Compare April 13, 2026 11:25
Bumps [github.com/getsentry/sentry-go/echo](https://github.com/getsentry/sentry-go) from 0.41.0 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.41.0...v0.45.0)

---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go/echo
  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 force-pushed the dependabot/go_modules/github.com/getsentry/sentry-go/echo-0.45.0 branch from afa25a6 to e2a9f17 Compare April 13, 2026 12:35
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 16, 2026

Superseded by #857.

@dependabot dependabot Bot closed this Apr 16, 2026
@dependabot dependabot Bot deleted the dependabot/go_modules/github.com/getsentry/sentry-go/echo-0.45.0 branch April 16, 2026 19:03
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.

0 participants