This commit is contained in:
李铭昕 2021-01-11 09:57:22 +08:00 committed by GitHub
parent 455e38d0da
commit 7139be6a43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 1 deletions

View File

@ -1,4 +1,6 @@
# v2.1.2 - TBD
# v2.1.3 - TBD
# v2.1.2 - 2021-01-11
## Fixed
@ -10,6 +12,7 @@
## Added
- [#2847](https://github.com/hyperf/hyperf/pull/2847) Added `hyperf/kafka` component.
- [#3066](https://github.com/hyperf/hyperf/pull/3066) Added method `ConnectionInterface::run(Closure $closure)` for `hyperf/db`.
## Optimized

View File

@ -1,5 +1,28 @@
# 版本更新记录
# v2.1.2 - 2021-01-11
## 修复
- [#3050](https://github.com/hyperf/hyperf/pull/3050) 修复在 `increment()` 后使用 `save()` 时,导致 `extra` 数据被保存两次的问题。
- [#3082](https://github.com/hyperf/hyperf/pull/3082) 修复 `hyperf/db` 组件在 `defer` 中使用时,会导致连接被其他协程绑定的问题。
- [#3084](https://github.com/hyperf/hyperf/pull/3084) 修复 `phar` 打包后 `getRealPath` 无法正常工作的问题。
- [#3087](https://github.com/hyperf/hyperf/pull/3087) 修复使用 `AOP` 时,`pipeline` 导致内存泄露的问题。
- [#3095](https://github.com/hyperf/hyperf/pull/3095) 修复 `hyperf/scout` 组件中,`ElasticsearchEngine::getTotalCount()` 无法兼容 `Elasticsearch 7.0` 版本的问题。
## 新增
- [#2847](https://github.com/hyperf/hyperf/pull/2847) 新增 `hyperf/kafka` 组件。
- [#3066](https://github.com/hyperf/hyperf/pull/3066) 为 `hyperf/db` 组件新增 `ConnectionInterface::run(Closure $closure)` 方法。
## 优化
- [#3046](https://github.com/hyperf/hyperf/pull/3046) 打包 `phar` 时,优化了重写 `scan_cacheable` 的代码。
## 变更
- [#3077](https://github.com/hyperf/hyperf/pull/3077) 因组件 `league/flysystem``2.0` 版本无法兼容,故降级到 `^1.0`
# v2.1.1 - 2021-01-04
## 修复