File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 12.1.2
2
+
3
+ * Fixes an incorrect use of ` extends ` for Dart 3 compatibility.
4
+ * Updates minimum supported SDK version to Flutter 3.10/Dart 3.0.
5
+
1
6
## 12.1.1
2
7
3
8
- Retains query parameters during refresh and first redirect.
75
80
76
81
## 10.1.1
77
82
78
- - Fixes mapping from ` Page ` to ` RouteMatch ` s.
83
+ - Fixes mapping from ` Page ` to ` RouteMatch ` s.
79
84
- Updates minimum supported SDK version to Flutter 3.7/Dart 2.19.
80
85
81
86
## 10.1.0
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ version: 3.0.1
4
4
publish_to : none
5
5
6
6
environment :
7
- sdk : " >=2.19 .0 <4.0.0"
8
- flutter : " >=3.7 .0"
7
+ sdk : " >=3.0 .0 <4.0.0"
8
+ flutter : " >=3.10 .0"
9
9
10
10
dependencies :
11
11
adaptive_navigation : ^0.0.4
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ class GoRouterDelegate extends RouterDelegate<RouteMatchList>
247
247
/// The iterator starts with the navigator that hosts the top-most route. This
248
248
/// navigator may not be the inner-most navigator if the top-most route is a
249
249
/// pageless route, such as a dialog or bottom sheet.
250
- class _NavigatorStateIterator extends Iterator <NavigatorState > {
250
+ class _NavigatorStateIterator implements Iterator <NavigatorState > {
251
251
_NavigatorStateIterator (this .matchList, this .root)
252
252
: index = matchList.matches.length - 1 ;
253
253
Original file line number Diff line number Diff line change 1
1
name : go_router
2
2
description : A declarative router for Flutter based on Navigation 2 supporting
3
3
deep linking, data-driven routes and more
4
- version : 12.1.1
4
+ version : 12.1.2
5
5
repository : https://github.com/flutter/packages/tree/main/packages/go_router
6
6
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+go_router%22
7
7
8
8
environment :
9
- sdk : " >=2.19 .0 <4.0.0"
10
- flutter : " >=3.7 .0"
9
+ sdk : " >=3.0 .0 <4.0.0"
10
+ flutter : " >=3.10 .0"
11
11
12
12
dependencies :
13
13
collection : ^1.15.0
You can’t perform that action at this time.
0 commit comments