Skip to content

Commit 34ba180

Browse files
authored
Prepare 0.33.0 (#1016)
1 parent c340089 commit 34ba180

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Changelog
22

3+
## 0.33.0
4+
5+
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.33.0.
6+
7+
8+
### Breaking Changes
9+
10+
- Rename the internal `Logger` to `DebugLogger`. This feature was only used when you set `Debug: True` in your `sentry.Init()` call. If you haven't used the Logger directly, no changes are necessary. ([#1012](https://github.com/getsentry/sentry-go/issues/1012))
11+
12+
### Features
13+
14+
- Add support for [Structured Logging](https://docs.sentry.io/product/explore/logs/). ([#1010](https://github.com/getsentry/sentry-go/issues/1010))
15+
16+
```go
17+
logger := sentry.NewLogger(ctx)
18+
logger.Info(ctx, "Hello, Logs!")
19+
```
20+
21+
You can learn more about Sentry Logs on our [docs](https://docs.sentry.io/product/explore/logs/) and the [examples](https://github.com/getsentry/sentry-go/blob/master/_examples/logs/main.go).
22+
23+
- Add new attributes APIs, which are currently only exposed on logs. ([#1007](https://github.com/getsentry/sentry-go/issues/1007))
24+
25+
### Bug Fixes
26+
27+
- Do not push a new scope on `StartSpan`. ([#1013](https://github.com/getsentry/sentry-go/issues/1013))
28+
- Fix an issue where the propagated smapling decision wasn't used. ([#995](https://github.com/getsentry/sentry-go/issues/995))
29+
- [Otel] Prefer `httpRoute` over `httpTarget` for span descriptions. ([#1002](https://github.com/getsentry/sentry-go/issues/1002))
30+
31+
### Misc
32+
33+
- Update `github.com/stretchr/testify` to v1.8.4. ([#988](https://github.com/getsentry/sentry-go/issues/988))
34+
335
## 0.32.0
436

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

0 commit comments

Comments
 (0)