From a9731f23d3ce108ca4239fe8369d4a9a49a2f22a Mon Sep 17 00:00:00 2001 From: mori yuta <59682979+utamori@users.noreply.github.com> Date: Fri, 21 Jul 2023 07:15:06 +0900 Subject: [PATCH] [go_router] fix error handling page link (#4296) I have corrected the link to the document, as it was incorrect. --- packages/go_router/CHANGELOG.md | 4 ++++ packages/go_router/lib/src/router.dart | 2 +- packages/go_router/pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/go_router/CHANGELOG.md b/packages/go_router/CHANGELOG.md index cd4e016c07..95953dee4c 100644 --- a/packages/go_router/CHANGELOG.md +++ b/packages/go_router/CHANGELOG.md @@ -1,3 +1,7 @@ +## 9.1.1 + +- Fixes a link in error handling documentation. + ## 9.1.0 - Adds the parentNavigatorKey parameter to ShellRouteData and StatefulShellRouteData. diff --git a/packages/go_router/lib/src/router.dart b/packages/go_router/lib/src/router.dart index 8cd3464ba1..7de73207a2 100644 --- a/packages/go_router/lib/src/router.dart +++ b/packages/go_router/lib/src/router.dart @@ -46,7 +46,7 @@ typedef GoExceptionHandler = void Function( /// `errorPageBuilder` to build a page for the Router if it is not null; /// otherwise, it is passed to `errorBuilder` instead. If none of them are /// provided, go_router builds a default error screen to show the exception. -/// See [Error handling](https://pub.dev/documentation/go_router/latest/topics/error-handling.html) +/// See [Error handling](https://pub.dev/documentation/go_router/latest/topics/Error%20handling-topic.html) /// for more details. /// /// See also: diff --git a/packages/go_router/pubspec.yaml b/packages/go_router/pubspec.yaml index 24bb28db2b..d67fecf8f4 100644 --- a/packages/go_router/pubspec.yaml +++ b/packages/go_router/pubspec.yaml @@ -1,7 +1,7 @@ name: go_router description: A declarative router for Flutter based on Navigation 2 supporting deep linking, data-driven routes and more -version: 9.1.0 +version: 9.1.1 repository: https://github.com/flutter/packages/tree/main/packages/go_router issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+go_router%22