Update dependency go_router to v17 #17

Open
renovate wants to merge 1 commits from renovate/go_router-17.x into main
Collaborator

This PR contains the following updates:

Package Type Update Change
go_router (source) dependencies major ^15.0.0 -> 17.0.1

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

flutter/packages (go_router)

v17.0.1

Compare Source

  • Fixes an issue where onEnter blocking causes navigation stack loss (stale state restoration).
  • Updates minimum supported SDK version to Flutter 3.32/Dart 3.8.

v17.0.0

Compare Source

  • BREAKING CHANGE
    • ShellRoute's navigating changes notify GoRouter's observers by default.
    • Adds notifyRootObserver to ShellRouteBase, ShellRoute, StatefulShellRoute, ShellRouteData.$route, TypedShellRoute, TypedStatefulShellRoute.

v16.3.0

Compare Source

  • Adds a top-level onEnter callback with access to current and next route states.

v16.2.5

Compare Source

  • Fixes GoRouter.of(context) access inside redirect callbacks by providing router access through Zone-based context tracking.
  • Adds support for using context extension methods (e.g., context.namedLocation(), context.go()) within redirect callbacks.

v16.2.4

Compare Source

  • Fix Android Cold Start deep link with empty path losing scheme and authority.

v16.2.3

Compare Source

  • Fixes an issue where iOS back gesture pops entire ShellRoute instead of the active sub-route.

v16.2.2

Compare Source

  • Fixes broken links in readme.

v16.2.1

Compare Source

  • Adds state restoration topic to documentation.

v16.2.0

Compare Source

  • Adds RelativeGoRouteData and TypedRelativeGoRoute.
  • Updates minimum supported SDK version to Flutter 3.29/Dart 3.7.

v16.1.0

Compare Source

  • Adds annotation for go_router_builder that enable custom string encoder/decoder #​110781. Requires go_router_builder >= 3.1.0.

v16.0.0

