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

v0.4.7 support #540

Merged
merged 2 commits into from
Mar 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,30 +22,30 @@
"coverage-publish": "aegir-coverage publish"
},
"dependencies": {
"async": "^2.1.4",
"async": "^2.1.5",
"bs58": "^4.0.0",
"cids": "~0.4.1",
"cids": "~0.4.2",
"concat-stream": "^1.6.0",
"detect-node": "^2.0.3",
"flatmap": "0.0.3",
"glob": "^7.1.1",
"glob-escape": "0.0.2",
"ipfs-block": "~0.5.5",
"ipfs-unixfs": "~0.1.10",
"ipld-dag-pb": "~0.9.5",
"ipfs-unixfs": "~0.1.11",
"ipld-dag-pb": "~0.10.1",
"is-ipfs": "~0.3.0",
"isstream": "^0.1.2",
"lru-cache": "^4.0.2",
"multiaddr": "^2.2.1",
"multihashes": "~0.3.3",
"multiaddr": "^2.2.2",
"multihashes": "~0.4.4",
"multipart-stream": "^2.0.1",
"ndjson": "^1.5.0",
"once": "^1.4.0",
"peer-id": "~0.8.2",
"peer-info": "~0.8.3",
"peer-id": "~0.8.4",
"peer-info": "~0.8.4",
"promisify-es6": "^1.0.2",
"pump": "^1.0.2",
"qs": "^6.3.0",
"qs": "^6.4.0",
"readable-stream": "1.1.14",
"stream-http": "^2.6.3",
"streamifier": "^0.1.1",
Expand All @@ -62,15 +62,15 @@
"devDependencies": {
"aegir": "^10.0.0",
"chai": "^3.5.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-react": "^6.10.2",
"gulp": "^3.9.1",
"hapi": "^16.1.0",
"interface-ipfs-core": "~0.24.1",
"ipfsd-ctl": "~0.18.3",
"interface-ipfs-core": "~0.25.1",
"ipfsd-ctl": "~0.20.0",
"pre-commit": "^1.2.2",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"stream-equal": "^0.1.13"
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"stream-equal": "^1.0.0"
},
"pre-commit": [
"lint",
Expand Down
2 changes: 1 addition & 1 deletion test/add.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('.add (extra tests)', () => {

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

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

ipfs.files.add(validPath, (err, res) => {
Expand Down
2 changes: 1 addition & 1 deletion test/ipfs-factory/server-routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = (http) => {
if (err) {
throw err
}
this.emit('fc-node', apiAddr)
this.emit('fc-node', apiAddr.toString())
})
}

Expand Down
4 changes: 2 additions & 2 deletions test/name.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ describe('.name', () => {
expect(err).to.not.exist
expect(res).to.exist
expect(res).to.be.eql({
Path: '/ipfs/' + name.Value
Path: name.Value
})
done()
})
Expand All @@ -99,7 +99,7 @@ describe('.name', () => {
.then((res) => {
expect(res).to.exist
expect(res).to.be.eql({
Path: '/ipfs/' + name.Value
Path: name.Value
})
})
})
Expand Down