Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
fb09b38
setup
denrase Nov 14, 2023
8cefb7e
introduce wrappers for isar and isar_collection, wrap all async methods
denrase Nov 14, 2023
cc31e4b
Merge branch 'main' into feat/isar
denrase Nov 20, 2023
2420ec9
correctly setup tests
denrase Nov 20, 2023
d780a41
test isar & isar collection
denrase Nov 21, 2023
452015f
test throwing isar collection methods
denrase Nov 21, 2023
4ba63b6
add workflow for tests
denrase Nov 21, 2023
988ca81
also bump isar version
denrase Nov 21, 2023
2385a2e
add commented oout entry to craft.yml
denrase Nov 21, 2023
7910e51
Update example app
denrase Nov 21, 2023
5ee8639
Update examples
denrase Nov 21, 2023
b390fae
Add changelog entry
denrase Nov 21, 2023
fe19113
run format
denrase Nov 21, 2023
0b81c7f
Merge branch 'main' into feat/isar
denrase Nov 27, 2023
1caeb4a
fix readme
denrase Nov 27, 2023
9bf5a6d
remove separate isar import
denrase Nov 27, 2023
30e6254
add back isar dependency (used in tests)
denrase Nov 27, 2023
7961474
add generated person.g
denrase Nov 27, 2023
770a4e3
update workflows
denrase Nov 27, 2023
a47a830
add coverage to gitignore
denrase Nov 27, 2023
61cf436
ignore warning in generated mock code
denrase Nov 27, 2023
ead1481
change min coverage to 55
denrase Nov 27, 2023
30fdfa4
Add workaround for issue where UserSchema leads to compile issue on web
denrase Nov 27, 2023
2d4e12e
Merge branch 'main' into feat/isar
denrase Dec 4, 2023
23abf7e
fix changelog
denrase Dec 4, 2023
a4b42fa
update readme files
denrase Dec 5, 2023
34920d4
Merge branch 'main' into feat/isar
denrase Dec 5, 2023
65b6531
Merge branch 'main' into feat/isar
denrase Dec 18, 2023
20e3f8c
fix changelog
denrase Dec 18, 2023
525d3f8
Merge branch 'main' into feat/isar
denrase Dec 19, 2023
cbbaae8
fix changelog
denrase Dec 19, 2023
20d53f5
remove isar generator because of test failure on macOS (missing isar …
denrase Dec 19, 2023
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
Merge branch 'main' into feat/isar
# Conflicts:
#	flutter/example/lib/main.dart
  • Loading branch information
denrase committed Dec 18, 2023
commit 65b65316ae5883beb93ff74c64f879817fb8d13c
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
- Add debug_meta to all events ([#1756](https://github.com/getsentry/sentry-dart/pull/1756))
- Fixes obfuscated stacktraces when `captureMessage` or `captureEvent` is called with `attachStacktrace` option

### Features

- Add option to opt out of fatal level for automatically collected errors ([#1738](https://github.com/getsentry/sentry-dart/pull/1738))
- Add `Hive` breadcrumbs ([#1773](https://github.com/getsentry/sentry-dart/pull/1773))
- Add `ConnectivityIntegration` for web ([#1765](https://github.com/getsentry/sentry-dart/pull/1765))
- We only get the info if online/offline on web platform. The added breadcrumb is set to either `wifi` or `none`.

### Dependencies

- Bump Android SDK from v6.34.0 to v7.0.0 ([#1768](https://github.com/getsentry/sentry-dart/pull/1768))
Expand Down
40 changes: 29 additions & 11 deletions flutter/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,19 @@ class MainScaffold extends StatelessWidget {
child: Column(
children: [
if (_isIntegrationTest) const IntegrationTestWidget(),
const Center(child: Text('Trigger an action:\n')),
const Center(child: Text('Trigger an action.\n')),
const Padding(
padding: EdgeInsets.all(15), //apply padding to all four sides
child: Center(
child: Text(
'Long press a button to see more information. (hover on web)')),
),
TooltipButton(
onPressed: () => navigateToAutoCloseScreen(context),
text:
'Pushes a screen and creates a transaction named \'AutoCloseScreen\' with a child span that finishes after 3 seconds. \nAfter the screen has popped the transaction can then be seen on the performance page.',
buttonTitle: 'Route Navigation Observer',
),
if (!UniversalPlatform.isWeb)
TooltipButton(
onPressed: driftTest,
Expand All @@ -195,20 +207,26 @@ class MainScaffold extends StatelessWidget {
buttonTitle: 'drift',
),
if (!UniversalPlatform.isWeb)
ElevatedButton(
onPressed: () => hiveTest(),
child: const Text('hive'),
TooltipButton(
onPressed: hiveTest,
text:
'Executes CRUD operations on an in-memory with Hive and sends the created transaction to Sentry.',
buttonTitle: 'hive',
),
if (!UniversalPlatform.isWeb)
ElevatedButton(
onPressed: () => isarTest(),
child: const Text('isar'),
TooltipButton(
onPressed: isarTest,
text:
'Executes CRUD operations on an in-memory with Isart and sends the created transaction to Sentry.',
buttonTitle: 'isar',
),
ElevatedButton(
onPressed: () => sqfliteTest(),
child: const Text('sqflite'),
TooltipButton(
onPressed: sqfliteTest,
text:
'Executes CRUD operations on an in-memory with Hive and sends the created transaction to Sentry.',
buttonTitle: 'sqflite',
),
ElevatedButton(
TooltipButton(
onPressed: () => SecondaryScaffold.openSecondaryScaffold(context),
text:
'Demonstrates how the router integration adds a navigation event to the breadcrumbs that can be seen when throwing an exception for example.',
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.