This commit is contained in:
李铭昕 2020-08-10 10:11:44 +08:00
parent 0ffda17389
commit 56b4608916
4 changed files with 39 additions and 1 deletions

View File

@ -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

View File

@ -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",

View File

@ -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

View File

@ -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
## 新增