File tree Expand file tree Collapse file tree 7 files changed +14
-7
lines changed Expand file tree Collapse file tree 7 files changed +14
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 14.6.2
2
+
3
+ - Replaces deprecated collection method usage.
4
+
1
5
## 14.6.1
2
6
3
7
- Fixed ` PopScope ` , and ` WillPopScop ` was not handled properly in the Root routes.
Original file line number Diff line number Diff line change @@ -978,7 +978,7 @@ class StatefulShellRoute extends ShellRouteBase {
978
978
String ? restorationScopeId, List <StatefulShellBranch > branches) {
979
979
if (branches
980
980
.map ((StatefulShellBranch e) => e.restorationScopeId)
981
- .whereNotNull ()
981
+ .nonNulls
982
982
.isNotEmpty) {
983
983
assert (
984
984
restorationScopeId != null ,
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 : 14.6.1
4
+ version : 14.6.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
Original file line number Diff line number Diff line change
1
+ ## 22.6.3
2
+
3
+ * Replaces deprecated collection method usage.
4
+
1
5
## 22.6.2
2
6
3
7
* Removes the ` @protected ` annotation from the InstanceManager field of the
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import 'ast.dart';
14
14
/// The current version of pigeon.
15
15
///
16
16
/// This must match the version in pubspec.yaml.
17
- const String pigeonVersion = '22.6.2 ' ;
17
+ const String pigeonVersion = '22.6.3 ' ;
18
18
19
19
/// Read all the content from [stdin] to a String.
20
20
String readStdin () {
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style license that can be
3
3
// found in the LICENSE file.
4
4
5
- import 'package:collection/collection.dart' as collection;
6
5
import 'package:graphs/graphs.dart' ;
7
6
import 'package:pub_semver/pub_semver.dart' ;
8
7
@@ -158,7 +157,7 @@ class SwiftGenerator extends StructuredGenerator<SwiftOptions> {
158
157
final Iterable <String > proxyApiImports = root.apis
159
158
.whereType <AstProxyApi >()
160
159
.map ((AstProxyApi proxyApi) => proxyApi.swiftOptions? .import)
161
- .whereNotNull ()
160
+ .nonNulls
162
161
.toSet ();
163
162
for (final String import in proxyApiImports) {
164
163
indent.writeln ('import $import ' );
@@ -404,7 +403,7 @@ static func fromList(_ ${varNamePrefix}list: [Any?]) -> Any? {
404
403
type: type,
405
404
wrapped: wrapped
406
405
)
407
-
406
+
408
407
return wrapper.unwrap()
409
408
}
410
409
''' );
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: pigeon
2
2
description : Code generator tool to make communication between Flutter and the host platform type-safe and easier.
3
3
repository : https://github.com/flutter/packages/tree/main/packages/pigeon
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+pigeon%22
5
- version : 22.6.2 # This must match the version in lib/generator_tools.dart
5
+ version : 22.6.3 # This must match the version in lib/generator_tools.dart
6
6
7
7
environment :
8
8
sdk : ^3.3.0
You can’t perform that action at this time.
0 commit comments