Skip to content

Commit a8b686d

Browse files
committed
release: 7.0.0-alpha.1
1 parent f2919b9 commit a8b686d

File tree

11 files changed

+32
-14
lines changed

11 files changed

+32
-14
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 7.0.0-alpha.1
4+
5+
### Various fixes & improvements
6+
7+
- add merge target (f2919b9a) by @marandaneto
8+
- Feat View hierarchy (#1189) by @marandaneto
9+
- remove unreleased (#1186) by @denrase
10+
- Refactor `BindingUtils` to enable the use of custom bindings (#1184) by @ueman
11+
- Support custom units for custom measurements (#1181) by @denrase
12+
- Bump Flutter min to 3.0.0 and Dart to 2.17.0 (#1180) by @denrase
13+
- Enha: Replace `StackTrace.empty` with `StackTrace.current` (#1183) by @denrase
14+
- Feat: Introduce `Hint` data bag (#1136) by @denrase
15+
- add missing parameters (#1186) by @denrase
16+
- remove unused file & rename file to match class (#1186) by @denrase
17+
- Use `sentryClientName` instead of `sdk.identifier` (#1135) by @denrase
18+
- Remove deprecated fields for v7 (#1036) by @ueman
19+
- Feat/remove parameter from manual setup classes (#816) by @AliAkberAakash
20+
321
## 7.0.0
422

523
### Features

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 = '6.18.2';
12+
const String sdkVersion = '7.0.0-alpha.1';
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: 6.18.2
2+
version: 7.0.0-alpha.1
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/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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: 6.18.2
3+
version: 7.0.0-alpha.1
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

1111
dependencies:
1212
dio: ^4.0.0
13-
sentry: 6.18.2
13+
sentry: 7.0.0-alpha.1
1414

1515
dev_dependencies:
1616
meta: ^1.3.0

file/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/// The SDK version reported to Sentry.io in the submitted events.
2-
const String sdkVersion = '6.18.2';
2+
const String sdkVersion = '7.0.0-alpha.1';

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: 6.18.2
3+
version: 7.0.0-alpha.1
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.17.0 <2.19.0'
1111

1212
dependencies:
13-
sentry: 6.18.2
13+
sentry: 7.0.0-alpha.1
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: 6.18.2
3+
version: 7.0.0-alpha.1
44

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

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 = '6.18.2';
2+
const String sdkVersion = '7.0.0-alpha.1';
33

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

flutter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sentry_flutter
2-
version: 6.18.2
2+
version: 7.0.0-alpha.1
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
@@ -14,7 +14,7 @@ dependencies:
1414
sdk: flutter
1515
flutter_web_plugins:
1616
sdk: flutter
17-
sentry: 6.18.2
17+
sentry: 7.0.0-alpha.1
1818
package_info_plus: '>=1.0.0 <4.0.0'
1919
meta: ^1.3.0
2020

logging/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 = '6.18.2';
2+
const String sdkVersion = '7.0.0-alpha.1';
33

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

0 commit comments

Comments
 (0)