Skip to content

Commit ebccb5b

Browse files
author
getsentry-bot
committed
Merge branch 'release/9.9.0'
2 parents 6287dc4 + 0230ac1 commit ebccb5b

File tree

24 files changed

+65
-33
lines changed

24 files changed

+65
-33
lines changed

CHANGELOG.md

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

3+
## 9.9.0
4+
5+
### Features
6+
7+
- Add `Sentry.setAttributes` and `Sentry.removeAttribute` ([#3352](https://github.com/getsentry/sentry-dart/pull/3352))
8+
- These attributes are set at the scope level and apply to all logs (and later to metrics and spans).
9+
- When a scope attribute conflicts with a log-level attribute, the log-level attribute always takes precedence.
10+
- Sentry Supabase Integration ([#2913](https://github.com/getsentry/sentry-dart/pull/2913))
11+
- Adds the `sentry_supabase` package to instrument supabase with Sentry breadcrumbs, traces and errors.
12+
13+
### Fixes
14+
15+
- Added `consumerProguardFiles 'proguard-rules.pro'` to the debug build configuration to ensure ProGuard rules are consistently applied across both release and debug variants. ([#3339](https://github.com/getsentry/sentry-dart/pull/3339))
16+
- Dart to native type conversion ([#3372](https://github.com/getsentry/sentry-dart/pull/3372))
17+
- Revert FFI usage on iOS/macOS due to symbol stripping issues ([#3379](https://github.com/getsentry/sentry-dart/pull/3379))
18+
- Android app crashing on hot-restart in debug mode ([#3358](https://github.com/getsentry/sentry-dart/pull/3358))
19+
- Dont use `Companion` in JNI calls and properly release JNI refs ([#3354](https://github.com/getsentry/sentry-dart/pull/3354))
20+
- This potentially fixes segfault crashes related to JNI
21+
22+
### Enhancements
23+
24+
- Refactor `captureReplay` and `setReplayConfig` to use JNI ([#3318](https://github.com/getsentry/sentry-dart/pull/3318))
25+
- Refactor `init` to use JNI ([#3324](https://github.com/getsentry/sentry-dart/pull/3324))
26+
- Flush logs if client/hub/sdk is closed ([#3335](https://github.com/getsentry/sentry-dart/pull/3335)
27+
28+
### Dependencies
29+
30+
- Bump Android SDK from v8.21.1 to v8.28.0 ([#3391](https://github.com/getsentry/sentry-dart/pull/3391))
31+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8280)
32+
- [diff](https://github.com/getsentry/sentry-java/compare/8.21.1...8.28.0)
33+
334
## 9.9.0-beta.4
435

536
### Fixes

docs/sdk-versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This document shows which version of the various Sentry SDKs are used in which S
66

77
| Sentry Flutter SDK | Sentry Android SDK | Sentry Cocoa SDK | Sentry JavaScript SDK | Sentry Native SDK |
88
| ------------------ | ------------------ | ---------------- | --------------------- | ----------------- |
9+
| 9.9.0 | 8.28.0 | 8.56.2 | 10.6.0 | 0.10.0 |
910
| 9.9.0-beta.4 | 8.28.0 | 8.56.2 | 10.6.0 | 0.10.0 |
1011
| 9.9.0-beta.3 | 8.21.1 | 8.56.2 | 10.6.0 | 0.10.0 |
1112
| 9.8.0-beta.1 | 8.21.1 | 8.56.2 | 10.6.0 | 0.10.0 |

packages/dart/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
library;
1010

1111
/// The SDK version reported to Sentry.io in the submitted events.
12-
const String sdkVersion = '9.9.0-beta.4';
12+
const String sdkVersion = '9.9.0';
1313

1414
String sdkName(bool isWeb) => isWeb ? _browserSdkName : _ioSdkName;
1515

packages/dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sentry
2-
version: 9.9.0-beta.4
2+
version: 9.9.0
33
description: >
44
A crash reporting library for Dart that sends crash reports to Sentry.io.
55
This library supports Dart VM and Web. For Flutter consider sentry_flutter instead.

packages/dio/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// The SDK version reported to Sentry.io in the submitted events.
2-
const String sdkVersion = '9.9.0-beta.4';
2+
const String sdkVersion = '9.9.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_dio';

packages/dio/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_dio
22
description: An integration which adds support for performance tracing for the Dio package.
3-
version: 9.9.0-beta.4
3+
version: 9.9.0
44
homepage: https://docs.sentry.io/platforms/dart/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -19,7 +19,7 @@ platforms:
1919

2020
dependencies:
2121
dio: ^5.2.0
22-
sentry: 9.9.0-beta.4
22+
sentry: 9.9.0
2323

2424
dev_dependencies:
2525
meta: ^1.3.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// The SDK version reported to Sentry.io in the submitted events.
2-
const String sdkVersion = '9.9.0-beta.4';
2+
const String sdkVersion = '9.9.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_drift';

packages/drift/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_drift
22
description: An integration which adds support for performance tracing for the drift package.
3-
version: 9.9.0-beta.4
3+
version: 9.9.0
44
homepage: https://docs.sentry.io/platforms/flutter/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -17,7 +17,7 @@ platforms:
1717
web:
1818

1919
dependencies:
20-
sentry: 9.9.0-beta.4
20+
sentry: 9.9.0
2121
meta: ^1.3.0
2222
drift: ^2.24.0
2323

packages/file/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// The SDK version reported to Sentry.io in the submitted events.
2-
const String sdkVersion = '9.9.0-beta.4';
2+
const String sdkVersion = '9.9.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_file';

packages/file/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_file
22
description: An integration which adds support for performance tracing for dart.io.File.
3-
version: 9.9.0-beta.4
3+
version: 9.9.0
44
homepage: https://docs.sentry.io/platforms/dart/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -17,7 +17,7 @@ platforms:
1717
windows:
1818

1919
dependencies:
20-
sentry: 9.9.0-beta.4
20+
sentry: 9.9.0
2121
meta: ^1.3.0
2222

2323
dev_dependencies:

0 commit comments

Comments
 (0)