Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update module github.com/getsentry/sentry-go to v0.29.1 #5077

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 20, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/getsentry/sentry-go v0.26.0 -> v0.29.1 age adoption passing confidence

Release Notes

getsentry/sentry-go (github.com/getsentry/sentry-go)

v0.29.1: 0.29.1

Compare Source

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

Bug Fixes
  • Correlate errors to the current trace (#​886)
  • Set the trace context when the transaction finishes (#​888)
Misc
  • Update the sentrynegroni integration to use the latest (v3.1.1) version of Negroni (#​885)

v0.29.0: 0.29.0

Compare Source

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

Breaking Changes
  • Remove the sentrymartini integration (#​861)
  • The WrapResponseWriter has been moved from the sentryhttp package to the internal/httputils package. If you've imported it previosuly, you'll need to copy the implementation in your project. (#​871)
Features
  • Add new convenience methods to continue a trace and propagate tracing headers for error-only use cases. (#​862)

    If you are not using one of our integrations, you can manually continue an incoming trace by using sentry.ContinueTrace() by providing the sentry-trace and baggage header received from a downstream SDK.

    hub := sentry.CurrentHub()
    sentry.ContinueTrace(hub, r.Header.Get(sentry.SentryTraceHeader), r.Header.Get(sentry.SentryBaggageHeader)),

    You can use hub.GetTraceparent() and hub.GetBaggage() to fetch the necessary header values for outgoing HTTP requests.

    hub := sentry.GetHubFromContext(ctx)
    req, _ := http.NewRequest("GET", "http://localhost:3000", nil)
    req.Header.Add(sentry.SentryTraceHeader, hub.GetTraceparent())
    req.Header.Add(sentry.SentryBaggageHeader, hub.GetBaggage())
Bug Fixes
  • Initialize HTTPTransport.limit if nil (#​844)
  • Fix sentry.StartTransaction() returning a transaction with an outdated context on existing transactions (#​854)
  • Treat Proxy-Authorization as a sensitive header (#​859)
  • Add support for the http.Hijacker interface to the sentrynegroni package (#​871)
  • Go version >= 1.23: Use value from http.Request.Pattern for HTTP transaction names when using sentryhttp & sentrynegroni (#​875)
  • Go version >= 1.21: Fix closure functions name grouping (#​877)
Misc

v0.28.1: 0.28.1

Compare Source

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

Bug Fixes
  • Implement http.ResponseWriter to hook into various parts of the response process (#​837)

v0.28.0: 0.28.0

Compare Source

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

Features
  • Add a Fiber performance tracing & error reporting integration (#​795)
  • Add performance tracing to the Echo integration (#​722)
  • Add performance tracing to the FastHTTP integration (#​732)
  • Add performance tracing to the Iris integration (#​809)
  • Add performance tracing to the Negroni integration (#​808)
  • Add FailureIssueThreshold & RecoveryThreshold to MonitorConfig (#​775)
  • Use errors.Unwrap() to create exception groups (#​792)
  • Add support for matching on strings for ClientOptions.IgnoreErrors & ClientOptions.IgnoreTransactions (#​819)
  • Add http.request.method attribute for performance span data (#​786)
  • Accept interface{} for span data values (#​784)
Fixes
  • Fix missing stack trace for parsing error in logrusentry (#​689)

v0.27.0: 0.27.0

Compare Source

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

Breaking Changes
  • Exception.ThreadId is now typed as uint64. It was wrongly typed as string before. (#​770)
Misc
  • Export Event.Attachments (#​771)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

Copy link
Contributor Author

renovate bot commented Sep 20, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
github.com/klauspost/compress v1.17.4 -> v1.17.7

@renovate renovate bot requested a review from a team as a code owner September 20, 2024 12:12
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 2 times, most recently from a678586 to 93c383d Compare September 26, 2024 07:27
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 8 times, most recently from ab159e2 to 897e284 Compare October 8, 2024 11:04
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 7 times, most recently from 568a377 to 4ffe4db Compare October 11, 2024 10:00
@renovate renovate bot changed the title fix(deps): update module github.com/getsentry/sentry-go to v0.29.0 fix(deps): update module github.com/getsentry/sentry-go to v0.29.1 Oct 14, 2024
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 9 times, most recently from f56a45a to bc8c098 Compare October 21, 2024 08:28
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch from bc8c098 to ba6d7cf Compare October 22, 2024 08:35
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 8 times, most recently from df4a625 to 1c50b4a Compare October 25, 2024 09:13
@renovate renovate bot changed the title fix(deps): update module github.com/getsentry/sentry-go to v0.29.1 fix(deps): update module github.com/getsentry/sentry-go to v0.29.1 - autoclosed Oct 29, 2024
@renovate renovate bot closed this Oct 29, 2024
@renovate renovate bot deleted the renovate/github.com-getsentry-sentry-go-0.x branch October 29, 2024 03:45
@renovate renovate bot changed the title fix(deps): update module github.com/getsentry/sentry-go to v0.29.1 - autoclosed fix(deps): update module github.com/getsentry/sentry-go to v0.29.1 Oct 29, 2024
@renovate renovate bot reopened this Oct 29, 2024
@renovate renovate bot restored the renovate/github.com-getsentry-sentry-go-0.x branch October 29, 2024 06:17
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 5 times, most recently from b3e9d5b to 03847c7 Compare November 4, 2024 13:25
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 4 times, most recently from 16b7507 to f3d2ca1 Compare November 12, 2024 11:38
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch from f3d2ca1 to 968e2eb Compare November 18, 2024 08:57
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch from 968e2eb to 5fa9580 Compare November 19, 2024 08:04
Copy link

sonarcloud bot commented Nov 19, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants