Skip to content

Commit 934eca5

Browse files
authoredJan 2, 2025
Prepare 0.31.0 (#948)
1 parent 066c69e commit 934eca5

File tree

1 file changed

+24
-15
lines changed

1 file changed

+24
-15
lines changed
 

‎CHANGELOG.md

+24-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.31.0
44

55
### Breaking Changes
66

7-
- Remove all code related to Sentry's previous Metrics product. Read more about the end of the Metrics beta ([here](https://sentry.zendesk.com/hc/en-us/articles/26369339769883-Metrics-Beta-Ended-on-October-7th)) ([#914](https://github.com/getsentry/sentry-go/pull/914))
7+
- Remove support for metrics. Read more about the end of the Metrics beta [here](https://sentry.zendesk.com/hc/en-us/articles/26369339769883-Metrics-Beta-Ended-on-October-7th). ([#914](https://github.com/getsentry/sentry-go/pull/914))
8+
9+
- Remove support for profiling. ([#915](https://github.com/getsentry/sentry-go/pull/915))
10+
811
- Remove `Segment` field from the `User` struct. This field is no longer used in the Sentry product. ([#928](https://github.com/getsentry/sentry-go/pull/928))
912

1013
- 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 to `go get` the integration you want to use. For example, if you want to use the `echo` integration, you'll need to run `go get github.com/getsentry/sentry-go/echo` ([#919](github.com/getsentry/sentry-go/pull/919)).
1114

1215
### Features
1316

14-
Add ability to override `hub` in `context` for integrations that use custom context ([#931](https://github.com/getsentry/sentry-go/pull/931))
17+
Add the ability to override `hub` in `context` for integrations that use custom context. ([#931](https://github.com/getsentry/sentry-go/pull/931))
1518

1619
- Add `HubProvider` Hook for `sentrylogrus`, enabling dynamic Sentry hub allocation for each log entry or goroutine. ([#936](https://github.com/getsentry/sentry-go/pull/936))
1720

@@ -32,20 +35,9 @@ hook.SetHubProvider(func() *sentry.Hub {
3235
logrus.AddHook(hook)
3336
```
3437

35-
36-
## 0.30.0
37-
38-
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.30.0.
39-
40-
### Features
41-
42-
- Add `sentryzerolog` integration ([#857](https://github.com/getsentry/sentry-go/pull/857))
43-
- Add `sentryslog` integration ([#865](https://github.com/getsentry/sentry-go/pull/865))
44-
- Always set Mechanism Type to generic ([#896](https://github.com/getsentry/sentry-go/pull/897))
45-
4638
### Bug Fixes
4739

48-
- Add support for closing worker goroutines started by HTTPTranport to prevent goroutine leaks ([#894](https://github.com/getsentry/sentry-go/pull/894)).
40+
- Add support for closing worker goroutines started by the `HTTPTranport` to prevent goroutine leaks. ([#894](https://github.com/getsentry/sentry-go/pull/894))
4941

5042
```go
5143
client, _ := sentry.NewClient()
@@ -58,6 +50,23 @@ Worker can be also closed by calling `Close()` method on the `HTTPTransport` ins
5850
transport := sentry.NewHTTPTransport()
5951
defer transport.Close()
6052
```
53+
54+
### Misc
55+
56+
- Bump [gin-gonic/gin](https://github.com/gin-gonic/gin) to v1.9.1. ([#946](https://github.com/getsentry/sentry-go/pull/946))
57+
58+
## 0.30.0
59+
60+
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.30.0.
61+
62+
### Features
63+
64+
- Add `sentryzerolog` integration ([#857](https://github.com/getsentry/sentry-go/pull/857))
65+
- Add `sentryslog` integration ([#865](https://github.com/getsentry/sentry-go/pull/865))
66+
- Always set Mechanism Type to generic ([#896](https://github.com/getsentry/sentry-go/pull/897))
67+
68+
### Bug Fixes
69+
6170
- Prevent panic in `fasthttp` and `fiber` integration in case a malformed URL has to be parsed ([#912](https://github.com/getsentry/sentry-go/pull/912))
6271

6372
### Misc

0 commit comments

Comments
 (0)