-
Notifications
You must be signed in to change notification settings - Fork 72
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
fix(eventual-send): switch DEBUG option to be comma separated #1922
Conversation
a8e1407
to
6926eb8
Compare
283f17f
to
3bc2a9c
Compare
6926eb8
to
a802aa5
Compare
3bc2a9c
to
ee26d0b
Compare
a802aa5
to
8548770
Compare
ee26d0b
to
c577e74
Compare
ac480ad
to
c2dad51
Compare
c577e74
to
0970925
Compare
0970925
to
3aaafd7
Compare
While I agree it's technically a breaking change, I'm wondering if this particular instance warrant the churn associated with a major version bump. @kriskowal opinions? |
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.
Sounds good to me. I do not have strong feelings about the breaking change sigil, but if it’s kept, the body of the commit must have prose for the changelog.
fix(eventual-send)!: switch DEBUG option to be comma separated
*BREAKING CHANGE*: Use `DEBUG=track-turns,etc` instead of `DEBUG=track-turns:etc`.
3aaafd7
to
fea3ba0
Compare
I got rid of it. Thanks. |
refs: Agoric/agoric-sdk#8136
refs: Agoric/agoric-sdk#8096
refs: https://github.com/Agoric/agoric-sdk/blob/master/docs/env.md#DEBUG
Description
As explained at Agoric/agoric-sdk#8096 , prior to this PR, eventual-send's use of the
DEBUG
option mistakenly split it on colons (':'
). This PR switches that one use to split on commas (','
) instead.Security Considerations
Following widespread conventions leads to fewer unpleasant surprises.
Scaling Considerations
none
Documentation Considerations
https://github.com/Agoric/agoric-sdk/blob/master/docs/env.md#DEBUG already speaks in terms of the value of
DEBUG
being a comma separated list. Prior to this PR, the endo implementation does not conform to that document. But the agoric-sdk implementation would still not conform until fixed by Agoric/agoric-sdk#8136Testing Considerations
none
Upgrade Considerations
none