Sentry

Latest version: v23.7.1

Safety actively analyzes 630254 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 189 of 223

0.23.2

- Fixed 228 again ¯\\_(ツ)_/¯

0.23.1

Fixes

- Don't access Unity `AnalyticsSessionInfo.userId` on unknown platforms ([971](https://github.com/getsentry/sentry-unity/pull/971))
- Keep previously set IL2CPP compiler arguments (i.e append instead of overwriting) ([972](https://github.com/getsentry/sentry-unity/pull/972))
- Add transaction processor ([978](https://github.com/getsentry/sentry-unity/pull/978))

Dependencies

- Bump Cocoa SDK from v7.24.1 to v7.25.1 ([967](https://github.com/getsentry/sentry-unity/pull/967), [#974](https://github.com/getsentry/sentry-unity/pull/974))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7251)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.24.1...7.25.1)

0.23.0

Fixes

- Fixed a crash during startup due in connection to the Google Ads Unity package ([953](https://github.com/getsentry/sentry-unity/pull/953))
- The SDK failing to reinstall the backend will no longer lead to events being sent to Sentry ([962](https://github.com/getsentry/sentry-unity/pull/962))
- Don't access Unity `AnalyticsSessionInfo.userId` on unknown platforms ([971](https://github.com/getsentry/sentry-unity/pull/971))

Features

- IL2CPP line number support is enabled by default ([963](https://github.com/getsentry/sentry-unity/pull/963))

Dependencies

- Bump Java SDK from v6.4.0 to v6.4.1 ([954](https://github.com/getsentry/sentry-unity/pull/954))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#641)
- [diff](https://github.com/getsentry/sentry-java/compare/6.4.0...6.4.1)
- Bump Cocoa SDK from v7.23.0 to v7.24.1 ([957](https://github.com/getsentry/sentry-unity/pull/957), [#961](https://github.com/getsentry/sentry-unity/pull/961))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7241)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.23.0...7.24.1)
- Bump .NET SDK from v3.20.1-33-g76b13448 to v3.21.0 ([958](https://github.com/getsentry/sentry-unity/pull/958))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#3210)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.20.1-33-g76b13448...3.21.0)

0.22.2

Fixes

- Fixed an 'Undefined symbols' issue within the Sentry Native Bridge when building for iOS ([932](https://github.com/getsentry/sentry-unity/pull/932))
- ANR detection no longer creates an error by trying to capture a screenshot from a background thread ([937](https://github.com/getsentry/sentry-unity/pull/937))
- Screenshots quality no longer scales off of current resolution but tries match thresholds instead ([939](https://github.com/getsentry/sentry-unity/pull/939))

Features

- Bump CLI from v2.5.0 to v2.5.2 ([938](https://github.com/getsentry/sentry-unity/pull/938))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#252)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.5.0...2.5.2)
- Bump Java SDK from v6.3.1 to v6.4.0 ([943](https://github.com/getsentry/sentry-unity/pull/943))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#640)
- [diff](https://github.com/getsentry/sentry-java/compare/6.3.1...6.4.0)

0.22.1

Fixes

- iOS samples were missing the Objective-C plugin ([921](https://github.com/getsentry/sentry-unity/pull/921))
- Save SampleRate to Options.asset ([916](https://github.com/getsentry/sentry-unity/pull/916))
- Increase CLI file upload limit to 10 MiB ([922](https://github.com/getsentry/sentry-unity/pull/922))

Features

- Bump Cocoa SDK to v7.23.0 ([918](https://github.com/getsentry/sentry-unity/pull/918))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/master/CHANGELOG.md#7230)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/7.22.0...7.23.0)
- Bump Java SDK to v6.3.1 ([926](https://github.com/getsentry/sentry-unity/pull/926))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#631)
- [diff](https://github.com/getsentry/sentry-java/compare/6.3.0...6.3.1)
- Bump Native SDK to v0.5.0 ([924](https://github.com/getsentry/sentry-unity/pull/924))
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#050)
- [diff](https://github.com/getsentry/sentry-native/compare/0.4.18...0.5.0)

0.22.0

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

This release contains initial [profiling](https://docs.sentry.io/product/profiling/) support, as well as a few bug fixes and improvements.

Features

- Initial (alpha) support for [profiling](https://docs.sentry.io/product/profiling/) ([#626](https://github.com/getsentry/sentry-go/pull/626))

Profiling is disabled by default. To enable it, configure both `TracesSampleRate` and `ProfilesSampleRate` when initializing the SDK:

go
err := sentry.Init(sentry.ClientOptions{
Dsn: "__DSN__",
EnableTracing: true,
TracesSampleRate: 1.0,
// The sampling rate for profiling is relative to TracesSampleRate. In this case, we'll capture profiles for 100% of transactions.
ProfilesSampleRate: 1.0,
})


More documentation on profiling and current limitations [can be found here](https://docs.sentry.io/platforms/go/profiling/).

- Add transactions/tracing support go the Gin integration ([644](https://github.com/getsentry/sentry-go/pull/644))

Bug fixes

- Always set a valid source on transactions ([637](https://github.com/getsentry/sentry-go/pull/637))
- Clone scope.Context in more places to avoid panics on concurrent reads and writes ([638](https://github.com/getsentry/sentry-go/pull/638))
- Fixes [570](https://github.com/getsentry/sentry-go/issues/570)
- Fix frames recognized as not being in-app still showing as in-app ([647](https://github.com/getsentry/sentry-go/pull/647))

Page 189 of 223

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.