Skip to content

Commit 8bd9497

Browse files
committed
Merge branch 'main' into feat/supabase
2 parents 30c089b + d52fc3d commit 8bd9497

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+5692
-5369
lines changed

.github/workflows/analyze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
# which ignores pubspec.yaml `dependency_overrides`. Because of that, all `release/*` branches are failing,
6060
# because the package cannot find the "about to be released" version of our sentry-dart package that it depends on.
6161
if: ${{ !startsWith(github.ref, 'refs/heads/release/') && inputs.panaThreshold > 0 }}
62-
runs-on: ubuntu-20.04
62+
runs-on: ubuntu-latest
6363
timeout-minutes: 20
6464
steps:
6565
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,22 @@
22

33
## Unreleased
44

5+
### Dependencies
6+
7+
- Bump Android SDK from v8.9.0 to v8.11.0 ([#2899](https://github.com/getsentry/sentry-dart/pull/2899))
8+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8110)
9+
- [diff](https://github.com/getsentry/sentry-java/compare/8.9.0...8.11.0)
10+
11+
## 9.0.0-beta.1
12+
513
### Features
614

7-
- Generate new trace on navigation ([#2861](https://github.com/getsentry/sentry-dart/pull/2861))
8-
- If you have the `SentryNavigatorObserver` installed in your routing, errors and spans will now be linked in a trace properly.
15+
- Properly generates and links trace IDs for errors and spans ([#2869](https://github.com/getsentry/sentry-dart/pull/2869), [#2861](https://github.com/getsentry/sentry-dart/pull/2861)):
16+
- **With `SentryNavigatorObserver`** - each navigation event starts a new trace.
17+
- **Without `SentryNavigatorObserver` on non-web platforms** - a new trace is started from app
18+
lifecycle hooks.
19+
- **Web without `SentryNavigatorObserver`** - the same trace ID is reused until the page is
20+
refreshed or closed.
921
- Add `FeatureFlagIntegration` ([#2825](https://github.com/getsentry/sentry-dart/pull/2825))
1022
```dart
1123
// Manually track a feature flag
@@ -19,13 +31,12 @@ await SentryFlutter.init(
1931
options.dsn = 'https://[email protected]/add-your-dsn-here';
2032
options.addIntegration(
2133
SentryFirebaseRemoteConfigIntegration(
22-
firebaseRemoteConfig: yourRirebaseRemoteConfig,
34+
firebaseRemoteConfig: yourFirebaseRemoteConfig,
2335
),
2436
);
2537
},
2638
);
2739
```
28-
- Make hierarchical exception grouping opt-in ([#2858](https://github.com/getsentry/sentry-dart/pull/2858))
2940

3041
### Fixes
3142

@@ -40,28 +51,41 @@ await SentryFlutter.init(
4051
- Set HTTP client breadcrumbs log level based on response status code ([#2847](https://github.com/getsentry/sentry-dart/pull/2847))
4152
- 5xx is mapped to `SentryLevel.error`
4253
- 4xx is mapped to `SentryLevel.warning`
43-
- Parent-child relationship for the PlatformExceptions and Cause ([#2803](https://github.com/getsentry/sentry-dart/pull/2803))
44-
- Improves and changes exception grouping
54+
- Parent-child relationship for the PlatformExceptions and Cause ([#2803](https://github.com/getsentry/sentry-dart/pull/2803), [#2858](https://github.com/getsentry/sentry-dart/pull/2858))
55+
- Improves and changes exception grouping. To opt in, set `groupExceptions=true`
56+
- Set `anrEnabled` enabled per default ([#2878](https://github.com/getsentry/sentry-dart/pull/2878))
4557

4658
### API Changes
4759

4860
- Update naming of `LoadImagesListIntegration` to `LoadNativeDebugImagesIntegration` ([#2833](https://github.com/getsentry/sentry-dart/pull/2833))
61+
- Remove `other` from `SentryRequest` ([#2879](https://github.com/getsentry/sentry-dart/pull/2879))
4962

5063
### Dependencies
5164

52-
- Bump Android SDK from v8.2.0 to v8.8.0 ([#2819](https://github.com/getsentry/sentry-dart/pull/2819), [#2831](https://github.com/getsentry/sentry-dart/pull/2831), [#2848](https://github.com/getsentry/sentry-dart/pull/2848), [#2873](https://github.com/getsentry/sentry-dart/pull/2873))
53-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#880)
54-
- [diff](https://github.com/getsentry/sentry-java/compare/8.2.0...8.8.0)
55-
- Bump Cocoa SDK from v8.46.0 to v8.49.0 ([#2820](https://github.com/getsentry/sentry-dart/pull/2820), [#2851](https://github.com/getsentry/sentry-dart/pull/2851))
56-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8490)
57-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.46.0...8.49.0)
65+
- Bump Android SDK from v8.2.0 to v8.9.0 ([#2819](https://github.com/getsentry/sentry-dart/pull/2819), [#2831](https://github.com/getsentry/sentry-dart/pull/2831), [#2848](https://github.com/getsentry/sentry-dart/pull/2848), [#2873](https://github.com/getsentry/sentry-dart/pull/2873), [#2883](https://github.com/getsentry/sentry-dart/pull/2883))
66+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#890)
67+
- [diff](https://github.com/getsentry/sentry-java/compare/8.2.0...8.9.0)
68+
- Bump Cocoa SDK from v8.46.0 to v8.49.1 ([#2820](https://github.com/getsentry/sentry-dart/pull/2820), [#2851](https://github.com/getsentry/sentry-dart/pull/2851), [#2884](https://github.com/getsentry/sentry-dart/pull/2884))
69+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8491)
70+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.46.0...8.49.1)
5871
- Bump Native SDK from v0.8.2 to v0.8.4 ([#2823](https://github.com/getsentry/sentry-dart/pull/2823), [#2872](https://github.com/getsentry/sentry-dart/pull/2872))
5972
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#084)
6073
- [diff](https://github.com/getsentry/sentry-native/compare/0.8.2...0.8.4)
6174
- Bump jni from v0.14.0 to v0.14.1 ([#2800])(https://github.com/getsentry/sentry-dart/pull/2800)
6275
- [changelog](https://github.com/dart-lang/native/blob/main/pkgs/jni/CHANGELOG.md#0141)
6376
- [diff](https://github.com/dart-lang/native/compare/jnigen-v0.14.0..jnigen-v0.14.1)
6477

78+
## 8.14.2
79+
80+
### Improvements
81+
82+
- Improve performance of frames tracking ([#2854](https://github.com/getsentry/sentry-dart/pull/2854))
83+
- Clean up `getSpan()` log ([#2865](https://github.com/getsentry/sentry-dart/pull/2865))
84+
85+
### Fixes
86+
87+
- `options.diagnosticLevel` not affecting logs ([#2856](https://github.com/getsentry/sentry-dart/pull/2856))
88+
6589
## 9.0.0-alpha.2
6690

6791
### Features

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ For detailed usage, check out the inner [dart](https://github.com/getsentry/sent
5454
* [![Flutter docs](https://img.shields.io/badge/documentation-sentry.io-green.svg?label=flutter%20docs)](https://docs.sentry.io/platforms/flutter/)
5555
* [![Dart docs](https://img.shields.io/badge/documentation-sentry.io-green.svg?label=dart%20docs)](https://docs.sentry.io/platforms/dart/)
5656
* [![Discussions](https://img.shields.io/github/discussions/getsentry/sentry-dart.svg)](https://github.com/getsentry/sentry-dart/discussions)
57-
* [![Discord Chat](https://img.shields.io/discord/621778831602221064?logo=discord&logoColor=ffffff&color=7389D8)](https://discord.gg/PXa5Apfe7K)
57+
* [![Discord Chat](https://img.shields.io/discord/621778831602221064?logo=discord&logoColor=ffffff&color=7389D8)](https://discord.gg/gB6ja9uZuN)
5858
* [![Stack Overflow](https://img.shields.io/badge/stack%20overflow-sentry-green.svg)](https://stackoverflow.com/questions/tagged/sentry)
5959
* [![Twitter Follow](https://img.shields.io/twitter/follow/getsentry?label=getsentry&style=social)](https://twitter.com/intent/follow?screen_name=getsentry)
6060

@@ -67,4 +67,4 @@ Run [flutter pub upgrade](https://docs.flutter.dev/release/upgrade#upgrading-pac
6767

6868
## SDK Size Overhead
6969

70-
The Sentry SDKs for Dart and Flutter typically add approximately 1-1.5 MB to an app’s binary size. The exact impact may vary depending on the device architecture.
70+
The Sentry SDKs for Dart and Flutter typically add approximately 1-1.5 MB to an app’s binary size. The exact impact may vary depending on the device architecture.

dart/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,6 @@ Read more about [Automatic Instrumentation](https://docs.sentry.io/platforms/dar
189189
* [![Flutter docs](https://img.shields.io/badge/documentation-sentry.io-green.svg?label=flutter%20docs)](https://docs.sentry.io/platforms/flutter/)
190190
* [![Dart docs](https://img.shields.io/badge/documentation-sentry.io-green.svg?label=dart%20docs)](https://docs.sentry.io/platforms/dart/)
191191
* [![Discussions](https://img.shields.io/github/discussions/getsentry/sentry-dart.svg)](https://github.com/getsentry/sentry-dart/discussions)
192-
* [![Discord Chat](https://img.shields.io/discord/621778831602221064?logo=discord&logoColor=ffffff&color=7389D8)](https://discord.gg/PXa5Apfe7K)
192+
* [![Discord Chat](https://img.shields.io/discord/621778831602221064?logo=discord&logoColor=ffffff&color=7389D8)](https://discord.gg/gB6ja9uZuN)
193193
* [![Stack Overflow](https://img.shields.io/badge/stack%20overflow-sentry-green.svg)](https://stackoverflow.com/questions/tagged/sentry)
194-
* [![Twitter Follow](https://img.shields.io/twitter/follow/getsentry?label=getsentry&style=social)](https://twitter.com/intent/follow?screen_name=getsentry)
194+
* [![Twitter Follow](https://img.shields.io/twitter/follow/getsentry?label=getsentry&style=social)](https://twitter.com/intent/follow?screen_name=getsentry)

dart/lib/src/http_client/failed_request_client.dart

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import 'package:http/http.dart';
2+
23
import '../hint.dart';
3-
import '../type_check_hint.dart';
4-
import '../utils/tracing_utils.dart';
5-
import 'sentry_http_client_error.dart';
6-
import '../protocol.dart';
74
import '../hub.dart';
85
import '../hub_adapter.dart';
6+
import '../protocol.dart';
97
import '../throwable_mechanism.dart';
8+
import '../type_check_hint.dart';
9+
import '../utils/tracing_utils.dart';
1010
import 'sentry_http_client.dart';
11+
import 'sentry_http_client_error.dart';
1112

1213
/// A [http](https://pub.dev/packages/http)-package compatible HTTP client
1314
/// which records events for failed requests.
@@ -177,11 +178,6 @@ class FailedRequestClient extends BaseClient {
177178
headers: _hub.options.sendDefaultPii ? request.headers : null,
178179
uri: request.url,
179180
data: _hub.options.sendDefaultPii ? _getDataFromRequest(request) : null,
180-
// ignore: deprecated_member_use_from_same_package
181-
other: {
182-
'content_length': request.contentLength.toString(),
183-
'duration': requestDuration.toString(),
184-
},
185181
);
186182

187183
final mechanism = Mechanism(

dart/lib/src/hub.dart

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -507,12 +507,7 @@ class Hub {
507507
SentryLevel.warning,
508508
"Instance is disabled and this 'getSpan' call is a no-op.",
509509
);
510-
} else if (!_options.isTracingEnabled()) {
511-
_options.logger(
512-
SentryLevel.info,
513-
"Tracing is disabled and this 'getSpan' returns null.",
514-
);
515-
} else {
510+
} else if (_options.isTracingEnabled()) {
516511
final item = _peek();
517512

518513
span = item.scope.span;

dart/lib/src/protocol/sentry_request.dart

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import 'package:meta/meta.dart';
2-
import 'access_aware_map.dart';
32

4-
import '../utils/iterable_utils.dart';
53
import '../utils/http_sanitizer.dart';
4+
import '../utils/iterable_utils.dart';
5+
import 'access_aware_map.dart';
66

77
/// The Request interface contains information on a HTTP request related to the event.
88
/// In client SDKs, this can be an outgoing request, or the request that rendered the current web page.
@@ -58,11 +58,6 @@ class SentryRequest {
5858
/// This is where information such as CGI/WSGI/Rack keys go that are not HTTP headers.
5959
Map<String, String> get env => Map.unmodifiable(_env ?? const {});
6060

61-
Map<String, String>? _other;
62-
63-
@Deprecated('Will be removed in v8. Use [data] instead')
64-
Map<String, String> get other => Map.unmodifiable(_other ?? const {});
65-
6661
/// The fragment of the request URL.
6762
String? fragment;
6863

@@ -86,8 +81,6 @@ class SentryRequest {
8681
dynamic data,
8782
Map<String, String>? headers,
8883
Map<String, String>? env,
89-
@Deprecated('Will be removed in v8. Use [data] instead')
90-
Map<String, String>? other,
9184
this.unknown,
9285
}) : _data = data,
9386
_headers = headers != null ? Map.from(headers) : null,
@@ -97,8 +90,7 @@ class SentryRequest {
9790
headers?.entries,
9891
(MapEntry<String, String> e) => e.key.toLowerCase() == 'cookie',
9992
)?.value,
100-
_env = env != null ? Map.from(env) : null,
101-
_other = other != null ? Map.from(other) : null;
93+
_env = env != null ? Map.from(env) : null;
10294

10395
factory SentryRequest.fromUri({
10496
required Uri uri,
@@ -108,8 +100,6 @@ class SentryRequest {
108100
Map<String, String>? headers,
109101
Map<String, String>? env,
110102
String? apiTarget,
111-
@Deprecated('Will be removed in v8. Use [data] instead')
112-
Map<String, String>? other,
113103
}) {
114104
final request = SentryRequest(
115105
url: uri.toString(),
@@ -121,7 +111,6 @@ class SentryRequest {
121111
queryString: uri.query,
122112
fragment: uri.fragment,
123113
// ignore: deprecated_member_use_from_same_package
124-
other: other,
125114
apiTarget: apiTarget,
126115
);
127116
request.sanitize();
@@ -139,8 +128,6 @@ class SentryRequest {
139128
data: json['data'],
140129
headers: json.containsKey('headers') ? Map.from(json['headers']) : null,
141130
env: json.containsKey('env') ? Map.from(json['env']) : null,
142-
// ignore: deprecated_member_use_from_same_package
143-
other: json.containsKey('other') ? Map.from(json['other']) : null,
144131
fragment: json['fragment'],
145132
apiTarget: json['api_target'],
146133
unknown: json.notAccessed(),
@@ -158,8 +145,6 @@ class SentryRequest {
158145
if (cookies != null) 'cookies': cookies,
159146
if (headers.isNotEmpty) 'headers': headers,
160147
if (env.isNotEmpty) 'env': env,
161-
// ignore: deprecated_member_use_from_same_package
162-
if (other.isNotEmpty) 'other': other,
163148
if (fragment != null) 'fragment': fragment,
164149
if (apiTarget != null) 'api_target': apiTarget,
165150
};
@@ -177,8 +162,6 @@ class SentryRequest {
177162
Map<String, String>? env,
178163
bool removeCookies = false,
179164
String? apiTarget,
180-
@Deprecated('Will be removed in v8. Use [data] instead')
181-
Map<String, String>? other,
182165
}) =>
183166
SentryRequest(
184167
url: url ?? this.url,
@@ -190,8 +173,6 @@ class SentryRequest {
190173
env: env ?? _env,
191174
fragment: fragment ?? this.fragment,
192175
apiTarget: apiTarget ?? this.apiTarget,
193-
// ignore: deprecated_member_use_from_same_package
194-
other: other ?? _other,
195176
unknown: unknown,
196177
);
197178
}

dart/lib/src/sentry.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,7 @@ class Sentry {
362362
);
363363

364364
/// Gets the current active transaction or span bound to the scope.
365+
/// Returns `null` if performance is disabled in the options.
365366
static ISentrySpan? getSpan() => _hub.getSpan();
366367

367368
static Future<void> addFeatureFlag(String name, dynamic value) async {

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

1111
/// The SDK version reported to Sentry.io in the submitted events.
12-
const String sdkVersion = '9.0.0-alpha.2';
12+
const String sdkVersion = '9.0.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: 9.0.0-alpha.2
2+
version: 9.0.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.

dart/test/http_client/failed_request_client_test.dart

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,6 @@ void main() {
6262
expect(request?.fragment, 'myFragment');
6363
expect(request?.cookies, isNull);
6464
expect(request?.headers, {});
65-
// ignore: deprecated_member_use_from_same_package
66-
expect(request?.other.keys.contains('duration'), true);
67-
// ignore: deprecated_member_use_from_same_package
68-
expect(request?.other.keys.contains('content_length'), true);
6965

7066
// Response is not captured in case of exception
7167
expect(eventCall.contexts.response, isNull);
@@ -174,10 +170,6 @@ void main() {
174170
expect(request?.fragment, 'myFragment');
175171
expect(request?.cookies, isNull);
176172
expect(request?.headers, {});
177-
// ignore: deprecated_member_use_from_same_package
178-
expect(request?.other.keys.contains('duration'), true);
179-
// ignore: deprecated_member_use_from_same_package
180-
expect(request?.other.keys.contains('content_length'), true);
181173

182174
final response = eventCall.contexts.response!;
183175
expect(response.bodySize, 3);

dart/test/protocol/sentry_request_test.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ void main() {
1414
headers: {'header_key': 'header_value'},
1515
env: {'env_key': 'env_value'},
1616
apiTarget: 'GraphQL',
17-
// ignore: deprecated_member_use_from_same_package
18-
other: {'other_key': 'other_value'},
1917
unknown: testUnknown,
2018
);
2119

@@ -28,7 +26,6 @@ void main() {
2826
'headers': {'header_key': 'header_value'},
2927
'env': {'env_key': 'env_value'},
3028
'api_target': 'GraphQL',
31-
'other': {'other_key': 'other_value'},
3229
};
3330
sentryRequestJson.addAll(testUnknown);
3431

dart/test/sentry_test.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// ignore_for_file: deprecated_member_use_from_same_package
2+
13
import 'dart:async';
24
import 'dart:isolate';
35

dio/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ Depending on your configuration, this adds performance tracing and http breadcru
5252
* [![Flutter docs](https://img.shields.io/badge/documentation-sentry.io-green.svg?label=flutter%20docs)](https://docs.sentry.io/platforms/flutter/)
5353
* [![Dart docs](https://img.shields.io/badge/documentation-sentry.io-green.svg?label=dart%20docs)](https://docs.sentry.io/platforms/dart/)
5454
* [![Discussions](https://img.shields.io/github/discussions/getsentry/sentry-dart.svg)](https://github.com/getsentry/sentry-dart/discussions)
55-
* [![Discord Chat](https://img.shields.io/discord/621778831602221064?logo=discord&logoColor=ffffff&color=7389D8)](https://discord.gg/PXa5Apfe7K)
55+
* [![Discord Chat](https://img.shields.io/discord/621778831602221064?logo=discord&logoColor=ffffff&color=7389D8)](https://discord.gg/gB6ja9uZuN)
5656
* [![Stack Overflow](https://img.shields.io/badge/stack%20overflow-sentry-green.svg)](https://stackoverflow.com/questions/tagged/sentry)
57-
* [![Twitter Follow](https://img.shields.io/twitter/follow/getsentry?label=getsentry&style=social)](https://twitter.com/intent/follow?screen_name=getsentry)
57+
* [![Twitter Follow](https://img.shields.io/twitter/follow/getsentry?label=getsentry&style=social)](https://twitter.com/intent/follow?screen_name=getsentry)

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 = '9.0.0-alpha.2';
2+
const String sdkVersion = '9.0.0-beta.1';
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: 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: 9.0.0-alpha.2
3+
version: 9.0.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
@@ -19,7 +19,7 @@ platforms:
1919

2020
dependencies:
2121
dio: ^5.0.0
22-
sentry: 9.0.0-alpha.2
22+
sentry: 9.0.0-beta.1
2323

2424
dev_dependencies:
2525
meta: ^1.3.0

drift/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,6 @@ Future<void> runApp() async {
7777
* [![Flutter docs](https://img.shields.io/badge/documentation-sentry.io-green.svg?label=flutter%20docs)](https://docs.sentry.io/platforms/flutter/)
7878
* [![Dart docs](https://img.shields.io/badge/documentation-sentry.io-green.svg?label=dart%20docs)](https://docs.sentry.io/platforms/dart/)
7979
* [![Discussions](https://img.shields.io/github/discussions/getsentry/sentry-dart.svg)](https://github.com/getsentry/sentry-dart/discussions)
80-
* [![Discord Chat](https://img.shields.io/discord/621778831602221064?logo=discord&logoColor=ffffff&color=7389D8)](https://discord.gg/PXa5Apfe7K)
80+
* [![Discord Chat](https://img.shields.io/discord/621778831602221064?logo=discord&logoColor=ffffff&color=7389D8)](https://discord.gg/gB6ja9uZuN)
8181
* [![Stack Overflow](https://img.shields.io/badge/stack%20overflow-sentry-green.svg)](https://stackoverflow.com/questions/tagged/sentry)
8282
* [![Twitter Follow](https://img.shields.io/twitter/follow/getsentry?label=getsentry&style=social)](https://twitter.com/intent/follow?screen_name=getsentry)

drift/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 = '9.0.0-alpha.2';
2+
const String sdkVersion = '9.0.0-beta.1';
33

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

drift/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_drift
22
description: An integration which adds support for performance tracing for the drift package.
3-
version: 9.0.0-alpha.2
3+
version: 9.0.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
@@ -17,7 +17,7 @@ platforms:
1717
web:
1818

1919
dependencies:
20-
sentry: 9.0.0-alpha.2
20+
sentry: 9.0.0-beta.1
2121
meta: ^1.3.0
2222
drift: ^2.24.0
2323

0 commit comments

Comments
 (0)