Skip to content

Commit 7e1f926

Browse files
committed
release: 0.46.0
1 parent 55688a9 commit 7e1f926

16 files changed

Lines changed: 46 additions & 15 deletions

File tree

CHANGELOG.md

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

3+
## 0.46.0
4+
5+
### Breaking Changes 🛠
6+
7+
- Remove SetExtra by @giortzisg in [#1274](https://github.com/getsentry/sentry-go/pull/1274)
8+
- Update compatibility policy to align with Go, supporting only the last two major Go versions by @giortzisg in [#1264](https://github.com/getsentry/sentry-go/pull/1264)
9+
- Drop support for Go 1.24 by @giortzisg in [#1264](https://github.com/getsentry/sentry-go/pull/1264)
10+
11+
### New Features ✨
12+
13+
- Add internal_sdk_error client report on serialization fail by @giortzisg in [#1273](https://github.com/getsentry/sentry-go/pull/1273)
14+
- Add grpc integration support by @ribice in [#938](https://github.com/getsentry/sentry-go/pull/938)
15+
- Re-enable Telemetry Processor by default. To disable the behavior use the `DisableTelemetryBuffer` flag by @giortzisg in [#1254](https://github.com/getsentry/sentry-go/pull/1254)
16+
- Simplify client DSN storage to `internal/protocol.Dsn` and make it safe to access by @giortzisg in [#1254](https://github.com/getsentry/sentry-go/pull/1254)
17+
18+
### Internal Changes 🔧
19+
20+
#### Deps
21+
22+
- Bump github.com/labstack/echo/v5 from 5.0.0 to 5.0.3 in /echo by @dependabot in [#1253](https://github.com/getsentry/sentry-go/pull/1253)
23+
- Bump github.com/labstack/echo/v5 from 5.0.0 to 5.0.3 in /crosstest by @dependabot in [#1272](https://github.com/getsentry/sentry-go/pull/1272)
24+
- Bump golangci-lint action from 2.1.1 to 2.11.4 by @giortzisg in [#1265](https://github.com/getsentry/sentry-go/pull/1265)
25+
- Bump go.opentelemetry.io/otel/sdk from 1.40.0 to 1.43.0 in /otel by @dependabot in [#1256](https://github.com/getsentry/sentry-go/pull/1256)
26+
- Bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from 1.40.0 to 1.43.0 in /otel/otlp by @dependabot in [#1255](https://github.com/getsentry/sentry-go/pull/1255)
27+
28+
#### Other
29+
30+
- Improve ci by @giortzisg in [#1271](https://github.com/getsentry/sentry-go/pull/1271)
31+
- Add crosstest package by @giortzisg in [#1269](https://github.com/getsentry/sentry-go/pull/1269)
32+
- Add sentrytest package by @giortzisg in [#1267](https://github.com/getsentry/sentry-go/pull/1267)
33+
334
## 0.45.1
435

536
### Bug Fixes 🐛

crosstest/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ replace (
1717
)
1818

1919
require (
20-
github.com/getsentry/sentry-go v0.45.1
20+
github.com/getsentry/sentry-go v0.46.0
2121
github.com/getsentry/sentry-go/echo v0.45.1
2222
github.com/getsentry/sentry-go/fasthttp v0.45.1
2323
github.com/getsentry/sentry-go/fiber v0.45.1

echo/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
replace github.com/getsentry/sentry-go => ../
66

77
require (
8-
github.com/getsentry/sentry-go v0.45.1
8+
github.com/getsentry/sentry-go v0.46.0
99
github.com/google/go-cmp v0.5.9
1010
github.com/labstack/echo/v5 v5.0.3
1111
)

fasthttp/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
replace github.com/getsentry/sentry-go => ../
66

77
require (
8-
github.com/getsentry/sentry-go v0.45.1
8+
github.com/getsentry/sentry-go v0.46.0
99
github.com/google/go-cmp v0.5.9
1010
github.com/valyala/fasthttp v1.52.0
1111
)

fiber/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
replace github.com/getsentry/sentry-go => ../
66

77
require (
8-
github.com/getsentry/sentry-go v0.45.1
8+
github.com/getsentry/sentry-go v0.46.0
99
github.com/gofiber/fiber/v2 v2.52.12
1010
github.com/google/go-cmp v0.5.9
1111
)

gin/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
replace github.com/getsentry/sentry-go => ../
66

77
require (
8-
github.com/getsentry/sentry-go v0.45.1
8+
github.com/getsentry/sentry-go v0.46.0
99
github.com/gin-gonic/gin v1.9.1
1010
github.com/google/go-cmp v0.5.9
1111
)

grpc/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
replace github.com/getsentry/sentry-go => ../
66

77
require (
8-
github.com/getsentry/sentry-go v0.43.0
8+
github.com/getsentry/sentry-go v0.46.0
99
github.com/google/go-cmp v0.7.0
1010
github.com/stretchr/testify v1.10.0
1111
google.golang.org/grpc v1.79.3

iris/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
replace github.com/getsentry/sentry-go => ../
66

77
require (
8-
github.com/getsentry/sentry-go v0.45.1
8+
github.com/getsentry/sentry-go v0.46.0
99
github.com/google/go-cmp v0.5.9
1010
github.com/kataras/iris/v12 v12.2.0
1111
)

logrus/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
replace github.com/getsentry/sentry-go => ../
66

77
require (
8-
github.com/getsentry/sentry-go v0.45.1
8+
github.com/getsentry/sentry-go v0.46.0
99
github.com/google/go-cmp v0.6.0
1010
github.com/pkg/errors v0.9.1
1111
github.com/sirupsen/logrus v1.9.3

negroni/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
replace github.com/getsentry/sentry-go => ../
66

77
require (
8-
github.com/getsentry/sentry-go v0.45.1
8+
github.com/getsentry/sentry-go v0.46.0
99
github.com/google/go-cmp v0.5.9
1010
github.com/urfave/negroni/v3 v3.1.1
1111
)

0 commit comments

Comments
 (0)