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

Commit 0078aad

Browse files
chore: release master (#4132)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 70e142a commit 0078aad

File tree

19 files changed

+107
-23
lines changed

19 files changed

+107
-23
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"packages/interface-ipfs-core":"0.155.0","packages/ipfs":"0.63.2","packages/ipfs-cli":"0.13.2","packages/ipfs-client":"0.8.1","packages/ipfs-core":"0.15.1","packages/ipfs-core-config":"0.4.0","packages/ipfs-core-types":"0.11.0","packages/ipfs-core-utils":"0.15.0","packages/ipfs-daemon":"0.13.2","packages/ipfs-grpc-client":"0.10.0","packages/ipfs-grpc-protocol":"0.6.0","packages/ipfs-grpc-server":"0.9.1","packages/ipfs-http-client":"57.0.1","packages/ipfs-http-gateway":"0.10.1","packages/ipfs-http-response":"3.0.1","packages/ipfs-http-server":"0.12.2","packages/ipfs-message-port-client":"0.12.1","packages/ipfs-message-port-protocol":"0.12.0","packages/ipfs-message-port-server":"0.12.0"}
1+
{"packages/interface-ipfs-core":"0.155.0","packages/ipfs":"0.63.3","packages/ipfs-cli":"0.13.3","packages/ipfs-client":"0.8.1","packages/ipfs-core":"0.15.2","packages/ipfs-core-config":"0.4.0","packages/ipfs-core-types":"0.11.0","packages/ipfs-core-utils":"0.15.0","packages/ipfs-daemon":"0.13.3","packages/ipfs-grpc-client":"0.10.0","packages/ipfs-grpc-protocol":"0.6.0","packages/ipfs-grpc-server":"0.9.2","packages/ipfs-http-client":"57.0.1","packages/ipfs-http-gateway":"0.10.2","packages/ipfs-http-response":"3.0.2","packages/ipfs-http-server":"0.12.3","packages/ipfs-message-port-client":"0.12.2","packages/ipfs-message-port-protocol":"0.12.0","packages/ipfs-message-port-server":"0.12.0"}

packages/ipfs-cli/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
3434

3535

3636

37+
### [0.13.3](https://www.github.com/ipfs/js-ipfs/compare/ipfs-cli-v0.13.2...ipfs-cli-v0.13.3) (2022-06-13)
38+
39+
40+
### Dependencies
41+
42+
* The following workspace dependencies were updated
43+
* dependencies
44+
* ipfs-core bumped from ^0.15.1 to ^0.15.2
45+
* ipfs-daemon bumped from ^0.13.2 to ^0.13.3
46+
3747
### [0.13.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-cli-v0.13.1...ipfs-cli-v0.13.2) (2022-06-01)
3848

3949

packages/ipfs-cli/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-cli",
3-
"version": "0.13.2",
3+
"version": "0.13.3",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -70,10 +70,10 @@
7070
"byteman": "^1.3.5",
7171
"execa": "^6.1.0",
7272
"get-folder-size": "^3.1.0",
73-
"ipfs-core": "^0.15.1",
73+
"ipfs-core": "^0.15.2",
7474
"ipfs-core-types": "^0.11.0",
7575
"ipfs-core-utils": "^0.15.0",
76-
"ipfs-daemon": "^0.13.2",
76+
"ipfs-daemon": "^0.13.3",
7777
"ipfs-http-client": "^57.0.1",
7878
"ipfs-utils": "^9.0.6",
7979
"it-concat": "^2.0.0",

packages/ipfs-core/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
3737

3838

3939

