mirror of
https://github.com/flutter/packages.git
synced 2025-06-15 09:38:52 +08:00
[various] Update flutter/plugins links (#3256)
Updates links and references to `flutter/plugins` to use `flutter/packages` instead, including making the `repository` pubspec.yaml check stricter in the repo tooling to ensure all packages are pointing to the right place. Exceptions to the updates are: - Changelog entries. - Links to pull requests. This will re-publish all the moved plugins, thus fixing the current redness of `release` (due to the current versions not being tagged in this repository).
This commit is contained in:
@ -250,6 +250,15 @@ dependency_overrides:
|
||||
print(' Skipping $packageName; no non-breaking version change.');
|
||||
continue;
|
||||
}
|
||||
// TODO(stuartmorgan): Remove this special-casing once this tool checks
|
||||
// for major version differences relative to the dependencies being
|
||||
// updated rather than the version change in the PR:
|
||||
// https://github.com/flutter/flutter/issues/121246
|
||||
if (packageName == 'pigeon') {
|
||||
print(' Skipping $packageName; see '
|
||||
'https://github.com/flutter/flutter/issues/121246');
|
||||
continue;
|
||||
}
|
||||
changedPackages.add(packageName);
|
||||
}
|
||||
return changedPackages;
|
||||
|
Reference in New Issue
Block a user