Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 7, 2025

This PR contains the following updates:

Package Change Age Confidence
github.com/getsentry/sentry-go v0.34.0 -> v0.35.0 age confidence

Release Notes

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

v0.35.0: 0.35.0

Compare Source

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

Breaking Changes

The logging API now supports a fluent interface for structured logging with attributes:

// usage before
logger := sentry.NewLogger(ctx)
// attributes weren't being set permanently
logger.SetAttributes(
    attribute.String("version", "1.0.0"),
)
logger.Infof(ctx, "Message with parameters %d and %d", 1, 2)

// new behavior
ctx := context.Background()
logger := sentry.NewLogger(ctx)

// Set permanent attributes on the logger
logger.SetAttributes(
    attribute.String("version", "1.0.0"),
)

// Chain attributes on individual log entries
logger.Info().
    String("key.string", "value").
    Int("key.int", 42).
    Bool("key.bool", true).
    Emitf("Message with parameters %d and %d", 1, 2)
Bug Fixes
  • Correctly serialize FailureIssueThreshold and RecoveryThreshold onto check-in payloads (#​1060)

v0.34.1: 0.34.1

Compare Source

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

Bug Fixes
  • Allow flush to be used multiple times without issues, particularly for the batch logger (#​1051)
  • Fix race condition in Scope.GetSpan() method by adding proper mutex locking (#​1044)
  • Guard transport on Close() to prevent panic when called multiple times (#​1044)

Configuration

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

🚦 Automerge: Enabled.

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.

@renovate renovate bot enabled auto-merge (squash) July 7, 2025 16:54
@CLAassistant
Copy link

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

@github-actions github-actions bot added the fix label Jul 7, 2025
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 3 times, most recently from e2779f1 to ea4b72a Compare July 10, 2025 07:52
@renovate renovate bot changed the title fix(deps): update module github.com/getsentry/sentry-go to v0.34.1 fix(deps): update module github.com/getsentry/sentry-go to v0.34.1 - autoclosed Jul 14, 2025
@renovate renovate bot closed this Jul 14, 2025
auto-merge was automatically disabled July 14, 2025 19:58

Pull request was closed

@renovate renovate bot deleted the renovate/github.com-getsentry-sentry-go-0.x branch July 14, 2025 19:58
@renovate renovate bot changed the title fix(deps): update module github.com/getsentry/sentry-go to v0.34.1 - autoclosed fix(deps): update module github.com/getsentry/sentry-go to v0.34.1 Jul 14, 2025
@renovate renovate bot reopened this Jul 14, 2025
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch from 284d271 to ea4b72a Compare July 14, 2025 23:56
@renovate renovate bot enabled auto-merge (squash) July 15, 2025 03:42
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 4 times, most recently from 780d94c to e3298c2 Compare July 18, 2025 02:54
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 3 times, most recently from be81c61 to c54e5bb Compare July 28, 2025 06:12
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch 2 times, most recently from 67ea44a to 532323a Compare July 31, 2025 17:55
@renovate renovate bot changed the title fix(deps): update module github.com/getsentry/sentry-go to v0.34.1 fix(deps): update module github.com/getsentry/sentry-go to v0.35.0 Aug 1, 2025
@renovate renovate bot force-pushed the renovate/github.com-getsentry-sentry-go-0.x branch from 532323a to f367be5 Compare August 1, 2025 00:55
@renovate renovate bot changed the title fix(deps): update module github.com/getsentry/sentry-go to v0.35.0 fix(deps): update module github.com/getsentry/sentry-go to v0.35.0 - autoclosed Aug 5, 2025
@renovate renovate bot closed this Aug 5, 2025
auto-merge was automatically disabled August 5, 2025 09:40

Pull request was closed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants