-
Notifications
You must be signed in to change notification settings - Fork 54
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
feat!: Make link.toJSON return a DAG-JSON link #230
Conversation
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 should bump the major version of multiformats for this release. Hopefully the automating picks it up w/ “feat!”
Mind if we push this to January? Rod is off for the next few weeks and it'd be good to get his input. |
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.
LGTM
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version. The code changed is not used by this module so there's not a lot of changes here, but this should still go out as a major because the interface versions have changed.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version. The code changed is not used by this module so there's not a lot of changes here, but this should still go out as a major because the interface versions have changed.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version. The code changed is not used by this module so there's not a lot of changes here, but this should still go out as a major because the interface versions have changed.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version. The code changed is not used by this module so there's not a lot of changes here, but this should still go out as a major because the interface versions have changed.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version. Co-authored-by: achingbrain <[email protected]>
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) to the return type of the `.toJSON` method of the `CID` class so update all deps using multiformats to the latest version.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version. BREAKING CHANGE: the CID class exposed by the types of this module now comes from `[email protected]`
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version. BREAKING CHANGE: the CID class exposed by the types of this module now comes from `[email protected]`
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version.
`[email protected]` shipped with a [breaking change](multiformats/js-multiformats#230) so update all deps using multiformats to the latest version. BREAKING CHANGE: the CID class exposed by the types of this module now comes from `[email protected]`
[email protected] shipped with a [breaking change to the CID class](multiformats/js-multiformats#230). This change updates all dependencies to use [email protected]. BREAKING CHANGE: instances of the CID class returned by this module are now from [email protected] Co-authored-by: achingbrain <[email protected]>
Changes toJSON implementation of the CID so it returns Link in DAG-JSON format as opposed to object with Uint8Array which gets munged with
JSON.stringify
Fixes #228