[go_router] Add support for Iterable, List and Set to TypedGoRoute (#2698)

* fixes #108437 support for iterable, list and set in for TypedGoRoute

* temporary fix for analyzer ci, will be fixed in go_router_builder code generator

* Revert "temporary fix for analyzer ci, will be fixed in go_router_builder code generator"

This reverts commit 6ae5026c0df976c6003b1e4aee10ed95c6601783.

* added temporary ignore directive

* Revert "added temporary ignore directive"

This reverts commit 48bdeb5abba23847e90ec0ba3c788b279e87eddb.

* fix merge conflict and temoporary remove go_router_builder/example analysis checks

* fix temoporary go_router_builder/example analysis checks and restored global analysis

* fix ci

* version
This commit is contained in:
Mirko Mucaria
2023-02-16 19:09:17 +01:00
committed by GitHub
parent 81cbd4c90c
commit fa7cdfa232
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
## 6.0.8
* Adds support for Iterables, Lists and Sets in query params for TypedGoRoute. [#108437](https://github.com/flutter/flutter/issues/108437).
## 6.0.7
- Add observers parameter to the ShellRoute that will be passed to the nested Navigator.

View File

@ -59,7 +59,7 @@ abstract class GoRouteData {
/// A helper function used by generated code.
///
/// Should not be used directly.
static String $location(String path, {Map<String, String>? queryParams}) =>
static String $location(String path, {Map<String, dynamic>? queryParams}) =>
Uri.parse(path)
.replace(
queryParameters:

View File

@ -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: 6.0.7
version: 6.0.8
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