Skip to content

Commit afe203c

Browse files
authored
Merge branch 'main' into dependabot/pub/flutter/flutter_lints-3.0.0
2 parents 83d74d9 + 26e955b commit afe203c

File tree

16 files changed

+30
-26
lines changed

16 files changed

+30
-26
lines changed

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

3-
## Unreleased
3+
## 7.11.0
4+
5+
### Fixes
6+
7+
- Session: missing mechanism.handled is considered crash ([#3353](https://github.com/getsentry/sentry-cocoa/pull/3353))
48

59
### Features
610

@@ -12,9 +16,9 @@
1216
- Bump Android SDK from v6.29.0 to v6.32.0 ([#1660](https://github.com/getsentry/sentry-dart/pull/1660), [#1676](https://github.com/getsentry/sentry-dart/pull/1676), [#1688](https://github.com/getsentry/sentry-dart/pull/1688))
1317
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#6320)
1418
- [diff](https://github.com/getsentry/sentry-java/compare/6.29.0...6.32.0)
15-
- Bump Cocoa SDK from v8.11.0 to v8.13.1 ([#1650](https://github.com/getsentry/sentry-dart/pull/1650), [#1655](https://github.com/getsentry/sentry-dart/pull/1655), [#1677](https://github.com/getsentry/sentry-dart/pull/1677))
16-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8131)
17-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.11.0...8.13.1)
19+
- Bump Cocoa SDK from v8.11.0 to v8.14.2 ([#1650](https://github.com/getsentry/sentry-dart/pull/1650), [#1655](https://github.com/getsentry/sentry-dart/pull/1655), [#1677](https://github.com/getsentry/sentry-dart/pull/1677), [#1691](https://github.com/getsentry/sentry-dart/pull/1691))
20+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8142)
21+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.11.0...8.14.2)
1822

1923
## 7.10.1
2024

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 version;
1010

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

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

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: 7.10.1
2+
version: 7.11.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

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 = '7.10.1';
2+
const String sdkVersion = '7.11.0';
33

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

dio/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
name: sentry_dio
22
description: An integration which adds support for performance tracing for the Dio package.
3-
version: 7.10.1
3+
version: 7.11.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
7-
documentation: https://docs.sentry.io/platforms/dart/configuration/integrations/dio/
7+
documentation: https://docs.sentry.io/platforms/dart/integrations/dio/
88

99
environment:
1010
sdk: '>=2.17.0 <4.0.0'
1111

1212
dependencies:
1313
dio: ^5.0.0
14-
sentry: 7.10.1
14+
sentry: 7.11.0
1515

1616
dev_dependencies:
1717
meta: ^1.3.0

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 = '7.10.1';
2+
const String sdkVersion = '7.11.0';
33

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

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: 7.10.1
3+
version: 7.11.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
@@ -10,7 +10,7 @@ environment:
1010
sdk: '>=2.19.0 <4.0.0'
1111

1212
dependencies:
13-
sentry: 7.10.1
13+
sentry: 7.11.0
1414
meta: ^1.3.0
1515

1616
dev_dependencies:

flutter/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
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: 7.10.1
3+
version: 7.11.0
44

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

flutter/ios/sentry_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
1212
:tag => s.version.to_s }
1313
s.source_files = 'Classes/**/*'
1414
s.public_header_files = 'Classes/**/*.h'
15-
s.dependency 'Sentry/HybridSDK', '8.13.1'
15+
s.dependency 'Sentry/HybridSDK', '8.14.2'
1616
s.ios.dependency 'Flutter'
1717
s.osx.dependency 'FlutterMacOS'
1818
s.ios.deployment_target = '11.0'

flutter/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 = '7.10.1';
2+
const String sdkVersion = '7.11.0';
33

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

0 commit comments

Comments
 (0)