Skip to content

Commit b675be4

Browse files
committed
release: 6.4.0-beta.1
1 parent e35d801 commit b675be4

File tree

9 files changed

+26
-11
lines changed

9 files changed

+26
-11
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,21 @@
7777
* Feat: Sentry Performance for HTTP client (#603)
7878
* Performance API for Dart/Flutter (#530)
7979

80+
## 6.4.0-beta.1
81+
82+
### Various fixes & improvements
83+
84+
- fix: disable log by default in debug mode (#753) by @AliAkberAakash
85+
- Feature: Improve Dio exception reports (#718) by @ueman
86+
- Fix: Do not report duplicated packages and integrations (#760) by @marandaneto
87+
- [Dio] Replace failed http client adapter with interceptor (#728) by @ueman
88+
- Fix: Add missing return values - dart analyzer (#742) by @marandaneto
89+
- Bump: Sentry-Android to 5.6.1 and Sentry-Cocoa to 7.9.0 (#736) by @dgilperez
90+
- Feat: Support `maxSpan` for performance API and expose `SentryOptions` through `Hub` (#716) by @denrase
91+
- fix: await ZonedGuard integration to run (#732) by @blaugold
92+
- Fix wrong SDK being reported when sentry_logging is used (#725) by @kuhnroyal
93+
- prepare 6.3.0-beta.5 (17894ef5) by @marandaneto
94+
8095
## Breaking Changes:
8196

8297
* `SentryEvent` inherits from the `SentryEventLike` mixin

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.3.0';
12+
const String sdkVersion = '6.4.0-beta.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.3.0
2+
version: 6.4.0-beta.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.3.0
3+
version: 6.4.0-beta.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.3.0
13+
sentry: ^6.4.0-beta.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.3.0
3+
version: 6.4.0-beta.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.3.0';
2+
const String sdkVersion = '6.4.0-beta.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.3.0
2+
version: 6.4.0-beta.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.3.0
17+
sentry: ^6.4.0-beta.1
1818
package_info_plus: ^1.0.0
1919

2020
dev_dependencies:

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.3.0';
2+
const String sdkVersion = '6.4.0-beta.1';
33

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

logging/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_logging
22
description: An integration which adds support for recording log from the logging package.
3-
version: 6.3.0
3+
version: 6.4.0-beta.1
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
@@ -10,7 +10,7 @@ environment:
1010

1111
dependencies:
1212
logging: ^1.0.0
13-
sentry: ^6.3.0
13+
sentry: ^6.4.0-beta.1
1414

1515
dev_dependencies:
1616
lints: ^1.0.0

0 commit comments

Comments
 (0)