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

Commit 6727b43

Browse files
author
Alan Shaw
authored
Merge branch 'master' into feat/profile
2 parents db46c83 + 758d451 commit 6727b43

17 files changed

+324
-421
lines changed

.aegir.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const createServer = require('ipfsd-ctl').createServer
55
const server = createServer()
66

77
module.exports = {
8-
bundlesize: { maxSize: '236kB' },
8+
bundlesize: { maxSize: '237kB' },
99
webpack: {
1010
resolve: {
1111
mainFields: ['browser', 'main']

.travis.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ stages:
77

88
node_js:
99
- '10'
10-
- '8'
10+
- '12'
1111

1212
os:
1313
- linux
@@ -17,10 +17,16 @@ script: npx nyc -s npm run test:node -- --bail
1717
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
1818

1919
jobs:
20+
allow_failures:
21+
- name: electron-renderer
22+
23+
fast_finish: true
24+
2025
include:
2126
- os: windows
2227
filter_secrets: false
2328
cache: false
29+
2430

2531
- stage: check
2632
script:
@@ -39,6 +45,16 @@ jobs:
3945
addons:
4046
firefox: latest
4147
script: npx aegir test -t browser -t webworker -- --browsers FirefoxHeadless
48+
49+
- stage: test
50+
name: electron-main
51+
script:
52+
- xvfb-run npx aegir test -t electron-main -- --bail
53+
54+
- stage: test
55+
name: electron-renderer
56+
script:
57+
- xvfb-run npx aegir test -t electron-renderer -- --bail
4258

4359
notifications:
4460
email: false

CHANGELOG.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
<a name="33.1.0"></a>
2+
# [33.1.0](https://github.com/ipfs/js-ipfs-http-client/compare/v33.0.2...v33.1.0) (2019-07-11)
3+
4+
5+
### Bug Fixes
6+
7+
* changelog for 33.x does not include breaking change ([cd41a16](https://github.com/ipfs/js-ipfs-http-client/commit/cd41a16))
8+
* invalid multipart/form-data ([#948](https://github.com/ipfs/js-ipfs-http-client/issues/948)) ([9e6dfe7](https://github.com/ipfs/js-ipfs-http-client/commit/9e6dfe7)), closes [/tools.ietf.org/html/rfc7578#section-4](https://github.com//tools.ietf.org/html/rfc7578/issues/section-4)
9+
10+
11+
### Features
12+
13+
* add support for js-ipfs dag api and also some tests ([#957](https://github.com/ipfs/js-ipfs-http-client/issues/957)) ([8f378a3](https://github.com/ipfs/js-ipfs-http-client/commit/8f378a3))
14+
15+
16+
17+
<a name="33.0.2"></a>
18+
## [33.0.2](https://github.com/ipfs/js-ipfs-http-client/compare/v33.0.1...v33.0.2) (2019-07-11)
19+
20+
21+
### Bug Fixes
22+
23+
* make findprovs return all responses ([#1041](https://github.com/ipfs/js-ipfs-http-client/issues/1041)) ([63103bd](https://github.com/ipfs/js-ipfs-http-client/commit/63103bd))
24+
25+
26+
27+
<a name="33.0.1"></a>
28+
## [33.0.1](https://github.com/ipfs/js-ipfs-http-client/compare/v33.0.0...v33.0.1) (2019-07-10)
29+
30+
31+
### Bug Fixes
32+
33+
* response for findpeer and findprovs ([#1039](https://github.com/ipfs/js-ipfs-http-client/issues/1039)) ([5252f50](https://github.com/ipfs/js-ipfs-http-client/commit/5252f50))
34+
35+
36+
37+
<a name="33.0.0"></a>
38+
# [33.0.0](https://github.com/ipfs/js-ipfs-http-client/compare/v32.0.1...v33.0.0) (2019-07-10)
39+
40+
41+
### Bug Fixes
42+
43+
* link to ipfs.io ([70cdf25](https://github.com/ipfs/js-ipfs-http-client/commit/70cdf25))
44+
* prepare for aegir release ([#1021](https://github.com/ipfs/js-ipfs-http-client/issues/1021)) ([806b206](https://github.com/ipfs/js-ipfs-http-client/commit/806b206))
45+
* sometimes no Addrs element is present in the response ([#1037](https://github.com/ipfs/js-ipfs-http-client/issues/1037)) ([a74b8f7](https://github.com/ipfs/js-ipfs-http-client/commit/a74b8f7))
46+
* **package:** update bignumber.js to version 9.0.0 ([#1024](https://github.com/ipfs/js-ipfs-http-client/issues/1024)) ([a04edac](https://github.com/ipfs/js-ipfs-http-client/commit/a04edac))
47+
48+
### BREAKING CHANGES
49+
50+
`repo.gc` response objects have changed to `{ err, cid }`, where `err` is an `Error` instance and `cid` is a [`CID`](https://github.com/multiformats/js-cid) instance.
51+
52+
53+
154
<a name="32.0.1"></a>
255
## [32.0.1](https://github.com/ipfs/js-ipfs-http-client/compare/v32.0.0...v32.0.1) (2019-05-21)
356

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h1 align="center">
2-
<a href="ipfs.io"><img width="650px" src="https://ipfs.io/ipfs/QmQJ68PFMDdAsgCZvA1UVzzn18asVcf7HVvCDgpjiSCAse" alt="IPFS http client lib logo" /></a>
2+
<a href="https://ipfs.io"><img width="650px" src="https://ipfs.io/ipfs/QmQJ68PFMDdAsgCZvA1UVzzn18asVcf7HVvCDgpjiSCAse" alt="IPFS http client lib logo" /></a>
33
</h1>
44

55
<h3 align="center">The JavaScript HTTP client library for IPFS implementations.</h3>
@@ -203,6 +203,8 @@ const ipfs = ipfsClient({
203203
- [`ipfs.lsPullStream(ipfsPath)`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#lspullstream)
204204
- [`ipfs.lsReadableStream(ipfsPath)`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#lsreadablestream)
205205
- [MFS (mutable file system) specific](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#mutable-file-system)
206+
207+
_Explore the Mutable File System through interactive coding challenges in our [ProtoSchool tutorial](https://proto.school/#/mutable-file-system/)._
206208
- [`ipfs.files.cp([from, to], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#filescp)
207209
- [`ipfs.files.flush([path], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#filesflush)
208210
- [`ipfs.files.ls([path], [options], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#filesls)
@@ -231,6 +233,8 @@ const ipfs = ipfsClient({
231233
#### Graph
232234

233235
- [dag](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/DAG.md)
236+
237+
_Explore the DAG API through interactive coding challenges in our [ProtoSchool tutorial](https://proto.school/#/basics)._
234238
- [`ipfs.dag.get(cid, [path], [options], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/DAG.md#dagget)
235239
- [`ipfs.dag.put(dagNode, [options], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/DAG.md#dagput)
236240
- [`ipfs.dag.tree(cid, [path], [options], [callback])`](https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/DAG.md#dagtree)

0 commit comments

Comments
 (0)