Skip to content

Commit

Permalink
fix(deps): Update module github.com/getsentry/sentry-go to v0.27.0 (#…
Browse files Browse the repository at this point in the history
…1588)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/getsentry/sentry-go](https://togithub.com/getsentry/sentry-go) | require | minor | `v0.24.1` -> `v0.27.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

---

### Release Notes

<details>
<summary>getsentry/sentry-go (github.com/getsentry/sentry-go)</summary>

### [`v0.27.0`](https://togithub.com/getsentry/sentry-go/releases/tag/v0.27.0): 0.27.0

[Compare Source](https://togithub.com/getsentry/sentry-go/compare/v0.26.0...v0.27.0)

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. ([#&#8203;770](https://togithub.com/getsentry/sentry-go/pull/770))

##### Misc

-   Export `Event.Attachments` ([#&#8203;771](https://togithub.com/getsentry/sentry-go/pull/771))

### [`v0.26.0`](https://togithub.com/getsentry/sentry-go/releases/tag/v0.26.0): 0.26.0

[Compare Source](https://togithub.com/getsentry/sentry-go/compare/v0.25.0...v0.26.0)

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

##### Breaking Changes

As previously announced, this release removes some methods from the SDK.

-   `sentry.TransactionName()` use `sentry.WithTransactionName()` instead.
-   `sentry.OpName()` use `sentry.WithOpName()` instead.
-   `sentry.TransctionSource()` use `sentry.WithTransactionSource()` instead.
-   `sentry.SpanSampled()` use `sentry.WithSpanSampled()` instead.

##### Features

-   Add `WithDescription` span option ([#&#8203;751](https://togithub.com/getsentry/sentry-go/pull/751))

    ```go
    span := sentry.StartSpan(ctx, "http.client", WithDescription("GET /api/users"))
    ```
-   Add support for package name parsing in Go 1.20 and higher ([#&#8203;730](https://togithub.com/getsentry/sentry-go/pull/730))

##### Bug Fixes

-   Apply `ClientOptions.SampleRate` only to errors & messages ([#&#8203;754](https://togithub.com/getsentry/sentry-go/pull/754))
-   Check if git is available before executing any git commands ([#&#8203;737](https://togithub.com/getsentry/sentry-go/pull/737))

### [`v0.25.0`](https://togithub.com/getsentry/sentry-go/releases/tag/v0.25.0): 0.25.0

[Compare Source](https://togithub.com/getsentry/sentry-go/compare/v0.24.1...v0.25.0)

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

##### Breaking Changes

As previously announced, this release removes two global constants from the SDK.

-   `sentry.Version` was removed. Use `sentry.SDKVersion` instead ([#&#8203;727](https://togithub.com/getsentry/sentry-go/pull/727))
-   `sentry.SDKIdentifier` was removed. Use `Client.GetSDKIdentifier()` instead ([#&#8203;727](https://togithub.com/getsentry/sentry-go/pull/727))

##### Features

-   Add `ClientOptions.IgnoreTransactions`, which allows you to ignore specific transactions based on their name ([#&#8203;717](https://togithub.com/getsentry/sentry-go/pull/717))
-   Add `ClientOptions.Tags`, which allows you to set global tags that are applied to all events. You can also define tags by setting `SENTRY_TAGS_` environment variables ([#&#8203;718](https://togithub.com/getsentry/sentry-go/pull/718))

##### Bug fixes

-   Fix an issue in the profiler that would cause an infinite loop if the duration of a transaction is longer than 30 seconds ([#&#8203;724](https://togithub.com/getsentry/sentry-go/issues/724))

##### Misc

-   `dsn.RequestHeaders()` is not to be removed, though it is still considered deprecated and should only be used when using a custom transport that sends events to the `/store` endpoint ([#&#8203;720](https://togithub.com/getsentry/sentry-go/pull/720))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am 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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjI3OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
  • Loading branch information
cq-bot committed Apr 1, 2024
1 parent 824e745 commit 88ec704
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/simple_plugin/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ require (
github.com/fatih/structs v1.1.0 // indirect
github.com/flosch/pongo2/v4 v4.0.2 // indirect
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/getsentry/sentry-go v0.24.1 // indirect
github.com/getsentry/sentry-go v0.27.0 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/gin-gonic/gin v1.9.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions examples/simple_plugin/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ github.com/flosch/pongo2/v4 v4.0.2 h1:gv+5Pe3vaSVmiJvh/BZa82b7/00YUGm0PIyVVLop0H
github.com/flosch/pongo2/v4 v4.0.2/go.mod h1:B5ObFANs/36VwxxlgKpdchIJHMvHB562PW+BWPhwZD8=
github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0=
github.com/gabriel-vasile/mimetype v1.4.3/go.mod h1:d8uq/6HKRL6CGdk+aubisF/M5GcPfT7nKyLpA0lbSSk=
github.com/getsentry/sentry-go v0.24.1 h1:W6/0GyTy8J6ge6lVCc94WB6Gx2ZuLrgopnn9w8Hiwuk=
github.com/getsentry/sentry-go v0.24.1/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY=
github.com/getsentry/sentry-go v0.27.0 h1:Pv98CIbtB3LkMWmXi4Joa5OOcwbmnX88sF5qbK3r3Ps=
github.com/getsentry/sentry-go v0.27.0/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY=
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/cloudquery/cloudquery-api-go v1.9.0
github.com/cloudquery/plugin-pb-go v1.19.5
github.com/cloudquery/plugin-sdk/v2 v2.7.0
github.com/getsentry/sentry-go v0.24.1
github.com/getsentry/sentry-go v0.27.0
github.com/goccy/go-json v0.10.2
github.com/google/go-cmp v0.6.0
github.com/google/uuid v1.6.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ github.com/flosch/pongo2/v4 v4.0.2 h1:gv+5Pe3vaSVmiJvh/BZa82b7/00YUGm0PIyVVLop0H
github.com/flosch/pongo2/v4 v4.0.2/go.mod h1:B5ObFANs/36VwxxlgKpdchIJHMvHB562PW+BWPhwZD8=
github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0=
github.com/gabriel-vasile/mimetype v1.4.3/go.mod h1:d8uq/6HKRL6CGdk+aubisF/M5GcPfT7nKyLpA0lbSSk=
github.com/getsentry/sentry-go v0.24.1 h1:W6/0GyTy8J6ge6lVCc94WB6Gx2ZuLrgopnn9w8Hiwuk=
github.com/getsentry/sentry-go v0.24.1/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY=
github.com/getsentry/sentry-go v0.27.0 h1:Pv98CIbtB3LkMWmXi4Joa5OOcwbmnX88sF5qbK3r3Ps=
github.com/getsentry/sentry-go v0.27.0/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY=
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=
Expand Down

1 comment on commit 88ec704

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⏱️ Benchmark results

  • Glob-8 ns/op: 91.18

Please sign in to comment.