diff --git a/CHANGELOG-2.0.md b/CHANGELOG-2.0.md index 74f556a9c..7e46aa5b5 100644 --- a/CHANGELOG-2.0.md +++ b/CHANGELOG-2.0.md @@ -1,4 +1,10 @@ -# v2.0.6 - TBD +# v2.0.7 - TBD + +# v2.0.6 - 2020-08-10 + +## Added + +- [#2125](https://github.com/hyperf/hyperf/pull/2125) Added Jet component a unification model RPC Client, built-in JSONRPC protocol, available to running in ALL PHP environments. ## Fixed diff --git a/composer.json b/composer.json index 8c01f16ab..e7958e052 100644 --- a/composer.json +++ b/composer.json @@ -195,6 +195,7 @@ "Hyperf\\Metric\\": "src/metric/src/", "Hyperf\\ModelCache\\": "src/model-cache/src/", "Hyperf\\ModelListener\\": "src/model-listener/src/", + "Hyperf\\Nacos\\": "src/nacos/src/", "Hyperf\\Nats\\": "src/nats/src/", "Hyperf\\Nsq\\": "src/nsq/src/", "Hyperf\\Paginator\\": "src/paginator/src/", @@ -341,6 +342,7 @@ "Hyperf\\Metric\\ConfigProvider", "Hyperf\\ModelCache\\ConfigProvider", "Hyperf\\ModelListener\\ConfigProvider", + "Hyperf\\Nacos\\ConfigProvider", "Hyperf\\Nats\\ConfigProvider", "Hyperf\\Nsq\\ConfigProvider", "Hyperf\\Paginator\\ConfigProvider", diff --git a/docs/en/changelog.md b/docs/en/changelog.md index 2449962f8..1e98e099a 100644 --- a/docs/en/changelog.md +++ b/docs/en/changelog.md @@ -1,5 +1,24 @@ # Changelogs +# v2.0.5 - 2020-08-03 + +## Added + +- [#2001](https://github.com/hyperf/hyperf/pull/2001) Added `$signature` to init command easily. +- [#2204](https://github.com/hyperf/hyperf/pull/2204) Added `$concurrent` for function `parallel`. + +## Fixed + +- [#2210](https://github.com/hyperf/hyperf/pull/2210) Fixed bug that open event won't be executed after handshake right now. +- [#2214](https://github.com/hyperf/hyperf/pull/2214) Fixed bug that close event won't be executed when close the connection by websocket server. +- [#2218](https://github.com/hyperf/hyperf/pull/2218) Fixed bug that sender does not works for coroutine server. +- [#2227](https://github.com/hyperf/hyperf/pull/2227) Fixed context won't be destroyed when accept keepalive connection for co server. + +## Optimized + +- [#2193](https://github.com/hyperf/hyperf/pull/2193) Optimized the scan accuracy for `Hyperf\Watcher\Driver\FindDriver`. +- [#2232](https://github.com/hyperf/hyperf/pull/2232) Optimized eager load when the type is `In` or `InRaw` for model-cache. + # v2.0.4 - 2020-07-27 ## Added diff --git a/docs/zh-cn/changelog.md b/docs/zh-cn/changelog.md index 200d3227e..f8807afd1 100644 --- a/docs/zh-cn/changelog.md +++ b/docs/zh-cn/changelog.md @@ -1,5 +1,16 @@ # 版本更新记录 +# v2.0.6 - 2020-08-10 + +## 新增 + +- [#2125](https://github.com/hyperf/hyperf/pull/2125) 新增 `Jet` 组件。`Jet` 是统一的 `JSON RPC` 客户端,可以运行在所有的 `PHP (>=7.2)` 环境下。 + +## 修复 + +- [#2236](https://github.com/hyperf/hyperf/pull/2236) 修复 `Nacos` 使用负载均衡器选择节点失败的 BUG。 +- [#2242](https://github.com/hyperf/hyperf/pull/2242) 修复 `watcher` 组件会重复收集多次注解的 BUG。 + # v2.0.5 - 2020-08-03 ## 新增