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

Commit 568aead

Browse files
committedNov 12, 2021
chore: publish
- interface-ipfs-core@0.152.0 - ipfs-cli@0.10.0 - ipfs-client@0.7.2 - ipfs-core-config@0.1.2 - ipfs-core-types@0.8.2 - ipfs-core-utils@0.12.0 - ipfs-core@0.12.0 - ipfs-daemon@0.10.2 - ipfs-grpc-client@0.8.0 - ipfs-grpc-protocol@0.5.2 - ipfs-grpc-server@0.7.2 - ipfs-http-client@54.0.0 - ipfs-http-gateway@0.7.2 - ipfs-http-response@1.0.3 - ipfs-http-server@0.9.0 - ipfs-message-port-client@0.10.0 - ipfs-message-port-protocol@0.10.2 - ipfs-message-port-server@0.10.2 - ipfs@0.60.0
1 parent 10e2c15 commit 568aead

File tree

38 files changed

+301
-68
lines changed

38 files changed

+301
-68
lines changed
 

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

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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.152.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.151.1...interface-ipfs-core@0.152.0) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
12+
* do not lose files when writing files into subshards that contain other subshards ([#3936](https://github.com/ipfs/js-ipfs/issues/3936)) ([8a3ed19](https://github.com/ipfs/js-ipfs/commit/8a3ed19575beaafe5dfd3bce310a548950c148d0)), closes [#3921](https://github.com/ipfs/js-ipfs/issues/3921)
13+
14+
15+
### BREAKING CHANGES
16+
17+
* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
18+
19+
20+
21+
22+
623
## [0.151.1](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.151.0...interface-ipfs-core@0.151.1) (2021-09-28)
724

825
**Note:** Version bump only for package interface-ipfs-core

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "interface-ipfs-core",
3-
"version": "0.151.1",
3+
"version": "0.152.0",
44
"description": "A test suite and interface you can use to implement a IPFS core interface.",
55
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
66
"type": "module",
@@ -72,7 +72,7 @@
7272
"copyfiles": "^2.4.1",
7373
"delay": "^5.0.0",
7474
"err-code": "^3.0.1",
75-
"ipfs-core-types": "^0.8.1",
75+
"ipfs-core-types": "^0.8.2",
7676
"ipfs-unixfs": "^6.0.3",
7777
"ipfs-unixfs-importer": "^9.0.3",
7878
"ipfs-utils": "^9.0.2",

‎packages/ipfs-cli/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.10.0](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.9.1...ipfs-cli@0.10.0) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
17+
18+
19+
20+
21+
622
## [0.9.1](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.9.0...ipfs-cli@0.9.1) (2021-09-28)
723

824
**Note:** Version bump only for package ipfs-cli

‎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.9.1",
3+
"version": "0.10.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -65,11 +65,11 @@
6565
"err-code": "^3.0.1",
6666
"execa": "^5.0.0",
6767
"get-folder-size": "^2.0.1",
68-
"ipfs-core": "^0.11.1",
69-
"ipfs-core-types": "^0.8.1",
70-
"ipfs-core-utils": "^0.11.1",
71-
"ipfs-daemon": "^0.10.1",
72-
"ipfs-http-client": "^53.0.1",
68+
"ipfs-core": "^0.12.0",
69+
"ipfs-core-types": "^0.8.2",
70+
"ipfs-core-utils": "^0.12.0",
71+
"ipfs-daemon": "^0.10.2",
72+
"ipfs-http-client": "^54.0.0",
7373
"ipfs-repo": "^13.0.4",
7474
"ipfs-utils": "^9.0.2",
7575
"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.7.2](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.7.1...ipfs-client@0.7.2) (2021-11-12)
7+
8+
**Note:** Version bump only for package ipfs-client
9+
10+
11+
12+
13+
614
## [0.7.1](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.7.0...ipfs-client@0.7.1) (2021-09-28)
715

816
**Note:** Version bump only for package ipfs-client

‎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.7.1",
3+
"version": "0.7.2",
44
"description": "A client library to talk to local IPFS daemons",
55
"keywords": [
66
"ipfs"
@@ -41,8 +41,8 @@
4141
"dep-check": "aegir dep-check -i aegir -i rimraf"
4242
},
4343
"dependencies": {
44-
"ipfs-grpc-client": "^0.7.1",
45-
"ipfs-http-client": "^53.0.1",
44+
"ipfs-grpc-client": "^0.8.0",
45+
"ipfs-http-client": "^54.0.0",
4646
"merge-options": "^3.0.4"
4747
},
4848
"devDependencies": {

‎packages/ipfs-core-config/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.1.2](https://github.com/ipfs/js-ipfs/compare/ipfs-core-config@0.1.1...ipfs-core-config@0.1.2) (2021-11-12)
7+
8+
**Note:** Version bump only for package ipfs-core-config
9+
10+
11+
12+
13+
614
## [0.1.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core-config@0.1.0...ipfs-core-config@0.1.1) (2021-09-28)
715

816
**Note:** Version bump only for package ipfs-core-config

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core-config",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Package to store node and browser specific config for ipfs-core",
55
"author": "Alex Potsides <alex@achingbrain.net>",
66
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-config#readme",
@@ -106,7 +106,7 @@
106106
},
107107
"devDependencies": {
108108
"aegir": "^35.1.1",
109-
"ipfs-core-utils": "^0.11.1",
109+
"ipfs-core-utils": "^0.12.0",
110110
"rimraf": "^3.0.2"
111111
}
112112
}

