Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update Cocoa SDK to v8.33.0 #2223

Merged
merged 3 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@

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

### Dependencies

- Bump Cocoa SDK from v8.32.0 to v8.33.0 ([#2223](https://github.com/getsentry/sentry-dart/pull/2223))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8330)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.32.0...8.33.0)

## 8.6.0

### Improvements
Expand Down
16 changes: 8 additions & 8 deletions flutter/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Future<void> setupSentry(
}

class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
const MyApp({super.key});

@override
_MyAppState createState() => _MyAppState();
Expand Down Expand Up @@ -139,8 +139,8 @@ class TooltipButton extends StatelessWidget {
required this.onPressed,
required this.buttonTitle,
required this.text,
Key? key,
}) : super(key: key);
super.key,
});

@override
Widget build(BuildContext context) {
Expand All @@ -157,8 +157,8 @@ class TooltipButton extends StatelessWidget {

class MainScaffold extends StatelessWidget {
const MainScaffold({
Key? key,
}) : super(key: key);
super.key,
});

@override
Widget build(BuildContext context) {
Expand Down Expand Up @@ -716,7 +716,7 @@ extension BuildContextExtension on BuildContext {
}

class AndroidExample extends StatelessWidget {
const AndroidExample({Key? key}) : super(key: key);
const AndroidExample({super.key});

@override
Widget build(BuildContext context) {
Expand Down Expand Up @@ -834,7 +834,7 @@ class _IntegrationTestWidgetState extends State<IntegrationTestWidget> {
}

class CocoaExample extends StatelessWidget {
const CocoaExample({Key? key}) : super(key: key);
const CocoaExample({super.key});

@override
Widget build(BuildContext context) {
Expand Down Expand Up @@ -887,7 +887,7 @@ int loop(int val) {
}

class SecondaryScaffold extends StatelessWidget {
const SecondaryScaffold({Key? key}) : super(key: key);
const SecondaryScaffold({super.key});

static Future<void> openSecondaryScaffold(BuildContext context) {
return Navigator.push(
Expand Down
7 changes: 3 additions & 4 deletions flutter/example/lib/user_feedback_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ import 'package:sentry_flutter/sentry_flutter.dart';

class UserFeedbackDialog extends StatefulWidget {
const UserFeedbackDialog({
Key? key,
super.key,
required this.eventId,
this.hub,
}) : assert(eventId != const SentryId.empty()),
super(key: key);
}) : assert(eventId != const SentryId.empty());

final SentryId eventId;
final Hub? hub;
Expand Down Expand Up @@ -115,7 +114,7 @@ class _UserFeedbackDialogState extends State<UserFeedbackDialog> {
}

class _PoweredBySentryMessage extends StatelessWidget {
const _PoweredBySentryMessage({Key? key}) : super(key: key);
const _PoweredBySentryMessage();

@override
Widget build(BuildContext context) {
Expand Down
2 changes: 1 addition & 1 deletion flutter/ios/sentry_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
:tag => s.version.to_s }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Sentry/HybridSDK', '8.32.0'
s.dependency 'Sentry/HybridSDK', '8.33.0'
s.ios.dependency 'Flutter'
s.osx.dependency 'FlutterMacOS'
s.ios.deployment_target = '12.0'
Expand Down
Loading
Loading