-
Notifications
You must be signed in to change notification settings - Fork 299
Commits on Nov 19, 2019
-
refactor: convert key API to async/await
License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for f281b20 - Browse repository at this point
Copy the full SHA f281b20View commit details -
refactor: convert log API to async/await
BREAKING CHANGE: The `log.tail` method now returns an async iterator that yields log messages. Use it like: ```js for await (const message of ipfs.log.tail()) { console.log(message) } ``` Secondly, the response to a call to `log.level` now returns an object that has camel cased keys. i.e. `Message` and `Error` properties have changed to `message` and `error`. License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for acf2233 - Browse repository at this point
Copy the full SHA acf2233View commit details -
Alan Shaw committed
Nov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for 0ad3897 - Browse repository at this point
Copy the full SHA 0ad3897View commit details -
Alan Shaw committed
Nov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for e0a4ffd - Browse repository at this point
Copy the full SHA e0a4ffdView commit details -
refactor: convert name API to async/await
Depends on: * [ ] ipfs-inactive/interface-js-ipfs-core#561 License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for cdf9390 - Browse repository at this point
Copy the full SHA cdf9390View commit details -
Alan Shaw committed
Nov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for 2895384 - Browse repository at this point
Copy the full SHA 2895384View commit details -
refactor: convert misc root level APIs to async/await
License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for 96b86f5 - Browse repository at this point
Copy the full SHA 96b86f5View commit details -
Merge branch 'master' into refactor/key-async-await
Alan Shaw authoredNov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for 8638f9c - Browse repository at this point
Copy the full SHA 8638f9cView commit details -
Merge branch 'master' into refactor/log-async-await
Alan Shaw authoredNov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for aa33b9a - Browse repository at this point
Copy the full SHA aa33b9aView commit details -
Merge branch 'master' into refactor/name-async-await
Alan Shaw authoredNov 19, 2019 Configuration menu - View commit details
-
Copy full SHA for 2c110a5 - Browse repository at this point
Copy the full SHA 2c110a5View commit details
Commits on Nov 20, 2019
-
Merge branch 'master' into refactor/key-async-await
Alan Shaw authoredNov 20, 2019 Configuration menu - View commit details
-
Copy full SHA for e673f91 - Browse repository at this point
Copy the full SHA e673f91View commit details -
Merge branch 'master' into refactor/log-async-await
Alan Shaw authoredNov 20, 2019 Configuration menu - View commit details
-
Copy full SHA for 373d1e0 - Browse repository at this point
Copy the full SHA 373d1e0View commit details -
Merge branch 'master' into refactor/name-async-await
Alan Shaw authoredNov 20, 2019 Configuration menu - View commit details
-
Copy full SHA for f4476cc - Browse repository at this point
Copy the full SHA f4476ccView commit details -
refactor: convert repo API to async await
License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 20, 2019 Configuration menu - View commit details
-
Copy full SHA for 29cce3a - Browse repository at this point
Copy the full SHA 29cce3aView commit details
Commits on Nov 21, 2019
-
refactor: convert stats API to async/await
License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for a891032 - Browse repository at this point
Copy the full SHA a891032View commit details -
refactor: convert swarm API to async/await
BREAKING CHANGE: Dropped support for go-ipfs <= 0.4.4 in swarm.peers response License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for a88767f - Browse repository at this point
Copy the full SHA a88767fView commit details -
Alan Shaw committed
Nov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 1363199 - Browse repository at this point
Copy the full SHA 1363199View commit details -
refactor: convert mount API to async/await
BREAKING CHANGE: The signature for `ipfs.mount` has changed from `ipfs.mount([ipfsPath], [ipnsPath])` to `ipfs.mount([options])`. Where `options` is an optional object that may contain two boolean properties `ipfsPath` and `ipnsPath`. The response object has also changed to be camel case. See https://docs.ipfs.io/reference/api/http/#api-v0-mount. License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for c3cd680 - Browse repository at this point
Copy the full SHA c3cd680View commit details -
Alan Shaw committed
Nov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for e011c8e - Browse repository at this point
Copy the full SHA e011c8eView commit details -
License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 4186327 - Browse repository at this point
Copy the full SHA 4186327View commit details -
refactor: convert version API to async/await
License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 2281599 - Browse repository at this point
Copy the full SHA 2281599View commit details -
refactor: convert ping API to async/await
BREAKING CHANGE: Default ping `count` of 1 in client has been removed. The default ping count is now whatever the IPFS node defaults it to (currently 10). If you specifically need 1 ping message then please pass `count: 1` in options for `ipfs.ping()`. License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for d8da835 - Browse repository at this point
Copy the full SHA d8da835View commit details -
refactor: convert update API to async/await
Other endpoints are not supported by go-ipfs or js-ipfs and so have been removed. License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for aa83f91 - Browse repository at this point
Copy the full SHA aa83f91View commit details -
Merge branch 'master' into refactor/misc-async-await
Alan Shaw authoredNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for f0d2aca - Browse repository at this point
Copy the full SHA f0d2acaView commit details -
fix: remove tests for go-ipfs 0.4.4 peer response
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 09afe67 - Browse repository at this point
Copy the full SHA 09afe67View commit details -
Alan Shaw committed
Nov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 3840f40 - Browse repository at this point
Copy the full SHA 3840f40View commit details -
Merge branch 'refactor/log-async-await' into refactor/async-await-rou…
…ndup
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 1980530 - Browse repository at this point
Copy the full SHA 1980530View commit details -
Merge branch 'refactor/name-async-await' into refactor/async-await-ro…
…undup
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 81e72b3 - Browse repository at this point
Copy the full SHA 81e72b3View commit details -
Merge branch 'refactor/misc-async-await' into refactor/async-await-ro…
…undup
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 12ff0d8 - Browse repository at this point
Copy the full SHA 12ff0d8View commit details -
Merge branch 'refactor/repo-async-await' into refactor/async-await-ro…
…undup
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 6ecf79b - Browse repository at this point
Copy the full SHA 6ecf79bView commit details -
Merge branch 'refactor/swarm-async-await' into refactor/async-await-r…
…oundup
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for d2beb18 - Browse repository at this point
Copy the full SHA d2beb18View commit details -
refactor: move loadCommands into index and remove unused code
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 78b430a - Browse repository at this point
Copy the full SHA 78b430aView commit details -
fix: browser and Node.js configuration
resolves #1103 BREAKING CHANGE: Multi parameter constructor options are no longer supported. To create a new IPFS HTTP client, pass a single parameter to the constructor. The parameter can be one of: * String, formatted as one of: * Multiaddr e.g. /ip4/127.0.0.1/tcp/5001 * URL e.g. http://127.0.0.1:5001 * [Multiaddr](https://www.npmjs.com/package/multiaddr) instance * Object, in format of either: * Address and path e.g. `{ apiAddr: '/ip4/127.0.0.1/tcp/5001': apiPath: '/api/v0' }` (Note: `apiAddr` can also be a string in URL form or a Multiaddr instance) * Node.js style address e.g. `{ host: '127.0.0.1', port: 5001, protocol: 'http' }` License: MIT Signed-off-by: Alan Shaw <[email protected]>
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for d7adafc - Browse repository at this point
Copy the full SHA d7adafcView commit details -
Alan Shaw committed
Nov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for ec0e66c - Browse repository at this point
Copy the full SHA ec0e66cView commit details -
fix: post all the things so not more breaking changes
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for b9d6d1b - Browse repository at this point
Copy the full SHA b9d6d1bView commit details -
fix: inconsistent error message in browsers
Alan Shaw committedNov 21, 2019 Configuration menu - View commit details
-
Copy full SHA for 31881e5 - Browse repository at this point
Copy the full SHA 31881e5View commit details
Commits on Nov 22, 2019
-
refactor: return generator func not func that returns generator
Alan Shaw committedNov 22, 2019 Configuration menu - View commit details
-
Copy full SHA for fab4c67 - Browse repository at this point
Copy the full SHA fab4c67View commit details