-
Notifications
You must be signed in to change notification settings - Fork 276
update deps; simplify analysis options #790
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
base: master
Are you sure you want to change the base?
Conversation
devoncarew
commented
Jun 9, 2025
- require Dart 3.6
- update deps for the example packages
- simplify analysis options for the example packages
PR Health
Breaking changes
|
Package | Change | Current Version | New Version | Needed Version | Looking good? |
---|---|---|---|---|---|
grpc | Breaking | 4.1.0 | 4.1.1-wip | 5.0.0 Got "4.1.1-wip" expected >= "5.0.0" (breaking changes) |
This check can be disabled by tagging the PR with skip-breaking-check
.
Changelog Entry ✔️
Package | Changed Files |
---|
Changes to files need to be accounted for in their respective changelogs.
API leaks ⚠️
The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.
Package | Leaked API symbols |
---|---|
grpc | Any $1.Duration |
This check can be disabled by tagging the PR with skip-leaking-check
.
pubspec.yaml
Outdated
@@ -9,24 +9,24 @@ topics: | |||
- rpc | |||
|
|||
environment: | |||
sdk: ^3.5.0 | |||
sdk: ^3.6.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could go to 3.8.0
as the current stable is beyond that.. And then run a dart pub upgrade --tighten
, as the lowest bounds don't build for me locally.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sgtm; will do
FYI, moving to 3.8 required a full dart format of all dart source files. |
(fyi that I can't land PRs here) |