Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
backlog
  • Loading branch information
marandaneto committed Oct 21, 2020
commit df04c5223b3a9e753cdf8cf69efcccbfd2f5d28f
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
- Added Scope and Breadcrumb ring buffer #109
- Added Hub to SDK #113
- Ref: Hub passes the Scope to SentryClient
- Feat: sentry options #116
- Feature: sentry options #116
- Ref: SentryId generates UUID
- Ref: Event now is SentryEvent and added GPU

# `package:sentry` changelog

Expand Down
2 changes: 1 addition & 1 deletion flutter/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Future<void> main() async {
runApp(MyApp());
}, (error, stackTrace) async {
print('Capture from runZonedGuarded $error');
final event = Event(
final event = SentryEvent(
exception: error,
stackTrace: stackTrace,
// release is required on Web to match the source maps
Expand Down