sgtm-club / sgtm

šŸ‘ An ongoing-song sharing platform for musicians
https://sgtm.club
Other
12 stars 4 forks source link

chore(deps): bump github.com/getsentry/sentry-go from 0.10.0 to 0.18.0 #206

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps github.com/getsentry/sentry-go from 0.10.0 to 0.18.0.

Release notes

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

0.18.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.18.0. This release contains initial support for OpenTelemetry and various other bug fixes and improvements.

Note: This is the last release supporting Go 1.17.

Features

  • Initial support for OpenTelemetry. You can now send all your OpenTelemetry spans to Sentry.

    Install the otel module

    go get github.com/getsentry/sentry-go \
           github.com/getsentry/sentry-go/otel
    

    Configure the Sentry and OpenTelemetry SDKs

    import (
        "go.opentelemetry.io/otel"
        sdktrace "go.opentelemetry.io/otel/sdk/trace"
        "github.com/getsentry/sentry-go"
        "github.com/getsentry/sentry-go/otel"
        // ...
    )
    

    // Initlaize the Sentry SDK sentry.Init(sentry.ClientOptions{ Dsn: "DSN", EnableTracing: true, TracesSampleRate: 1.0, })

    // Set up the Sentry span processor tp := sdktrace.NewTracerProvider( sdktrace.WithSpanProcessor(sentryotel.NewSentrySpanProcessor()), // ... ) otel.SetTracerProvider(tp)

    // Set up the Sentry propagator otel.SetTextMapPropagator(sentryotel.NewSentryPropagator())

    You can read more about using OpenTelemetry with Sentry in our docs.

Bug Fixes

... (truncated)

Changelog

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

0.18.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.18.0. This release contains initial support for OpenTelemetry and various other bug fixes and improvements.

Note: This is the last release supporting Go 1.17.

Features

  • Initial support for OpenTelemetry. You can now send all your OpenTelemetry spans to Sentry.

    Install the otel module

    go get github.com/getsentry/sentry-go \
           github.com/getsentry/sentry-go/otel
    

    Configure the Sentry and OpenTelemetry SDKs

    import (
        "go.opentelemetry.io/otel"
        sdktrace "go.opentelemetry.io/otel/sdk/trace"
        "github.com/getsentry/sentry-go"
        "github.com/getsentry/sentry-go/otel"
        // ...
    )
    

    // Initlaize the Sentry SDK sentry.Init(sentry.ClientOptions{ Dsn: "DSN", EnableTracing: true, TracesSampleRate: 1.0, })

    // Set up the Sentry span processor tp := sdktrace.NewTracerProvider( sdktrace.WithSpanProcessor(sentryotel.NewSentrySpanProcessor()), // ... ) otel.SetTracerProvider(tp)

    // Set up the Sentry propagator otel.SetTextMapPropagator(sentryotel.NewSentryPropagator())

    You can read more about using OpenTelemetry with Sentry in our docs.

... (truncated)

Commits
  • 4b97c8e release: 0.18.0
  • 7972463 fix(release): Bump root module version in submodules (#576)
  • 612c167 fix(build): Tidy otel submodule (#575)
  • 3ec3943 doc: Prepare 0.18.0 (#572)
  • bb6e2bd fix(otel): Use vendored bagggage implementation in propagator (#573)
  • 3964ece fix(baggage): Update baggage parsing and encoding in vendored otel package (#...
  • ef3a838 test: Add Codecov configuration file (#569)
  • de904d6 fix(otel): Require otel 1.11.0 and higher (#567)
  • d0a2aa3 fix: Create a frozen DSC when calling ToBaggage (#566)
  • fb76180 release: Update .craft.yml to be ready for otel submodule release (#565)
  • 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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)
dependabot[bot] commented 1 year ago

Superseded by #213.