Skip to content

Commit 9b6f3ee

Browse files
authored
Merge branch 'main' into feat/add-ignore-routes
2 parents 15cf647 + 03e4c9b commit 9b6f3ee

24 files changed

+156
-135
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 8.7.0
44

55
### Features
66

@@ -48,6 +48,12 @@ SentryNavigatorObserver(ignoreRoutes: ["/ignoreThisRoute"]),
4848

4949
- Deserialize and serialize unknown fields ([#2153](https://github.com/getsentry/sentry-dart/pull/2153))
5050

51+
### Dependencies
52+
53+
- Bump Cocoa SDK from v8.32.0 to v8.33.0 ([#2223](https://github.com/getsentry/sentry-dart/pull/2223))
54+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8330)
55+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.32.0...8.33.0)
56+
5157
## 8.6.0
5258

5359
### Improvements

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.6.0';
12+
const String sdkVersion = '8.7.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.6.0
2+
version: 8.7.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.6.0';
2+
const String sdkVersion = '8.7.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.6.0
3+
version: 8.7.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.6.0
22+
sentry: 8.7.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.6.0';
2+
const String sdkVersion = '8.7.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.6.0
3+
version: 8.7.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.6.0
20+
sentry: 8.7.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.6.0';
2+
const String sdkVersion = '8.7.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.6.0
3+
version: 8.7.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.6.0
20+
sentry: 8.7.0
2121
meta: ^1.3.0
2222

2323
dev_dependencies:

flutter/example/lib/main.dart

+8-8
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Future<void> setupSentry(
103103
}
104104

105105
class MyApp extends StatefulWidget {
106-
const MyApp({Key? key}) : super(key: key);
106+
const MyApp({super.key});
107107

108108
@override
109109
_MyAppState createState() => _MyAppState();
@@ -139,8 +139,8 @@ class TooltipButton extends StatelessWidget {
139139
required this.onPressed,
140140
required this.buttonTitle,
141141
required this.text,
142-
Key? key,
143-
}) : super(key: key);
142+
super.key,
143+
});
144144

145145
@override
146146
Widget build(BuildContext context) {
@@ -157,8 +157,8 @@ class TooltipButton extends StatelessWidget {
157157

158158
class MainScaffold extends StatelessWidget {
159159
const MainScaffold({
160-
Key? key,
161-
}) : super(key: key);
160+
super.key,
161+
});
162162

163163
@override
164164
Widget build(BuildContext context) {
@@ -716,7 +716,7 @@ extension BuildContextExtension on BuildContext {
716716
}
717717

718718
class AndroidExample extends StatelessWidget {
719-
const AndroidExample({Key? key}) : super(key: key);
719+
const AndroidExample({super.key});
720720

721721
@override
722722
Widget build(BuildContext context) {
@@ -834,7 +834,7 @@ class _IntegrationTestWidgetState extends State<IntegrationTestWidget> {
834834
}
835835

836836
class CocoaExample extends StatelessWidget {
837-
const CocoaExample({Key? key}) : super(key: key);
837+
const CocoaExample({super.key});
838838

839839
@override
840840
Widget build(BuildContext context) {
@@ -887,7 +887,7 @@ int loop(int val) {
887887
}
888888

889889
class SecondaryScaffold extends StatelessWidget {
890-
const SecondaryScaffold({Key? key}) : super(key: key);
890+
const SecondaryScaffold({super.key});
891891

892892
static Future<void> openSecondaryScaffold(BuildContext context) {
893893
return Navigator.push(

flutter/example/lib/user_feedback_dialog.dart

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ import 'package:sentry_flutter/sentry_flutter.dart';
66

77
class UserFeedbackDialog extends StatefulWidget {
88
const UserFeedbackDialog({
9-
Key? key,
9+
super.key,
1010
required this.eventId,
1111
this.hub,
12-
}) : assert(eventId != const SentryId.empty()),
13-
super(key: key);
12+
}) : assert(eventId != const SentryId.empty());
1413

1514
final SentryId eventId;
1615
final Hub? hub;
@@ -115,7 +114,7 @@ class _UserFeedbackDialogState extends State<UserFeedbackDialog> {
115114
}
116115

117116
class _PoweredBySentryMessage extends StatelessWidget {
118-
const _PoweredBySentryMessage({Key? key}) : super(key: key);
117+
const _PoweredBySentryMessage();
119118

120119
@override
121120
Widget build(BuildContext context) {

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.6.0
3+
version: 8.7.0
44

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

flutter/ios/sentry_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
1616
:tag => s.version.to_s }
1717
s.source_files = 'Classes/**/*'
1818
s.public_header_files = 'Classes/**/*.h'
19-
s.dependency 'Sentry/HybridSDK', '8.32.0'
19+
s.dependency 'Sentry/HybridSDK', '8.33.0'
2020
s.ios.dependency 'Flutter'
2121
s.osx.dependency 'FlutterMacOS'
2222
s.ios.deployment_target = '12.0'

0 commit comments

Comments
 (0)