From 57251c9b45097ffe880ab2c6b10d02577943acd8 Mon Sep 17 00:00:00 2001 From: Altynbek Aidarbekov Date: Mon, 6 May 2024 15:11:57 +0500 Subject: [PATCH 1/2] [go_router] docs: updated link in navigation.md to correct file path for push_with_shell_route.dart --- packages/go_router/doc/navigation.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/go_router/doc/navigation.md b/packages/go_router/doc/navigation.md index 74bc86631ca9..af7d1b3bb1ae 100644 --- a/packages/go_router/doc/navigation.md +++ b/packages/go_router/doc/navigation.md @@ -86,8 +86,7 @@ screen along with the shell is placed entirely on top of the current screen. ![An animation shows pushing a new screen with the different shell as current screen](https://flutter.github.io/assets-for-api-docs/assets/go_router/push_different_shell.gif) To try out the behavior yourself, see -[push_with_shell_route.dart](https://github.com/flutter/packages/blob/main/packages/go_router/example/lib/extra_codec.dart). - +[push_with_shell_route.dart](https://github.com/flutter/packages/blob/main/packages/go_router/example/lib/push_with_shell_route.dart). ## Returning values Waiting for a value to be returned: From fc0525c67728ca46162d1f6c0e7b1c59bb478e82 Mon Sep 17 00:00:00 2001 From: Altynbek Aidarbekov Date: Sat, 11 May 2024 00:48:35 +0500 Subject: [PATCH 2/2] [go_router] chore: bump version to 14.1.4 and update CHANGELOG.md with fix for URL in `navigation.md` --- packages/go_router/CHANGELOG.md | 4 ++++ packages/go_router/pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/go_router/CHANGELOG.md b/packages/go_router/CHANGELOG.md index 7b3e451ba90b..b8a19b4bbb48 100644 --- a/packages/go_router/CHANGELOG.md +++ b/packages/go_router/CHANGELOG.md @@ -1,3 +1,7 @@ +## 14.1.4 + +- Fixes a URL in `navigation.md`. + ## 14.1.3 - Improves the logging of routes when `debugLogDiagnostics` is enabled or `debugKnownRoutes() is called. Explains the position of shell routes in the route tree. Prints the widget name of the routes it is building. diff --git a/packages/go_router/pubspec.yaml b/packages/go_router/pubspec.yaml index 578b394be778..4d8331d16a6f 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: 14.1.3 +version: 14.1.4 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