diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f045c4039b..439aac101b 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -21,9 +21,9 @@ If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> -[Contributor Guide]: https://github.com/flutter/packages/blob/master/CONTRIBUTING.md +[Contributor Guide]: https://github.com/flutter/packages/blob/main/CONTRIBUTING.md [Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene -[relevant style guides]: https://github.com/flutter/packages/blob/master/CONTRIBUTING.md#style +[relevant style guides]: https://github.com/flutter/packages/blob/main/CONTRIBUTING.md#style [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2d9c900a20..2b46cbd66a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing to Flutter Packages -[](https://cirrus-ci.com/github/flutter/packages/master) +[](https://cirrus-ci.com/github/flutter/packages/main) _See also: [Flutter's code of conduct](https://github.com/flutter/flutter/blob/master/CODE_OF_CONDUCT.md)_ diff --git a/README.md b/README.md index e1a0d899ab..046697fa8f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Flutter Packages -[](https://cirrus-ci.com/github/flutter/packages/master) +[](https://cirrus-ci.com/github/flutter/packages/main) [](https://github.com/flutter/packages/actions/workflows/release.yml) This repo is a companion repo to the main [flutter repo]( @@ -25,7 +25,7 @@ is ready you can [publish](https://flutter.io/developing-packages/#publish) to the [pub repository](https://pub.dartlang.org/). If you wish to contribute a change to any of the existing packages in this repo, -please review our [contribution guide](https://github.com/flutter/packages/blob/master/CONTRIBUTING.md), +please review our [contribution guide](https://github.com/flutter/packages/blob/main/CONTRIBUTING.md), and send a [pull request](https://github.com/flutter/packages/pulls). ## Packages diff --git a/packages/extension_google_sign_in_as_googleapis_auth/CHANGELOG.md b/packages/extension_google_sign_in_as_googleapis_auth/CHANGELOG.md index f6fa4afb9c..3a440e91e5 100644 --- a/packages/extension_google_sign_in_as_googleapis_auth/CHANGELOG.md +++ b/packages/extension_google_sign_in_as_googleapis_auth/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.5 + +* Updates README to reference the correct github URL. + ## 2.0.4 * Update example with the latest changes from `google_sign_in`, so it builds again on Android. [#89301](https://github.com/flutter/flutter/issues/89301). diff --git a/packages/extension_google_sign_in_as_googleapis_auth/README.md b/packages/extension_google_sign_in_as_googleapis_auth/README.md index f8ea88c3af..01caf5fc53 100644 --- a/packages/extension_google_sign_in_as_googleapis_auth/README.md +++ b/packages/extension_google_sign_in_as_googleapis_auth/README.md @@ -28,7 +28,7 @@ final response = await peopleApi.people.connections.list( This package contains a modified version of Flutter's Google Sign In example app that uses `package:googleapis`' API clients, instead of raw http requests. -See it [here](https://github.com/flutter/packages/blob/master/packages/extension_google_sign_in_as_googleapis_auth/example/lib/main.dart). +See it [here](https://github.com/flutter/packages/blob/main/packages/extension_google_sign_in_as_googleapis_auth/example/lib/main.dart). The original code (and its license) can be seen [here](https://github.com/flutter/plugins/tree/main/packages/google_sign_in/google_sign_in/example/lib/main.dart). diff --git a/packages/extension_google_sign_in_as_googleapis_auth/pubspec.yaml b/packages/extension_google_sign_in_as_googleapis_auth/pubspec.yaml index d92058c28b..fb265e5ecf 100644 --- a/packages/extension_google_sign_in_as_googleapis_auth/pubspec.yaml +++ b/packages/extension_google_sign_in_as_googleapis_auth/pubspec.yaml @@ -8,7 +8,7 @@ name: extension_google_sign_in_as_googleapis_auth description: A bridge package between google_sign_in and googleapis_auth, to create Authenticated Clients from google_sign_in user credentials. repository: https://github.com/flutter/packages/tree/main/packages/extension_google_sign_in_as_googleapis_auth issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+extension_google_sign_in_as_googleapis_auth%22 -version: 2.0.4 +version: 2.0.5 environment: sdk: ">=2.12.0 <3.0.0" diff --git a/packages/flutter_image/CHANGELOG.md b/packages/flutter_image/CHANGELOG.md index 77ce78e9a3..c59a36194e 100644 --- a/packages/flutter_image/CHANGELOG.md +++ b/packages/flutter_image/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.1.3 + +* Suppresses deprecation warnings. + ## 4.1.2 * Migrates from `ui.hash*` to `Object.hash*`. diff --git a/packages/flutter_image/lib/network.dart b/packages/flutter_image/lib/network.dart index fc633dd1a9..10e8be8b31 100644 --- a/packages/flutter_image/lib/network.dart +++ b/packages/flutter_image/lib/network.dart @@ -96,6 +96,9 @@ class NetworkImageWithRetry extends ImageProvider<NetworkImageWithRetry> { } @override + // TODO(cyanglaz): migrate to use the new APIs + // https://github.com/flutter/flutter/issues/105336 + // ignore: deprecated_member_use ImageStreamCompleter load(NetworkImageWithRetry key, DecoderCallback decode) { return OneFrameImageStreamCompleter(_loadWithRetry(key, decode), informationCollector: () sync* { @@ -124,7 +127,11 @@ class NetworkImageWithRetry extends ImageProvider<NetworkImageWithRetry> { } Future<ImageInfo> _loadWithRetry( - NetworkImageWithRetry key, DecoderCallback decode) async { + // TODO(cyanglaz): migrate to use the new APIs + // https://github.com/flutter/flutter/issues/105336 + // ignore: deprecated_member_use + NetworkImageWithRetry key, + DecoderCallback decode) async { assert(key == this); final Stopwatch stopwatch = Stopwatch()..start(); diff --git a/packages/flutter_image/pubspec.yaml b/packages/flutter_image/pubspec.yaml index 99879b7dfc..6e8c362407 100644 --- a/packages/flutter_image/pubspec.yaml +++ b/packages/flutter_image/pubspec.yaml @@ -3,7 +3,7 @@ description: > Image utilities for Flutter: improved network providers, effects, etc. repository: https://github.com/flutter/packages/tree/main/packages/flutter_image issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_image%22 -version: 4.1.2 +version: 4.1.3 environment: sdk: ">=2.12.0 <3.0.0" diff --git a/packages/flutter_image/test/network_test.dart b/packages/flutter_image/test/network_test.dart index 187688f175..f559ca2645 100644 --- a/packages/flutter_image/test/network_test.dart +++ b/packages/flutter_image/test/network_test.dart @@ -142,6 +142,9 @@ void assertThatImageLoadingFails( ) { final ImageStreamCompleter completer = subject.load( subject, + // TODO(cyanglaz): migrate to use the new APIs + // https://github.com/flutter/flutter/issues/105336 + // ignore: deprecated_member_use PaintingBinding.instance.instantiateImageCodec, ); completer.addListener(ImageStreamListener( @@ -159,6 +162,9 @@ void assertThatImageLoadingSucceeds( ) { final ImageStreamCompleter completer = subject.load( subject, + // TODO(cyanglaz): migrate to use the new APIs + // https://github.com/flutter/flutter/issues/105336 + // ignore: deprecated_member_use PaintingBinding.instance.instantiateImageCodec, ); completer.addListener(ImageStreamListener( diff --git a/packages/pointer_interceptor/CHANGELOG.md b/packages/pointer_interceptor/CHANGELOG.md index fcef40b256..642174c8bd 100644 --- a/packages/pointer_interceptor/CHANGELOG.md +++ b/packages/pointer_interceptor/CHANGELOG.md @@ -1,7 +1,8 @@ -## NEXT +## 0.9.3+2 * (Temporarily) helps tests introduced in prior version to pass in `stable`. (This will be removed when `master` rolls to `stable`) +* Updates README to reference the correct github URL. ## 0.9.3+1 diff --git a/packages/pointer_interceptor/README.md b/packages/pointer_interceptor/README.md index d51c2bc22b..6da163fc5d 100644 --- a/packages/pointer_interceptor/README.md +++ b/packages/pointer_interceptor/README.md @@ -12,7 +12,7 @@ The result is that Flutter widget's `onTap` (and other) handlers won't fire as e |The problem...| |:-:| -|| +|| |_In the dashed areas, mouse events won't work as expected. The `HtmlElementView` will consume them before Flutter sees them._| @@ -26,7 +26,7 @@ This gives an opportunity to the Flutter framework to handle the click, as expec |The solution...| |:-:| -|| +|| |_Each `PointerInterceptor` (green) renders between Flutter widgets and the underlying `HtmlElementView`. Mouse events now can't reach the background HtmlElementView, and work as expected._| ## How to use diff --git a/packages/pointer_interceptor/pubspec.yaml b/packages/pointer_interceptor/pubspec.yaml index 2f5d76290b..e26e12b792 100644 --- a/packages/pointer_interceptor/pubspec.yaml +++ b/packages/pointer_interceptor/pubspec.yaml @@ -2,7 +2,7 @@ name: pointer_interceptor description: A widget to prevent clicks from being swallowed by underlying HtmlElementViews on the web. repository: https://github.com/flutter/packages/tree/main/packages/pointer_interceptor issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+pointer_interceptor%22 -version: 0.9.3+1 +version: 0.9.3+2 environment: sdk: ">=2.12.0 <3.0.0" diff --git a/packages/rfw/CHANGELOG.md b/packages/rfw/CHANGELOG.md index 2bb4c872ab..94e4c9c2e3 100644 --- a/packages/rfw/CHANGELOG.md +++ b/packages/rfw/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.5 + +* Fixes URL in document. + ## 1.0.4 * Migrates from `ui.hash*` to `Object.hash*`. diff --git a/packages/rfw/example/remote/lib/main.dart b/packages/rfw/example/remote/lib/main.dart index 7255d42bee..f1d5fbeb59 100644 --- a/packages/rfw/example/remote/lib/main.dart +++ b/packages/rfw/example/remote/lib/main.dart @@ -11,7 +11,7 @@ import 'package:path/path.dart' as path; import 'package:path_provider/path_provider.dart'; import 'package:rfw/rfw.dart'; -const String urlPrefix = 'https://raw.githubusercontent.com/flutter/packages/master/packages/rfw/example/remote/remote_widget_libraries'; +const String urlPrefix = 'https://raw.githubusercontent.com/flutter/packages/main/packages/rfw/example/remote/remote_widget_libraries'; void main() { runApp(const MaterialApp(home: Example())); diff --git a/packages/rfw/example/wasm/lib/main.dart b/packages/rfw/example/wasm/lib/main.dart index 0c46c21255..a0dd80ad9d 100644 --- a/packages/rfw/example/wasm/lib/main.dart +++ b/packages/rfw/example/wasm/lib/main.dart @@ -14,7 +14,7 @@ import 'package:path_provider/path_provider.dart'; import 'package:rfw/rfw.dart'; import 'package:wasm/wasm.dart'; -const String urlPrefix = 'https://raw.githubusercontent.com/flutter/packages/master/packages/rfw/example/wasm/logic'; +const String urlPrefix = 'https://raw.githubusercontent.com/flutter/packages/main/packages/rfw/example/wasm/logic'; const String interfaceUrl = '$urlPrefix/calculator.rfw'; const String logicUrl = '$urlPrefix/calculator.wasm'; diff --git a/packages/rfw/lib/rfw.dart b/packages/rfw/lib/rfw.dart index 7f5d37051d..7e4d92826c 100644 --- a/packages/rfw/lib/rfw.dart +++ b/packages/rfw/lib/rfw.dart @@ -9,7 +9,7 @@ /// There are many ways to use a package such as this one. In general, the /// approach looks something like this: /// -///  +///  /// /// The network aspects of this design are out of scope for this package. Remote /// widget libraries and data should be cached locally, to avoid network issues @@ -19,7 +19,7 @@ /// (e.g. [https://pub.dev/packages/hetu_script](hetu_script)) to run /// remotely-fetched logic locally: /// -///  +///  /// /// /// ## Using the [RemoteWidget] widget diff --git a/packages/rfw/pubspec.yaml b/packages/rfw/pubspec.yaml index a70bdbc13c..6ac9778a37 100644 --- a/packages/rfw/pubspec.yaml +++ b/packages/rfw/pubspec.yaml @@ -2,7 +2,7 @@ name: rfw description: "Remote Flutter widgets: a library for rendering declarative widget description files at runtime." repository: https://github.com/flutter/packages/tree/main/packages/rfw issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+rfw%22 -version: 1.0.4 +version: 1.0.5 environment: sdk: ">=2.13.0 <3.0.0" diff --git a/third_party/packages/cupertino_icons/CHANGELOG.md b/third_party/packages/cupertino_icons/CHANGELOG.md index 8acd29859d..49425404fb 100644 --- a/third_party/packages/cupertino_icons/CHANGELOG.md +++ b/third_party/packages/cupertino_icons/CHANGELOG.md @@ -1,5 +1,10 @@ +## 1.0.5 + +* Updates README to reference correct URL. + ## 1.0.4 -* Update README to link to API docs. + +* Updates README to link to API docs. ## 1.0.3 * Source moved to flutter/packages. diff --git a/third_party/packages/cupertino_icons/README.md b/third_party/packages/cupertino_icons/README.md index df67ed07fb..01f6da2b3e 100644 --- a/third_party/packages/cupertino_icons/README.md +++ b/third_party/packages/cupertino_icons/README.md @@ -25,4 +25,4 @@ For issues, file directly in the [main Flutter repo](https://github.com/flutter/ For a list of all icons, see [`CupertinoIcons` class documentation constants](https://api.flutter.dev/flutter/cupertino/CupertinoIcons-class.html#constants). -For versions 0.1.3 and below, see this [glyph map](https://raw.githubusercontent.com/flutter/packages/master/third_party/packages/cupertino_icons/map.png). +For versions 0.1.3 and below, see this [glyph map](https://raw.githubusercontent.com/flutter/packages/main/third_party/packages/cupertino_icons/map.png). diff --git a/third_party/packages/cupertino_icons/pubspec.yaml b/third_party/packages/cupertino_icons/pubspec.yaml index 9df826c9b0..a66ba87919 100644 --- a/third_party/packages/cupertino_icons/pubspec.yaml +++ b/third_party/packages/cupertino_icons/pubspec.yaml @@ -3,7 +3,7 @@ name: cupertino_icons description: Default icons asset for Cupertino widgets based on Apple styled icons repository: https://github.com/flutter/packages/tree/main/third_party/packages/cupertino_icons issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+cupertino_icons%22 -version: 1.0.4 +version: 1.0.5 environment: sdk: ">=2.12.0 <3.0.0"