Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: update interop, use addall for dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Sep 28, 2021
1 parent 4c2941b commit a86b1be
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 12 deletions.
7 changes: 0 additions & 7 deletions packages/interface-ipfs-core/src/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,13 +251,6 @@ export function testAdd (factory, options) {
await expect(ipfs.add(nonValid)).to.eventually.be.rejectedWith(/multiple items passed/)
})

it('should fail when passed multiple strings', async () => {
const nonValid = ['hello', 'world']

// @ts-expect-error nonValid is non valid
await expect(ipfs.add(nonValid)).to.eventually.be.rejectedWith(/multiple items passed/)
})

it('should wrap content in a directory', async () => {
const data = { path: 'testfile.txt', content: fixtures.smallFile.data }

Expand Down
4 changes: 2 additions & 2 deletions packages/ipfs-core/src/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

export const ipfsCore = '0.11.0'
export const ipfsCore = '0.11.1'
export const commit = ''
export const interfaceIpfsCore = '^0.151.0'
export const interfaceIpfsCore = '^0.151.1'
2 changes: 1 addition & 1 deletion packages/ipfs-http-server/src/version.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

export const ipfsHttpClient = '^53.0.0'
export const ipfsHttpClient = '^53.0.1'
2 changes: 1 addition & 1 deletion packages/ipfs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"ipfs-client": "^0.7.1",
"ipfs-core-types": "^0.8.1",
"ipfs-http-client": "^53.0.1",
"ipfs-interop": "^7.0.1",
"ipfs-interop": "^7.0.2",
"ipfs-utils": "^9.0.2",
"ipfsd-ctl": "^10.0.4",
"iso-url": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs/src/package.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

export const name = 'ipfs'
export const version = '0.59.0'
export const version = '0.59.1'
export const node = '>=14.0.0'

0 comments on commit a86b1be

Please sign in to comment.