diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..4d66d8a7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,249 @@ +## [1.0.0](https://github.com/libp2p/js-libp2p-daemon/compare/v0.10.2...v1.0.0) (2024-08-01) + +### ⚠ BREAKING CHANGES + +* updates js-libp2p to v1 +* stream close methods are now asyc, requires libp2p@0.46.x or later +* the type of the source/sink properties have changed +* update pubsub subscribe method to return subscription (#186) +* Update multiformats and related dependencies (#170) +* the stream type returned by `client.openStream` has changed +* uses new single-issue libp2p interface modules +* This module is now ESM only + +### Features + +* add get subscribers for pubsub topics ([#184](https://github.com/libp2p/js-libp2p-daemon/issues/184)) ([c8be43e](https://github.com/libp2p/js-libp2p-daemon/commit/c8be43e5acd6a74cfdd01857343af6f6d8210d5d)) +* close streams gracefully ([#213](https://github.com/libp2p/js-libp2p-daemon/issues/213)) ([92eebfa](https://github.com/libp2p/js-libp2p-daemon/commit/92eebfa12ba1fb42ae6c9e164fb0d69647e62074)) +* convert to typescript ([#78](https://github.com/libp2p/js-libp2p-daemon/issues/78)) ([f18b2a4](https://github.com/libp2p/js-libp2p-daemon/commit/f18b2a45871a2704db51b03e8583eefdcd13554c)) +* update to latest libp2p interfaces ([#102](https://github.com/libp2p/js-libp2p-daemon/issues/102)) ([f5e9121](https://github.com/libp2p/js-libp2p-daemon/commit/f5e91210654ab3c411e316c1c657356c037a0f6a)) + +### Bug Fixes + +* add additional logging ([94d21cb](https://github.com/libp2p/js-libp2p-daemon/commit/94d21cbde3f22898d1f9e261c243283e9bae3dd6)) +* add logger field ([#234](https://github.com/libp2p/js-libp2p-daemon/issues/234)) ([6f4728c](https://github.com/libp2p/js-libp2p-daemon/commit/6f4728c447859db17aaee613060b67271922fc2a)) +* allow opening remote streams ([#126](https://github.com/libp2p/js-libp2p-daemon/issues/126)) ([361cc57](https://github.com/libp2p/js-libp2p-daemon/commit/361cc5750de505ab0381ae43609c67d5d4f659a7)) +* encode enums correctly ([#86](https://github.com/libp2p/js-libp2p-daemon/issues/86)) ([6ce4633](https://github.com/libp2p/js-libp2p-daemon/commit/6ce4633f3db41ab66f9b8b1abbe84955dde3e9be)) +* fix proto file and generated code ([#94](https://github.com/libp2p/js-libp2p-daemon/issues/94)) ([5c22052](https://github.com/libp2p/js-libp2p-daemon/commit/5c22052c8da0da4febf88582e9e27a93ac1f710b)), closes [#66](https://github.com/libp2p/js-libp2p-daemon/issues/66) +* handle empty responses ([#145](https://github.com/libp2p/js-libp2p-daemon/issues/145)) ([0dfb823](https://github.com/libp2p/js-libp2p-daemon/commit/0dfb8236a0ab57a55fa0ebb91ac7a776a9f709da)) +* read stream data using lp stream ([#242](https://github.com/libp2p/js-libp2p-daemon/issues/242)) ([ee746f6](https://github.com/libp2p/js-libp2p-daemon/commit/ee746f6164b32536a80b9f376b46ef90d7653dcd)) +* remove protobufjs and replace with protons ([#81](https://github.com/libp2p/js-libp2p-daemon/issues/81)) ([78dd02a](https://github.com/libp2p/js-libp2p-daemon/commit/78dd02a679e55f22c7e24c1ee2b6f92a4679a0b9)) +* restore proto2 compatibility ([#146](https://github.com/libp2p/js-libp2p-daemon/issues/146)) ([9fe8e04](https://github.com/libp2p/js-libp2p-daemon/commit/9fe8e042757ec107cc137a9452fd021a62620b3c)) +* update all deps ([#124](https://github.com/libp2p/js-libp2p-daemon/issues/124)) ([5e46e1e](https://github.com/libp2p/js-libp2p-daemon/commit/5e46e1e26c23428046a6007ab158420d3d830145)) +* update deps ([#90](https://github.com/libp2p/js-libp2p-daemon/issues/90)) ([b50eba3](https://github.com/libp2p/js-libp2p-daemon/commit/b50eba3770e47969dbc30cbcf87c41672cd9c175)) +* update generated file ([#82](https://github.com/libp2p/js-libp2p-daemon/issues/82)) ([fc66301](https://github.com/libp2p/js-libp2p-daemon/commit/fc66301b6da3d24bc065f37337705753873c6e60)) +* update interfaces and deps ([#84](https://github.com/libp2p/js-libp2p-daemon/issues/84)) ([25173d5](https://github.com/libp2p/js-libp2p-daemon/commit/25173d5b2edf0e9dd9132707d349cdc862caecdb)) +* update pubsub subscribe method to return subscription ([#186](https://github.com/libp2p/js-libp2p-daemon/issues/186)) ([88e4bf5](https://github.com/libp2p/js-libp2p-daemon/commit/88e4bf54ee5189e808cee451f08467c7db302b8d)) +* use "limited" instead of "transient" ([#272](https://github.com/libp2p/js-libp2p-daemon/issues/272)) ([d43c177](https://github.com/libp2p/js-libp2p-daemon/commit/d43c177a355bd02c719c7644519ebef54a81386f)) +* use interface-libp2p to ensure the correct services are set ([#203](https://github.com/libp2p/js-libp2p-daemon/issues/203)) ([8602a70](https://github.com/libp2p/js-libp2p-daemon/commit/8602a704e45cfa768ad55974d025b2d4be6f42a9)) + +### Trivial Changes + +* add docs ([ffc0e14](https://github.com/libp2p/js-libp2p-daemon/commit/ffc0e143df6d5664b6d2373556cc6aa01bed2f6c)) +* add or force update .github/workflows/js-test-and-release.yml ([#216](https://github.com/libp2p/js-libp2p-daemon/issues/216)) ([5d68727](https://github.com/libp2p/js-libp2p-daemon/commit/5d68727db0493e6e7f1b870a4b16d40d8b3ecf3b)) +* delete templates [skip ci] ([#215](https://github.com/libp2p/js-libp2p-daemon/issues/215)) ([1fdc6ff](https://github.com/libp2p/js-libp2p-daemon/commit/1fdc6fff792804b34ac54a1ccf5c414b320036ec)) +* **deps:** bump lerna from 4.0.0 to 5.1.2 ([#97](https://github.com/libp2p/js-libp2p-daemon/issues/97)) ([1ae7428](https://github.com/libp2p/js-libp2p-daemon/commit/1ae74280ee56e4f2b8c767e303ee5699da760704)) +* **release:** 1.0.0 [skip ci] ([52438f1](https://github.com/libp2p/js-libp2p-daemon/commit/52438f14c00d79aa6594a3f7e4cba20feb9f09c9)), closes [#78](https://github.com/libp2p/js-libp2p-daemon/issues/78) +* **release:** 1.0.0 [skip ci] ([7bf2269](https://github.com/libp2p/js-libp2p-daemon/commit/7bf2269051fe273d4a2be11cfd889f743c4e253f)), closes [#78](https://github.com/libp2p/js-libp2p-daemon/issues/78) +* **release:** 1.0.0 [skip ci] ([b721c9c](https://github.com/libp2p/js-libp2p-daemon/commit/b721c9c5d25ab1e7dd1f9426f5320852711f5226)), closes [#78](https://github.com/libp2p/js-libp2p-daemon/issues/78) +* **release:** 1.0.0 [skip ci] ([4e7a293](https://github.com/libp2p/js-libp2p-daemon/commit/4e7a293bb97c0bbdb5eb930371d28412181157a4)), closes [#78](https://github.com/libp2p/js-libp2p-daemon/issues/78) +* **release:** 1.0.1 [skip ci] ([1747bb0](https://github.com/libp2p/js-libp2p-daemon/commit/1747bb096ae6045579019b3fad1129a051a079f8)), closes [#80](https://github.com/libp2p/js-libp2p-daemon/issues/80) +* **release:** 1.0.1 [skip ci] ([e11bee3](https://github.com/libp2p/js-libp2p-daemon/commit/e11bee3b75e4f2f26384a61188aaa61f27880a35)), closes [#81](https://github.com/libp2p/js-libp2p-daemon/issues/81) [#80](https://github.com/libp2p/js-libp2p-daemon/issues/80) +* **release:** 1.0.1 [skip ci] ([79a6374](https://github.com/libp2p/js-libp2p-daemon/commit/79a6374de65b1834659c58a2082d94071a957be4)), closes [#81](https://github.com/libp2p/js-libp2p-daemon/issues/81) [#80](https://github.com/libp2p/js-libp2p-daemon/issues/80) +* **release:** 1.0.1 [skip ci] ([8c6e03a](https://github.com/libp2p/js-libp2p-daemon/commit/8c6e03a743becc7729c69c60ff3ffe9a0f98f7c9)), closes [#80](https://github.com/libp2p/js-libp2p-daemon/issues/80) +* **release:** 1.0.2 [skip ci] ([e62646f](https://github.com/libp2p/js-libp2p-daemon/commit/e62646fc0b459143914ebf4dd631bc24a238c811)), closes [#84](https://github.com/libp2p/js-libp2p-daemon/issues/84) +* **release:** 1.0.2 [skip ci] ([4974d58](https://github.com/libp2p/js-libp2p-daemon/commit/4974d5850268e0f0586159e6d8eade977f762f6f)), closes [#84](https://github.com/libp2p/js-libp2p-daemon/issues/84) +* **release:** 1.0.2 [skip ci] ([a0608ab](https://github.com/libp2p/js-libp2p-daemon/commit/a0608ab7003562f89492795f607e24bd25403e5a)), closes [#84](https://github.com/libp2p/js-libp2p-daemon/issues/84) +* **release:** 1.0.2 [skip ci] ([7e10176](https://github.com/libp2p/js-libp2p-daemon/commit/7e10176f1dbb2b2608ce919a454895f4f980c0f6)), closes [#81](https://github.com/libp2p/js-libp2p-daemon/issues/81) +* **release:** 1.0.3 [skip ci] ([01e2a7b](https://github.com/libp2p/js-libp2p-daemon/commit/01e2a7b4fbb158f6aa4ecea521e7ae4f9b6894cd)), closes [#90](https://github.com/libp2p/js-libp2p-daemon/issues/90) +* **release:** 1.0.3 [skip ci] ([805ec74](https://github.com/libp2p/js-libp2p-daemon/commit/805ec747b0beb4d8583b491bb878f132301de0c2)), closes [#86](https://github.com/libp2p/js-libp2p-daemon/issues/86) +* **release:** 1.0.3 [skip ci] ([db1b1bd](https://github.com/libp2p/js-libp2p-daemon/commit/db1b1bd55a89b896345232e982b5d0a1d7430282)), closes [#86](https://github.com/libp2p/js-libp2p-daemon/issues/86) +* **release:** 1.0.3 [skip ci] ([11365b9](https://github.com/libp2p/js-libp2p-daemon/commit/11365b9b2cdfd8f98c054648b290c82869561163)), closes [#82](https://github.com/libp2p/js-libp2p-daemon/issues/82) +* **release:** 1.0.4 [skip ci] ([0e3a398](https://github.com/libp2p/js-libp2p-daemon/commit/0e3a398fa06a86eeaee78b707fc469ddcd9a7e36)), closes [#83](https://github.com/libp2p/js-libp2p-daemon/issues/83) +* **release:** 1.0.4 [skip ci] ([3dfbf95](https://github.com/libp2p/js-libp2p-daemon/commit/3dfbf95c623d5f6b15d75cd3fd6766ba8182f3d2)), closes [#90](https://github.com/libp2p/js-libp2p-daemon/issues/90) +* **release:** 1.0.4 [skip ci] ([ec5305a](https://github.com/libp2p/js-libp2p-daemon/commit/ec5305ae3b3e30d4935ce430326212985b42b6b2)), closes [#90](https://github.com/libp2p/js-libp2p-daemon/issues/90) +* **release:** 1.0.4 [skip ci] ([b5a03c4](https://github.com/libp2p/js-libp2p-daemon/commit/b5a03c45f4ef084d79f5bab34103e4e1beb32255)), closes [#84](https://github.com/libp2p/js-libp2p-daemon/issues/84) +* **release:** 1.0.5 [skip ci] ([d465779](https://github.com/libp2p/js-libp2p-daemon/commit/d465779f66970c137a9451e569a361eabc779f50)), closes [#83](https://github.com/libp2p/js-libp2p-daemon/issues/83) +* **release:** 1.0.5 [skip ci] ([0daaf34](https://github.com/libp2p/js-libp2p-daemon/commit/0daaf343059bdac43da6b7abf2fac49da71dd935)), closes [#83](https://github.com/libp2p/js-libp2p-daemon/issues/83) +* **release:** 1.0.5 [skip ci] ([6696938](https://github.com/libp2p/js-libp2p-daemon/commit/66969387944a0dfc159a33b89e71e3fdbe1f290e)), closes [#86](https://github.com/libp2p/js-libp2p-daemon/issues/86) +* **release:** 1.0.6 [skip ci] ([e66d19f](https://github.com/libp2p/js-libp2p-daemon/commit/e66d19f676577ea951ef54287a5783825fed91f5)), closes [#83](https://github.com/libp2p/js-libp2p-daemon/issues/83) +* **release:** 2.0.0 [skip ci] ([92bb2fe](https://github.com/libp2p/js-libp2p-daemon/commit/92bb2fea99937db20042868158af4706a806916e)), closes [#102](https://github.com/libp2p/js-libp2p-daemon/issues/102) +* **release:** 2.0.0 [skip ci] ([b5c5eab](https://github.com/libp2p/js-libp2p-daemon/commit/b5c5eab31b449a24e083e85186007aefd62f1b1d)), closes [#102](https://github.com/libp2p/js-libp2p-daemon/issues/102) +* **release:** 2.0.0 [skip ci] ([ad2c0c3](https://github.com/libp2p/js-libp2p-daemon/commit/ad2c0c33596ee683ffdd2071ea8e4747eeab2308)), closes [#102](https://github.com/libp2p/js-libp2p-daemon/issues/102) +* **release:** 2.0.0 [skip ci] ([3f84767](https://github.com/libp2p/js-libp2p-daemon/commit/3f84767eadbe33e4ebd6ce50f4164096dd6051a3)), closes [#102](https://github.com/libp2p/js-libp2p-daemon/issues/102) +* **release:** 2.0.1 [skip ci] ([4fc0426](https://github.com/libp2p/js-libp2p-daemon/commit/4fc0426ec7142d15f39f32876a7b1f78bf5ef9b1)), closes [#111](https://github.com/libp2p/js-libp2p-daemon/issues/111) [#115](https://github.com/libp2p/js-libp2p-daemon/issues/115) +* **release:** 2.0.1 [skip ci] ([0497889](https://github.com/libp2p/js-libp2p-daemon/commit/0497889a91cc0d30c6d321d75f0a0f47c18958ca)), closes [#103](https://github.com/libp2p/js-libp2p-daemon/issues/103) +* **release:** 2.0.1 [skip ci] ([1ae14ed](https://github.com/libp2p/js-libp2p-daemon/commit/1ae14ede2e1b6629b34f23dacf07f75d8840eaa8)), closes [#103](https://github.com/libp2p/js-libp2p-daemon/issues/103) +* **release:** 2.0.1 [skip ci] ([d81c56b](https://github.com/libp2p/js-libp2p-daemon/commit/d81c56bb486b7992b289a7ad4f855a27ceefd447)), closes [#103](https://github.com/libp2p/js-libp2p-daemon/issues/103) +* **release:** 2.0.2 [skip ci] ([3f9028d](https://github.com/libp2p/js-libp2p-daemon/commit/3f9028d6964f1906bcdb309410c06d43cfab375f)), closes [#111](https://github.com/libp2p/js-libp2p-daemon/issues/111) +* **release:** 2.0.2 [skip ci] ([56738b8](https://github.com/libp2p/js-libp2p-daemon/commit/56738b8993c4146fb88fbb634d0de31a4f85028f)), closes [#124](https://github.com/libp2p/js-libp2p-daemon/issues/124) +* **release:** 2.0.2 [skip ci] ([cc3c27a](https://github.com/libp2p/js-libp2p-daemon/commit/cc3c27a9cf0c9836f8b67b1f320b8205afaf8843)), closes [#105](https://github.com/libp2p/js-libp2p-daemon/issues/105) +* **release:** 2.0.2 [skip ci] ([d6ce9be](https://github.com/libp2p/js-libp2p-daemon/commit/d6ce9bed10cd01a6118c81146bab590893e88f73)), closes [#105](https://github.com/libp2p/js-libp2p-daemon/issues/105) +* **release:** 2.0.3 [skip ci] ([259b089](https://github.com/libp2p/js-libp2p-daemon/commit/259b0895dcc32bb2148e7a5580c06dcfe0d21642)), closes [#128](https://github.com/libp2p/js-libp2p-daemon/issues/128) +* **release:** 2.0.3 [skip ci] ([601d75f](https://github.com/libp2p/js-libp2p-daemon/commit/601d75ff2713874bc8c12c1ceefa2d54e992b78f)), closes [#111](https://github.com/libp2p/js-libp2p-daemon/issues/111) [#115](https://github.com/libp2p/js-libp2p-daemon/issues/115) +* **release:** 2.0.3 [skip ci] ([ab83d91](https://github.com/libp2p/js-libp2p-daemon/commit/ab83d9181ed32d05ac732cde588571d8ca1bc83d)), closes [#111](https://github.com/libp2p/js-libp2p-daemon/issues/111) [#115](https://github.com/libp2p/js-libp2p-daemon/issues/115) +* **release:** 2.0.4 [skip ci] ([e81bd17](https://github.com/libp2p/js-libp2p-daemon/commit/e81bd1743f70f9a379662bdd944d80ac12ec9192)), closes [#143](https://github.com/libp2p/js-libp2p-daemon/issues/143) +* **release:** 2.0.4 [skip ci] ([8380f68](https://github.com/libp2p/js-libp2p-daemon/commit/8380f68c00081d25e05934cbda046659dd2ba5c8)), closes [#124](https://github.com/libp2p/js-libp2p-daemon/issues/124) +* **release:** 2.0.4 [skip ci] ([774489b](https://github.com/libp2p/js-libp2p-daemon/commit/774489b98e059a93687e532cc44f8bf491faec14)), closes [#124](https://github.com/libp2p/js-libp2p-daemon/issues/124) +* **release:** 2.0.5 [skip ci] ([d5eb5df](https://github.com/libp2p/js-libp2p-daemon/commit/d5eb5df019106694fc6df7831d8b38b7e1ef499e)) +* **release:** 2.0.6 [skip ci] ([f5caad6](https://github.com/libp2p/js-libp2p-daemon/commit/f5caad67430c75b9502d2e7f43a42d986cb2aac7)), closes [#171](https://github.com/libp2p/js-libp2p-daemon/issues/171) [#166](https://github.com/libp2p/js-libp2p-daemon/issues/166) +* **release:** 2.0.7 [skip ci] ([820fc13](https://github.com/libp2p/js-libp2p-daemon/commit/820fc13fdc287330de9dfcb217798a4880314be1)), closes [#183](https://github.com/libp2p/js-libp2p-daemon/issues/183) +* **release:** 2.0.8 [skip ci] ([9318c3d](https://github.com/libp2p/js-libp2p-daemon/commit/9318c3d1c480f2ebe891dcbe1ae6e7d6a1324fa0)), closes [#189](https://github.com/libp2p/js-libp2p-daemon/issues/189) +* **release:** 2.0.9 [skip ci] ([0d40140](https://github.com/libp2p/js-libp2p-daemon/commit/0d401408dbfd6853cc5c54f0432ea8b0b5ff4d0a)) +* **release:** 3.0.0 [skip ci] ([abf0f03](https://github.com/libp2p/js-libp2p-daemon/commit/abf0f037b4ed318512992a76d579bbd4f06da718)), closes [#213](https://github.com/libp2p/js-libp2p-daemon/issues/213) [#202](https://github.com/libp2p/js-libp2p-daemon/issues/202) +* **release:** 3.0.0 [skip ci] ([961dc48](https://github.com/libp2p/js-libp2p-daemon/commit/961dc48edc0b7bc470c7a8acdba3ee24ec995e66)), closes [#126](https://github.com/libp2p/js-libp2p-daemon/issues/126) +* **release:** 3.0.0 [skip ci] ([95c9ff4](https://github.com/libp2p/js-libp2p-daemon/commit/95c9ff4512900d6da08b3cb886d2089efaee7fa3)), closes [#126](https://github.com/libp2p/js-libp2p-daemon/issues/126) +* **release:** 3.0.0 [skip ci] ([0de52f6](https://github.com/libp2p/js-libp2p-daemon/commit/0de52f6840c8cd0f84c25778f074c44a7b98bf65)), closes [#126](https://github.com/libp2p/js-libp2p-daemon/issues/126) +* **release:** 3.0.1 [skip ci] ([f9e1bdc](https://github.com/libp2p/js-libp2p-daemon/commit/f9e1bdcc79f7ad9178d4706aee5b9f5796478af1)), closes [#232](https://github.com/libp2p/js-libp2p-daemon/issues/232) [#231](https://github.com/libp2p/js-libp2p-daemon/issues/231) +* **release:** 3.0.1 [skip ci] ([ff9d108](https://github.com/libp2p/js-libp2p-daemon/commit/ff9d1088fb7b09984990ca042a703ddffceb736e)), closes [#128](https://github.com/libp2p/js-libp2p-daemon/issues/128) +* **release:** 3.0.1 [skip ci] ([ba74e73](https://github.com/libp2p/js-libp2p-daemon/commit/ba74e733eb93462ba82de1f122168c28a32c0830)), closes [#128](https://github.com/libp2p/js-libp2p-daemon/issues/128) +* **release:** 3.0.1 [skip ci] ([7872dd9](https://github.com/libp2p/js-libp2p-daemon/commit/7872dd90529f8bb35f6329b914ea115d90c88175)), closes [#94](https://github.com/libp2p/js-libp2p-daemon/issues/94) [#66](https://github.com/libp2p/js-libp2p-daemon/issues/66) +* **release:** 3.0.2 [skip ci] ([f2ac1a0](https://github.com/libp2p/js-libp2p-daemon/commit/f2ac1a0589abf00ff361e1c3f1de10a1dc8d59f5)), closes [#133](https://github.com/libp2p/js-libp2p-daemon/issues/133) [#130](https://github.com/libp2p/js-libp2p-daemon/issues/130) +* **release:** 3.0.2 [skip ci] ([81747bb](https://github.com/libp2p/js-libp2p-daemon/commit/81747bbef0e8bbb27e3ddc87965fc8ccde2d8ee1)), closes [#132](https://github.com/libp2p/js-libp2p-daemon/issues/132) +* **release:** 3.0.2 [skip ci] ([bf01140](https://github.com/libp2p/js-libp2p-daemon/commit/bf01140000eb949f47822dcdf0a8460800987e16)), closes [#132](https://github.com/libp2p/js-libp2p-daemon/issues/132) +* **release:** 3.0.3 [skip ci] ([9cca0f6](https://github.com/libp2p/js-libp2p-daemon/commit/9cca0f61fd1d38df45c8f3aaad700af7fa3e2da1)), closes [#143](https://github.com/libp2p/js-libp2p-daemon/issues/143) +* **release:** 3.0.3 [skip ci] ([0621959](https://github.com/libp2p/js-libp2p-daemon/commit/0621959c1f1299288357376682a1c3efa66a2230)), closes [#143](https://github.com/libp2p/js-libp2p-daemon/issues/143) +* **release:** 3.0.3 [skip ci] ([6f8870f](https://github.com/libp2p/js-libp2p-daemon/commit/6f8870f20ecc415873a1d447111cdb944eabdc32)), closes [#143](https://github.com/libp2p/js-libp2p-daemon/issues/143) +* **release:** 3.0.4 [skip ci] ([851d0f6](https://github.com/libp2p/js-libp2p-daemon/commit/851d0f6ba656604e05b75ff943fb71808d3d0f98)), closes [#145](https://github.com/libp2p/js-libp2p-daemon/issues/145) [#146](https://github.com/libp2p/js-libp2p-daemon/issues/146) +* **release:** 3.0.4 [skip ci] ([f5adaaf](https://github.com/libp2p/js-libp2p-daemon/commit/f5adaaf4e4d837804292169fda4e2d6d390ce52f)), closes [#144](https://github.com/libp2p/js-libp2p-daemon/issues/144) +* **release:** 3.0.4 [skip ci] ([5eeca2e](https://github.com/libp2p/js-libp2p-daemon/commit/5eeca2e2148fea39f1aa9c03b72dbcd9fa641b88)), closes [#144](https://github.com/libp2p/js-libp2p-daemon/issues/144) +* **release:** 3.0.5 [skip ci] ([92c523f](https://github.com/libp2p/js-libp2p-daemon/commit/92c523fe8122f08a5a97c35e9fe0936935ff9a93)), closes [#171](https://github.com/libp2p/js-libp2p-daemon/issues/171) [#179](https://github.com/libp2p/js-libp2p-daemon/issues/179) +* **release:** 3.0.5 [skip ci] ([6a84503](https://github.com/libp2p/js-libp2p-daemon/commit/6a845035ad6d51b87a6691fc6445645fa481731f)), closes [#147](https://github.com/libp2p/js-libp2p-daemon/issues/147) +* **release:** 3.0.5 [skip ci] ([f1cb7d6](https://github.com/libp2p/js-libp2p-daemon/commit/f1cb7d6f6b0342eddf87fb792d1219f872112e43)), closes [#145](https://github.com/libp2p/js-libp2p-daemon/issues/145) +* **release:** 3.0.6 [skip ci] ([f63a3ec](https://github.com/libp2p/js-libp2p-daemon/commit/f63a3ec02a0e5ae50857358deca535a4c268b274)), closes [#183](https://github.com/libp2p/js-libp2p-daemon/issues/183) +* **release:** 3.0.6 [skip ci] ([c8be47c](https://github.com/libp2p/js-libp2p-daemon/commit/c8be47cd4a4aabaaf022d6915f2d2165b02f98d4)), closes [#148](https://github.com/libp2p/js-libp2p-daemon/issues/148) +* **release:** 4.0.0 [skip ci] ([7094dc2](https://github.com/libp2p/js-libp2p-daemon/commit/7094dc29a3c284bdfe9c712d219048c5ffc124db)), closes [#235](https://github.com/libp2p/js-libp2p-daemon/issues/235) +* **release:** 4.0.0 [skip ci] ([853b96e](https://github.com/libp2p/js-libp2p-daemon/commit/853b96e4258a7d4c40918a70a79b563b80e86148)), closes [#196](https://github.com/libp2p/js-libp2p-daemon/issues/196) +* **release:** 4.0.0 [skip ci] ([6fdc9d5](https://github.com/libp2p/js-libp2p-daemon/commit/6fdc9d52c52f09dee2cee97662f4146272bbe03e)), closes [#170](https://github.com/libp2p/js-libp2p-daemon/issues/170) [#170](https://github.com/libp2p/js-libp2p-daemon/issues/170) +* **release:** 4.0.0 [skip ci] ([0125247](https://github.com/libp2p/js-libp2p-daemon/commit/0125247f9c4cc2421f12a92082e0862e79866f7f)), closes [#170](https://github.com/libp2p/js-libp2p-daemon/issues/170) [#170](https://github.com/libp2p/js-libp2p-daemon/issues/170) +* **release:** 4.0.1 [skip ci] ([ea4d6f9](https://github.com/libp2p/js-libp2p-daemon/commit/ea4d6f921cda434ef056f59a0a39caa6d9b55dba)), closes [#262](https://github.com/libp2p/js-libp2p-daemon/issues/262) +* **release:** 4.0.1 [skip ci] ([ed59a4d](https://github.com/libp2p/js-libp2p-daemon/commit/ed59a4da47aa18f8311577ef6f752d895cea230e)), closes [#201](https://github.com/libp2p/js-libp2p-daemon/issues/201) +* **release:** 4.0.1 [skip ci] ([f11b093](https://github.com/libp2p/js-libp2p-daemon/commit/f11b093bf23fbcf2150a9fa11d7be7769d8b3a23)), closes [#165](https://github.com/libp2p/js-libp2p-daemon/issues/165) +* **release:** 4.0.1 [skip ci] ([4065f5c](https://github.com/libp2p/js-libp2p-daemon/commit/4065f5cc7d42cca0aaef76ad23b104aa2ee8f390)), closes [#165](https://github.com/libp2p/js-libp2p-daemon/issues/165) +* **release:** 4.0.2 [skip ci] ([2ebe6d3](https://github.com/libp2p/js-libp2p-daemon/commit/2ebe6d36e5bb7fa620b1d308d7b0773344f88594)), closes [#267](https://github.com/libp2p/js-libp2p-daemon/issues/267) +* **release:** 4.0.2 [skip ci] ([82f828e](https://github.com/libp2p/js-libp2p-daemon/commit/82f828e0665fd7e623a7b8d3216fb5ada3fb39d2)), closes [#171](https://github.com/libp2p/js-libp2p-daemon/issues/171) [#1269](https://github.com/libp2p/js-libp2p-daemon/issues/1269) [#166](https://github.com/libp2p/js-libp2p-daemon/issues/166) +* **release:** 4.0.2 [skip ci] ([1eaaa4e](https://github.com/libp2p/js-libp2p-daemon/commit/1eaaa4eea3f1844fc8b1eb3648fd887bbb5f31a8)), closes [#171](https://github.com/libp2p/js-libp2p-daemon/issues/171) [#166](https://github.com/libp2p/js-libp2p-daemon/issues/166) +* **release:** 4.0.3 [skip ci] ([7aa158d](https://github.com/libp2p/js-libp2p-daemon/commit/7aa158d4d8da517c962d86be4f49da6f0816327d)), closes [#183](https://github.com/libp2p/js-libp2p-daemon/issues/183) +* **release:** 4.0.3 [skip ci] ([b7444f7](https://github.com/libp2p/js-libp2p-daemon/commit/b7444f7f14f778017b66a3610080e3652a223254)), closes [#183](https://github.com/libp2p/js-libp2p-daemon/issues/183) +* **release:** 4.1.0 [skip ci] ([d66ad92](https://github.com/libp2p/js-libp2p-daemon/commit/d66ad92938e8ff198176106d1d5de2d67351d0f5)), closes [#184](https://github.com/libp2p/js-libp2p-daemon/issues/184) +* **release:** 4.1.0 [skip ci] ([9bbbfc1](https://github.com/libp2p/js-libp2p-daemon/commit/9bbbfc1cf529e5b64ef69164f8460ea66ae09b48)), closes [#184](https://github.com/libp2p/js-libp2p-daemon/issues/184) +* **release:** 4.1.1 [skip ci] ([371c1b4](https://github.com/libp2p/js-libp2p-daemon/commit/371c1b42b9b822e2d74daae2c3b4997486dba049)), closes [#189](https://github.com/libp2p/js-libp2p-daemon/issues/189) +* **release:** 4.1.2 [skip ci] ([a1040ae](https://github.com/libp2p/js-libp2p-daemon/commit/a1040ae498387e0e2ee58924f9fc462da0192eb7)), closes [#190](https://github.com/libp2p/js-libp2p-daemon/issues/190) +* **release:** 4.1.3 [skip ci] ([f70961b](https://github.com/libp2p/js-libp2p-daemon/commit/f70961b9bd06dbe4c0ea37f1804881cdef32e2f8)), closes [#193](https://github.com/libp2p/js-libp2p-daemon/issues/193) +* **release:** 4.1.4 [skip ci] ([bcaba11](https://github.com/libp2p/js-libp2p-daemon/commit/bcaba11fbb93f50c56ff4987a9f6038653397307)), closes [#195](https://github.com/libp2p/js-libp2p-daemon/issues/195) +* **release:** 5.0.0 [skip ci] ([3132144](https://github.com/libp2p/js-libp2p-daemon/commit/3132144f8e4c362eab8f6ab0af5bc50afc7030d0)), closes [#213](https://github.com/libp2p/js-libp2p-daemon/issues/213) [#202](https://github.com/libp2p/js-libp2p-daemon/issues/202) +* **release:** 5.0.0 [skip ci] ([b24c2d0](https://github.com/libp2p/js-libp2p-daemon/commit/b24c2d00b74f8d028b9d1ba990d0d346d61340f6)), closes [#196](https://github.com/libp2p/js-libp2p-daemon/issues/196) +* **release:** 5.0.0 [skip ci] ([fedcbdf](https://github.com/libp2p/js-libp2p-daemon/commit/fedcbdfcf718244dbf043275afbf19535f26897e)), closes [#186](https://github.com/libp2p/js-libp2p-daemon/issues/186) [#186](https://github.com/libp2p/js-libp2p-daemon/issues/186) +* **release:** 5.0.1 [skip ci] ([f6c96a9](https://github.com/libp2p/js-libp2p-daemon/commit/f6c96a937f88a171a6b90b17a92d5a57fca0905b)), closes [#232](https://github.com/libp2p/js-libp2p-daemon/issues/232) +* **release:** 5.0.1 [skip ci] ([191e7e1](https://github.com/libp2p/js-libp2p-daemon/commit/191e7e1cd7961c60e83a5eff7c7b9b6c1c4becce)), closes [#201](https://github.com/libp2p/js-libp2p-daemon/issues/201) +* **release:** 5.0.1 [skip ci] ([1031585](https://github.com/libp2p/js-libp2p-daemon/commit/1031585b3b45d8d23a8d604ab4b4407201937d92)), closes [#189](https://github.com/libp2p/js-libp2p-daemon/issues/189) +* **release:** 5.0.2 [skip ci] ([bba7ff7](https://github.com/libp2p/js-libp2p-daemon/commit/bba7ff72b92181fecf0e1565fdf0163360dc3e1a)), closes [#203](https://github.com/libp2p/js-libp2p-daemon/issues/203) +* **release:** 5.0.2 [skip ci] ([92b333b](https://github.com/libp2p/js-libp2p-daemon/commit/92b333b19541c2b957746a6869ab7966e287cc47)), closes [#193](https://github.com/libp2p/js-libp2p-daemon/issues/193) +* **release:** 5.0.3 [skip ci] ([b77587d](https://github.com/libp2p/js-libp2p-daemon/commit/b77587dfc81d21cf16f1943d823432ca81e8f5fb)), closes [#195](https://github.com/libp2p/js-libp2p-daemon/issues/195) +* **release:** 6.0.0 [skip ci] ([fc9401e](https://github.com/libp2p/js-libp2p-daemon/commit/fc9401e2a66e16da79ed43b766968056bb14877b)), closes [#235](https://github.com/libp2p/js-libp2p-daemon/issues/235) +* **release:** 6.0.0 [skip ci] ([0fb53b6](https://github.com/libp2p/js-libp2p-daemon/commit/0fb53b6d86b05f44a3f0b0a6602aa879ab688a0c)), closes [#213](https://github.com/libp2p/js-libp2p-daemon/issues/213) [#202](https://github.com/libp2p/js-libp2p-daemon/issues/202) +* **release:** 6.0.0 [skip ci] ([bb95f11](https://github.com/libp2p/js-libp2p-daemon/commit/bb95f11f9788634cd0bb19f3fa0393e049cf806a)), closes [#196](https://github.com/libp2p/js-libp2p-daemon/issues/196) +* **release:** 6.0.1 [skip ci] ([5ba7136](https://github.com/libp2p/js-libp2p-daemon/commit/5ba713657e1a5281e58498b54d99410626b146d3)), closes [#242](https://github.com/libp2p/js-libp2p-daemon/issues/242) +* **release:** 6.0.1 [skip ci] ([677ccc8](https://github.com/libp2p/js-libp2p-daemon/commit/677ccc89070050275a344d5eb6ec9fc1b0b7d498)), closes [#214](https://github.com/libp2p/js-libp2p-daemon/issues/214) +* **release:** 6.0.1 [skip ci] ([9eb8cdb](https://github.com/libp2p/js-libp2p-daemon/commit/9eb8cdbc1922e10b68a9774ec0da7818f254cf08)), closes [#199](https://github.com/libp2p/js-libp2p-daemon/issues/199) +* **release:** 6.0.2 [skip ci] ([4ec90f3](https://github.com/libp2p/js-libp2p-daemon/commit/4ec90f34d9d9b5fa2ced64e488f5f11dd4f2384e)), closes [#262](https://github.com/libp2p/js-libp2p-daemon/issues/262) +* **release:** 6.0.2 [skip ci] ([0e0492a](https://github.com/libp2p/js-libp2p-daemon/commit/0e0492a3d73f73603c8122c071f9e29dd3d3d714)), closes [#232](https://github.com/libp2p/js-libp2p-daemon/issues/232) [#233](https://github.com/libp2p/js-libp2p-daemon/issues/233) +* **release:** 6.0.2 [skip ci] ([26e99b2](https://github.com/libp2p/js-libp2p-daemon/commit/26e99b21c6485c27bec4f28af3a71827e4a58a85)), closes [#201](https://github.com/libp2p/js-libp2p-daemon/issues/201) +* **release:** 6.0.3 [skip ci] ([ef742b1](https://github.com/libp2p/js-libp2p-daemon/commit/ef742b16a45885cd7aae1148f7658189826f3556)), closes [#234](https://github.com/libp2p/js-libp2p-daemon/issues/234) +* **release:** 6.0.3 [skip ci] ([802c9ec](https://github.com/libp2p/js-libp2p-daemon/commit/802c9ec7033112a9aab97f4a2fab0adae0e4c596)), closes [#203](https://github.com/libp2p/js-libp2p-daemon/issues/203) +* **release:** 7.0.0 [skip ci] ([c1a38e1](https://github.com/libp2p/js-libp2p-daemon/commit/c1a38e1b7a614ec8bc932b9de546f5f22dbf04e5)), closes [#235](https://github.com/libp2p/js-libp2p-daemon/issues/235) +* **release:** 7.0.0 [skip ci] ([2d64c3d](https://github.com/libp2p/js-libp2p-daemon/commit/2d64c3d58b1256a2551d60b90153f7c0ab8a4a8f)), closes [#213](https://github.com/libp2p/js-libp2p-daemon/issues/213) [#202](https://github.com/libp2p/js-libp2p-daemon/issues/202) +* **release:** 7.0.1 [skip ci] ([7de5766](https://github.com/libp2p/js-libp2p-daemon/commit/7de5766a768856842993a22617b4d88cd60f582d)), closes [#244](https://github.com/libp2p/js-libp2p-daemon/issues/244) +* **release:** 7.0.1 [skip ci] ([b535567](https://github.com/libp2p/js-libp2p-daemon/commit/b535567f10d0a4dac085d70e03ac6eacf403245d)), closes [#214](https://github.com/libp2p/js-libp2p-daemon/issues/214) +* **release:** 7.0.2 [skip ci] ([b0e7803](https://github.com/libp2p/js-libp2p-daemon/commit/b0e78031ef2ec27ecd551a78c9d6d89895a9cdfc)), closes [#253](https://github.com/libp2p/js-libp2p-daemon/issues/253) [#248](https://github.com/libp2p/js-libp2p-daemon/issues/248) +* **release:** 7.0.2 [skip ci] ([906b0d1](https://github.com/libp2p/js-libp2p-daemon/commit/906b0d1c88ef79ddaa1212fdfe61108020d7a327)), closes [#232](https://github.com/libp2p/js-libp2p-daemon/issues/232) [#231](https://github.com/libp2p/js-libp2p-daemon/issues/231) [#233](https://github.com/libp2p/js-libp2p-daemon/issues/233) +* **release:** 7.0.3 [skip ci] ([8b36b29](https://github.com/libp2p/js-libp2p-daemon/commit/8b36b297077705f77b9ae136e745fd3f41a4d0ab)), closes [#262](https://github.com/libp2p/js-libp2p-daemon/issues/262) +* **release:** 7.0.3 [skip ci] ([3f67560](https://github.com/libp2p/js-libp2p-daemon/commit/3f675607be0cabc1139378325ce8fdf590eb1ba9)), closes [#234](https://github.com/libp2p/js-libp2p-daemon/issues/234) +* **release:** 7.0.4 [skip ci] ([648a95d](https://github.com/libp2p/js-libp2p-daemon/commit/648a95d66e69efdf95f007d7c59076fa1dd1c8cc)), closes [#261](https://github.com/libp2p/js-libp2p-daemon/issues/261) [#263](https://github.com/libp2p/js-libp2p-daemon/issues/263) +* **release:** 7.0.5 [skip ci] ([00c7a65](https://github.com/libp2p/js-libp2p-daemon/commit/00c7a650cc7237e74ac9673d6bae24e8a6c4fa18)), closes [#265](https://github.com/libp2p/js-libp2p-daemon/issues/265) +* **release:** 7.0.6 [skip ci] ([5e27a28](https://github.com/libp2p/js-libp2p-daemon/commit/5e27a2883a56442cc0bbfa298fa828f72bc20e9a)), closes [#272](https://github.com/libp2p/js-libp2p-daemon/issues/272) +* **release:** 8.0.0 [skip ci] ([ed64183](https://github.com/libp2p/js-libp2p-daemon/commit/ed64183fdacf1484261224474c4b5530525f29ae)), closes [#235](https://github.com/libp2p/js-libp2p-daemon/issues/235) +* **release:** 8.0.1 [skip ci] ([36203a9](https://github.com/libp2p/js-libp2p-daemon/commit/36203a94ab739fe8d9cd95ea51623f191f3cfbfb)), closes [#244](https://github.com/libp2p/js-libp2p-daemon/issues/244) +* **release:** 8.0.3 [skip ci] ([6cff7f1](https://github.com/libp2p/js-libp2p-daemon/commit/6cff7f1b81f0a9515920eeebd9dfe6d952def7ee)), closes [#262](https://github.com/libp2p/js-libp2p-daemon/issues/262) +* **release:** 8.0.4 [skip ci] ([7994da5](https://github.com/libp2p/js-libp2p-daemon/commit/7994da5c5f5c1be642d84ba036a63f83e3d809a0)), closes [#261](https://github.com/libp2p/js-libp2p-daemon/issues/261) [#263](https://github.com/libp2p/js-libp2p-daemon/issues/263) +* **release:** 8.0.5 [skip ci] ([1cb0a63](https://github.com/libp2p/js-libp2p-daemon/commit/1cb0a63934c2c68c9bcf129fe1092d473eac4722)), closes [#265](https://github.com/libp2p/js-libp2p-daemon/issues/265) +* **release:** 8.0.6 [skip ci] ([842f339](https://github.com/libp2p/js-libp2p-daemon/commit/842f339ee84403578c6c75a7cc31540964eb6720)), closes [#267](https://github.com/libp2p/js-libp2p-daemon/issues/267) +* remove lerna ([#171](https://github.com/libp2p/js-libp2p-daemon/issues/171)) ([367f912](https://github.com/libp2p/js-libp2p-daemon/commit/367f9122f2fe1c31c8de7a136cda18d024ff08d7)) +* replace err-code with CodeError ([#172](https://github.com/libp2p/js-libp2p-daemon/issues/172)) ([c330fd5](https://github.com/libp2p/js-libp2p-daemon/commit/c330fd5fabac7efb016d1f23e781ce88c38a3b37)), closes [#1269](https://github.com/libp2p/js-libp2p-daemon/issues/1269) +* Update .github/pull_request_template.md [skip ci] ([ffaba1d](https://github.com/libp2p/js-libp2p-daemon/commit/ffaba1d5d43ef2d0335b6c61f331572d1c2c62c3)) +* Update .github/pull_request_template.md [skip ci] ([85da5bc](https://github.com/libp2p/js-libp2p-daemon/commit/85da5bcf920ae86864b33978dfd41c3c354815b9)) +* Update .github/pull_request_template.md [skip ci] ([408f934](https://github.com/libp2p/js-libp2p-daemon/commit/408f934d797279148afaf98449c33f97be628579)) +* update .github/workflows/js-test-and-release.yml ([#243](https://github.com/libp2p/js-libp2p-daemon/issues/243)) ([fc4bf48](https://github.com/libp2p/js-libp2p-daemon/commit/fc4bf4820d71a1fc3083d60cb48040ffbb10a4d3)) +* Update .github/workflows/semantic-pull-request.yml [skip ci] ([149958e](https://github.com/libp2p/js-libp2p-daemon/commit/149958eef8e8a044ea0c66a2995f6f6d2d3a06c1)) +* Update .github/workflows/semantic-pull-request.yml [skip ci] ([48c6d38](https://github.com/libp2p/js-libp2p-daemon/commit/48c6d3808f0766823576d6d85ba927b91226f25e)) +* Update .github/workflows/semantic-pull-request.yml [skip ci] ([3726bb4](https://github.com/libp2p/js-libp2p-daemon/commit/3726bb4cb9975613dd8ddd704ef95121bffcb752)) +* Update .github/workflows/semantic-pull-request.yml [skip ci] ([bfe013b](https://github.com/libp2p/js-libp2p-daemon/commit/bfe013be854e973d15c9f76bd94446c67c4a0ded)) +* Update .github/workflows/semantic-pull-request.yml [skip ci] ([5120486](https://github.com/libp2p/js-libp2p-daemon/commit/51204865c8ad79b3c4840a6285b7dca936bb359f)) +* Update .github/workflows/semantic-pull-request.yml [skip ci] ([6613915](https://github.com/libp2p/js-libp2p-daemon/commit/66139154082d03f446b6d3bd99b3b5c4d16a02b4)) +* Update .github/workflows/stale.yml [skip ci] ([2a33976](https://github.com/libp2p/js-libp2p-daemon/commit/2a33976f089ae7876dd7c476321ea0e01b6d7c17)) +* Update .github/workflows/stale.yml [skip ci] ([72aab1b](https://github.com/libp2p/js-libp2p-daemon/commit/72aab1bff1f46fff1d00974bfc0a705ac311c137)) +* Update .github/workflows/stale.yml [skip ci] ([7414a71](https://github.com/libp2p/js-libp2p-daemon/commit/7414a718858621add50c71d00ab6d91e091e45c8)) +* Update .github/workflows/stale.yml [skip ci] ([cd893ef](https://github.com/libp2p/js-libp2p-daemon/commit/cd893efd167c01ccb4c88f26e44353ae927caf32)) +* Update .github/workflows/stale.yml [skip ci] ([8c715d2](https://github.com/libp2p/js-libp2p-daemon/commit/8c715d2e1a54dea751793c0329cc2a2ae5e6bdd9)) +* update aegir to latest version ([#80](https://github.com/libp2p/js-libp2p-daemon/issues/80)) ([3a98959](https://github.com/libp2p/js-libp2p-daemon/commit/3a98959617d9c19bba9fb064defee3d51acfcc29)) +* update CI config files ([#125](https://github.com/libp2p/js-libp2p-daemon/issues/125)) ([0a98092](https://github.com/libp2p/js-libp2p-daemon/commit/0a9809224e9175e7b1e9a36c472ecd9739fdde9c)) +* Update CODEOWNERS [skip ci] ([191b38e](https://github.com/libp2p/js-libp2p-daemon/commit/191b38ed823379989f6114dad632c05ef77b07ee)) +* update deps ([#103](https://github.com/libp2p/js-libp2p-daemon/issues/103)) ([2bfaa37](https://github.com/libp2p/js-libp2p-daemon/commit/2bfaa37e2f056dcd5de5a3882b77f52553c595d4)) +* update deps ([#105](https://github.com/libp2p/js-libp2p-daemon/issues/105)) ([0bdab0e](https://github.com/libp2p/js-libp2p-daemon/commit/0bdab0ee254e32d6dca0e5fe239d4ef16db41b87)) +* update docs ([#91](https://github.com/libp2p/js-libp2p-daemon/issues/91)) ([5b072ff](https://github.com/libp2p/js-libp2p-daemon/commit/5b072ff89f30fd6cf55a3387bf0961c8ad78a22f)), closes [#83](https://github.com/libp2p/js-libp2p-daemon/issues/83) +* update project config ([#111](https://github.com/libp2p/js-libp2p-daemon/issues/111)) ([345e663](https://github.com/libp2p/js-libp2p-daemon/commit/345e663e34278e780fc2f3a6b595294f925c4521)) +* update sibling dependencies ([c3a9e55](https://github.com/libp2p/js-libp2p-daemon/commit/c3a9e55a35c6411f71e739118861a0f86582409c)) +* update sibling dependencies ([3e711d1](https://github.com/libp2p/js-libp2p-daemon/commit/3e711d137983192db220d549c768cb4d82cf7f73)) +* update sibling dependencies ([865cb8a](https://github.com/libp2p/js-libp2p-daemon/commit/865cb8a7bf165092f90455dcc895ffa7e97df432)) + +### Documentation + +* readme update ([f569ffc](https://github.com/libp2p/js-libp2p-daemon/commit/f569ffc5c3956248e685d99904408fd3f4d868f4)) +* update readme ([5f929a0](https://github.com/libp2p/js-libp2p-daemon/commit/5f929a04173d51da37093db56935cc7e53bcaf5b)) + +### Dependencies + +* bump @chainsafe/libp2p-gossipsub from 10.1.1 to 11.0.0 ([#244](https://github.com/libp2p/js-libp2p-daemon/issues/244)) ([6cc8c3c](https://github.com/libp2p/js-libp2p-daemon/commit/6cc8c3c96316fcb4dc32f24dc7d25414dec5f80d)) +* bump @chainsafe/libp2p-gossipsub from 11.2.1 to 13.0.0 ([#265](https://github.com/libp2p/js-libp2p-daemon/issues/265)) ([bcd5041](https://github.com/libp2p/js-libp2p-daemon/commit/bcd504110f58f32977f31ec38989180187ab8bc2)) +* bump @chainsafe/libp2p-gossipsub from 9.1.0 to 10.0.0 ([#214](https://github.com/libp2p/js-libp2p-daemon/issues/214)) ([0308811](https://github.com/libp2p/js-libp2p-daemon/commit/0308811a2ea29d20de3f6a43db32720f21fb9b3f)) +* bump @libp2p/interface-connection from 3.1.1 to 4.0.0 ([#195](https://github.com/libp2p/js-libp2p-daemon/issues/195)) ([798ecc5](https://github.com/libp2p/js-libp2p-daemon/commit/798ecc594bc64c8e34aad13e1b9884011f0b1f29)) +* bump @libp2p/interface-peer-store from 1.2.9 to 2.0.0 ([#201](https://github.com/libp2p/js-libp2p-daemon/issues/201)) ([9b146a8](https://github.com/libp2p/js-libp2p-daemon/commit/9b146a8c38c30a13401be6da5259cd9da6bdc25c)) +* bump @libp2p/interface-transport from 1.0.4 to 2.0.0 ([#132](https://github.com/libp2p/js-libp2p-daemon/issues/132)) ([1a7b2cc](https://github.com/libp2p/js-libp2p-daemon/commit/1a7b2cc653dfb51e92edb1f652452e3c793156c3)) +* bump @libp2p/kad-dht from 11.0.8 to 12.0.5 ([#261](https://github.com/libp2p/js-libp2p-daemon/issues/261)) ([1cbaa23](https://github.com/libp2p/js-libp2p-daemon/commit/1cbaa23c0071e8d599fcef0859de41ac04f2606d)) +* bump @libp2p/tcp from 3.0.0 to 4.0.1 ([4e64dce](https://github.com/libp2p/js-libp2p-daemon/commit/4e64dce5e6d18dadaa54a20fff7b2da8bbca11ae)) +* bump @libp2p/tcp from 5.0.2 to 6.0.8 ([#165](https://github.com/libp2p/js-libp2p-daemon/issues/165)) ([fb676ab](https://github.com/libp2p/js-libp2p-daemon/commit/fb676ab66348b3c704d2385b4da0d7173bc4a04d)) +* bump @multiformats/multiaddr from 11.6.1 to 12.0.0 ([#189](https://github.com/libp2p/js-libp2p-daemon/issues/189)) ([aaf7e2e](https://github.com/libp2p/js-libp2p-daemon/commit/aaf7e2e37423cae78cd16d8e16e06db40fdcd1e3)) +* bump aegir from 37.12.1 to 38.1.6 ([#183](https://github.com/libp2p/js-libp2p-daemon/issues/183)) ([6725a0a](https://github.com/libp2p/js-libp2p-daemon/commit/6725a0aeba9acb56a7530dece6c65a0f3eadfec5)) +* bump aegir from 38.1.8 to 39.0.1 ([#202](https://github.com/libp2p/js-libp2p-daemon/issues/202)) ([3bf4027](https://github.com/libp2p/js-libp2p-daemon/commit/3bf402752a92c3ebb96435eaa7923ce22ef76ea0)) +* bump aegir from 40.0.13 to 41.1.6 ([#232](https://github.com/libp2p/js-libp2p-daemon/issues/232)) ([653c74b](https://github.com/libp2p/js-libp2p-daemon/commit/653c74b6272fd6d11d686bf7bb44b49b6757b633)) +* bump aegir from 41.3.5 to 42.2.3 ([#262](https://github.com/libp2p/js-libp2p-daemon/issues/262)) ([2bb9733](https://github.com/libp2p/js-libp2p-daemon/commit/2bb97338d76e4cc48490326083fb13bd9ae60a74)) +* bump aegir from 42.2.11 to 44.1.0 ([#271](https://github.com/libp2p/js-libp2p-daemon/issues/271)) ([d7f85cc](https://github.com/libp2p/js-libp2p-daemon/commit/d7f85cc6087bb5b7e0ba81b9d4dd5704768476e2)) +* bump it-drain from 1.0.5 to 2.0.0 ([#147](https://github.com/libp2p/js-libp2p-daemon/issues/147)) ([56663f8](https://github.com/libp2p/js-libp2p-daemon/commit/56663f83255a0720b4bf4c7e3805ee4ced8dc86d)) +* bump it-drain from 2.0.1 to 3.0.1 ([#190](https://github.com/libp2p/js-libp2p-daemon/issues/190)) ([306bdc4](https://github.com/libp2p/js-libp2p-daemon/commit/306bdc4fc139c3af429314d7b7d78d0a2238d6f4)) +* bump multiformats from 12.1.3 to 13.0.1 ([#253](https://github.com/libp2p/js-libp2p-daemon/issues/253)) ([aebd43a](https://github.com/libp2p/js-libp2p-daemon/commit/aebd43ac1e7abae209ce4cc198989c8161a1b022)) +* bump uint8arrays from 4.0.10 to 5.0.1 ([#248](https://github.com/libp2p/js-libp2p-daemon/issues/248)) ([290bb2a](https://github.com/libp2p/js-libp2p-daemon/commit/290bb2ac7c3bf1cdb5174b60010888fbd91a2f17)) +* bump uint8arrays from 4.0.10 to 5.0.1 ([#263](https://github.com/libp2p/js-libp2p-daemon/issues/263)) ([b5eb311](https://github.com/libp2p/js-libp2p-daemon/commit/b5eb3114be41176f47fd49164322285aaa8549c1)) +* **dev:** bump @libp2p/components from 2.1.1 to 3.0.1 ([#133](https://github.com/libp2p/js-libp2p-daemon/issues/133)) ([6d75a57](https://github.com/libp2p/js-libp2p-daemon/commit/6d75a5742040a594c02aa92ee6acf4ef9080ebac)) +* **dev:** bump @libp2p/interface-mocks from 10.0.3 to 11.0.0 ([#199](https://github.com/libp2p/js-libp2p-daemon/issues/199)) ([76f7b6f](https://github.com/libp2p/js-libp2p-daemon/commit/76f7b6fdd1af129ac278c5d2313d466db3e28a78)) +* **dev:** bump @libp2p/interface-mocks from 4.0.3 to 6.0.0 ([#130](https://github.com/libp2p/js-libp2p-daemon/issues/130)) ([3807d1d](https://github.com/libp2p/js-libp2p-daemon/commit/3807d1dd9b037938dbe3dd9e9fb2560489d5d603)) +* **dev:** bump it-all from 1.0.6 to 2.0.0 ([#148](https://github.com/libp2p/js-libp2p-daemon/issues/148)) ([1caa500](https://github.com/libp2p/js-libp2p-daemon/commit/1caa5006157e864bcbe4efb8f9474328b08821c3)) +* **dev:** bump protons from 6.1.3 to 7.0.2 ([#179](https://github.com/libp2p/js-libp2p-daemon/issues/179)) ([07d5872](https://github.com/libp2p/js-libp2p-daemon/commit/07d5872e04f95e2e8957f083dae3721aa8dc307e)) +* **dev:** bump sinon from 14.0.2 to 15.0.1 ([#166](https://github.com/libp2p/js-libp2p-daemon/issues/166)) ([1702efb](https://github.com/libp2p/js-libp2p-daemon/commit/1702efb4248bea4cb9ec19c694c1caae1c0ff16d)) +* **dev:** bump sinon from 15.2.0 to 17.0.1 ([#231](https://github.com/libp2p/js-libp2p-daemon/issues/231)) ([591b464](https://github.com/libp2p/js-libp2p-daemon/commit/591b464c3517948049dc169157333e774ca21f3c)) +* **dev:** bump sinon from 17.0.2 to 18.0.0 ([#267](https://github.com/libp2p/js-libp2p-daemon/issues/267)) ([e9fb07a](https://github.com/libp2p/js-libp2p-daemon/commit/e9fb07a3b3350a6dcd8f4ff64fb63eba456dccaf)) +* **dev:** bump sinon-ts from 0.0.2 to 1.0.0 ([#144](https://github.com/libp2p/js-libp2p-daemon/issues/144)) ([cfc8755](https://github.com/libp2p/js-libp2p-daemon/commit/cfc8755aa1280ac4fc2aae67cf47d7b0b93f605d)) +* **dev:** bump sinon-ts from 1.0.2 to 2.0.0 ([#233](https://github.com/libp2p/js-libp2p-daemon/issues/233)) ([de13473](https://github.com/libp2p/js-libp2p-daemon/commit/de13473ffd981c0488c27402e16c134f49e4b526)) +* update @multiformats/multiaddr to 11.0.0 ([#128](https://github.com/libp2p/js-libp2p-daemon/issues/128)) ([885d901](https://github.com/libp2p/js-libp2p-daemon/commit/885d9013d82a62e6756b06350932df1242a13296)) +* update all it-* deps to the latest versions ([#193](https://github.com/libp2p/js-libp2p-daemon/issues/193)) ([cb0aa85](https://github.com/libp2p/js-libp2p-daemon/commit/cb0aa85bbbad651db088594622a9438a127d2a10)) +* update it-stream-types to 2.x.x ([#196](https://github.com/libp2p/js-libp2p-daemon/issues/196)) ([a09f6d5](https://github.com/libp2p/js-libp2p-daemon/commit/a09f6d58942033b08b579735aaa1537b3a324776)) +* update libp2p to v1 ([#235](https://github.com/libp2p/js-libp2p-daemon/issues/235)) ([6f2917b](https://github.com/libp2p/js-libp2p-daemon/commit/6f2917b714756e3632ff6c522668f7c2166d4389)) +* Update multiformats and related dependencies ([#170](https://github.com/libp2p/js-libp2p-daemon/issues/170)) ([06744a7](https://github.com/libp2p/js-libp2p-daemon/commit/06744a77006dc77dcfb7bd860e4dc6f36a535603)) +* update sibling dependencies ([fdfca91](https://github.com/libp2p/js-libp2p-daemon/commit/fdfca91afb258620c282296055e385b410018a6a)) +* update sibling dependencies ([ba4dd19](https://github.com/libp2p/js-libp2p-daemon/commit/ba4dd190e0e4101291195d5ffdf6bd3f982ee457)) +* update sibling dependencies ([db50405](https://github.com/libp2p/js-libp2p-daemon/commit/db50405ddec3a68ad265c3d3233595187bc4895d)) +* update sibling dependencies ([e0ec5ec](https://github.com/libp2p/js-libp2p-daemon/commit/e0ec5ecf5bfd7f801274d37d51c3dcce652de2ba)) +* update sibling dependencies ([775bd83](https://github.com/libp2p/js-libp2p-daemon/commit/775bd83a63ae99c4b892f0169f76dbe39163e2d4)) +* update sibling dependencies ([56711c4](https://github.com/libp2p/js-libp2p-daemon/commit/56711c4f14b0cf2370b8612fe07d42ed2ac8363c)) +* update sibling dependencies ([c3ebd58](https://github.com/libp2p/js-libp2p-daemon/commit/c3ebd588abc36ef45667e8e4e4c0e220303b7510)) +* update uint8arraylist and protons deps ([#115](https://github.com/libp2p/js-libp2p-daemon/issues/115)) ([34a8334](https://github.com/libp2p/js-libp2p-daemon/commit/34a83340ba855a9c08319ae1cd735dfa8b71c248)) +* update uint8arrays, protons and multiformats ([#143](https://github.com/libp2p/js-libp2p-daemon/issues/143)) ([661139c](https://github.com/libp2p/js-libp2p-daemon/commit/661139c674c9994724e32227d7d9ae2c5da1cea2))