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

Commit

Permalink
chore: publish
Browse files Browse the repository at this point in the history
 - interface-ipfs-core@0.151.0
 - ipfs-cli@0.9.0
 - ipfs-client@0.7.0
 - ipfs-core-config@0.1.0
 - ipfs-core-types@0.8.0
 - ipfs-core-utils@0.11.0
 - ipfs-core@0.11.0
 - ipfs-daemon@0.10.0
 - ipfs-grpc-client@0.7.0
 - ipfs-grpc-protocol@0.5.0
 - ipfs-grpc-server@0.7.0
 - ipfs-http-client@53.0.0
 - ipfs-http-gateway@0.7.0
 - ipfs-http-server@0.8.0
 - ipfs-message-port-client@0.9.0
 - ipfs-message-port-protocol@0.10.0
 - ipfs-message-port-server@0.10.0
 - ipfs@0.59.0
  • Loading branch information
achingbrain committed Sep 24, 2021
1 parent 98710c6 commit cbd3e94
Show file tree
Hide file tree
Showing 36 changed files with 378 additions and 66 deletions.
18 changes: 18 additions & 0 deletions packages/interface-ipfs-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.151.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.150.4...interface-ipfs-core@0.151.0) (2021-09-24)


### Features

* pull in new globSource ([#3889](https://github.com/ipfs/js-ipfs/issues/3889)) ([be4a542](https://github.com/ipfs/js-ipfs/commit/be4a5428ebc4b05a2edd9a91bf9df6416c1a8c2b))
* switch to esm ([#3879](https://github.com/ipfs/js-ipfs/issues/3879)) ([9a40109](https://github.com/ipfs/js-ipfs/commit/9a40109632e5b4837eb77a2f57dbc77fbf1fe099))


### BREAKING CHANGES

* the globSource api has changed from `globSource(dir, opts)` to `globSource(dir, pattern, opts)`
* There are no default exports and everything is now dual published as ESM/CJS





## [0.150.4](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.150.3...interface-ipfs-core@0.150.4) (2021-09-17)

**Note:** Version bump only for package interface-ipfs-core
Expand Down
4 changes: 2 additions & 2 deletions packages/interface-ipfs-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "interface-ipfs-core",
"version": "0.150.4",
"version": "0.151.0",
"description": "A test suite and interface you can use to implement a IPFS core interface.",
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
"type": "module",
Expand Down Expand Up @@ -72,7 +72,7 @@
"copyfiles": "^2.4.1",
"delay": "^5.0.0",
"err-code": "^3.0.1",
"ipfs-core-types": "^0.7.3",
"ipfs-core-types": "^0.8.0",
"ipfs-unixfs": "^6.0.3",
"ipfs-unixfs-importer": "^9.0.3",
"ipfs-utils": "^9.0.1",
Expand Down
18 changes: 18 additions & 0 deletions packages/ipfs-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.9.0](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.8.8...ipfs-cli@0.9.0) (2021-09-24)


### Features

* pull in new globSource ([#3889](https://github.com/ipfs/js-ipfs/issues/3889)) ([be4a542](https://github.com/ipfs/js-ipfs/commit/be4a5428ebc4b05a2edd9a91bf9df6416c1a8c2b))
* switch to esm ([#3879](https://github.com/ipfs/js-ipfs/issues/3879)) ([9a40109](https://github.com/ipfs/js-ipfs/commit/9a40109632e5b4837eb77a2f57dbc77fbf1fe099))


### BREAKING CHANGES

* the globSource api has changed from `globSource(dir, opts)` to `globSource(dir, pattern, opts)`
* There are no default exports and everything is now dual published as ESM/CJS





## [0.8.8](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.8.7...ipfs-cli@0.8.8) (2021-09-17)

**Note:** Version bump only for package ipfs-cli
Expand Down
12 changes: 6 additions & 6 deletions packages/ipfs-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-cli",
"version": "0.8.8",
"version": "0.9.0",
"description": "JavaScript implementation of the IPFS specification",
"keywords": [
"IPFS"
Expand Down Expand Up @@ -65,11 +65,11 @@
"err-code": "^3.0.1",
"execa": "^5.0.0",
"get-folder-size": "^2.0.1",
"ipfs-core": "^0.10.8",
"ipfs-core-types": "^0.7.3",
"ipfs-core-utils": "^0.10.5",
"ipfs-daemon": "^0.9.8",
"ipfs-http-client": "^52.0.5",
"ipfs-core": "^0.11.0",
"ipfs-core-types": "^0.8.0",
"ipfs-core-utils": "^0.11.0",
"ipfs-daemon": "^0.10.0",
"ipfs-http-client": "^53.0.0",
"ipfs-repo": "^13.0.4",
"ipfs-utils": "^9.0.1",
"it-all": "^1.0.4",
Expand Down
16 changes: 16 additions & 0 deletions packages/ipfs-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.6.6...ipfs-client@0.7.0) (2021-09-24)


### Features

* switch to esm ([#3879](https://github.com/ipfs/js-ipfs/issues/3879)) ([9a40109](https://github.com/ipfs/js-ipfs/commit/9a40109632e5b4837eb77a2f57dbc77fbf1fe099))


### BREAKING CHANGES

* There are no default exports and everything is now dual published as ESM/CJS





## [0.6.6](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.6.5...ipfs-client@0.6.6) (2021-09-17)

**Note:** Version bump only for package ipfs-client
Expand Down
6 changes: 3 additions & 3 deletions packages/ipfs-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-client",
"version": "0.6.6",
"version": "0.7.0",
"description": "A client library to talk to local IPFS daemons",
"keywords": [
"ipfs"
Expand Down Expand Up @@ -41,8 +41,8 @@
"dep-check": "aegir dep-check -i aegir -i rimraf"
},
"dependencies": {
"ipfs-grpc-client": "^0.6.5",
"ipfs-http-client": "^52.0.5",
"ipfs-grpc-client": "^0.7.0",
"ipfs-http-client": "^53.0.0",
"merge-options": "^3.0.4"
},
"devDependencies": {
Expand Down
16 changes: 16 additions & 0 deletions packages/ipfs-core-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.1.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-config@0.0.1...ipfs-core-config@0.1.0) (2021-09-24)


### Features

* pull in new globSource ([#3889](https://github.com/ipfs/js-ipfs/issues/3889)) ([be4a542](https://github.com/ipfs/js-ipfs/commit/be4a5428ebc4b05a2edd9a91bf9df6416c1a8c2b))


### BREAKING CHANGES

* the globSource api has changed from `globSource(dir, opts)` to `globSource(dir, pattern, opts)`





## [0.10.5](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.10.4...ipfs-core-utils@0.10.5) (2021-09-17)

**Note:** Version bump only for package ipfs-core-utils
Expand Down
6 changes: 3 additions & 3 deletions packages/ipfs-core-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-core-config",
"version": "0.0.1",
"version": "0.1.0",
"description": "Package to store node and browser specific config for ipfs-core",
"author": "Alex Potsides <alex@achingbrain.net>",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-config#readme",
Expand Down Expand Up @@ -106,7 +106,7 @@
},
"devDependencies": {
"aegir": "^35.1.0",
"rimraf": "^3.0.2",
"ipfs-core-utils": "^0.10.5"
"ipfs-core-utils": "^0.11.0",
"rimraf": "^3.0.2"
}
}
16 changes: 16 additions & 0 deletions packages/ipfs-core-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.8.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-types@0.7.3...ipfs-core-types@0.8.0) (2021-09-24)


### Features

* switch to esm ([#3879](https://github.com/ipfs/js-ipfs/issues/3879)) ([9a40109](https://github.com/ipfs/js-ipfs/commit/9a40109632e5b4837eb77a2f57dbc77fbf1fe099))


### BREAKING CHANGES

* There are no default exports and everything is now dual published as ESM/CJS





## [0.7.3](https://github.com/ipfs/js-ipfs/compare/ipfs-core-types@0.7.2...ipfs-core-types@0.7.3) (2021-09-17)


Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-core-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-core-types",
"version": "0.7.3",
"version": "0.8.0",
"description": "IPFS interface definitions used by implementations for API compatibility.",
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
"types": "types/src/index.d.ts",
Expand Down
23 changes: 23 additions & 0 deletions packages/ipfs-core-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.11.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.10.5...ipfs-core-utils@0.11.0) (2021-09-24)


### Bug Fixes

* handle node readable streams properly ([#3890](https://github.com/ipfs/js-ipfs/issues/3890)) ([b0f367d](https://github.com/ipfs/js-ipfs/commit/b0f367d666aceb4ea8bdd532a9d8c3501f8cc78d)), closes [#3882](https://github.com/ipfs/js-ipfs/issues/3882)


### Features

* pull in new globSource ([#3889](https://github.com/ipfs/js-ipfs/issues/3889)) ([be4a542](https://github.com/ipfs/js-ipfs/commit/be4a5428ebc4b05a2edd9a91bf9df6416c1a8c2b))
* switch to esm ([#3879](https://github.com/ipfs/js-ipfs/issues/3879)) ([9a40109](https://github.com/ipfs/js-ipfs/commit/9a40109632e5b4837eb77a2f57dbc77fbf1fe099))


### BREAKING CHANGES

* the globSource api has changed from `globSource(dir, opts)` to `globSource(dir, pattern, opts)`
* There are no default exports and everything is now dual published as ESM/CJS





## [0.10.5](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.10.4...ipfs-core-utils@0.10.5) (2021-09-17)

**Note:** Version bump only for package ipfs-core-utils
Expand Down
4 changes: 2 additions & 2 deletions packages/ipfs-core-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-core-utils",
"version": "0.10.5",
"version": "0.11.0",
"description": "Package to share code between ipfs and ipfs-http-client",
"author": "Alex Potsides <alex@achingbrain.net>",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-utils#readme",
Expand Down Expand Up @@ -111,7 +111,7 @@
"browser-readablestream-to-it": "^1.0.1",
"debug": "^4.1.1",
"err-code": "^3.0.1",
"ipfs-core-types": "^0.7.3",
"ipfs-core-types": "^0.8.0",
"ipfs-unixfs": "^6.0.3",
"ipfs-utils": "^9.0.1",
"it-all": "^1.0.4",
Expand Down
18 changes: 18 additions & 0 deletions packages/ipfs-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.11.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.10.8...ipfs-core@0.11.0) (2021-09-24)


### Features

* pull in new globSource ([#3889](https://github.com/ipfs/js-ipfs/issues/3889)) ([be4a542](https://github.com/ipfs/js-ipfs/commit/be4a5428ebc4b05a2edd9a91bf9df6416c1a8c2b))
* switch to esm ([#3879](https://github.com/ipfs/js-ipfs/issues/3879)) ([9a40109](https://github.com/ipfs/js-ipfs/commit/9a40109632e5b4837eb77a2f57dbc77fbf1fe099))


### BREAKING CHANGES

* the globSource api has changed from `globSource(dir, opts)` to `globSource(dir, pattern, opts)`
* There are no default exports and everything is now dual published as ESM/CJS





## [0.10.8](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.10.7...ipfs-core@0.10.8) (2021-09-17)


Expand Down
12 changes: 6 additions & 6 deletions packages/ipfs-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-core",
"version": "0.10.8",
"version": "0.11.0",
"description": "JavaScript implementation of the IPFS specification",
"keywords": [
"IPFS"
Expand Down Expand Up @@ -84,10 +84,10 @@
"interface-blockstore": "^2.0.2",
"interface-datastore": "^6.0.2",
"ipfs-bitswap": "^7.0.0",
"ipfs-core-config": "^0.0.1",
"ipfs-core-types": "^0.7.3",
"ipfs-core-utils": "^0.10.5",
"ipfs-http-client": "^52.0.5",
"ipfs-core-config": "^0.1.0",
"ipfs-core-types": "^0.8.0",
"ipfs-core-utils": "^0.11.0",
"ipfs-http-client": "^53.0.0",
"ipfs-repo": "^13.0.4",
"ipfs-unixfs": "^6.0.3",
"ipfs-unixfs-exporter": "^7.0.3",
Expand Down Expand Up @@ -137,7 +137,7 @@
"delay": "^5.0.0",
"go-ipfs": "0.9.1",
"interface-blockstore-tests": "^2.0.1",
"interface-ipfs-core": "^0.150.4",
"interface-ipfs-core": "^0.151.0",
"ipfsd-ctl": "^10.0.3",
"iso-url": "^1.0.0",
"libp2p-gossipsub": "^0.11.1",
Expand Down
18 changes: 18 additions & 0 deletions packages/ipfs-daemon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.10.0](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.9.8...ipfs-daemon@0.10.0) (2021-09-24)


### Features

* pull in new globSource ([#3889](https://github.com/ipfs/js-ipfs/issues/3889)) ([be4a542](https://github.com/ipfs/js-ipfs/commit/be4a5428ebc4b05a2edd9a91bf9df6416c1a8c2b))
* switch to esm ([#3879](https://github.com/ipfs/js-ipfs/issues/3879)) ([9a40109](https://github.com/ipfs/js-ipfs/commit/9a40109632e5b4837eb77a2f57dbc77fbf1fe099))


### BREAKING CHANGES

* the globSource api has changed from `globSource(dir, opts)` to `globSource(dir, pattern, opts)`
* There are no default exports and everything is now dual published as ESM/CJS





## [0.9.8](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.9.7...ipfs-daemon@0.9.8) (2021-09-17)

**Note:** Version bump only for package ipfs-daemon
Expand Down
12 changes: 6 additions & 6 deletions packages/ipfs-daemon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-daemon",
"version": "0.9.8",
"version": "0.10.0",
"description": "JavaScript implementation of the IPFS specification",
"keywords": [
"IPFS"
Expand Down Expand Up @@ -45,11 +45,11 @@
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.5",
"debug": "^4.1.1",
"ipfs-core": "^0.10.8",
"ipfs-core-types": "^0.7.3",
"ipfs-grpc-server": "^0.6.6",
"ipfs-http-gateway": "^0.6.5",
"ipfs-http-server": "^0.7.6",
"ipfs-core": "^0.11.0",
"ipfs-core-types": "^0.8.0",
"ipfs-grpc-server": "^0.7.0",
"ipfs-http-gateway": "^0.7.0",
"ipfs-http-server": "^0.8.0",
"ipfs-utils": "^9.0.1",
"just-safe-set": "^2.2.1",
"libp2p": "^0.33.0",
Expand Down
21 changes: 21 additions & 0 deletions packages/ipfs-grpc-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.7.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.6.5...ipfs-grpc-client@0.7.0) (2021-09-24)


### Bug Fixes

* handle node readable streams properly ([#3890](https://github.com/ipfs/js-ipfs/issues/3890)) ([b0f367d](https://github.com/ipfs/js-ipfs/commit/b0f367d666aceb4ea8bdd532a9d8c3501f8cc78d)), closes [#3882](https://github.com/ipfs/js-ipfs/issues/3882)


### Features

* switch to esm ([#3879](https://github.com/ipfs/js-ipfs/issues/3879)) ([9a40109](https://github.com/ipfs/js-ipfs/commit/9a40109632e5b4837eb77a2f57dbc77fbf1fe099))


### BREAKING CHANGES

* There are no default exports and everything is now dual published as ESM/CJS





## [0.6.5](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.6.4...ipfs-grpc-client@0.6.5) (2021-09-17)

**Note:** Version bump only for package ipfs-grpc-client
Expand Down
Loading

0 comments on commit cbd3e94

Please sign in to comment.