-
Notifications
You must be signed in to change notification settings - Fork 39
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
Update module github.com/getsentry/sentry-go to v0.31.1 #52
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
changed the title
Update module github.com/getsentry/sentry-go to v0.29.1
Update module github.com/getsentry/sentry-go to v0.29.1 - autoclosed
Oct 29, 2024
renovate
bot
deleted the
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
branch
October 29, 2024 03:31
renovate
bot
changed the title
Update module github.com/getsentry/sentry-go to v0.29.1 - autoclosed
Update module github.com/getsentry/sentry-go to v0.29.1
Oct 29, 2024
renovate
bot
restored the
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
branch
October 29, 2024 07:18
renovate
bot
force-pushed
the
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
branch
from
October 29, 2024 07:19
f8d1e67
to
ad72cd7
Compare
renovate
bot
changed the title
Update module github.com/getsentry/sentry-go to v0.29.1
Update module github.com/getsentry/sentry-go to v0.29.1 - autoclosed
Nov 12, 2024
renovate
bot
deleted the
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
branch
November 12, 2024 22:11
renovate
bot
changed the title
Update module github.com/getsentry/sentry-go to v0.29.1 - autoclosed
Update module github.com/getsentry/sentry-go to v0.29.1
Nov 13, 2024
renovate
bot
force-pushed
the
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
branch
from
November 13, 2024 00:01
66e2021
to
ad72cd7
Compare
renovate
bot
changed the title
Update module github.com/getsentry/sentry-go to v0.29.1
Update module github.com/getsentry/sentry-go to v0.30.0
Dec 3, 2024
renovate
bot
force-pushed
the
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
branch
from
December 3, 2024 17:56
ad72cd7
to
4220392
Compare
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
renovate
bot
force-pushed
the
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
branch
from
December 22, 2024 19:09
4220392
to
c6df3ec
Compare
renovate
bot
changed the title
Update module github.com/getsentry/sentry-go to v0.30.0
Update module github.com/getsentry/sentry-go to v0.31.0
Jan 2, 2025
renovate
bot
force-pushed
the
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
branch
from
January 2, 2025 14:21
c6df3ec
to
ffece5f
Compare
renovate
bot
changed the title
Update module github.com/getsentry/sentry-go to v0.31.0
Update module github.com/getsentry/sentry-go to v0.31.1
Jan 2, 2025
renovate
bot
force-pushed
the
renovate/jackfan.us.kg-getsentry-sentry-go-0.x
branch
from
January 2, 2025 18:38
ffece5f
to
0e298c8
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.29.0
->v0.31.1
Release Notes
getsentry/sentry-go (github.com/getsentry/sentry-go)
v0.31.1
: 0.31.1Compare Source
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.31.1.
Bug Fixes
sentry-go/logrus
(#950)v0.31.0
: 0.31.0Compare Source
Breaking Changes
Remove support for metrics. Read more about the end of the Metrics beta here. (#914)
Remove support for profiling. (#915)
Remove
Segment
field from theUser
struct. This field is no longer used in the Sentry product. (#928)Every integration is now a separate module, reducing the binary size and number of dependencies. Once you update
sentry-go
to latest version, you'll need togo get
the integration you want to use. For example, if you want to use theecho
integration, you'll need to rungo get github.com/getsentry/sentry-go/echo
(#919).Features
Add the ability to override
hub
incontext
for integrations that use custom context. (#931)HubProvider
Hook forsentrylogrus
, enabling dynamic Sentry hub allocation for each log entry or goroutine. (#936)This change enhances compatibility with Sentry's recommendation of using separate hubs per goroutine. To ensure a separate Sentry hub for each goroutine, configure the
HubProvider
like this:Bug Fixes
HTTPTranport
to prevent goroutine leaks. (#894)Worker can be also closed by calling
Close()
method on theHTTPTransport
instance.Close
should be called afterFlush
and before terminating the program otherwise some events may be lost.Misc
v0.30.0
: 0.30.0Compare Source
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.30.0.
Features
sentryzerolog
integration (#857)sentryslog
integration (#865)Bug Fixes
fasthttp
andfiber
integration in case a malformed URL has to be parsed (#912)Misc
Drop support for Go 1.18, 1.19 and 1.20. The currently supported Go versions are the last 3 stable releases: 1.23, 1.22 and 1.21.
v0.29.1
: 0.29.1Compare Source
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.29.1.
Bug Fixes
Misc
sentrynegroni
integration to use the latest (v3.1.1) version of Negroni (#885)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 becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.