Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 909f368

Browse files
authored
Merge pull request #540 from ipfs/feat/update-to-go-ipfs-0.4.7
v0.4.7 support
2 parents c785c3b + 400f3ef commit 909f368

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,30 @@
2222
"coverage-publish": "aegir-coverage publish"
2323
},
2424
"dependencies": {
25-
"async": "^2.1.4",
25+
"async": "^2.1.5",
2626
"bs58": "^4.0.0",
27-
"cids": "~0.4.1",
27+
"cids": "~0.4.2",
2828
"concat-stream": "^1.6.0",
2929
"detect-node": "^2.0.3",
3030
"flatmap": "0.0.3",
3131
"glob": "^7.1.1",
3232
"glob-escape": "0.0.2",
3333
"ipfs-block": "~0.5.5",
34-
"ipfs-unixfs": "~0.1.10",
35-
"ipld-dag-pb": "~0.9.5",
34+
"ipfs-unixfs": "~0.1.11",
35+
"ipld-dag-pb": "~0.10.1",
3636
"is-ipfs": "~0.3.0",
3737
"isstream": "^0.1.2",
3838
"lru-cache": "^4.0.2",
39-
"multiaddr": "^2.2.1",
40-
"multihashes": "~0.3.3",
39+
"multiaddr": "^2.2.2",
40+
"multihashes": "~0.4.4",
4141
"multipart-stream": "^2.0.1",
4242
"ndjson": "^1.5.0",
4343
"once": "^1.4.0",
44-
"peer-id": "~0.8.2",
45-
"peer-info": "~0.8.3",
44+
"peer-id": "~0.8.4",
45+
"peer-info": "~0.8.4",
4646
"promisify-es6": "^1.0.2",
4747
"pump": "^1.0.2",
48-
"qs": "^6.3.0",
48+
"qs": "^6.4.0",
4949
"readable-stream": "1.1.14",
5050
"stream-http": "^2.6.3",
5151
"streamifier": "^0.1.1",
@@ -62,15 +62,15 @@
6262
"devDependencies": {
6363
"aegir": "^10.0.0",
6464
"chai": "^3.5.0",
65-
"eslint-plugin-react": "^6.9.0",
65+
"eslint-plugin-react": "^6.10.2",
6666
"gulp": "^3.9.1",
6767
"hapi": "^16.1.0",
68-
"interface-ipfs-core": "~0.24.1",
69-
"ipfsd-ctl": "~0.18.3",
68+
"interface-ipfs-core": "~0.25.1",
69+
"ipfsd-ctl": "~0.20.0",
7070
"pre-commit": "^1.2.2",
71-
"socket.io": "^1.7.2",
72-
"socket.io-client": "^1.7.2",
73-
"stream-equal": "^0.1.13"
71+
"socket.io": "^1.7.3",
72+
"socket.io-client": "^1.7.3",
73+
"stream-equal": "^1.0.0"
7474
},
7575
"pre-commit": [
7676
"lint",

test/add.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('.add (extra tests)', () => {
2626

2727
after((done) => fc.dismantle(done))
2828

29-
it('add file for testing', (done) => {
29+
it('add by path fails', (done) => {
3030
const validPath = path.join(process.cwd() + '/package.json')
3131

3232
ipfs.files.add(validPath, (err, res) => {

test/ipfs-factory/server-routes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = (http) => {
1919
if (err) {
2020
throw err
2121
}
22-
this.emit('fc-node', apiAddr)
22+
this.emit('fc-node', apiAddr.toString())
2323
})
2424
}
2525

test/name.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ describe('.name', () => {
7676
expect(err).to.not.exist
7777
expect(res).to.exist
7878
expect(res).to.be.eql({
79-
Path: '/ipfs/' + name.Value
79+
Path: name.Value
8080
})
8181
done()
8282
})
@@ -99,7 +99,7 @@ describe('.name', () => {
9999
.then((res) => {
100100
expect(res).to.exist
101101
expect(res).to.be.eql({
102-
Path: '/ipfs/' + name.Value
102+
Path: name.Value
103103
})
104104
})
105105
})

0 commit comments

Comments
 (0)