-
Notifications
You must be signed in to change notification settings - Fork 270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deps: Flutter, packages, and fix macos/Podfile.lock #319
Conversation
Added one more commit at the start:
|
Ah hmm, yeah; I think I remember doing this in ios/ but I don't remember doing it in macos/. I wonder how easy it would be to add checks for this in CI. |
This is needed on Xcode 15, at least once certain packages are pulled in. (In particular, firebase_core, which I have in a draft branch for handling notifications.) Upstream issue thread: CocoaPods/CocoaPods#12009
And update Flutter's supporting libraries to match.
Plus `flutter build ios --config-only` and `flutter build macos --config-only`.
This is the result of `flutter pub upgrade --major-versions`, followed by `flutter build ios --config-only`. (Plus `flutter build macos --config-only`, but it has no effect, as file_picker doesn't appear in macos/Podfile.lock .) Changelog: https://pub.dev/packages/file_picker/changelog The API changes don't affect our usage.
Thanks, LGTM! Merged. |
Yeah. GitHub does offer macOS-based runners for actions: There's a steep 10x multiplier in how they count against our quota of free usage (and a similar steeper rate if paying for more): I'll file an issue. → #329 |
deps: Run
pod update sqlite3
in macos/This is necessary for
flutter run
to work on a macOS target,presumably since 5dbf1e6.
Similar to c5c0949 and 105727e for a previous upgrade.
The symptoms were just like those described in the latter commit.
deps: Upgrade Flutter to latest main, 3.16.0-11.0.pre.88
And update Flutter's supporting libraries to match.
deps: Upgrade packages within constraints (flutter pub upgrade)
Plus
flutter build ios --config-only
and
flutter build macos --config-only
.deps: Upgrade packages to latest, namely file_picker
This is the result of
flutter pub upgrade --major-versions
,followed by
flutter build ios --config-only
.(Plus
flutter build macos --config-only
, but it has noeffect, as file_picker doesn't appear in macos/Podfile.lock .)
Changelog:
https://pub.dev/packages/file_picker/changelog
The API changes don't affect our usage.