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

Commit dde3d28

Browse files
committedJul 30, 2021
chore: publish
- ipfs-cli@0.7.1 - ipfs-client@0.5.1 - ipfs-core-types@0.6.1 - ipfs-core-utils@0.9.1 - ipfs-core@0.9.1 - ipfs-daemon@0.8.1 - ipfs-grpc-client@0.4.1 - ipfs-grpc-server@0.4.1 - ipfs-http-client@51.0.1 - ipfs-http-gateway@0.5.1 - ipfs-http-server@0.6.1 - ipfs-message-port-client@0.7.1 - ipfs-message-port-protocol@0.8.1 - ipfs-message-port-server@0.8.1 - ipfs@0.56.1
1 parent 8178225 commit dde3d28

File tree

30 files changed

+184
-54
lines changed

30 files changed

+184
-54
lines changed
 

‎packages/ipfs-cli/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.7.1](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.7.0...ipfs-cli@0.7.1) (2021-07-30)
7+
8+
**Note:** Version bump only for package ipfs-cli
9+
10+
11+
12+
13+
614
# [0.7.0](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.6.2...ipfs-cli@0.7.0) (2021-07-27)
715

816

‎packages/ipfs-cli/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-cli",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -37,11 +37,11 @@
3737
"err-code": "^3.0.1",
3838
"execa": "^5.0.0",
3939
"get-folder-size": "^2.0.1",
40-
"ipfs-core": "^0.9.0",
41-
"ipfs-core-types": "^0.6.0",
42-
"ipfs-core-utils": "^0.9.0",
43-
"ipfs-daemon": "^0.8.0",
44-
"ipfs-http-client": "^51.0.0",
40+
"ipfs-core": "^0.9.1",
41+
"ipfs-core-types": "^0.6.1",
42+
"ipfs-core-utils": "^0.9.1",
43+
"ipfs-daemon": "^0.8.1",
44+
"ipfs-http-client": "^51.0.1",
4545
"ipfs-repo": "^11.0.1",
4646
"ipfs-utils": "^8.1.4",
4747
"it-all": "^1.0.4",

‎packages/ipfs-client/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.5.1](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.5.0...ipfs-client@0.5.1) (2021-07-30)
7+
8+
**Note:** Version bump only for package ipfs-client
9+
10+
11+
12+
13+
614
# [0.5.0](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.4.3...ipfs-client@0.5.0) (2021-07-27)
715

816

‎packages/ipfs-client/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-client",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "A client library to talk to local IPFS daemons",
55
"keywords": [
66
"ipfs"
@@ -32,8 +32,8 @@
3232
"dep-check": "aegir dep-check -i aegir -i rimraf"
3333
},
3434
"dependencies": {
35-
"ipfs-grpc-client": "^0.4.0",
36-
"ipfs-http-client": "^51.0.0",
35+
"ipfs-grpc-client": "^0.4.1",
36+
"ipfs-http-client": "^51.0.1",
3737
"merge-options": "^3.0.4"
3838
},
3939
"devDependencies": {

‎packages/ipfs-core-types/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.6.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core-types@0.6.0...ipfs-core-types@0.6.1) (2021-07-30)
7+
8+
9+
### Bug Fixes
10+
11+
* typo in 'multiformats' type defs ([#3778](https://github.com/ipfs/js-ipfs/issues/3778)) ([1bf35f8](https://github.com/ipfs/js-ipfs/commit/1bf35f8a1622dea1e88bfbd701205df4f96998b1))
12+
13+
14+
15+
16+
617
# [0.6.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-types@0.5.2...ipfs-core-types@0.6.0) (2021-07-27)
718

819

‎packages/ipfs-core-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core-types",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
44
"description": "IPFS interface definitions used by implementations for API compatibility.",
55
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
66
"types": "src/index.d.ts",

‎packages/ipfs-core-utils/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.9.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.9.0...ipfs-core-utils@0.9.1) (2021-07-30)
7+
8+
**Note:** Version bump only for package ipfs-core-utils
9+
10+
11+
12+
13+
614
# [0.9.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.8.3...ipfs-core-utils@0.9.0) (2021-07-27)
715

816

‎packages/ipfs-core-utils/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core-utils",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "Package to share code between ipfs and ipfs-http-client",
55
"author": "Alex Potsides <alex@achingbrain.net>",
66
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-utils#readme",
@@ -45,7 +45,7 @@
4545
"blob-to-it": "^1.0.1",
4646
"browser-readablestream-to-it": "^1.0.1",
4747
"err-code": "^3.0.1",
48-
"ipfs-core-types": "^0.6.0",
48+
"ipfs-core-types": "^0.6.1",
4949
"ipfs-unixfs": "^5.0.0",
5050
"ipfs-utils": "^8.1.4",
5151
"it-all": "^1.0.4",

‎packages/ipfs-core/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.9.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.9.0...ipfs-core@0.9.1) (2021-07-30)
7+
8+
9+
### Bug Fixes
10+
11+
* restore default level-js options ([#3779](https://github.com/ipfs/js-ipfs/issues/3779)) ([8380d71](https://github.com/ipfs/js-ipfs/commit/8380d7160e7205bed9cc4aecfc46882bc97d42c3))
12+
* typo in 'multiformats' type defs ([#3778](https://github.com/ipfs/js-ipfs/issues/3778)) ([1bf35f8](https://github.com/ipfs/js-ipfs/commit/1bf35f8a1622dea1e88bfbd701205df4f96998b1))
13+
14+
15+
16+
17+
618
# [0.9.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.8.0...ipfs-core@0.9.0) (2021-07-27)
719

820

‎packages/ipfs-core/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -74,9 +74,9 @@
7474
"interface-blockstore": "^1.0.0",
7575
"interface-datastore": "^5.0.0",
7676
"ipfs-bitswap": "^6.0.0",
77-
"ipfs-core-types": "^0.6.0",
78-
"ipfs-core-utils": "^0.9.0",
79-
"ipfs-http-client": "^51.0.0",
77+
"ipfs-core-types": "^0.6.1",
78+
"ipfs-core-utils": "^0.9.1",
79+
"ipfs-http-client": "^51.0.1",
8080
"ipfs-repo": "^11.0.1",
8181
"ipfs-unixfs": "^5.0.0",
8282
"ipfs-unixfs-exporter": "^6.0.0",

‎packages/ipfs-daemon/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.8.1](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.8.0...ipfs-daemon@0.8.1) (2021-07-30)
7+
8+
**Note:** Version bump only for package ipfs-daemon
9+
10+
11+
12+
13+
614
# [0.8.0](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.7.2...ipfs-daemon@0.8.0) (2021-07-27)
715

816

‎packages/ipfs-daemon/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-daemon",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -32,11 +32,11 @@
3232
"dependencies": {
3333
"@mapbox/node-pre-gyp": "^1.0.5",
3434
"debug": "^4.1.1",
35-
"ipfs-core": "^0.9.0",
36-
"ipfs-core-types": "^0.6.0",
37-
"ipfs-grpc-server": "^0.4.0",
38-
"ipfs-http-gateway": "^0.5.0",
39-
"ipfs-http-server": "^0.6.0",
35+
"ipfs-core": "^0.9.1",
36+
"ipfs-core-types": "^0.6.1",
37+
"ipfs-grpc-server": "^0.4.1",
38+
"ipfs-http-gateway": "^0.5.1",
39+
"ipfs-http-server": "^0.6.1",
4040
"ipfs-utils": "^8.1.4",
4141
"just-safe-set": "^2.2.1",
4242
"libp2p": "^0.32.0",

‎packages/ipfs-grpc-client/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.4.1](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.4.0...ipfs-grpc-client@0.4.1) (2021-07-30)
7+
8+
**Note:** Version bump only for package ipfs-grpc-client
9+
10+
11+
12+
13+
614
# [0.4.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.3.3...ipfs-grpc-client@0.4.0) (2021-07-27)
715

816

‎packages/ipfs-grpc-client/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-grpc-client",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "A client library for the IPFS gRPC API",
55
"keywords": [
66
"ipfs"
@@ -36,8 +36,8 @@
3636
"change-case": "^4.1.1",
3737
"debug": "^4.1.1",
3838
"err-code": "^3.0.1",
39-
"ipfs-core-types": "^0.6.0",
40-
"ipfs-core-utils": "^0.9.0",
39+
"ipfs-core-types": "^0.6.1",
40+
"ipfs-core-utils": "^0.9.1",
4141
"ipfs-grpc-protocol": "^0.3.0",
4242
"ipfs-unixfs": "^5.0.0",
4343
"it-first": "^1.0.4",

‎packages/ipfs-grpc-server/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.4.1](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-server@0.4.0...ipfs-grpc-server@0.4.1) (2021-07-30)
7+
8+
**Note:** Version bump only for package ipfs-grpc-server
9+
10+
11+
12+
13+
614
# [0.4.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-server@0.3.4...ipfs-grpc-server@0.4.0) (2021-07-27)
715

816

‎packages/ipfs-grpc-server/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-grpc-server",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "A server library for the IPFS gRPC API",
55
"keywords": [
66
"ipfs"
@@ -34,7 +34,7 @@
3434
"change-case": "^4.1.1",
3535
"coercer": "^1.1.2",
3636
"debug": "^4.1.1",
37-
"ipfs-core-types": "^0.6.0",
37+
"ipfs-core-types": "^0.6.1",
3838
"ipfs-grpc-protocol": "^0.3.0",
3939
"it-first": "^1.0.4",
4040
"it-map": "^1.0.4",
@@ -48,7 +48,7 @@
4848
"devDependencies": {
4949
"@types/ws": "^7.4.0",
5050
"aegir": "^34.0.2",
51-
"ipfs-core": "^0.9.0",
51+
"ipfs-core": "^0.9.1",
5252
"it-all": "^1.0.4",
5353
"it-drain": "^1.0.3",
5454
"rimraf": "^3.0.2",

‎packages/ipfs-http-client/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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+
## [51.0.1](https://github.com/ipfs/js-ipfs/compare/ipfs-http-client@51.0.0...ipfs-http-client@51.0.1) (2021-07-30)
7+
8+
**Note:** Version bump only for package ipfs-http-client
9+
10+
11+
12+
13+
614
# [51.0.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-client@50.1.2...ipfs-http-client@51.0.0) (2021-07-27)
715

816

‎packages/ipfs-http-client/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-client",
3-
"version": "51.0.0",
3+
"version": "51.0.1",
44
"description": "A client library for the IPFS HTTP API",
55
"keywords": [
66
"ipfs"
@@ -51,8 +51,8 @@
5151
"debug": "^4.1.1",
5252
"err-code": "^3.0.1",
5353
"form-data": "^4.0.0",
54-
"ipfs-core-types": "^0.6.0",
55-
"ipfs-core-utils": "^0.9.0",
54+
"ipfs-core-types": "^0.6.1",
55+
"ipfs-core-utils": "^0.9.1",
5656
"ipfs-utils": "^8.1.4",
5757
"it-first": "^1.0.6",
5858
"it-last": "^1.0.4",

‎packages/ipfs-http-gateway/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.5.1](https://github.com/ipfs/js-ipfs/compare/ipfs-http-gateway@0.5.0...ipfs-http-gateway@0.5.1) (2021-07-30)
7+
8+
**Note:** Version bump only for package ipfs-http-gateway
9+
10+
11+
12+
13+
614
# [0.5.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-gateway@0.4.3...ipfs-http-gateway@0.5.0) (2021-07-27)
715

816

‎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.5.0",
3+
"version": "0.5.1",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -46,7 +46,7 @@
4646
"@hapi/hapi": "^20.0.0",
4747
"debug": "^4.1.1",
4848
"hapi-pino": "^8.3.0",
49-
"ipfs-core-types": "^0.6.0",
49+
"ipfs-core-types": "^0.6.1",
5050
"ipfs-http-response": "^0.7.0",
5151
"is-ipfs": "^6.0.1",
5252
"it-last": "^1.0.4",

‎packages/ipfs-http-server/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.6.1](https://github.com/ipfs/js-ipfs/compare/ipfs-http-server@0.6.0...ipfs-http-server@0.6.1) (2021-07-30)
7+
8+
9+
### Bug Fixes
10+
11+
* typo in 'multiformats' type defs ([#3778](https://github.com/ipfs/js-ipfs/issues/3778)) ([1bf35f8](https://github.com/ipfs/js-ipfs/commit/1bf35f8a1622dea1e88bfbd701205df4f96998b1))
12+
13+
14+
15+
16+
617
# [0.6.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-server@0.5.2...ipfs-http-server@0.6.0) (2021-07-27)
718

819

0 commit comments

Comments
 (0)
This repository has been archived.