-
Notifications
You must be signed in to change notification settings - Fork 23
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
Changes snake cased fields to camel casing #206
Conversation
tied to #205 |
fixes #204 |
@xibz do you consider this a bug that we should fix in a 0.4.1 or shall we wait for 0.5.0? |
@afrittoli my thinking was we could fix it now since the sdks haven't been updated yet |
OK, it sounds good - however, to fix this on the 0.4 version, you'll need a new PR to the Since this PR changes all event definitions, it will have to include an update to all events (and corresponding examples) patch versions. |
Since all references to the link schemas have been updated, we need to bump all event versions too. This as usual is automated: ls examples | while read aa; do sp="$(echo ${aa%.*} | tr "_" ".")"; ./tools/event-version.sh -u $sp -s; done Signed-off-by: Andrea Frittoli <[email protected]> Signed-off-by: xibz <[email protected]>
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.
Nice!
This commit improves consistency in our spec and examples by having all keys be camel cased.
This made 4 changes:
chain_id -> chainId
context_id -> contextId
link_kind -> linkKind
link_type -> linkType