swoft-cloud / swoft

🚀 PHP Microservice Full Coroutine Framework
https://swoft.org
Apache License 2.0
5.58k stars 786 forks source link

[question] 请问可否发布 2.0.10? #1356

Open andiechang opened 4 years ago

andiechang commented 4 years ago
Q A
Bug report? no
Feature request? no

您好,我手上有个案子要准备上生产环境,需要 2.0.10 更新的内容。 请问是否可以先行发布 2.0.10??

谢谢

inhere commented 4 years ago

ok 这周末发布下

andiechang commented 4 years ago

非常感謝!!!

uzengo commented 4 years ago

swoft db里面有个坑 pdo exception code是字符串 所以会导致异常转换失败 @inhere Wrong parameters for Swoft\Db\Exception\DbException([string $message [, long $code [, Throwable $previous = NULL]]]) At File /home/working/XQ_Api_Release/vendor/swoft/db/src/Connection/Connection.php line 701

2.0.9 throw new DbException($e->getMessage(), (int)$e->getCode());
2.0.10 throw new DbException($e->getMessage(), $e->getCode(), $e);

inhere commented 4 years ago

@dirklu ok