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.153.0
 - ipfs-cli@0.11.0
 - ipfs-client@0.7.5
 - ipfs-core-config@0.2.0
 - ipfs-core-types@0.9.0
 - ipfs-core-utils@0.13.0
 - ipfs-core@0.13.0
 - ipfs-daemon@0.11.0
 - ipfs-grpc-client@0.9.0
 - ipfs-grpc-protocol@0.5.5
 - ipfs-grpc-server@0.8.0
 - ipfs-http-client@55.0.0
 - ipfs-http-gateway@0.8.0
 - ipfs-http-response@1.0.6
 - ipfs-http-server@0.10.0
 - ipfs-message-port-client@0.10.3
 - ipfs-message-port-protocol@0.10.5
 - ipfs-message-port-server@0.10.5
 - ipfs@0.61.0
  • Loading branch information
achingbrain committed Dec 15, 2021
1 parent 2b59d9d commit 7375caa
Show file tree
Hide file tree
Showing 38 changed files with 408 additions and 68 deletions.
31 changes: 31 additions & 0 deletions packages/interface-ipfs-core/CHANGELOG.md
Expand Up @@ -3,6 +3,37 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.153.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.152.2...interface-ipfs-core@0.153.0) (2021-12-15)


### Bug Fixes

* **pubsub:** multibase in pubsub http rpc ([#3922](https://github.com/ipfs/js-ipfs/issues/3922)) ([6eeaca4](https://github.com/ipfs/js-ipfs/commit/6eeaca452c36fa13be42d704575c577e4ca938f1))
* return nested value from dag.get ([#3966](https://github.com/ipfs/js-ipfs/issues/3966)) ([45ac973](https://github.com/ipfs/js-ipfs/commit/45ac9730d6484e8324acfbc3579fce052b8452d7)), closes [#3957](https://github.com/ipfs/js-ipfs/issues/3957)


### chore

* Bump @ipld/dag-cbor to v7 ([#3977](https://github.com/ipfs/js-ipfs/issues/3977)) ([73476f5](https://github.com/ipfs/js-ipfs/commit/73476f55e39ecfb01eb2b4880637aad658f51bc2))


### Features

* dht client ([#3947](https://github.com/ipfs/js-ipfs/issues/3947)) ([62d8ecb](https://github.com/ipfs/js-ipfs/commit/62d8ecbc723e693a2544e69172d99c576d187c23))
* update DAG API to match go-ipfs@0.10 changes ([#3917](https://github.com/ipfs/js-ipfs/issues/3917)) ([38c01be](https://github.com/ipfs/js-ipfs/commit/38c01be03b4fd5f401cd9b698cfdb4237d835b01))


### BREAKING CHANGES

* **pubsub:** We had to make breaking changes to `pubsub` commands sent over HTTP RPC to fix data corruption caused by topic names and payload bytes that included `\n`. More details in https://github.com/ipfs/go-ipfs/issues/7939 and https://github.com/ipfs/go-ipfs/pull/8183
* On decode of CBOR blocks, `undefined` values will be coerced to `null`
* `ipfs.dag.put` no longer accepts a `format` arg, it is now `storeCodec` and `inputCodec`. `'json'` has become `'dag-json'`, `'cbor'` has become `'dag-cbor'` and so on
* The DHT API has been refactored to return async iterators of query events





## [0.152.2](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.152.1...interface-ipfs-core@0.152.2) (2021-11-24)

**Note:** Version bump only for package interface-ipfs-core
Expand Down
4 changes: 2 additions & 2 deletions packages/interface-ipfs-core/package.json
@@ -1,6 +1,6 @@
{
"name": "interface-ipfs-core",
"version": "0.152.2",
"version": "0.153.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.8.4",
"ipfs-core-types": "^0.9.0",
"ipfs-unixfs": "^6.0.3",
"ipfs-unixfs-importer": "^9.0.3",
"ipfs-utils": "^9.0.2",
Expand Down
31 changes: 31 additions & 0 deletions packages/ipfs-cli/CHANGELOG.md
Expand Up @@ -3,6 +3,37 @@
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-cli@0.10.2...ipfs-cli@0.11.0) (2021-12-15)


### Bug Fixes

* ensure directory is passed ([#3968](https://github.com/ipfs/js-ipfs/issues/3968)) ([80ac58c](https://github.com/ipfs/js-ipfs/commit/80ac58ca27cc9f21823a23d1e6357f738fdb6781))
* **pubsub:** multibase in pubsub http rpc ([#3922](https://github.com/ipfs/js-ipfs/issues/3922)) ([6eeaca4](https://github.com/ipfs/js-ipfs/commit/6eeaca452c36fa13be42d704575c577e4ca938f1))


### chore

* Bump @ipld/dag-cbor to v7 ([#3977](https://github.com/ipfs/js-ipfs/issues/3977)) ([73476f5](https://github.com/ipfs/js-ipfs/commit/73476f55e39ecfb01eb2b4880637aad658f51bc2))


### Features

* dht client ([#3947](https://github.com/ipfs/js-ipfs/issues/3947)) ([62d8ecb](https://github.com/ipfs/js-ipfs/commit/62d8ecbc723e693a2544e69172d99c576d187c23))
* update DAG API to match go-ipfs@0.10 changes ([#3917](https://github.com/ipfs/js-ipfs/issues/3917)) ([38c01be](https://github.com/ipfs/js-ipfs/commit/38c01be03b4fd5f401cd9b698cfdb4237d835b01))


### BREAKING CHANGES

* **pubsub:** We had to make breaking changes to `pubsub` commands sent over HTTP RPC to fix data corruption caused by topic names and payload bytes that included `\n`. More details in https://github.com/ipfs/go-ipfs/issues/7939 and https://github.com/ipfs/go-ipfs/pull/8183
* On decode of CBOR blocks, `undefined` values will be coerced to `null`
* `ipfs.dag.put` no longer accepts a `format` arg, it is now `storeCodec` and `inputCodec`. `'json'` has become `'dag-json'`, `'cbor'` has become `'dag-cbor'` and so on
* The DHT API has been refactored to return async iterators of query events





## [0.10.2](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.10.1...ipfs-cli@0.10.2) (2021-11-24)

**Note:** Version bump only for package ipfs-cli
Expand Down
12 changes: 6 additions & 6 deletions packages/ipfs-cli/package.json
@@ -1,6 +1,6 @@
{
"name": "ipfs-cli",
"version": "0.10.2",
"version": "0.11.0",
"description": "JavaScript implementation of the IPFS specification",
"keywords": [
"IPFS"
Expand Down Expand Up @@ -66,11 +66,11 @@
"err-code": "^3.0.1",
"execa": "^5.0.0",
"get-folder-size": "^2.0.1",
"ipfs-core": "^0.12.2",
"ipfs-core-types": "^0.8.4",
"ipfs-core-utils": "^0.12.2",
"ipfs-daemon": "^0.10.4",
"ipfs-http-client": "^54.0.2",
"ipfs-core": "^0.13.0",
"ipfs-core-types": "^0.9.0",
"ipfs-core-utils": "^0.13.0",
"ipfs-daemon": "^0.11.0",
"ipfs-http-client": "^55.0.0",
"ipfs-repo": "^13.0.6",
"ipfs-utils": "^9.0.2",
"it-all": "^1.0.4",
Expand Down
8 changes: 8 additions & 0 deletions packages/ipfs-client/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.7.5](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.7.4...ipfs-client@0.7.5) (2021-12-15)

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





## [0.7.4](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.7.3...ipfs-client@0.7.4) (2021-11-24)

**Note:** Version bump only for package ipfs-client
Expand Down
6 changes: 3 additions & 3 deletions packages/ipfs-client/package.json
@@ -1,6 +1,6 @@
{
"name": "ipfs-client",
"version": "0.7.4",
"version": "0.7.5",
"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.8.2",
"ipfs-http-client": "^54.0.2",
"ipfs-grpc-client": "^0.9.0",
"ipfs-http-client": "^55.0.0",
"merge-options": "^3.0.4"
},
"devDependencies": {
Expand Down
17 changes: 17 additions & 0 deletions packages/ipfs-core-config/CHANGELOG.md
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.2.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-config@0.1.4...ipfs-core-config@0.2.0) (2021-12-15)


### Features

* dht client ([#3947](https://github.com/ipfs/js-ipfs/issues/3947)) ([62d8ecb](https://github.com/ipfs/js-ipfs/commit/62d8ecbc723e693a2544e69172d99c576d187c23))
* improve collected metrics ([#3978](https://github.com/ipfs/js-ipfs/issues/3978)) ([33f1034](https://github.com/ipfs/js-ipfs/commit/33f1034a6fc257f1a87de7bb38d876925f61cb5f))


### BREAKING CHANGES

* The DHT API has been refactored to return async iterators of query events





## [0.1.4](https://github.com/ipfs/js-ipfs/compare/ipfs-core-config@0.1.3...ipfs-core-config@0.1.4) (2021-11-24)

**Note:** Version bump only for package ipfs-core-config
Expand Down
4 changes: 2 additions & 2 deletions packages/ipfs-core-config/package.json
@@ -1,6 +1,6 @@
{
"name": "ipfs-core-config",
"version": "0.1.4",
"version": "0.2.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": "^36.0.1",
"ipfs-core-utils": "^0.12.2",
"ipfs-core-utils": "^0.13.0",
"rimraf": "^3.0.2"
}
}
18 changes: 18 additions & 0 deletions packages/ipfs-core-types/CHANGELOG.md
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-core-types@0.8.4...ipfs-core-types@0.9.0) (2021-12-15)


### Features

* dht client ([#3947](https://github.com/ipfs/js-ipfs/issues/3947)) ([62d8ecb](https://github.com/ipfs/js-ipfs/commit/62d8ecbc723e693a2544e69172d99c576d187c23))
* update DAG API to match go-ipfs@0.10 changes ([#3917](https://github.com/ipfs/js-ipfs/issues/3917)) ([38c01be](https://github.com/ipfs/js-ipfs/commit/38c01be03b4fd5f401cd9b698cfdb4237d835b01))


### BREAKING CHANGES

* `ipfs.dag.put` no longer accepts a `format` arg, it is now `storeCodec` and `inputCodec`. `'json'` has become `'dag-json'`, `'cbor'` has become `'dag-cbor'` and so on
* The DHT API has been refactored to return async iterators of query events





## [0.8.4](https://github.com/ipfs/js-ipfs/compare/ipfs-core-types@0.8.3...ipfs-core-types@0.8.4) (2021-11-24)

**Note:** Version bump only for package ipfs-core-types
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-core-types/package.json
@@ -1,6 +1,6 @@
{
"name": "ipfs-core-types",
"version": "0.8.4",
"version": "0.9.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
16 changes: 16 additions & 0 deletions packages/ipfs-core-utils/CHANGELOG.md
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.13.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.12.2...ipfs-core-utils@0.13.0) (2021-12-15)


### Features

* dht client ([#3947](https://github.com/ipfs/js-ipfs/issues/3947)) ([62d8ecb](https://github.com/ipfs/js-ipfs/commit/62d8ecbc723e693a2544e69172d99c576d187c23))


### BREAKING CHANGES

* The DHT API has been refactored to return async iterators of query events





## [0.12.2](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.12.1...ipfs-core-utils@0.12.2) (2021-11-24)


Expand Down
4 changes: 2 additions & 2 deletions packages/ipfs-core-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "ipfs-core-utils",
"version": "0.12.2",
"version": "0.13.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 @@ -117,7 +117,7 @@
"browser-readablestream-to-it": "^1.0.1",
"debug": "^4.1.1",
"err-code": "^3.0.1",
"ipfs-core-types": "^0.8.4",
"ipfs-core-types": "^0.9.0",
"ipfs-unixfs": "^6.0.3",
"ipfs-utils": "^9.0.2",
"it-all": "^1.0.4",
Expand Down
34 changes: 34 additions & 0 deletions packages/ipfs-core/CHANGELOG.md
Expand Up @@ -3,6 +3,40 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [0.13.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.12.2...ipfs-core@0.13.0) (2021-12-15)


### Bug Fixes

* always close writer so iterator throws on error ([#3980](https://github.com/ipfs/js-ipfs/issues/3980)) ([d147494](https://github.com/ipfs/js-ipfs/commit/d147494f362d38244bbeafbd6e7d76789c7c5020))
* **pubsub:** multibase in pubsub http rpc ([#3922](https://github.com/ipfs/js-ipfs/issues/3922)) ([6eeaca4](https://github.com/ipfs/js-ipfs/commit/6eeaca452c36fa13be42d704575c577e4ca938f1))
* return nested value from dag.get ([#3966](https://github.com/ipfs/js-ipfs/issues/3966)) ([45ac973](https://github.com/ipfs/js-ipfs/commit/45ac9730d6484e8324acfbc3579fce052b8452d7)), closes [#3957](https://github.com/ipfs/js-ipfs/issues/3957)
* use peer store for id ([#3973](https://github.com/ipfs/js-ipfs/issues/3973)) ([adde8c1](https://github.com/ipfs/js-ipfs/commit/adde8c13ba433b81e76033c418607be389fb3d31))


### chore

* Bump @ipld/dag-cbor to v7 ([#3977](https://github.com/ipfs/js-ipfs/issues/3977)) ([73476f5](https://github.com/ipfs/js-ipfs/commit/73476f55e39ecfb01eb2b4880637aad658f51bc2))


### Features

* dht client ([#3947](https://github.com/ipfs/js-ipfs/issues/3947)) ([62d8ecb](https://github.com/ipfs/js-ipfs/commit/62d8ecbc723e693a2544e69172d99c576d187c23))
* improve collected metrics ([#3978](https://github.com/ipfs/js-ipfs/issues/3978)) ([33f1034](https://github.com/ipfs/js-ipfs/commit/33f1034a6fc257f1a87de7bb38d876925f61cb5f))
* update DAG API to match go-ipfs@0.10 changes ([#3917](https://github.com/ipfs/js-ipfs/issues/3917)) ([38c01be](https://github.com/ipfs/js-ipfs/commit/38c01be03b4fd5f401cd9b698cfdb4237d835b01))


### BREAKING CHANGES

* **pubsub:** We had to make breaking changes to `pubsub` commands sent over HTTP RPC to fix data corruption caused by topic names and payload bytes that included `\n`. More details in https://github.com/ipfs/go-ipfs/issues/7939 and https://github.com/ipfs/go-ipfs/pull/8183
* On decode of CBOR blocks, `undefined` values will be coerced to `null`
* `ipfs.dag.put` no longer accepts a `format` arg, it is now `storeCodec` and `inputCodec`. `'json'` has become `'dag-json'`, `'cbor'` has become `'dag-cbor'` and so on
* The DHT API has been refactored to return async iterators of query events





## [0.12.2](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.12.1...ipfs-core@0.12.2) (2021-11-24)

**Note:** Version bump only for package ipfs-core
Expand Down
12 changes: 6 additions & 6 deletions packages/ipfs-core/package.json
@@ -1,6 +1,6 @@
{
"name": "ipfs-core",
"version": "0.12.2",
"version": "0.13.0",
"description": "JavaScript implementation of the IPFS specification",
"keywords": [
"IPFS"
Expand Down Expand Up @@ -85,10 +85,10 @@
"interface-blockstore": "^2.0.2",
"interface-datastore": "^6.0.2",
"ipfs-bitswap": "^9.0.0",
"ipfs-core-config": "^0.1.4",
"ipfs-core-types": "^0.8.4",
"ipfs-core-utils": "^0.12.2",
"ipfs-http-client": "^54.0.2",
"ipfs-core-config": "^0.2.0",
"ipfs-core-types": "^0.9.0",
"ipfs-core-utils": "^0.13.0",
"ipfs-http-client": "^55.0.0",
"ipfs-repo": "^13.0.6",
"ipfs-unixfs": "^6.0.3",
"ipfs-unixfs-exporter": "^7.0.3",
Expand Down Expand Up @@ -138,7 +138,7 @@
"delay": "^5.0.0",
"go-ipfs": "0.11.0",
"interface-blockstore-tests": "^2.0.1",
"interface-ipfs-core": "^0.152.2",
"interface-ipfs-core": "^0.153.0",
"ipfsd-ctl": "^10.0.4",
"iso-url": "^1.0.0",
"libp2p-gossipsub": "^0.12.0",
Expand Down
17 changes: 17 additions & 0 deletions packages/ipfs-daemon/CHANGELOG.md
Expand Up @@ -3,6 +3,23 @@
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-daemon@0.10.4...ipfs-daemon@0.11.0) (2021-12-15)


### Features

* dht client ([#3947](https://github.com/ipfs/js-ipfs/issues/3947)) ([62d8ecb](https://github.com/ipfs/js-ipfs/commit/62d8ecbc723e693a2544e69172d99c576d187c23))
* improve collected metrics ([#3978](https://github.com/ipfs/js-ipfs/issues/3978)) ([33f1034](https://github.com/ipfs/js-ipfs/commit/33f1034a6fc257f1a87de7bb38d876925f61cb5f))


### BREAKING CHANGES

* The DHT API has been refactored to return async iterators of query events





## [0.10.4](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.10.3...ipfs-daemon@0.10.4) (2021-11-24)

**Note:** Version bump only for package ipfs-daemon
Expand Down
12 changes: 6 additions & 6 deletions packages/ipfs-daemon/package.json
@@ -1,6 +1,6 @@
{
"name": "ipfs-daemon",
"version": "0.10.4",
"version": "0.11.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.12.2",
"ipfs-core-types": "^0.8.4",
"ipfs-grpc-server": "^0.7.4",
"ipfs-http-gateway": "^0.7.4",
"ipfs-http-server": "^0.9.2",
"ipfs-core": "^0.13.0",
"ipfs-core-types": "^0.9.0",
"ipfs-grpc-server": "^0.8.0",
"ipfs-http-gateway": "^0.8.0",
"ipfs-http-server": "^0.10.0",
"ipfs-utils": "^9.0.2",
"just-safe-set": "^2.2.1",
"libp2p": "^0.35.4",
Expand Down

0 comments on commit 7375caa

Please sign in to comment.