Compare Source

  • BREAKING CHANGE
    • Bump major version for GoRouteData breaking changes.
    • (Previously 15.2.4) Fixes routing to treat URLs with different cases (e.g., /Home vs /home) as distinct routes.
    • (Previously 15.2.3) Updates Type-safe routes topic documentation to use the mixin from go_router_builder 3.0.0.
    • (Previously 15.2.2) Fixes calling PopScope.onPopInvokedWithResult in branch routes.
    • (Previously 15.2.1) Fixes Popping state and re-rendering scaffold at the same time doesn't update the URL on web.
    • (Previously 15.2.0) GoRouteData now defines .location, .go(context), .push(context), .pushReplacement(context), and replace(context) to be used for Type-safe routing. Requires go_router_builder >= 3.0.0.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [go_router](https://github.com/flutter/packages) ([source](https://github.com/flutter/packages/tree/HEAD/packages/go_router)) | dependencies | major | `^15.0.0` -> `17.0.1` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>flutter/packages (go_router)</summary> ### [`v17.0.1`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1701) [Compare Source](https://github.com/flutter/packages/compare/go_router-v17.0.0...go_router-v17.0.1) - Fixes an issue where `onEnter` blocking causes navigation stack loss (stale state restoration). - Updates minimum supported SDK version to Flutter 3.32/Dart 3.8. ### [`v17.0.0`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1700) [Compare Source](https://github.com/flutter/packages/compare/go_router-v16.3.0...go_router-v17.0.0) - **BREAKING CHANGE** - `ShellRoute`'s navigating changes notify `GoRouter`'s observers by default. - Adds `notifyRootObserver` to `ShellRouteBase`, `ShellRoute`, `StatefulShellRoute`, `ShellRouteData.$route`, `TypedShellRoute`, `TypedStatefulShellRoute`. ### [`v16.3.0`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1630) [Compare Source](https://github.com/flutter/packages/compare/go_router-v16.2.5...go_router-v16.3.0) - Adds a top-level `onEnter` callback with access to current and next route states. ### [`v16.2.5`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1625) [Compare Source](https://github.com/flutter/packages/compare/go_router-v16.2.4...go_router-v16.2.5) - Fixes `GoRouter.of(context)` access inside redirect callbacks by providing router access through Zone-based context tracking. - Adds support for using context extension methods (e.g., `context.namedLocation()`, `context.go()`) within redirect callbacks. ### [`v16.2.4`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1624) [Compare Source](https://github.com/flutter/packages/compare/go_router-v16.2.3...go_router-v16.2.4) - Fix Android Cold Start deep link with empty path losing scheme and authority. ### [`v16.2.3`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1623) [Compare Source](https://github.com/flutter/packages/compare/go_router-v16.2.2...go_router-v16.2.3) - Fixes an issue where iOS back gesture pops entire ShellRoute instead of the active sub-route. ### [`v16.2.2`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1622) [Compare Source](https://github.com/flutter/packages/compare/go_router-v16.2.1...go_router-v16.2.2) - Fixes broken links in readme. ### [`v16.2.1`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1621) [Compare Source](https://github.com/flutter/packages/compare/go_router-v16.2.0...go_router-v16.2.1) - Adds state restoration topic to documentation. ### [`v16.2.0`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1620) [Compare Source](https://github.com/flutter/packages/compare/go_router-v16.1.0...go_router-v16.2.0) - Adds `RelativeGoRouteData` and `TypedRelativeGoRoute`. - Updates minimum supported SDK version to Flutter 3.29/Dart 3.7. ### [`v16.1.0`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1610) [Compare Source](https://github.com/flutter/packages/compare/go_router-v16.0.0...go_router-v16.1.0) - Adds annotation for go\_router\_builder that enable custom string encoder/decoder [#&#8203;110781](https://github.com/flutter/flutter/issues/110781). **Requires go\_router\_builder >= 3.1.0**. ### [`v16.0.0`](https://github.com/flutter/packages/blob/HEAD/packages/go_router/CHANGELOG.md#1600) [Compare Source](https://github.com/flutter/packages/compare/go_router-v15.1.3...go_router-v16.0.0) - **BREAKING CHANGE** - Bump major version for `GoRouteData` breaking changes. - (Previously 15.2.4) Fixes routing to treat URLs with different cases (e.g., `/Home` vs `/home`) as distinct routes. - (Previously 15.2.3) Updates Type-safe routes topic documentation to use the mixin from `go_router_builder` 3.0.0. - (Previously 15.2.2) Fixes calling `PopScope.onPopInvokedWithResult` in branch routes. - (Previously 15.2.1) Fixes Popping state and re-rendering scaffold at the same time doesn't update the URL on web. - (Previously 15.2.0) `GoRouteData` now defines `.location`, `.go(context)`, `.push(context)`, `.pushReplacement(context)`, and `replace(context)` to be used for [Type-safe routing](https://pub.dev/documentation/go_router/latest/topics/Type-safe%20routes-topic.html). **Requires go\_router\_builder >= 3.0.0**. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4wLjAiLCJ1cGRhdGVkSW5WZXIiOiI0Mi40My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJib3QiLCJ1cGdyYWRlIl19-->
renovate added 1 commit 2025-11-06 18:26:50 +00:00
Update dependency go_router to v17
Some checks failed
renovate/artifacts Artifact file update failure
f800f96799
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pubspec.lock
Command failed: flutter pub upgrade go_router
/bin/sh: 1: flutter: not found

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: pubspec.lock ``` Command failed: flutter pub upgrade go_router /bin/sh: 1: flutter: not found ```
renovate force-pushed renovate/go_router-17.x from f800f96799 to 25acdc31f5 2025-11-18 11:35:47 +00:00 Compare
renovate force-pushed renovate/go_router-17.x from 25acdc31f5 to 4f97706011 2025-12-10 23:16:57 +00:00 Compare
Some checks failed
renovate/artifacts Artifact file update failure
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/go_router-17.x:renovate/go_router-17.x
git checkout renovate/go_router-17.x
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: erichardson/wheres-my-sign#17