diff --git a/packages/go_router/CHANGELOG.md b/packages/go_router/CHANGELOG.md index 515b93302174..7411866f1966 100644 --- a/packages/go_router/CHANGELOG.md +++ b/packages/go_router/CHANGELOG.md @@ -1,3 +1,7 @@ +## 17.2.2 + +- Fixes `pop()` restoring stale configuration when route has `onExit`, which could cause the popped route to reappear with async redirects. + ## 17.2.1 - Fixes chained top-level redirects not being fully resolved (e.g. `/ → /a → /b` stopping at `/a`). diff --git a/packages/go_router/pending_changelogs/11241_fix_pop_restore.yaml b/packages/go_router/pending_changelogs/11241_fix_pop_restore.yaml deleted file mode 100644 index eabec681742b..000000000000 --- a/packages/go_router/pending_changelogs/11241_fix_pop_restore.yaml +++ /dev/null @@ -1,3 +0,0 @@ -changelog: | - - Fixes `pop()` restoring stale configuration when route has `onExit`, which could cause the popped route to reappear with async redirects. -version: patch diff --git a/packages/go_router/pubspec.yaml b/packages/go_router/pubspec.yaml index 0f0bde31e55d..95fe8002ca3d 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: 17.2.1 +version: 17.2.2 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