-
-
Notifications
You must be signed in to change notification settings - Fork 385
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
[breaking] gRPC Compile
and BoardDetails
now returns expanded build properties by default
#2184
[breaking] gRPC Compile
and BoardDetails
now returns expanded build properties by default
#2184
Conversation
6554b69
to
c24eef7
Compare
c24eef7
to
0f3cd7e
Compare
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #2184 +/- ##
==========================================
- Coverage 62.69% 62.62% -0.07%
==========================================
Files 223 223
Lines 19501 19502 +1
==========================================
- Hits 12226 12214 -12
- Misses 6192 6202 +10
- Partials 1083 1086 +3
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
I quickly checked and confirmed that the tools' paths are expanded, but I do not understand the complete diff. See below. Before d9d740d. boardDetails_d9d740d.json.txt |
Thanks for looking into the diff. I also find it OKish, I could not understand such parts: From:
627,629d626
< "build.flash_size=4MB",
< "build.code_debug=0",
< "upload.speed=921600",
632,633d628
< "build.f_cpu=240000000L",
< "build.flash_freq=80m",
634a630,631
> "upload.speed=921600",
> "build.code_debug=0",
637a635,637
> "build.flash_size=4MB",
> "build.f_cpu=240000000L",
> "build.flash_freq=80m",
643,645d642 I have noticed order changes, and I remember it should not happen. I might have incorrectly understood the diff. Sorry. |
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.
Thank you! I could access the expanded properties with the build from this PR.
I have noticed something regarding the property order (see #2184 (comment)), but all works fine.
Thank you for the help!
Please check if the PR fulfills these requirements
See how to contribute
before creating one)
our contributing guidelines
UPGRADING.md
has been updated with a migration guide (for breaking changes)configuration.schema.json
updated if new parameters are added.What kind of change does this PR introduce?
Compile
andBoardDetails
to return expanded build properties. It was previously possible only from command line.--show-properties
option changed fromunexpanded
toexpanded
, so the expanded output is now the default. This is a breaking change.What is the current behavior?
What is the new behavior?
Does this PR introduce a breaking change, and is titled accordingly?
Yes, the default
--show-properties
option changed fromunexpanded
toexpanded
, so the expanded output is now the default.Other information