Skip to content

fix(deps): Update module github.com/getsentry/sentry-go to v0.20.0#751

Merged
kodiakhq[bot] merged 2 commits intomainfrom
renovate/github.com-getsentry-sentry-go-0.x
Apr 1, 2023
Merged

fix(deps): Update module github.com/getsentry/sentry-go to v0.20.0#751
kodiakhq[bot] merged 2 commits intomainfrom
renovate/github.com-getsentry-sentry-go-0.x

Conversation

@cq-bot
Copy link
Copy Markdown
Contributor

@cq-bot cq-bot commented Apr 1, 2023

This PR contains the following updates:

Package Type Update Change
github.com/getsentry/sentry-go require minor v0.18.0 -> v0.20.0

Release Notes

getsentry/sentry-go

v0.20.0: 0.20.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.20.0.

Note: this release has some breaking changes, which are listed below.

Breaking Changes
  • Remove the following methods: Scope.SetTransaction(), Scope.Transaction() (#​605)

    Span.Name should be used instead to access the transaction's name.

    For example, the following TracesSampler function should be now written as follows:

    Before:

    TracesSampler: func(ctx sentry.SamplingContext) float64 {
      hub := sentry.GetHubFromContext(ctx.Span.Context())
      if hub.Scope().Transaction() == "GET /health" {
        return 0
      }
      return 1
    },

    After:

    TracesSampler: func(ctx sentry.SamplingContext) float64 {
      if ctx.Span.Name == "GET /health" {
        return 0
      }
      return 1
    },
Features
  • Add Span.SetContext() method (#​599)
    • It is recommended to use it instead of hub.Scope().SetContext when setting or updating context on transactions.
  • Add DebugMeta interface to Event and extend Frame structure with more fields (#​606)
    • More about DebugMeta interface here.
Bug Fixes
  • [otel] Fix missing OpenTelemetry context on some events (#​599, #​605)
  • [otel] Better handling for HTTP span attributes (#​610)
Misc

v0.19.0: 0.19.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.19.0.

Features
  • Add support for exception mechanism metadata (#​564)
    • More about exception mechanisms here.
Bug Fixes
  • [otel] Use the correct "trace" context when sending a Sentry error (#​580)
Misc
  • Drop support for Go 1.17, add support for Go 1.20 (#​563)
    • According to our policy, we're officially supporting the last three minor releases of Go.
  • Switch repository license to MIT (#​583)
    • More about Sentry licensing here.
  • Bump golang.org/x/text minimum required version to 0.3.8 (#​586)

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@cq-bot cq-bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch from d94cc14 to 3141d5f Compare April 1, 2023 02:26
@github-actions github-actions bot added the fix label Apr 1, 2023
@codecov
Copy link
Copy Markdown

codecov bot commented Apr 1, 2023

Codecov Report

Patch and project coverage have no change.

Comparison is base (ee3f17f) 43.21% compared to head (9c0e2d5) 43.21%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #751   +/-   ##
=======================================
  Coverage   43.21%   43.21%           
=======================================
  Files          80       80           
  Lines        7889     7889           
=======================================
  Hits         3409     3409           
  Misses       4013     4013           
  Partials      467      467           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@cq-bot cq-bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch from 3141d5f to d0f75da Compare April 1, 2023 02:49
@github-actions
Copy link
Copy Markdown

github-actions bot commented Apr 1, 2023

⏱️ Benchmark results

  • DefaultConcurrencyDFS-2 resources/s: 11,208
  • DefaultConcurrencyRoundRobin-2 resources/s: 12,080
  • Glob-2 ns/op: 276.2
  • TablesWithChildrenDFS-2 resources/s: 24,168
  • TablesWithChildrenRoundRobin-2 resources/s: 23,918
  • TablesWithRateLimitingDFS-2 resources/s: 28.56
  • TablesWithRateLimitingRoundRobin-2 resources/s: 800.4
  • BufferedScanner-2 ns/op: 11.75
  • LogReader-2 ns/op: 37.62

@kodiakhq kodiakhq bot merged commit 47b2fbc into main Apr 1, 2023
@kodiakhq kodiakhq bot deleted the renovate/github.com-getsentry-sentry-go-0.x branch April 1, 2023 03:11
kodiakhq bot pushed a commit that referenced this pull request Apr 4, 2023
🤖 I have created a release *beep* *boop*
---


## [1.44.2](v1.44.1...v1.44.2) (2023-04-04)


### Bug Fixes

* **deps:** Update golang.org/x/exp digest to 10a5072 ([#745](#745)) ([d52241c](d52241c))
* **deps:** Update google.golang.org/genproto digest to dcfb400 ([#746](#746)) ([b510219](b510219))
* **deps:** Update module github.com/getsentry/sentry-go to v0.20.0 ([#751](#751)) ([47b2fbc](47b2fbc))
* **deps:** Update module github.com/mattn/go-isatty to v0.0.18 ([#749](#749)) ([2d39af0](2d39af0))
* **deps:** Update module github.com/schollz/progressbar/v3 to v3.13.1 ([#750](#750)) ([ee3f17f](ee3f17f))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants