注意事项:本次升级后将不再支持调用官方的云编译服务,如需使用云编译功能需使用官方提供的第三方云编译程序自行启用云编译服务。

修复 本地开发时会验证授权信息的问题
优化 本版本更新后卸载插件会同时删除本地文件
修复 支付回调失败问题
优化 云编译失败后增加异常分析,可排除异常插件后重新编译
修复 云编译没有清除旧的编译文件
This commit is contained in:
wangchen147
2026-05-08 14:30:00 +08:00
parent 396eb8406d
commit 0864a7a502
666 changed files with 2032 additions and 2503 deletions

View File

@@ -108,7 +108,7 @@ class ExceptionHandle extends Handle
} else if ($e instanceof RouteNotFoundException) {
return fail('当前访问路由未定义或不匹配 路由地址:' . request()->baseUrl());
} else if($e instanceof \RuntimeException){
return fail($e->getMessage(), $massageData);
return fail($e->getMessage(), $massageData, $e->getCode() ?: 0);
} else {
return $this->handleException($e);
}