Skip to content

Commit 32fa6b6

Browse files
author
getsentry-bot
committed
Merge branch 'release/8.4.0'
2 parents 824df58 + 5f8f39d commit 32fa6b6

File tree

20 files changed

+37
-31
lines changed

20 files changed

+37
-31
lines changed

CHANGELOG.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# Changelog
22

3-
## Unreleased
3+
## 8.4.0
44

55
### Features
66

7+
- Add API for pausing/resuming **iOS** and **macOS** app hang tracking ([#2134](https://github.com/getsentry/sentry-dart/pull/2134))
8+
- This is useful to prevent the Cocoa SDK from reporting wrongly detected app hangs when the OS shows a system dialog for asking specific permissions.
9+
- Use `SentryFlutter.pauseAppHangTracking()` and `SentryFlutter.resumeAppHangTracking()`
10+
- Capture total frames, frames delay, slow & frozen frames and attach to spans ([#2106](https://github.com/getsentry/sentry-dart/pull/2106))
11+
- Support WebAssembly compilation (dart2wasm) ([#2113](https://github.com/getsentry/sentry-dart/pull/2113))
712
- Add flag to disable reporting of view hierarchy identifiers ([#2158](https://github.com/getsentry/sentry-dart/pull/2158))
813
- Use `reportViewHierarchyIdentifiers` to enable or disable the option
914
- Record dropped spans in client reports ([#2154](https://github.com/getsentry/sentry-dart/pull/2154))
@@ -26,9 +31,13 @@
2631
- Bump Cocoa SDK from v8.30.0 to v8.30.1 ([#2155](https://github.com/getsentry/sentry-dart/pull/2155))
2732
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8301)
2833
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.30.0...8.30.1)
34+
- Bump Android SDK from v7.10.0 to v7.11.0 ([#2144](https://github.com/getsentry/sentry-dart/pull/2144))
35+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7110)
36+
- [diff](https://github.com/getsentry/sentry-java/compare/7.10.0...7.11.0)
2937

3038
### Deprecated
3139

40+
- User segment is now deprecated and will be removed in version 9.0.0. Use a custom tag or context instead. ([#2119](https://github.com/getsentry/sentry-dart/pull/2119))
3241
- Deprecate `setExtra` and `removeExtra` ([#2159](https://github.com/getsentry/sentry-dart/pull/2159))
3342
- Use the `Contexts` structure via `setContexts` instead
3443

@@ -51,9 +60,6 @@
5160
- Bump Cocoa SDK from v8.29.0 to v8.30.0 ([#2132](https://github.com/getsentry/sentry-dart/pull/2132))
5261
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8300)
5362
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.29.0...8.30.0)
54-
- Bump Android SDK from v7.10.0 to v7.11.0 ([#2144](https://github.com/getsentry/sentry-dart/pull/2144))
55-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7110)
56-
- [diff](https://github.com/getsentry/sentry-java/compare/7.10.0...7.11.0)
5763

5864
## 8.3.0
5965

dart/lib/src/version.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
library version;
1010

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

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

dart/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sentry
2-
version: 8.4.0-beta.1
2+
version: 8.4.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.

dio/lib/src/version.dart

+1-1
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 = '8.4.0-beta.1';
2+
const String sdkVersion = '8.4.0';
33

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

dio/pubspec.yaml

+2-2
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: 8.4.0-beta.1
3+
version: 8.4.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.0.0
22-
sentry: 8.4.0-beta.1
22+
sentry: 8.4.0
2323

2424
dev_dependencies:
2525
meta: ^1.3.0

drift/lib/src/version.dart

+1-1
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 = '8.4.0-beta.1';
2+
const String sdkVersion = '8.4.0';
33

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

drift/pubspec.yaml

+2-2
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: 8.4.0-beta.1
3+
version: 8.4.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: 8.4.0-beta.1
20+
sentry: 8.4.0
2121
meta: ^1.3.0
2222
drift: ^2.13.0
2323

file/lib/src/version.dart

+1-1
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 = '8.4.0-beta.1';
2+
const String sdkVersion = '8.4.0';
33

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

file/pubspec.yaml

+2-2
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: 8.4.0-beta.1
3+
version: 8.4.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: 8.4.0-beta.1
20+
sentry: 8.4.0
2121
meta: ^1.3.0
2222

2323
dev_dependencies:

flutter/example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_flutter_example
22
description: Demonstrates how to use the sentry_flutter plugin.
3-
version: 8.4.0-beta.1
3+
version: 8.4.0
44

55
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
66

flutter/lib/src/version.dart

+1-1
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 = '8.4.0-beta.1';
2+
const String sdkVersion = '8.4.0';
33

44
/// The default SDK name reported to Sentry.io in the submitted events.
55
const String sdkName = 'sentry.dart.flutter';

flutter/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sentry_flutter
2-
version: 8.4.0-beta.1
2+
version: 8.4.0
33
description: Sentry SDK for Flutter. This package aims to support different Flutter targets by relying on the many platforms supported by Sentry with native SDKs.
44
homepage: https://docs.sentry.io/platforms/flutter/
55
repository: https://github.com/getsentry/sentry-dart
@@ -23,7 +23,7 @@ dependencies:
2323
sdk: flutter
2424
flutter_web_plugins:
2525
sdk: flutter
26-
sentry: 8.4.0-beta.1
26+
sentry: 8.4.0
2727
package_info_plus: '>=1.0.0'
2828
meta: ^1.3.0
2929
ffi: ^2.0.0

hive/lib/src/version.dart

+1-1
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 = '8.4.0-beta.1';
2+
const String sdkVersion = '8.4.0';
33

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

hive/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_hive
22
description: An integration which adds support for performance tracing for the hive package.
3-
version: 8.4.0-beta.1
3+
version: 8.4.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: 8.4.0-beta.1
20+
sentry: 8.4.0
2121
hive: ^2.2.3
2222
meta: ^1.3.0
2323

isar/lib/src/version.dart

+1-1
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 = '8.4.0-beta.1';
2+
const String sdkVersion = '8.4.0';
33

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

isar/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_isar
22
description: An integration which adds support for performance tracing for the isar package.
3-
version: 8.4.0-beta.1
3+
version: 8.4.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
@@ -20,7 +20,7 @@ platforms:
2020
dependencies:
2121
isar: ^3.1.0
2222
isar_flutter_libs: ^3.1.0 # contains Isar Core
23-
sentry: 8.4.0-beta.1
23+
sentry: 8.4.0
2424
meta: ^1.3.0
2525
path: ^1.8.3
2626

logging/lib/src/version.dart

+1-1
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 = '8.4.0-beta.1';
2+
const String sdkVersion = '8.4.0';
33

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

logging/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_logging
22
description: An integration which adds support for recording log from the logging package.
3-
version: 8.4.0-beta.1
3+
version: 8.4.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
logging: ^1.0.0
22-
sentry: 8.4.0-beta.1
22+
sentry: 8.4.0
2323

2424
dev_dependencies:
2525
lints: ^4.0.0

sqflite/lib/src/version.dart

+1-1
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 = '8.4.0-beta.1';
2+
const String sdkVersion = '8.4.0';
33

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

sqflite/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_sqflite
22
description: An integration which adds support for performance tracing for the sqflite package.
3-
version: 8.4.0-beta.1
3+
version: 8.4.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
@@ -15,7 +15,7 @@ platforms:
1515
macos:
1616

1717
dependencies:
18-
sentry: 8.4.0-beta.1
18+
sentry: 8.4.0
1919
sqflite: ^2.2.8
2020
sqflite_common: ^2.0.0
2121
meta: ^1.3.0

0 commit comments

Comments
 (0)