swoft icon indicating copy to clipboard operation
swoft copied to clipboard

[question] 请问可否发布 2.0.10?

Open andiechang opened this issue 5 years ago • 4 comments

Q A
Bug report? no
Feature request? no

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

谢谢

andiechang avatar Sep 08 '20 01:09 andiechang

ok 这周末发布下

inhere avatar Sep 08 '20 03:09 inhere

非常感謝!!!

andiechang avatar Sep 08 '20 06:09 andiechang

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);

uzengo avatar Sep 16 '20 10:09 uzengo

@dirklu ok

inhere avatar Sep 16 '20 11:09 inhere