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

Commit 99ac7be

Browse files
author
Alan Shaw
authored
fix: case for addFromURL (#907)
License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 05a84a4 commit 99ac7be

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,10 @@ Specifically, the following changes have been made:
9696
* `ipfs.files.getPullStream` => `ipfs.getPullStream`
9797
* `ipfs.files.getReadableStream` => `ipfs.getReadableStream`
9898

99-
Additionally, `addFromFs`, `addFromUrl`, `addFromStream` have moved from `util` to the root namespace:
99+
Additionally, `addFromFs`, `addFromURL`, `addFromStream` have moved from `util` to the root namespace:
100100

101101
* `ipfs.util.addFromFs` => `ipfs.addFromFs`
102-
* `ipfs.util.addFromUrl` => `ipfs.addFromUrl`
102+
* `ipfs.util.addFromURL` => `ipfs.addFromURL`
103103
* `ipfs.util.addFromStream` => `ipfs.addFromStream`
104104

105105
License: MIT

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ const ipfs = ipfsClient({
191191
- [`ipfs.addReadableStream([options])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#addreadablestream)
192192
- [`ipfs.addFromStream(stream, [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#addfromstream)
193193
- [`ipfs.addFromFs(path, [options], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#addfromfs)
194-
- [`ipfs.addFromUrl(url, [options], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#addfromurl)
194+
- [`ipfs.addFromURL(url, [options], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#addfromurl)
195195
- [`ipfs.cat(ipfsPath, [options], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#cat)
196196
- [`ipfs.catPullStream(ipfsPath, [options])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#catpullstream)
197197
- [`ipfs.catReadableStream(ipfsPath, [options])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#catreadablestream)

src/files-regular/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = (arg) => {
1010
addReadableStream: require('../files-regular/add-readable-stream')(send),
1111
addPullStream: require('../files-regular/add-pull-stream')(send),
1212
addFromFs: require('../files-regular/add-from-fs')(send),
13-
addFromUrl: require('../files-regular/add-from-url')(send),
13+
addFromURL: require('../files-regular/add-from-url')(send),
1414
addFromStream: require('../files-regular/add')(send),
1515
cat: require('../files-regular/cat')(send),
1616
catReadableStream: require('../files-regular/cat-readable-stream')(send),

test/interface.spec.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,12 @@ describe('interface-ipfs-core tests', () => {
122122
name: 'addFromFs',
123123
reason: 'Not designed to run in the browser'
124124
},
125-
// .addFromUrl
125+
// .addFromURL
126+
isNode ? null : {
127+
name: 'addFromURL',
128+
reason: 'Not designed to run in the browser'
129+
},
130+
// TODO: remove when interface-ipfs-core updated
126131
isNode ? null : {
127132
name: 'addFromUrl',
128133
reason: 'Not designed to run in the browser'

test/sub-modules.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ describe('submodules', () => {
173173
expect(filesRegular.addPullStream).to.be.a('function')
174174
expect(filesRegular.addFromStream).to.be.a('function')
175175
expect(filesRegular.addFromFs).to.be.a('function')
176-
expect(filesRegular.addFromUrl).to.be.a('function')
176+
expect(filesRegular.addFromURL).to.be.a('function')
177177
expect(filesRegular.get).to.be.a('function')
178178
expect(filesRegular.getReadableStream).to.be.a('function')
179179
expect(filesRegular.getPullStream).to.be.a('function')

0 commit comments

Comments
 (0)