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

File tree

52 files changed

+796
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+796
-87
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 2.0.0 (2020-03-31)
7+
8+
9+
### Bug Fixes
10+
11+
* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
12+
13+
14+
### Code Refactoring
15+
16+
* export types and utilities statically ([#1908](https://github.com/ipfs/js-ipfs/issues/1908)) ([79d7fef](https://github.com/ipfs/js-ipfs/commit/79d7fef7d28c0e0405fb69af149ff09681ac4273))
17+
18+
19+
### BREAKING CHANGES
20+
21+
* `ipfs.util.isIPFS` and `ipfs.util.crypto` have moved to static exports and should be accessed via `const { isIPFS, crypto } = require('ipfs')`.
22+
23+
The modules available under `ipfs.types.*` have also become static exports.
24+
25+
License: MIT
26+
Signed-off-by: Alan Shaw <[email protected]>
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-browser-add-readable-stream",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"description": "How to add readable streams in the browser",
55
"main": "index.js",
66
"private": true,
@@ -12,8 +12,7 @@
1212
"keywords": [],
1313
"license": "MIT",
1414
"devDependencies": {
15-
"ipfs": "^0.41.0",
16-
"test-ipfs-example": "^1.0.0"
17-
},
18-
"dependencies": {}
15+
"ipfs": "^0.42.0",
16+
"test-ipfs-example": "^2.0.0"
17+
}
1918
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 1.1.0 (2020-03-31)
7+
8+
9+
### Bug Fixes
10+
11+
* examples after files API refactor ([#1740](https://github.com/ipfs/js-ipfs/issues/1740)) ([34ec036](https://github.com/ipfs/js-ipfs/commit/34ec036b0df9563a014c1348f0a056c1f98aadad))
12+
13+
14+
### Features
15+
16+
* implementing the new streaming interfaces ([#1086](https://github.com/ipfs/js-ipfs/issues/1086)) ([2c4b8b3](https://github.com/ipfs/js-ipfs/commit/2c4b8b325b94d4506b87441f06c5d29bb6f37f72))

examples/browser-browserify/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-browser-browserify",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Bundle js-ipfs with Browserify",
55
"main": "index.js",
66
"private": true,
@@ -18,10 +18,9 @@
1818
"concat-stream": "^2.0.0",
1919
"execa": "^4.0.0",
2020
"http-server": "^0.11.1",
21-
"ipfs": "^0.41.0",
22-
"test-ipfs-example": "^1.0.0"
21+
"ipfs": "^0.42.0",
22+
"test-ipfs-example": "^2.0.0"
2323
},
24-
"dependencies": {},
2524
"browser": {
2625
"ipfs": "ipfs/dist/index.js"
2726
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## 0.1.1 (2020-03-31)
7+
8+
**Note:** Version bump only for package example-browser-create-react-app

examples/browser-create-react-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "example-browser-create-react-app",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"private": true,
55
"dependencies": {
66
"dot-prop": "^5.0.0",
7-
"ipfs": "^0.41.0",
7+
"ipfs": "^0.42.0",
88
"ipfs-css": "^0.13.1",
99
"react": "^16.8.6",
1010
"react-dom": "^16.8.6",
1111
"react-scripts": "^3.2.0",
1212
"tachyons": "^4.11.1"
1313
},
1414
"devDependencies": {
15-
"test-ipfs-example": "^1.0.0"
15+
"test-ipfs-example": "^2.0.0"
1616
},
1717
"scripts": {
1818
"start": "react-scripts start",

examples/browser-mfs/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## 1.0.1 (2020-03-31)
7+
8+
9+
### Bug Fixes
10+
11+
* browser-mfs example ([#2089](https://github.com/ipfs/js-ipfs/issues/2089)) ([e7d6d3a](https://github.com/ipfs/js-ipfs/commit/e7d6d3a8462e9692530bcd037a4dcd7a236eeae2))

examples/browser-mfs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-browser-mfs",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "",
55
"main": "index.js",
66
"private": true,
@@ -16,12 +16,12 @@
1616
"html-webpack-plugin": "^3.2.0",
1717
"http-server": "^0.11.1",
1818
"terser-webpack-plugin": "^1.2.1",
19-
"test-ipfs-example": "^1.0.0",
19+
"test-ipfs-example": "^2.0.0",
2020
"webpack": "^4.28.4",
2121
"webpack-cli": "^3.0.8"
2222
},
2323
"dependencies": {
24-
"ipfs": "^0.41.0",
24+
"ipfs": "^0.42.0",
2525
"mime-sniffer": "~0.0.3"
2626
}
2727
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## 1.0.1 (2020-03-31)
7+
8+
**Note:** Version bump only for package example-browser-parceljs

examples/browser-parceljs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-browser-parceljs",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "",
55
"main": "index.js",
66
"private": true,
@@ -18,7 +18,7 @@
1818
"author": "",
1919
"license": "ISC",
2020
"dependencies": {
21-
"ipfs": "^0.41.0"
21+
"ipfs": "^0.42.0"
2222
},
2323
"devDependencies": {
2424
"@babel/cli": "^7.1.5",
@@ -29,6 +29,6 @@
2929
"babel-polyfill": "^6.26.0",
3030
"parcel-bundler": "^1.12.4",
3131
"standard": "^13.1.0",
32-
"test-ipfs-example": "^1.0.0"
32+
"test-ipfs-example": "^2.0.0"
3333
}
3434
}

0 commit comments

Comments
 (0)