‎packages/ipfs-core-types/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.2](https://github.com/ipfs/js-ipfs/compare/ipfs-core-types@0.8.1...ipfs-core-types@0.8.2) (2021-11-12)
7+
8+
**Note:** Version bump only for package ipfs-core-types
9+
10+
11+
12+
13+
614
## [0.8.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core-types@0.8.0...ipfs-core-types@0.8.1) (2021-09-28)
715

816
**Note:** Version bump only for package ipfs-core-types

‎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.8.1",
3+
"version": "0.8.2",
44
"description": "IPFS interface definitions used by implementations for API compatibility.",
55
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
66
"types": "types/src/index.d.ts",

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

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.11.1...ipfs-core-utils@0.12.0) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
17+
18+
19+
20+
21+
622
## [0.11.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.11.0...ipfs-core-utils@0.11.1) (2021-09-28)
723

824
**Note:** Version bump only for package ipfs-core-utils

‎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.11.1",
3+
"version": "0.12.0",
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",
@@ -117,7 +117,7 @@
117117
"browser-readablestream-to-it": "^1.0.1",
118118
"debug": "^4.1.1",
119119
"err-code": "^3.0.1",
120-
"ipfs-core-types": "^0.8.1",
120+
"ipfs-core-types": "^0.8.2",
121121
"ipfs-unixfs": "^6.0.3",
122122
"ipfs-utils": "^9.0.2",
123123
"it-all": "^1.0.4",

