Co-authored-by: 黄朝晖 <huangzhwork@gmail.com>
This commit is contained in:
李铭昕 2020-04-09 11:48:21 +08:00 committed by GitHub
parent 2e6e1be435
commit 59fce8c00f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 6 deletions

View File

@ -4,17 +4,18 @@ sudo: required
matrix:
include:
- php: 7.2
env: SW_VERSION="4.5.0RC1"
- php: 7.3
env: SW_VERSION="4.5.0RC1"
- php: 7.4
env: SW_VERSION="4.5.0RC1"
- php: 7.2
env: SW_VERSION="4.4.17"
- php: 7.3
env: SW_VERSION="4.4.17"
- php: 7.4
env: SW_VERSION="4.4.17"
- php: master
env: SW_VERSION="4.4.17"
allow_failures:
- php: master
services:
- mysql

View File

@ -1,4 +1,6 @@
# v1.1.24 - TBD
# v1.1.25 - TBD
# v1.1.24 - 2020-04-09
## Added

View File

@ -1,5 +1,22 @@
# 版本更新记录
# v1.1.24 - 2020-04-09
## Added
- [#1501](https://github.com/hyperf/hyperf/pull/1501) 添加 `Symfony` 命令行事件触发器,使之可以与 `hyperf/event` 组件结合使用。
- [#1502](https://github.com/hyperf/hyperf/pull/1502) 为注解 `Hyperf\AsyncQueue\Annotation\AsyncQueueMessage` 添加 `maxAttempts` 参数,用于控制消息失败时重复消费的次数。
- [#1510](https://github.com/hyperf/hyperf/pull/1510) 添加 `Hyperf/Utils/CoordinatorManager`,用于提供更优雅的启动和停止服务,服务启动前不响应请求,服务停止前,保证某些循环逻辑能够正常结束。
- [#1517](https://github.com/hyperf/hyperf/pull/1517) 为依赖注入容器的懒加载功能添加了对接口继承和抽象方法继承的支持。
- [#1529](https://github.com/hyperf/hyperf/pull/1529) 处理 `response cookies` 中的 `SameSite` 属性。
## Fixed
- [#1494](https://github.com/hyperf/hyperf/pull/1494) 修复单独使用 `Redis` 组件时,注释 `@mixin` 会被当成注解的BUG。
- [#1499](https://github.com/hyperf/hyperf/pull/1499) 修复引入 `hyperf/translation` 组件后,`hyperf/constants` 组件的动态参数不生效的 BUG。
- [#1504](https://github.com/hyperf/hyperf/pull/1504) 修复 `RPC` 代理客户端无法正常处理返回值为 `nullable` 类型的方法。
- [#1507](https://github.com/hyperf/hyperf/pull/1507) 修复 `hyperf/consul` 组件的 `catalog` 注册方法调用会失败的 BUG。
# v1.1.23 - 2020-04-02
## 新增