diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e47417..6c4da56b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ ## 0.6.4 * Added excludedParameters in CatcherOptions. * Updated dependencies +* [BREAKING_CHANGE] Added isContextRequired parameter for ReportHandler. +* [BREAKING_CHANGE] ReportHandler handle method requires additional BuildContext parameter. +* [BREAKING_CHANGE] Toast handler supports now all platforms. ## 0.6.3 * Updated sentry version. diff --git a/lib/model/catcher_options.dart b/lib/model/catcher_options.dart index fcf97aec..40090916 100644 --- a/lib/model/catcher_options.dart +++ b/lib/model/catcher_options.dart @@ -64,7 +64,7 @@ class CatcherOptions { explicitExceptionHandlersMap = {}, handleSilentError = true, screenshotsPath = "", - this.excludedParameters = const []; + excludedParameters = const []; /// Builds default catcher options debug instance CatcherOptions.getDefaultDebugOptions() @@ -77,7 +77,7 @@ class CatcherOptions { explicitExceptionHandlersMap = {}, handleSilentError = true, screenshotsPath = "", - this.excludedParameters = const []; + excludedParameters = const []; /// Builds default catcher options profile instance CatcherOptions.getDefaultProfileOptions() @@ -90,5 +90,5 @@ class CatcherOptions { explicitExceptionHandlersMap = {}, handleSilentError = true, screenshotsPath = "", - this.excludedParameters = const []; + excludedParameters = const []; } diff --git a/platform_support.md b/platform_support.md index b2fc23bb..b4f8cfa6 100644 --- a/platform_support.md +++ b/platform_support.md @@ -17,7 +17,7 @@ Check table below to see which features are enabled in Platforms: | Http handler | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | | Sentry handler | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | | Slack handler | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | -| Toast handler | ✔ | ✔ | ✔ | ❌ | ❌ | ❌ | +| Toast handler | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | | Custom handler | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | | Dialog report mode | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | | Page report mode | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |