This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vmx
changed the title
[WIP] chore: update to js-ipld 0.19
chore: update to js-ipld 0.19
Oct 26, 2018
BREAKING CHANGE: dag-cbor nodes now represent links as CID objects The API for [dag-cbor](https://github.com/ipld/js-ipld-dag-cbor) changed. Links are no longer represented as JSON objects (`{"/": "base-encoded-cid"}`, but as [CID objects](https://github.com/ipld/js-cid). `ipfs.dag.get()` and now always return links as CID objects. `ipfs.dag.put()` also expects links to be represented as CID objects. The old-style JSON objects representation is still supported, but deprecated. Prior to this change: ```js const cid = new CID('QmXed8RihWcWFXRRmfSRG9yFjEbXNxu1bDwgCFAN8Dxcq5') // Link as JSON object representation const putCid = await ipfs.dag.put({link: {'/': cid.toBaseEncodedString()}}) const result = await ipfs.dag.get(putCid) console.log(result.value) ``` Output: ```js { link: { '/': <Buffer 12 20 8a…> } } ``` Now: ```js const cid = new CID('QmXed8RihWcWFXRRmfSRG9yFjEbXNxu1bDwgCFAN8Dxcq5') // Link as CID object const putCid = await ipfs.dag.put({link: cid}) const result = await ipfs.dag.get(putCid) console.log(result.value) ``` Output: ```js { link: CID { codec: 'dag-pb', version: 0, multihash: <Buffer 12 20 8a…> } } ``` See ipld/ipld#44 for more information on why this change was made.
daviddias
force-pushed
the
update-ipld-0.19-3
branch
from
October 30, 2018 11:55
e0005e8
to
19bb675
Compare
ghost
assigned daviddias
Oct 30, 2018
vmx
added a commit
that referenced
this pull request
Oct 30, 2018
Don't update js-ipld and the corresponding updated tests in interface-ipfs-core. Those will be updated with #1668.
daviddias
force-pushed
the
update-ipld-0.19-3
branch
from
October 31, 2018 06:48
f9473c8
to
bf6758b
Compare
Locally, only the ping tests fail. We need to figure out why suddently ping got so slow. |
Only tests failing are
|
Let's get them fixed before release but not block this PR so that we can rebase a bunch of other PRs with master. |
vmx
added a commit
that referenced
this pull request
Oct 31, 2018
Something went wrong when rebasing #1668 and some code was introduced which shouldn't be there. This commit removes that code again.
daviddias
pushed a commit
that referenced
this pull request
Oct 31, 2018
Something went wrong when rebasing #1668 and some code was introduced which shouldn't be there. This commit removes that code again.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
BREAKING CHANGE: dag-cbor nodes now represent links as CID objects
The API for dag-cbor changed.
Links are no longer represented as JSON objects (
{"/": "base-encoded-cid"}
,but as CID objects.
ipfs.dag.get()
and now always return links as CID objects.ipfs.dag.put()
also expects links to be represented as CID objects. The old-style JSON objects representation is stillsupported, but deprecated.
Prior to this change:
Output:
Now:
Output:
See ipld/ipld#44 for more information on why this
change was made.