Is there a way to list and update packages that have crossed a major version in pubspec.yaml? (like this method used in NPM)
E.g. when the pubspec.yaml file has this with built_value:
dependencies:
flutter:
sdk: flutter
built_value: ^5.0.0
When built_value is updated to version ^6.2.0 is there a way to upgrade past the major version so the pubspec.yaml is updated to:
dependencies:
flutter:
sdk: flutter
built_value: ^6.2.0
I know I can manually check each package for major versions, but it would be helpful if it was automatic.
