Skip to content

Commit

Permalink
chore(deps): update Cocoa SDK to v8.33.0 (#2223)
Browse files Browse the repository at this point in the history
* chore: update flutter/scripts/update-cocoa.sh to 8.33.0

* Formatting

* fix analyze

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
  • Loading branch information
3 people authored Aug 9, 2024
1 parent 33527b4 commit c328ffc
Show file tree
Hide file tree
Showing 5 changed files with 128 additions and 107 deletions.
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

0 comments on commit c328ffc

Please sign in to comment.