40+
### [0.15.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-v0.15.1...ipfs-core-v0.15.2) (2022-06-13)
41+
42+
43+
### Bug Fixes
44+
45+
* onMessage assignment should be undefined not null ([#4131](https://www.github.com/ipfs/js-ipfs/issues/4131)) ([129ac77](https://www.github.com/ipfs/js-ipfs/commit/129ac775f1934f8f8e51006c12c6f19d8543954e))
46+
4047
### [0.15.1](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-v0.15.0...ipfs-core-v0.15.1) (2022-06-01)
4148

4249

packages/ipfs-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core",
3-
"version": "0.15.1",
3+
"version": "0.15.2",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"

packages/ipfs-daemon/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
2020

2121

2222

23+
### [0.13.3](https://www.github.com/ipfs/js-ipfs/compare/ipfs-daemon-v0.13.2...ipfs-daemon-v0.13.3) (2022-06-13)
24+
25+
26+
### Dependencies
27+
28+
* The following workspace dependencies were updated
29+
* dependencies
30+
* ipfs-core bumped from ^0.15.1 to ^0.15.2
31+
* ipfs-grpc-server bumped from ^0.9.1 to ^0.9.2
32+
* ipfs-http-gateway bumped from ^0.10.1 to ^0.10.2
33+
* ipfs-http-server bumped from ^0.12.2 to ^0.12.3
34+
2335
### [0.13.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-daemon-v0.13.1...ipfs-daemon-v0.13.2) (2022-06-01)
2436

2537

packages/ipfs-daemon/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-daemon",
3-
"version": "0.13.2",
3+
"version": "0.13.3",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -43,11 +43,11 @@
4343
"@libp2p/logger": "^1.1.4",
4444
"@libp2p/webrtc-star": "^1.0.6",
4545
"@mapbox/node-pre-gyp": "^1.0.5",
46-
"ipfs-core": "^0.15.1",
46+
"ipfs-core": "^0.15.2",
4747
"ipfs-core-types": "^0.11.0",
48-
"ipfs-grpc-server": "^0.9.1",
49-
"ipfs-http-gateway": "^0.10.1",
50-
"ipfs-http-server": "^0.12.2",
48+
"ipfs-grpc-server": "^0.9.2",
49+
"ipfs-http-gateway": "^0.10.2",
50+
"ipfs-http-server": "^0.12.3",
5151
"ipfs-utils": "^9.0.6",
5252
"libp2p": "^0.37.1"
5353
},

packages/ipfs-grpc-server/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1919

2020

2121

22+
### [0.9.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-grpc-server-v0.9.1...ipfs-grpc-server-v0.9.2) (2022-06-13)
23+
24+
25+
### Dependencies
26+
27+
* The following workspace dependencies were updated
28+
* devDependencies
29+
* ipfs-core bumped from ^0.15.1 to ^0.15.2
30+
2231
### [0.9.1](https://www.github.com/ipfs/js-ipfs/compare/ipfs-grpc-server-v0.9.0...ipfs-grpc-server-v0.9.1) (2022-06-01)
2332

2433

packages/ipfs-grpc-server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-grpc-server",
3-
"version": "0.9.1",
3+
"version": "0.9.2",
44
"description": "A server library for the IPFS gRPC API",
55
"keywords": [
66
"ipfs"
@@ -61,7 +61,7 @@
6161
"devDependencies": {
6262
"@types/ws": "^8.5.3",
6363
"aegir": "^37.0.11",
64-
"ipfs-core": "^0.15.1",
64+
"ipfs-core": "^0.15.2",
6565
"it-all": "^1.0.4",
6666
"it-drain": "^1.0.3",
6767
"sinon": "^14.0.0"

packages/ipfs-http-gateway/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1919

2020

2121

22+
### [0.10.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-http-gateway-v0.10.1...ipfs-http-gateway-v0.10.2) (2022-06-13)
23+
24+
25+
### Dependencies
26+
27+
* The following workspace dependencies were updated
28+
* dependencies
29+
* ipfs-http-response bumped from ^3.0.1 to ^3.0.2
30+
2231
### [0.10.1](https://www.github.com/ipfs/js-ipfs/compare/ipfs-http-gateway-v0.10.0...ipfs-http-gateway-v0.10.1) (2022-06-01)
2332

2433

packages/ipfs-http-gateway/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-gateway",
3-
"version": "0.10.1",
3+
"version": "0.10.2",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -65,7 +65,7 @@
6565
"@libp2p/logger": "^1.1.4",
6666
"hapi-pino": "^8.5.0",
6767
"ipfs-core-types": "^0.11.0",
68-
"ipfs-http-response": "^3.0.1",
68+
"ipfs-http-response": "^3.0.2",
6969
"is-ipfs": "^6.0.1",
7070
"it-last": "^1.0.4",
7171
"it-to-stream": "^1.0.0",

packages/ipfs-http-response/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
### [3.0.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-http-response-v3.0.1...ipfs-http-response-v3.0.2) (2022-06-13)
7+
8+
9+
### Dependencies
10+
11+
* The following workspace dependencies were updated
12+
* devDependencies
13+
* ipfs-core bumped from ^0.15.1 to ^0.15.2
14+
615
### [3.0.1](https://www.github.com/ipfs/js-ipfs/compare/ipfs-http-response-v3.0.0...ipfs-http-response-v3.0.1) (2022-06-01)
716

817

packages/ipfs-http-response/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-response",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "Creates an HTTP response from an IPFS Hash",
55
"leadMaintainer": "Vasco Santos <[email protected]>",
66
"main": "src/index.js",
@@ -79,7 +79,7 @@
7979
"aegir": "^37.0.11",
8080
"get-stream": "^6.0.0",
8181
"global": "^4.4.0",
82-
"ipfs-core": "^0.15.1",
82+
"ipfs-core": "^0.15.2",
8383
"ipfsd-ctl": "^11.0.0",
8484
"it-all": "^1.0.4",
8585
"uint8arrays": "^3.0.0"

packages/ipfs-http-server/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
2828

2929

3030

31+
### [0.12.3](https://www.github.com/ipfs/js-ipfs/compare/ipfs-http-server-v0.12.2...ipfs-http-server-v0.12.3) (2022-06-13)
32+
33+
34+
### Dependencies
35+
36+
* The following workspace dependencies were updated
37+
* dependencies
38+
* ipfs-http-gateway bumped from ^0.10.1 to ^0.10.2
39+
3140
### [0.12.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-http-server-v0.12.1...ipfs-http-server-v0.12.2) (2022-06-01)
3241

3342

packages/ipfs-http-server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-server",
3-
"version": "0.12.2",
3+
"version": "0.12.3",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -53,7 +53,7 @@
5353
"hapi-pino": "^8.5.0",
5454
"ipfs-core-types": "^0.11.0",
5555
"ipfs-core-utils": "^0.15.0",
56-
"ipfs-http-gateway": "^0.10.1",
56+
"ipfs-http-gateway": "^0.10.2",
5757
"ipfs-unixfs": "^6.0.9",
5858
"it-all": "^1.0.4",
5959
"it-drain": "^1.0.3",

packages/ipfs-message-port-client/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
### [0.12.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-message-port-client-v0.12.1...ipfs-message-port-client-v0.12.2) (2022-06-13)
7+
8+
9+
### Dependencies
10+
11+
* The following workspace dependencies were updated
12+
* devDependencies
13+
* ipfs-core bumped from ^0.15.1 to ^0.15.2
14+
615
### [0.12.1](https://www.github.com/ipfs/js-ipfs/compare/ipfs-message-port-client-v0.12.0...ipfs-message-port-client-v0.12.1) (2022-06-01)
716

817

packages/ipfs-message-port-client/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-message-port-client",
3-
"version": "0.12.1",
3+
"version": "0.12.2",
44
"description": "IPFS client library for accessing IPFS node over message port",
55
"keywords": [
66
"ipfs",
@@ -53,7 +53,7 @@
5353
"devDependencies": {
5454
"aegir": "^37.0.11",
5555
"interface-ipfs-core": "^0.155.0",
56-
"ipfs-core": "^0.15.1",
56+
"ipfs-core": "^0.15.2",
5757
"ipfs-message-port-server": "^0.12.0"
5858
},
5959
"engines": {

packages/ipfs/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

66

7+
### [0.63.3](https://www.github.com/ipfs/js-ipfs/compare/ipfs-v0.63.2...ipfs-v0.63.3) (2022-06-13)
8+
9+
10+
### Dependencies
11+
12+
* The following workspace dependencies were updated
13+
* dependencies
14+
* ipfs-cli bumped from ^0.13.2 to ^0.13.3
15+
* ipfs-core bumped from ^0.15.1 to ^0.15.2
16+
717
## [0.63.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-v0.63.1...ipfs-v0.63.2) (2022-06-01)
818

919

packages/ipfs/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs",
3-
"version": "0.63.2",
3+
"version": "0.63.3",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -68,8 +68,8 @@
6868
},
6969
"dependencies": {
7070
"@libp2p/logger": "^1.1.4",
71-
"ipfs-cli": "^0.13.2",
72-
"ipfs-core": "^0.15.1",
71+
"ipfs-cli": "^0.13.3",
72+
"ipfs-core": "^0.15.2",
7373
"semver": "^7.3.2",
7474
"update-notifier": "^5.0.0"
7575
},

0 commit comments

Comments
 (0)