‎packages/ipfs-core/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.11.1...ipfs-core@0.12.0) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
12+
* do not lose files when writing files into subshards that contain other subshards ([#3936](https://github.com/ipfs/js-ipfs/issues/3936)) ([8a3ed19](https://github.com/ipfs/js-ipfs/commit/8a3ed19575beaafe5dfd3bce310a548950c148d0)), closes [#3921](https://github.com/ipfs/js-ipfs/issues/3921)
13+
14+
15+
### BREAKING CHANGES
16+
17+
* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
18+
19+
20+
21+
22+
623
## [0.11.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.11.0...ipfs-core@0.11.1) (2021-09-28)
724

825
**Note:** Version bump only for package ipfs-core

‎packages/ipfs-core/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core",
3-
"version": "0.11.1",
3+
"version": "0.12.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -84,10 +84,10 @@
8484
"interface-blockstore": "^2.0.2",
8585
"interface-datastore": "^6.0.2",
8686
"ipfs-bitswap": "^7.0.0",
87-
"ipfs-core-config": "^0.1.1",
88-
"ipfs-core-types": "^0.8.1",
89-
"ipfs-core-utils": "^0.11.1",
90-
"ipfs-http-client": "^53.0.1",
87+
"ipfs-core-config": "^0.1.2",
88+
"ipfs-core-types": "^0.8.2",
89+
"ipfs-core-utils": "^0.12.0",
90+
"ipfs-http-client": "^54.0.0",
9191
"ipfs-repo": "^13.0.4",
9292
"ipfs-unixfs": "^6.0.3",
9393
"ipfs-unixfs-exporter": "^7.0.3",
@@ -137,7 +137,7 @@
137137
"delay": "^5.0.0",
138138
"go-ipfs": "0.9.1",
139139
"interface-blockstore-tests": "^2.0.1",
140-
"interface-ipfs-core": "^0.151.1",
140+
"interface-ipfs-core": "^0.152.0",
141141
"ipfsd-ctl": "^10.0.4",
142142
"iso-url": "^1.0.0",
143143
"libp2p-gossipsub": "^0.11.1",

‎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.10.2](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.10.1...ipfs-daemon@0.10.2) (2021-11-12)
7+
8+
**Note:** Version bump only for package ipfs-daemon
9+
10+
11+
12+
13+
614
## [0.10.1](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.10.0...ipfs-daemon@0.10.1) (2021-09-28)
715

816
**Note:** Version bump only for package ipfs-daemon

‎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.10.1",
3+
"version": "0.10.2",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -45,11 +45,11 @@
4545
"dependencies": {
4646
"@mapbox/node-pre-gyp": "^1.0.5",
4747
"debug": "^4.1.1",
48-
"ipfs-core": "^0.11.1",
49-
"ipfs-core-types": "^0.8.1",
50-
"ipfs-grpc-server": "^0.7.1",
51-
"ipfs-http-gateway": "^0.7.1",
52-
"ipfs-http-server": "^0.8.1",
48+
"ipfs-core": "^0.12.0",
49+
"ipfs-core-types": "^0.8.2",
50+
"ipfs-grpc-server": "^0.7.2",
51+
"ipfs-http-gateway": "^0.7.2",
52+
"ipfs-http-server": "^0.9.0",
5353
"ipfs-utils": "^9.0.2",
5454
"just-safe-set": "^2.2.1",
5555
"libp2p": "^0.33.0",

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

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.7.1...ipfs-grpc-client@0.8.0) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
17+
18+
19+
20+
21+
622
## [0.7.1](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.7.0...ipfs-grpc-client@0.7.1) (2021-09-28)
723

824
**Note:** Version bump only for package ipfs-grpc-client

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-grpc-client",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"description": "A client library for the IPFS gRPC API",
55
"keywords": [
66
"ipfs"
@@ -54,9 +54,9 @@
5454
"change-case": "^4.1.1",
5555
"debug": "^4.1.1",
5656
"err-code": "^3.0.1",
57-
"ipfs-core-types": "^0.8.1",
58-
"ipfs-core-utils": "^0.11.1",
59-
"ipfs-grpc-protocol": "^0.5.1",
57+
"ipfs-core-types": "^0.8.2",
58+
"ipfs-core-utils": "^0.12.0",
59+
"ipfs-grpc-protocol": "^0.5.2",
6060
"ipfs-unixfs": "^6.0.3",
6161
"it-first": "^1.0.4",
6262
"it-pushable": "^1.4.2",

‎packages/ipfs-grpc-protocol/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.2](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-protocol@0.5.1...ipfs-grpc-protocol@0.5.2) (2021-11-12)
7+
8+
**Note:** Version bump only for package ipfs-grpc-protocol
9+
10+
11+
12+
13+
614
## [0.5.1](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-protocol@0.5.0...ipfs-grpc-protocol@0.5.1) (2021-09-28)
715

816
**Note:** Version bump only for package ipfs-grpc-protocol

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-grpc-protocol",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "Protobuf definitions for the IPFS gRPC API",
55
"keywords": [
66
"ipfs"

‎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.7.2](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-server@0.7.1...ipfs-grpc-server@0.7.2) (2021-11-12)
7+
8+
**Note:** Version bump only for package ipfs-grpc-server
9+
10+
11+
12+
13+
614
## [0.7.1](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-server@0.7.0...ipfs-grpc-server@0.7.1) (2021-09-28)
715

816
**Note:** Version bump only for package ipfs-grpc-server

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-grpc-server",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "A server library for the IPFS gRPC API",
55
"keywords": [
66
"ipfs"
@@ -47,8 +47,8 @@
4747
"change-case": "^4.1.1",
4848
"coercer": "^1.1.2",
4949
"debug": "^4.1.1",
50-
"ipfs-core-types": "^0.8.1",
51-
"ipfs-grpc-protocol": "^0.5.1",
50+
"ipfs-core-types": "^0.8.2",
51+
"ipfs-grpc-protocol": "^0.5.2",
5252
"it-first": "^1.0.4",
5353
"it-map": "^1.0.4",
5454
"it-peekable": "^1.0.2",
@@ -62,7 +62,7 @@
6262
"devDependencies": {
6363
"@types/ws": "^7.4.0",
6464
"aegir": "^35.1.1",
65-
"ipfs-core": "^0.11.1",
65+
"ipfs-core": "^0.12.0",
6666
"it-all": "^1.0.4",
6767
"it-drain": "^1.0.3",
6868
"rimraf": "^3.0.2",

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

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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+
# [54.0.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-client@53.0.1...ipfs-http-client@54.0.0) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
17+
18+
19+
20+
21+
622
## [53.0.1](https://github.com/ipfs/js-ipfs/compare/ipfs-http-client@53.0.0...ipfs-http-client@53.0.1) (2021-09-28)
723

824
**Note:** Version bump only for package ipfs-http-client

‎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": "53.0.1",
3+
"version": "54.0.0",
44
"description": "A client library for the IPFS HTTP API",
55
"keywords": [
66
"ipfs"
@@ -60,8 +60,8 @@
6060
"any-signal": "^2.1.2",
6161
"debug": "^4.1.1",
6262
"err-code": "^3.0.1",
63-
"ipfs-core-types": "^0.8.1",
64-
"ipfs-core-utils": "^0.11.1",
63+
"ipfs-core-types": "^0.8.2",
64+
"ipfs-core-utils": "^0.12.0",
6565
"ipfs-utils": "^9.0.2",
6666
"it-first": "^1.0.6",
6767
"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.7.2](https://github.com/ipfs/js-ipfs/compare/ipfs-http-gateway@0.7.1...ipfs-http-gateway@0.7.2) (2021-11-12)
7+
8+
**Note:** Version bump only for package ipfs-http-gateway
9+
10+
11+
12+
13+
614
## [0.7.1](https://github.com/ipfs/js-ipfs/compare/ipfs-http-gateway@0.7.0...ipfs-http-gateway@0.7.1) (2021-09-28)
715

816
**Note:** Version bump only for package ipfs-http-gateway

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-gateway",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -63,8 +63,8 @@
6363
"@hapi/hapi": "^20.0.0",
6464
"debug": "^4.1.1",
6565
"hapi-pino": "^8.3.0",
66-
"ipfs-core-types": "^0.8.1",
67-
"ipfs-http-response": "^1.0.2",
66+
"ipfs-core-types": "^0.8.2",
67+
"ipfs-http-response": "^1.0.3",
6868
"is-ipfs": "^6.0.1",
6969
"it-last": "^1.0.4",
7070
"it-to-stream": "^1.0.0",

‎packages/ipfs-http-response/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+
## [1.0.3](https://github.com/ipfs/js-ipfs-http-response/compare/ipfs-http-response@1.0.2...ipfs-http-response@1.0.3) (2021-11-12)
7+
8+
**Note:** Version bump only for package ipfs-http-response
9+
10+
11+
12+
13+
614
## 1.0.2 (2021-09-28)
715

816

‎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": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Creates an HTTP response from an IPFS Hash",
55
"leadMaintainer": "Vasco Santos <vasco.santos@moxy.studio>",
66
"main": "src/index.js",
@@ -77,7 +77,7 @@
7777
"aegir": "^35.1.1",
7878
"get-stream": "^6.0.0",
7979
"global": "^4.4.0",
80-
"ipfs-core": "^0.11.1",
80+
"ipfs-core": "^0.12.0",
8181
"ipfsd-ctl": "^10.0.4",
8282
"it-all": "^1.0.4",
8383
"rimraf": "^3.0.2",

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

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-server@0.8.1...ipfs-http-server@0.9.0) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
17+
18+
19+
20+
21+
622
## [0.8.1](https://github.com/ipfs/js-ipfs/compare/ipfs-http-server@0.8.0...ipfs-http-server@0.8.1) (2021-09-28)
723

824
**Note:** Version bump only for package ipfs-http-server

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-server",
3-
"version": "0.8.1",
3+
"version": "0.9.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -54,9 +54,9 @@
5454
"dlv": "^1.1.3",
5555
"err-code": "^3.0.1",
5656
"hapi-pino": "^8.3.0",
57-
"ipfs-core-types": "^0.8.1",
58-
"ipfs-core-utils": "^0.11.1",
59-
"ipfs-http-gateway": "^0.7.1",
57+
"ipfs-core-types": "^0.8.2",
58+
"ipfs-core-utils": "^0.12.0",
59+
"ipfs-http-gateway": "^0.7.2",
6060
"ipfs-unixfs": "^6.0.3",
6161
"it-all": "^1.0.4",
6262
"it-drain": "^1.0.3",
@@ -84,7 +84,7 @@
8484
"@types/hapi__hapi": "^20.0.5",
8585
"aegir": "^35.1.1",
8686
"form-data": "^4.0.0",
87-
"ipfs-http-client": "^53.0.1",
87+
"ipfs-http-client": "^54.0.0",
8888
"iso-random-stream": "^2.0.0",
8989
"it-to-buffer": "^2.0.0",
9090
"npm-run-all": "^4.1.5",

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

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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.10.0](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-client@0.9.1...ipfs-message-port-client@0.10.0) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
12+
* transfer set ([#3573](https://github.com/ipfs/js-ipfs/issues/3573)) ([b09a18c](https://github.com/ipfs/js-ipfs/commit/b09a18cd98883662353d116a8ff25a3ddaa48fc2))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
18+
19+
20+
21+
22+
623
## [0.9.1](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-client@0.9.0...ipfs-message-port-client@0.9.1) (2021-09-28)
724

825
**Note:** Version bump only for package ipfs-message-port-client

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-message-port-client",
3-
"version": "0.9.1",
3+
"version": "0.10.0",
44
"description": "IPFS client library for accessing IPFS node over message port",
55
"keywords": [
66
"ipfs",
@@ -47,17 +47,17 @@
4747
"dependencies": {
4848
"browser-readablestream-to-it": "^1.0.1",
4949
"err-code": "^3.0.1",
50-
"ipfs-core-types": "^0.8.1",
51-
"ipfs-message-port-protocol": "^0.10.1",
50+
"ipfs-core-types": "^0.8.2",
51+
"ipfs-message-port-protocol": "^0.10.2",
5252
"ipfs-unixfs": "^6.0.3",
5353
"it-peekable": "^1.0.2",
5454
"multiformats": "^9.4.1"
5555
},
5656
"devDependencies": {
5757
"aegir": "^35.1.1",
58-
"interface-ipfs-core": "^0.151.1",
59-
"ipfs-core": "^0.11.1",
60-
"ipfs-message-port-server": "^0.10.1",
58+
"interface-ipfs-core": "^0.152.0",
59+
"ipfs-core": "^0.12.0",
60+
"ipfs-message-port-server": "^0.10.2",
6161
"rimraf": "^3.0.2"
6262
},
6363
"engines": {

‎packages/ipfs-message-port-protocol/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.10.2](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-protocol@0.10.1...ipfs-message-port-protocol@0.10.2) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* transfer set ([#3573](https://github.com/ipfs/js-ipfs/issues/3573)) ([b09a18c](https://github.com/ipfs/js-ipfs/commit/b09a18cd98883662353d116a8ff25a3ddaa48fc2))
12+
13+
14+
15+
16+
617
## [0.10.1](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-protocol@0.10.0...ipfs-message-port-protocol@0.10.1) (2021-09-28)
718

819
**Note:** Version bump only for package ipfs-message-port-protocol

‎packages/ipfs-message-port-protocol/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-message-port-protocol",
3-
"version": "0.10.1",
3+
"version": "0.10.2",
44
"description": "IPFS client/server protocol over message port",
55
"keywords": [
66
"ipfs"
@@ -73,7 +73,7 @@
7373
"dep-check": "aegir dep-check -i rimraf -i ipfs-core-types"
7474
},
7575
"dependencies": {
76-
"ipfs-core-types": "^0.8.1",
76+
"ipfs-core-types": "^0.8.2",
7777
"multiformats": "^9.4.1"
7878
},
7979
"devDependencies": {

‎packages/ipfs-message-port-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.10.2](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-server@0.10.1...ipfs-message-port-server@0.10.2) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* transfer set ([#3573](https://github.com/ipfs/js-ipfs/issues/3573)) ([b09a18c](https://github.com/ipfs/js-ipfs/commit/b09a18cd98883662353d116a8ff25a3ddaa48fc2))
12+
13+
14+
15+
16+
617
## [0.10.1](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-server@0.10.0...ipfs-message-port-server@0.10.1) (2021-09-28)
718

819
**Note:** Version bump only for package ipfs-message-port-server

‎packages/ipfs-message-port-server/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-message-port-server",
3-
"version": "0.10.1",
3+
"version": "0.10.2",
44
"description": "IPFS server library for exposing IPFS node over message port",
55
"keywords": [
66
"ipfs",
@@ -67,8 +67,8 @@
6767
"dep-check": "aegir dep-check -i rimraf -i ipfs-core-types"
6868
},
6969
"dependencies": {
70-
"ipfs-core-types": "^0.8.1",
71-
"ipfs-message-port-protocol": "^0.10.1",
70+
"ipfs-core-types": "^0.8.2",
71+
"ipfs-message-port-protocol": "^0.10.2",
7272
"it-all": "^1.0.4",
7373
"multiformats": "^9.4.1"
7474
},

‎packages/ipfs/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.60.0](https://github.com/ipfs/js-ipfs/compare/ipfs@0.59.1...ipfs@0.60.0) (2021-11-12)
7+
8+
9+
### Bug Fixes
10+
11+
* do not accept single items for ipfs.add ([#3900](https://github.com/ipfs/js-ipfs/issues/3900)) ([04e3cf3](https://github.com/ipfs/js-ipfs/commit/04e3cf3f46b585c4644cba70516f375e95361f52))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* errors will now be thrown if multiple items are passed to `ipfs.add` or single items to `ipfs.addAll` (n.b. you can still pass a list of a single item to `ipfs.addAll`)
17+
18+
19+
20+
21+
622
## [0.59.1](https://github.com/ipfs/js-ipfs/compare/ipfs@0.59.0...ipfs@0.59.1) (2021-09-28)
723

824
**Note:** Version bump only for package ipfs

‎packages/ipfs/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs",
3-
"version": "0.59.1",
3+
"version": "0.60.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -71,8 +71,8 @@
7171
},
7272
"dependencies": {
7373
"debug": "^4.1.1",
74-
"ipfs-cli": "^0.9.1",
75-
"ipfs-core": "^0.11.1",
74+
"ipfs-cli": "^0.10.0",
75+
"ipfs-core": "^0.12.0",
7676
"semver": "^7.3.2",
7777
"update-notifier": "^5.0.0"
7878
},
@@ -85,10 +85,10 @@
8585
"cross-env": "^7.0.0",
8686
"electron-webrtc": "^0.3.0",
8787
"go-ipfs": "0.9.1",
88-
"interface-ipfs-core": "^0.151.1",
89-
"ipfs-client": "^0.7.1",
90-
"ipfs-core-types": "^0.8.1",
91-
"ipfs-http-client": "^53.0.1",
88+
"interface-ipfs-core": "^0.152.0",
89+
"ipfs-client": "^0.7.2",
90+
"ipfs-core-types": "^0.8.2",
91+
"ipfs-http-client": "^54.0.0",
9292
"ipfs-interop": "^7.0.2",
9393
"ipfs-utils": "^9.0.2",
9494
"ipfsd-ctl": "^10.0.4",

0 commit comments

Comments
 (0)
This repository has been archived.