From 412077b418ffb4ca0ab557e683d1fddf0bf01138 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 29 Dec 2025 22:05:03 +0800 Subject: [PATCH 01/21] chore: 1 --- pnpm-lock.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 503a8fdab..46968b757 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -783,19 +783,19 @@ importers: packages/pro/commercial-core: dependencies: '@certd/basic': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../../core/basic '@certd/lib-server': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../../libs/lib-server '@certd/pipeline': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../../core/pipeline '@certd/plugin-plus': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../plugin-plus '@certd/plus-core': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../plus-core '@midwayjs/core': specifier: 3.20.11 @@ -880,22 +880,22 @@ importers: specifier: ^1.0.2 version: 1.0.3 '@certd/basic': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../../core/basic '@certd/lib-k8s': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../../libs/lib-k8s '@certd/pipeline': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../../core/pipeline '@certd/plugin-cert': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../../plugins/plugin-cert '@certd/plugin-lib': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../../plugins/plugin-lib '@certd/plus-core': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../plus-core ali-oss: specifier: ^6.21.0 @@ -998,7 +998,7 @@ importers: packages/pro/plus-core: dependencies: '@certd/basic': - specifier: ^1.37.15 + specifier: ^1.37.16 version: link:../../core/basic dayjs: specifier: ^1.11.7 From a851c272cd7e1a6d834d433aa925871ea7f68249 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 29 Dec 2025 22:05:40 +0800 Subject: [PATCH 02/21] build: prepare to build --- packages/core/basic/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/basic/build.md b/packages/core/basic/build.md index f87163f46..4b56e11c2 100644 --- a/packages/core/basic/build.md +++ b/packages/core/basic/build.md @@ -1 +1 @@ -01:44 +22:05 From cd413825ed8a0c8e2a465db407d5b07c34d52faf Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 29 Dec 2025 22:08:56 +0800 Subject: [PATCH 03/21] chore: 1 --- .../src/plugins/plugin-goedge/access.ts | 121 +++++++++--------- 1 file changed, 63 insertions(+), 58 deletions(-) diff --git a/packages/ui/certd-server/src/plugins/plugin-goedge/access.ts b/packages/ui/certd-server/src/plugins/plugin-goedge/access.ts index 0b306a255..02056759e 100644 --- a/packages/ui/certd-server/src/plugins/plugin-goedge/access.ts +++ b/packages/ui/certd-server/src/plugins/plugin-goedge/access.ts @@ -1,5 +1,5 @@ -import {AccessInput, BaseAccess, IsAccess} from "@certd/pipeline"; -import {HttpRequestConfig} from "@certd/basic"; +import { AccessInput, BaseAccess, IsAccess } from "@certd/pipeline"; +import { HttpRequestConfig } from "@certd/basic"; import { CertInfo, CertReader } from "@certd/plugin-cert"; import dayjs from "dayjs"; @@ -17,10 +17,10 @@ export class GoEdgeAccess extends BaseAccess { @AccessInput({ title: "系统地址", component: { - name: "a-input", - vModel: "value" + name: "a-input", + vModel: "value" }, - helper:"例如:http://yourdomain.com:8002, 需要在API节点配置中开启HTTP访问地址", + helper: "例如:http://yourdomain.com:8002, 需要在API节点配置中开启HTTP访问地址", encrypt: false, required: true }) @@ -49,7 +49,7 @@ export class GoEdgeAccess extends BaseAccess { @AccessInput({ title: "accessKeyId", - helper:`用户AccessKey: 在”平台用户-用户-详情-AccessKey” 或 商业版的“访问控制” 中创建。 + helper: `用户AccessKey: 在”平台用户-用户-详情-AccessKey” 或 商业版的“访问控制” 中创建。 管理员AccessKey:在”系统用户-用户-详情-AccessKey” 中创建。`, component: { name: "a-input", @@ -83,11 +83,11 @@ export class GoEdgeAccess extends BaseAccess { }) testRequest = true; - accessToken: {expiresAt:number,token:string} + accessToken: { expiresAt: number, token: string } async onTestRequest() { - await this.getCertList({pageSize:1}); - return "ok" + await this.getCertList({ pageSize: 1 }); + return "ok" } /** @@ -115,32 +115,32 @@ export class GoEdgeAccess extends BaseAccess { "ocspError": "" * @returns */ - async getCertList(req:{pageNo?:number,pageSize?:number,query?:string,onlyUser?:boolean,userId?:number}){ + async getCertList(req: { pageNo?: number, pageSize?: number, query?: string, onlyUser?: boolean, userId?: number }) { const pageNo = req.pageNo ?? 1; const pageSize = req.pageSize ?? 20; - const body:any = { - keyword: req.query??"", - offset: (pageNo-1)*pageSize, - size: pageSize, + const body: any = { + keyword: req.query ?? "", + offset: (pageNo - 1) * pageSize, + size: pageSize, } - if (req.onlyUser){ + if (req.onlyUser) { body["onlyUser"] = true; } - if (req.userId){ + if (req.userId) { body["userId"] = req.userId; } const countRes = await this.doRequest({ url: `/SSLCertService/countSSLCerts`, method: "POST", - data:body + data: body }); const total = countRes.count || 9999; const res = await this.doRequest({ url: `/SSLCertService/listSSLCerts`, method: "POST", - data:body + data: body }); // this.ctx.logger.info("getCertList",JSON.stringify(res)); const sslCertsJSON = this.ctx.utils.hash.base64Decode(res.sslCertsJSON) || "[]"; @@ -153,21 +153,26 @@ export class GoEdgeAccess extends BaseAccess { } } - async doCertReplace(req:{certId:number,cert:CertInfo}){ + async doCertReplace(req: { certId: number, cert: CertInfo }) { - const res = await this.doRequest({ - url: `/SSLCertService/findEnabledSSLCertConfig`, - method: "POST", - data: { - sslCertId: req.certId, - } - }); - const sslCertJSON = this.ctx.utils.hash.base64Decode(res.sslCertJSON) || "{}"; - const sslCert = JSON.parse(sslCertJSON) ; + let sslCert:any = {} + try { + const res = await this.doRequest({ + url: `/SSLCertService/findEnabledSSLCertConfig`, + method: "POST", + data: { + sslCertId: req.certId, + } + }); + const sslCertJSON = this.ctx.utils.hash.base64Decode(res.sslCertJSON) || "{}"; + sslCert = JSON.parse(sslCertJSON); + } catch (error) { + this.ctx.logger.error("获取原来的证书详情失败", error); + } const certReader = new CertReader(req.cert); const dnsNames = certReader.getAllDomains() - + // /product/sslcenter/{id} return await this.doRequest({ url: `/SSLCertService/updateSSLCert`, @@ -175,31 +180,31 @@ export class GoEdgeAccess extends BaseAccess { data: { sslCertId: req.certId, certData: this.ctx.utils.hash.base64(req.cert.crt), - keyData: this.ctx.utils.hash.base64(req.cert.key), - isOn: sslCert.isOn, + keyData: this.ctx.utils.hash.base64(req.cert.key), + isOn: sslCert.isOn ?? true, name: sslCert.name || certReader.buildCertName(), description: sslCert.description || "upload by certd", serverName: sslCert.serverName, - timeBeginAt: certReader.detail.notBefore.getTime()/1000, - timeEndAt: certReader.detail.notAfter.getTime()/1000, + timeBeginAt: certReader.detail.notBefore.getTime() / 1000, + timeEndAt: certReader.detail.notAfter.getTime() / 1000, dnsNames: dnsNames, /** * // 是否启用 - bool isOn; + bool isOn; - // 名称 - string name; + // 名称 + string name; - // 描述(备注) - string description; - string serverName; - bool isCA; - bytes certData; - bytes keyData; - int64 timeBeginAt; - int64 timeEndAt; - []string dnsNames; - []string commonNames; + // 描述(备注) + string description; + string serverName; + bool isCA; + bytes certData; + bytes keyData; + int64 timeBeginAt; + int64 timeEndAt; + []string dnsNames; + []string commonNames; */ } }); @@ -207,9 +212,9 @@ export class GoEdgeAccess extends BaseAccess { } - async getToken(){ + async getToken() { // /APIAccessTokenService/getAPIAccessToken - if (this.accessToken && this.accessToken.expiresAt >dayjs().unix()){ + if (this.accessToken && this.accessToken.expiresAt > dayjs().unix()) { return this.accessToken; } @@ -226,26 +231,26 @@ export class GoEdgeAccess extends BaseAccess { return res; } - async doRequest(req:HttpRequestConfig){ + async doRequest(req: HttpRequestConfig) { - const headers: Record = {} - if(!req.url.endsWith("/getAPIAccessToken")){ - if (!this.accessToken || this.accessToken.expiresAt < dayjs().unix()){ + const headers: Record = {} + if (!req.url.endsWith("/getAPIAccessToken")) { + if (!this.accessToken || this.accessToken.expiresAt < dayjs().unix()) { await this.getToken(); } headers["X-Edge-Access-Token"] = this.accessToken.token; } let endpoint = this.endpoint; - if (endpoint.endsWith("/")){ - endpoint = endpoint.slice(0,-1); + if (endpoint.endsWith("/")) { + endpoint = endpoint.slice(0, -1); } - const res = await this.ctx.http.request({ + const res = await this.ctx.http.request({ url: req.url, baseURL: endpoint, - method: req.method|| "POST", + method: req.method || "POST", data: req.data, - params: req.params, - headers:{ + params: req.params, + headers: { ...headers, ...req.headers }, From f223f042dee47f470e1f0e966b6e29603ff8108c Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 29 Dec 2025 22:20:43 +0800 Subject: [PATCH 04/21] chore: 1 --- .../libs/lib-server/src/system/basic/service/executor-queue.ts | 2 +- packages/ui/certd-client/src/locales/langs/zh-CN/certd.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/libs/lib-server/src/system/basic/service/executor-queue.ts b/packages/libs/lib-server/src/system/basic/service/executor-queue.ts index ca82b7eec..737c443ec 100644 --- a/packages/libs/lib-server/src/system/basic/service/executor-queue.ts +++ b/packages/libs/lib-server/src/system/basic/service/executor-queue.ts @@ -54,7 +54,7 @@ export class UserTaskQueue{ export class ExecutorQueue{ queues: Record = {}; - maxRunningCount: number = 8; + maxRunningCount: number = 10; setMaxRunningCount(count: number) { diff --git a/packages/ui/certd-client/src/locales/langs/zh-CN/certd.ts b/packages/ui/certd-client/src/locales/langs/zh-CN/certd.ts index 53cf254df..2e032982e 100644 --- a/packages/ui/certd-client/src/locales/langs/zh-CN/certd.ts +++ b/packages/ui/certd-client/src/locales/langs/zh-CN/certd.ts @@ -775,7 +775,7 @@ export default { pipelineMaxRunningCount: "同时最大运行流水线数量", pipelineMaxRunningCountHelper: "同一个用户同时运行的最大流水线数量,避免同时触发太多导致ACME账户被限制", - pipelineMaxRunningCountRecommend: "推荐5-10", + pipelineMaxRunningCountRecommend: "推荐5-15,默认10", fixedCertExpireDays: "固定证书有效期天数", fixedCertExpireDaysHelper: "固定证书有效期天数,有助于列表进度条整齐显示", From 0e5a4fb098d3261b690c551cf2b95198cac487e7 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 29 Dec 2025 22:27:31 +0800 Subject: [PATCH 05/21] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=B5=81?= =?UTF-8?q?=E6=B0=B4=E7=BA=BF=E5=88=97=E8=A1=A8step=E6=95=B0=E9=87=8F?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E9=94=99=E8=AF=AF=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/modules/pipeline/service/pipeline-service.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/ui/certd-server/src/modules/pipeline/service/pipeline-service.ts b/packages/ui/certd-server/src/modules/pipeline/service/pipeline-service.ts index 5bf15cfd1..b77b2b57f 100644 --- a/packages/ui/certd-server/src/modules/pipeline/service/pipeline-service.ts +++ b/packages/ui/certd-server/src/modules/pipeline/service/pipeline-service.ts @@ -131,7 +131,9 @@ export class PipelineService extends BaseService { let stepCount = 0; if (pipeline.stages) { RunnableCollection.each(pipeline.stages, (runnable: any) => { - stepCount++; + if (runnable.runnableType === "step") { + stepCount++; + } }); } // @ts-ignore From d2e9fed62dcf6394ede40ff7ec6b1584637d8ebd Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 29 Dec 2025 22:29:22 +0800 Subject: [PATCH 06/21] build: prepare to build --- packages/core/basic/build.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/basic/build.md b/packages/core/basic/build.md index 4b56e11c2..1d3dbaee6 100644 --- a/packages/core/basic/build.md +++ b/packages/core/basic/build.md @@ -1 +1 @@ -22:05 +22:29 From 786780ce9b0ee9b9ebb104f54abb161ae9a924e9 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 29 Dec 2025 22:31:45 +0800 Subject: [PATCH 07/21] v1.37.17 --- CHANGELOG.md | 33 +++++++++++++++++++++ lerna.json | 2 +- packages/core/acme-client/CHANGELOG.md | 6 ++++ packages/core/acme-client/package.json | 4 +-- packages/core/basic/CHANGELOG.md | 4 +++ packages/core/basic/package.json | 2 +- packages/core/pipeline/CHANGELOG.md | 10 +++++++ packages/core/pipeline/package.json | 6 ++-- packages/libs/lib-huawei/CHANGELOG.md | 4 +++ packages/libs/lib-huawei/package.json | 2 +- packages/libs/lib-iframe/CHANGELOG.md | 4 +++ packages/libs/lib-iframe/package.json | 2 +- packages/libs/lib-jdcloud/CHANGELOG.md | 4 +++ packages/libs/lib-jdcloud/package.json | 2 +- packages/libs/lib-k8s/CHANGELOG.md | 4 +++ packages/libs/lib-k8s/package.json | 4 +-- packages/libs/lib-server/CHANGELOG.md | 6 ++++ packages/libs/lib-server/package.json | 12 ++++---- packages/libs/midway-flyway-js/CHANGELOG.md | 4 +++ packages/libs/midway-flyway-js/package.json | 2 +- packages/plugins/plugin-cert/CHANGELOG.md | 7 +++++ packages/plugins/plugin-cert/package.json | 10 +++---- packages/plugins/plugin-lib/CHANGELOG.md | 4 +++ packages/plugins/plugin-lib/package.json | 6 ++-- packages/ui/certd-client/CHANGELOG.md | 13 ++++++++ packages/ui/certd-client/package.json | 6 ++-- packages/ui/certd-server/CHANGELOG.md | 29 ++++++++++++++++++ packages/ui/certd-server/package.json | 28 ++++++++--------- 28 files changed, 176 insertions(+), 44 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4df926faa..bbcfbceea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,39 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +### Bug Fixes + +* 发送证书到邮箱插件的邮件模版转为使用邮箱配置中的通用模版 ([c5a3003](https://github.com/certd/certd/commit/c5a3003cf7b640500a90ec2c8961859ffe6fdb18)) +* 首页最快到期证书,不包含已禁用的流水线 ([d731956](https://github.com/certd/certd/commit/d731956b066e4dbbe24d4de7b3d3679b355eb97c)) +* 修复部署到华为obs 报错的bug ([dd19afc](https://github.com/certd/certd/commit/dd19afce928a7f36312af9df1e7e5ed3eb1e214a)) +* 修复从模版创建的流水线不会自动执行的bug ([833808c](https://github.com/certd/certd/commit/833808c5deb716122b241d3d67349d2d6a18bf45)) +* 修复流水线列表step数量统计错误的bug ([0e5a4fb](https://github.com/certd/certd/commit/0e5a4fb098d3261b690c551cf2b95198cac487e7)) +* 修复用户删除后,用相同的oauth授权登录报错用户不存在的问题 ([e505916](https://github.com/certd/certd/commit/e5059165259e4d757abc811c0c14bbc4a3dbaee9)) +* 修复站点ip监控报主站与ip证书过期时间不一致的问题 ([62f8525](https://github.com/certd/certd/commit/62f8525dd5da95dc07ed103f602644c6e5f7f8e3)) +* 修复serverchan3 没有选择tags报错的bug ([5bbf210](https://github.com/certd/certd/commit/5bbf210394883c4893c365bd16e999490b6e9b41)) +* telegram 修复消息内存在横杠无法发出的bug ([5f4469e](https://github.com/certd/certd/commit/5f4469e306187c31d8a74d53b17ea3a213420367)) + +### Performance Improvements + +* 批量修改定时时间支持随机时间 ([d0f653d](https://github.com/certd/certd/commit/d0f653da9a2970920e961e7404ff04080bccd343)) +* 批量运行优化,支持普通运行和强制重新运行 ([039c62b](https://github.com/certd/certd/commit/039c62b09b37cdda35d33c6ee9adecad62dee75c)) +* 升级lego到4.30.1版本 ([136e8dd](https://github.com/certd/certd/commit/136e8dd7c5ff7199ff4b0bcca95b8a03aa847553)) +* 腾讯云EO增加请求参数打印 ([5b5deac](https://github.com/certd/certd/commit/5b5deac7d98684eda5c68384241a4d62c48d803b)) +* 优化阿里云esa清理证书时机 ([5359a76](https://github.com/certd/certd/commit/5359a7670fac5a18c4294b37a34227308a0deed6)) +* 优化源码方式部署,前端无需编译 ([13ddc97](https://github.com/certd/certd/commit/13ddc979ec7953e3db8db76dd23fd85a3b3c7997)) +* 支持部署到goedge ([44bf4b1](https://github.com/certd/certd/commit/44bf4b1cc1aafa2d711c3b8e408009f0ceb413eb)) +* 支持从阿里云商用证书订单中获取证书 ([8872466](https://github.com/certd/certd/commit/887246696861c3a0b1f99fd9ad978caea423c650)) +* 支持授权给管理员查看和下载用户证书 ([1347355](https://github.com/certd/certd/commit/1347355cb117694abe99da385352a19771a32e84)) +* 支持执行队列,避免同一时间触发流水线太多导致被限制 ([888d959](https://github.com/certd/certd/commit/888d9591fe9730b529e1c355d71f41e7ec9b479d)) +* 支持aws route53 dns ([cbb8319](https://github.com/certd/certd/commit/cbb8319cfa48673e81ec15894adc3376c173c97e)) +* 支持ucloud waf(未测试) ([a248367](https://github.com/certd/certd/commit/a248367b154c38661a6797ef64e37ec99d4e2abf)) +* 支持ucloud,上传到ussl,部署到ucdn ([e61daae](https://github.com/certd/certd/commit/e61daaee2d0dec19710cd4ec759219a071f2435e)) +* 执行队列数量支持设置 ([cd94488](https://github.com/certd/certd/commit/cd944882c3272adad4a2da94a3889a01fe05fe13)) +* aws route53 ([8caab1f](https://github.com/certd/certd/commit/8caab1fd9264df548f467b94202d567107b7a30b)) +* ip证书校验方式提示 ([773cada](https://github.com/certd/certd/commit/773cada57a01fb28ea8602062aaeec3d45109ea9)) + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 6cfb8dee2..d8b0e21fc 100644 --- a/lerna.json +++ b/lerna.json @@ -9,5 +9,5 @@ } }, "npmClient": "pnpm", - "version": "1.37.16" + "version": "1.37.17" } diff --git a/packages/core/acme-client/CHANGELOG.md b/packages/core/acme-client/CHANGELOG.md index ff85fd25c..3dc09d36b 100644 --- a/packages/core/acme-client/CHANGELOG.md +++ b/packages/core/acme-client/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/publishlab/node-acme-client/compare/v1.37.16...v1.37.17) (2025-12-29) + +### Performance Improvements + +* aws route53 ([8caab1f](https://github.com/publishlab/node-acme-client/commit/8caab1fd9264df548f467b94202d567107b7a30b)) + ## [1.37.16](https://github.com/publishlab/node-acme-client/compare/v1.37.15...v1.37.16) (2025-12-15) ### Bug Fixes diff --git a/packages/core/acme-client/package.json b/packages/core/acme-client/package.json index 1ac772c10..8f7bd6b81 100644 --- a/packages/core/acme-client/package.json +++ b/packages/core/acme-client/package.json @@ -3,7 +3,7 @@ "description": "Simple and unopinionated ACME client", "private": false, "author": "nmorsman", - "version": "1.37.16", + "version": "1.37.17", "type": "module", "module": "scr/index.js", "main": "src/index.js", @@ -18,7 +18,7 @@ "types" ], "dependencies": { - "@certd/basic": "^1.37.16", + "@certd/basic": "^1.37.17", "@peculiar/x509": "^1.11.0", "asn1js": "^3.0.5", "axios": "^1.9.0", diff --git a/packages/core/basic/CHANGELOG.md b/packages/core/basic/CHANGELOG.md index 9540ce97d..1ae18e9a3 100644 --- a/packages/core/basic/CHANGELOG.md +++ b/packages/core/basic/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +**Note:** Version bump only for package @certd/basic + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) ### Bug Fixes diff --git a/packages/core/basic/package.json b/packages/core/basic/package.json index 59c07928c..67c7ae567 100644 --- a/packages/core/basic/package.json +++ b/packages/core/basic/package.json @@ -1,7 +1,7 @@ { "name": "@certd/basic", "private": false, - "version": "1.37.16", + "version": "1.37.17", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", diff --git a/packages/core/pipeline/CHANGELOG.md b/packages/core/pipeline/CHANGELOG.md index b0f127ad1..4ec5868c2 100644 --- a/packages/core/pipeline/CHANGELOG.md +++ b/packages/core/pipeline/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +### Bug Fixes + +* 发送证书到邮箱插件的邮件模版转为使用邮箱配置中的通用模版 ([c5a3003](https://github.com/certd/certd/commit/c5a3003cf7b640500a90ec2c8961859ffe6fdb18)) + +### Performance Improvements + +* 支持ucloud,上传到ussl,部署到ucdn ([e61daae](https://github.com/certd/certd/commit/e61daaee2d0dec19710cd4ec759219a071f2435e)) + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) ### Performance Improvements diff --git a/packages/core/pipeline/package.json b/packages/core/pipeline/package.json index f122372c5..e23744914 100644 --- a/packages/core/pipeline/package.json +++ b/packages/core/pipeline/package.json @@ -1,7 +1,7 @@ { "name": "@certd/pipeline", "private": false, - "version": "1.37.16", + "version": "1.37.17", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", @@ -18,8 +18,8 @@ "compile": "tsc --skipLibCheck --watch" }, "dependencies": { - "@certd/basic": "^1.37.16", - "@certd/plus-core": "^1.37.16", + "@certd/basic": "^1.37.17", + "@certd/plus-core": "^1.37.17", "dayjs": "^1.11.7", "lodash-es": "^4.17.21", "reflect-metadata": "^0.1.13" diff --git a/packages/libs/lib-huawei/CHANGELOG.md b/packages/libs/lib-huawei/CHANGELOG.md index c7124d4d1..02221b35d 100644 --- a/packages/libs/lib-huawei/CHANGELOG.md +++ b/packages/libs/lib-huawei/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +**Note:** Version bump only for package @certd/lib-huawei + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) **Note:** Version bump only for package @certd/lib-huawei diff --git a/packages/libs/lib-huawei/package.json b/packages/libs/lib-huawei/package.json index 38455dc3a..0c2649490 100644 --- a/packages/libs/lib-huawei/package.json +++ b/packages/libs/lib-huawei/package.json @@ -1,7 +1,7 @@ { "name": "@certd/lib-huawei", "private": false, - "version": "1.37.16", + "version": "1.37.17", "main": "./dist/bundle.js", "module": "./dist/bundle.js", "types": "./dist/d/index.d.ts", diff --git a/packages/libs/lib-iframe/CHANGELOG.md b/packages/libs/lib-iframe/CHANGELOG.md index cab87b682..3c249844a 100644 --- a/packages/libs/lib-iframe/CHANGELOG.md +++ b/packages/libs/lib-iframe/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +**Note:** Version bump only for package @certd/lib-iframe + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) **Note:** Version bump only for package @certd/lib-iframe diff --git a/packages/libs/lib-iframe/package.json b/packages/libs/lib-iframe/package.json index 30973c8aa..9037d9214 100644 --- a/packages/libs/lib-iframe/package.json +++ b/packages/libs/lib-iframe/package.json @@ -1,7 +1,7 @@ { "name": "@certd/lib-iframe", "private": false, - "version": "1.37.16", + "version": "1.37.17", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", diff --git a/packages/libs/lib-jdcloud/CHANGELOG.md b/packages/libs/lib-jdcloud/CHANGELOG.md index 2b40d9334..8590adbdb 100644 --- a/packages/libs/lib-jdcloud/CHANGELOG.md +++ b/packages/libs/lib-jdcloud/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +**Note:** Version bump only for package @certd/jdcloud + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) **Note:** Version bump only for package @certd/jdcloud diff --git a/packages/libs/lib-jdcloud/package.json b/packages/libs/lib-jdcloud/package.json index 3ed37514a..bfa481411 100644 --- a/packages/libs/lib-jdcloud/package.json +++ b/packages/libs/lib-jdcloud/package.json @@ -1,6 +1,6 @@ { "name": "@certd/jdcloud", - "version": "1.37.16", + "version": "1.37.17", "description": "jdcloud openApi sdk", "main": "./dist/bundle.js", "module": "./dist/bundle.js", diff --git a/packages/libs/lib-k8s/CHANGELOG.md b/packages/libs/lib-k8s/CHANGELOG.md index 12c002f00..9c85118de 100644 --- a/packages/libs/lib-k8s/CHANGELOG.md +++ b/packages/libs/lib-k8s/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +**Note:** Version bump only for package @certd/lib-k8s + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) **Note:** Version bump only for package @certd/lib-k8s diff --git a/packages/libs/lib-k8s/package.json b/packages/libs/lib-k8s/package.json index 84ca79f9c..adbb1be14 100644 --- a/packages/libs/lib-k8s/package.json +++ b/packages/libs/lib-k8s/package.json @@ -1,7 +1,7 @@ { "name": "@certd/lib-k8s", "private": false, - "version": "1.37.16", + "version": "1.37.17", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", @@ -17,7 +17,7 @@ "pub": "npm publish" }, "dependencies": { - "@certd/basic": "^1.37.16", + "@certd/basic": "^1.37.17", "@kubernetes/client-node": "0.21.0" }, "devDependencies": { diff --git a/packages/libs/lib-server/CHANGELOG.md b/packages/libs/lib-server/CHANGELOG.md index 9349cf679..85f7e15ed 100644 --- a/packages/libs/lib-server/CHANGELOG.md +++ b/packages/libs/lib-server/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +### Performance Improvements + +* 执行队列数量支持设置 ([cd94488](https://github.com/certd/certd/commit/cd944882c3272adad4a2da94a3889a01fe05fe13)) + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) ### Bug Fixes diff --git a/packages/libs/lib-server/package.json b/packages/libs/lib-server/package.json index ae354fa0d..e440062f1 100644 --- a/packages/libs/lib-server/package.json +++ b/packages/libs/lib-server/package.json @@ -1,6 +1,6 @@ { "name": "@certd/lib-server", - "version": "1.37.16", + "version": "1.37.17", "description": "midway with flyway, sql upgrade way ", "private": false, "type": "module", @@ -28,11 +28,11 @@ ], "license": "AGPL", "dependencies": { - "@certd/acme-client": "^1.37.16", - "@certd/basic": "^1.37.16", - "@certd/pipeline": "^1.37.16", - "@certd/plugin-lib": "^1.37.16", - "@certd/plus-core": "^1.37.16", + "@certd/acme-client": "^1.37.17", + "@certd/basic": "^1.37.17", + "@certd/pipeline": "^1.37.17", + "@certd/plugin-lib": "^1.37.17", + "@certd/plus-core": "^1.37.17", "@midwayjs/cache": "3.14.0", "@midwayjs/core": "3.20.11", "@midwayjs/i18n": "3.20.13", diff --git a/packages/libs/midway-flyway-js/CHANGELOG.md b/packages/libs/midway-flyway-js/CHANGELOG.md index c0e6ba359..3fa02559b 100644 --- a/packages/libs/midway-flyway-js/CHANGELOG.md +++ b/packages/libs/midway-flyway-js/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +**Note:** Version bump only for package @certd/midway-flyway-js + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) **Note:** Version bump only for package @certd/midway-flyway-js diff --git a/packages/libs/midway-flyway-js/package.json b/packages/libs/midway-flyway-js/package.json index 6ddde9b6a..cd3777a46 100644 --- a/packages/libs/midway-flyway-js/package.json +++ b/packages/libs/midway-flyway-js/package.json @@ -1,6 +1,6 @@ { "name": "@certd/midway-flyway-js", - "version": "1.37.16", + "version": "1.37.17", "description": "midway with flyway, sql upgrade way ", "private": false, "type": "module", diff --git a/packages/plugins/plugin-cert/CHANGELOG.md b/packages/plugins/plugin-cert/CHANGELOG.md index 2fe66b29a..84739a2a2 100644 --- a/packages/plugins/plugin-cert/CHANGELOG.md +++ b/packages/plugins/plugin-cert/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +### Performance Improvements + +* 支持从阿里云商用证书订单中获取证书 ([8872466](https://github.com/certd/certd/commit/887246696861c3a0b1f99fd9ad978caea423c650)) +* ip证书校验方式提示 ([773cada](https://github.com/certd/certd/commit/773cada57a01fb28ea8602062aaeec3d45109ea9)) + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) ### Bug Fixes diff --git a/packages/plugins/plugin-cert/package.json b/packages/plugins/plugin-cert/package.json index 184b2a4af..98e740bef 100644 --- a/packages/plugins/plugin-cert/package.json +++ b/packages/plugins/plugin-cert/package.json @@ -1,7 +1,7 @@ { "name": "@certd/plugin-cert", "private": false, - "version": "1.37.16", + "version": "1.37.17", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", @@ -17,10 +17,10 @@ "compile": "tsc --skipLibCheck --watch" }, "dependencies": { - "@certd/acme-client": "^1.37.16", - "@certd/basic": "^1.37.16", - "@certd/pipeline": "^1.37.16", - "@certd/plugin-lib": "^1.37.16", + "@certd/acme-client": "^1.37.17", + "@certd/basic": "^1.37.17", + "@certd/pipeline": "^1.37.17", + "@certd/plugin-lib": "^1.37.17", "@google-cloud/publicca": "^1.3.0", "dayjs": "^1.11.7", "jszip": "^3.10.1", diff --git a/packages/plugins/plugin-lib/CHANGELOG.md b/packages/plugins/plugin-lib/CHANGELOG.md index 6a8f64bef..ddc05e174 100644 --- a/packages/plugins/plugin-lib/CHANGELOG.md +++ b/packages/plugins/plugin-lib/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +**Note:** Version bump only for package @certd/plugin-lib + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) **Note:** Version bump only for package @certd/plugin-lib diff --git a/packages/plugins/plugin-lib/package.json b/packages/plugins/plugin-lib/package.json index 437f633ea..3c003a815 100644 --- a/packages/plugins/plugin-lib/package.json +++ b/packages/plugins/plugin-lib/package.json @@ -1,7 +1,7 @@ { "name": "@certd/plugin-lib", "private": false, - "version": "1.37.16", + "version": "1.37.17", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", @@ -22,8 +22,8 @@ "@alicloud/pop-core": "^1.7.10", "@alicloud/tea-util": "^1.4.10", "@aws-sdk/client-s3": "^3.787.0", - "@certd/basic": "^1.37.16", - "@certd/pipeline": "^1.37.16", + "@certd/basic": "^1.37.17", + "@certd/pipeline": "^1.37.17", "@kubernetes/client-node": "0.21.0", "ali-oss": "^6.22.0", "basic-ftp": "^5.0.5", diff --git a/packages/ui/certd-client/CHANGELOG.md b/packages/ui/certd-client/CHANGELOG.md index 2a4e62a42..3b6096e9e 100644 --- a/packages/ui/certd-client/CHANGELOG.md +++ b/packages/ui/certd-client/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +### Performance Improvements + +* 批量修改定时时间支持随机时间 ([d0f653d](https://github.com/certd/certd/commit/d0f653da9a2970920e961e7404ff04080bccd343)) +* 批量运行优化,支持普通运行和强制重新运行 ([039c62b](https://github.com/certd/certd/commit/039c62b09b37cdda35d33c6ee9adecad62dee75c)) +* 优化源码方式部署,前端无需编译 ([13ddc97](https://github.com/certd/certd/commit/13ddc979ec7953e3db8db76dd23fd85a3b3c7997)) +* 支持部署到goedge ([44bf4b1](https://github.com/certd/certd/commit/44bf4b1cc1aafa2d711c3b8e408009f0ceb413eb)) +* 支持从阿里云商用证书订单中获取证书 ([8872466](https://github.com/certd/certd/commit/887246696861c3a0b1f99fd9ad978caea423c650)) +* 支持授权给管理员查看和下载用户证书 ([1347355](https://github.com/certd/certd/commit/1347355cb117694abe99da385352a19771a32e84)) +* 执行队列数量支持设置 ([cd94488](https://github.com/certd/certd/commit/cd944882c3272adad4a2da94a3889a01fe05fe13)) +* aws route53 ([8caab1f](https://github.com/certd/certd/commit/8caab1fd9264df548f467b94202d567107b7a30b)) + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) ### Bug Fixes diff --git a/packages/ui/certd-client/package.json b/packages/ui/certd-client/package.json index b363cfd53..917f9ab27 100644 --- a/packages/ui/certd-client/package.json +++ b/packages/ui/certd-client/package.json @@ -1,6 +1,6 @@ { "name": "@certd/ui-client", - "version": "1.37.16", + "version": "1.37.17", "private": true, "scripts": { "dev": "vite --open", @@ -106,8 +106,8 @@ "zod-defaults": "^0.1.3" }, "devDependencies": { - "@certd/lib-iframe": "^1.37.16", - "@certd/pipeline": "^1.37.16", + "@certd/lib-iframe": "^1.37.17", + "@certd/pipeline": "^1.37.17", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@types/chai": "^4.3.12", diff --git a/packages/ui/certd-server/CHANGELOG.md b/packages/ui/certd-server/CHANGELOG.md index 144fb1620..02a927092 100644 --- a/packages/ui/certd-server/CHANGELOG.md +++ b/packages/ui/certd-server/CHANGELOG.md @@ -3,6 +3,35 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +### Bug Fixes + +* 发送证书到邮箱插件的邮件模版转为使用邮箱配置中的通用模版 ([c5a3003](https://github.com/certd/certd/commit/c5a3003cf7b640500a90ec2c8961859ffe6fdb18)) +* 首页最快到期证书,不包含已禁用的流水线 ([d731956](https://github.com/certd/certd/commit/d731956b066e4dbbe24d4de7b3d3679b355eb97c)) +* 修复部署到华为obs 报错的bug ([dd19afc](https://github.com/certd/certd/commit/dd19afce928a7f36312af9df1e7e5ed3eb1e214a)) +* 修复从模版创建的流水线不会自动执行的bug ([833808c](https://github.com/certd/certd/commit/833808c5deb716122b241d3d67349d2d6a18bf45)) +* 修复流水线列表step数量统计错误的bug ([0e5a4fb](https://github.com/certd/certd/commit/0e5a4fb098d3261b690c551cf2b95198cac487e7)) +* 修复用户删除后,用相同的oauth授权登录报错用户不存在的问题 ([e505916](https://github.com/certd/certd/commit/e5059165259e4d757abc811c0c14bbc4a3dbaee9)) +* 修复站点ip监控报主站与ip证书过期时间不一致的问题 ([62f8525](https://github.com/certd/certd/commit/62f8525dd5da95dc07ed103f602644c6e5f7f8e3)) +* 修复serverchan3 没有选择tags报错的bug ([5bbf210](https://github.com/certd/certd/commit/5bbf210394883c4893c365bd16e999490b6e9b41)) + +### Performance Improvements + +* 批量修改定时时间支持随机时间 ([d0f653d](https://github.com/certd/certd/commit/d0f653da9a2970920e961e7404ff04080bccd343)) +* 批量运行优化,支持普通运行和强制重新运行 ([039c62b](https://github.com/certd/certd/commit/039c62b09b37cdda35d33c6ee9adecad62dee75c)) +* 升级lego到4.30.1版本 ([136e8dd](https://github.com/certd/certd/commit/136e8dd7c5ff7199ff4b0bcca95b8a03aa847553)) +* 腾讯云EO增加请求参数打印 ([5b5deac](https://github.com/certd/certd/commit/5b5deac7d98684eda5c68384241a4d62c48d803b)) +* 优化阿里云esa清理证书时机 ([5359a76](https://github.com/certd/certd/commit/5359a7670fac5a18c4294b37a34227308a0deed6)) +* 支持部署到goedge ([44bf4b1](https://github.com/certd/certd/commit/44bf4b1cc1aafa2d711c3b8e408009f0ceb413eb)) +* 支持授权给管理员查看和下载用户证书 ([1347355](https://github.com/certd/certd/commit/1347355cb117694abe99da385352a19771a32e84)) +* 支持执行队列,避免同一时间触发流水线太多导致被限制 ([888d959](https://github.com/certd/certd/commit/888d9591fe9730b529e1c355d71f41e7ec9b479d)) +* 支持aws route53 dns ([cbb8319](https://github.com/certd/certd/commit/cbb8319cfa48673e81ec15894adc3376c173c97e)) +* 支持ucloud waf(未测试) ([a248367](https://github.com/certd/certd/commit/a248367b154c38661a6797ef64e37ec99d4e2abf)) +* 支持ucloud,上传到ussl,部署到ucdn ([e61daae](https://github.com/certd/certd/commit/e61daaee2d0dec19710cd4ec759219a071f2435e)) +* 执行队列数量支持设置 ([cd94488](https://github.com/certd/certd/commit/cd944882c3272adad4a2da94a3889a01fe05fe13)) +* aws route53 ([8caab1f](https://github.com/certd/certd/commit/8caab1fd9264df548f467b94202d567107b7a30b)) + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) ### Bug Fixes diff --git a/packages/ui/certd-server/package.json b/packages/ui/certd-server/package.json index fef15bb75..4b5cbb5f5 100644 --- a/packages/ui/certd-server/package.json +++ b/packages/ui/certd-server/package.json @@ -1,6 +1,6 @@ { "name": "@certd/ui-server", - "version": "1.37.16", + "version": "1.37.17", "description": "fast-server base midway", "private": true, "type": "module", @@ -46,20 +46,20 @@ "@aws-sdk/client-iam": "^3.699.0", "@aws-sdk/client-route-53": "^3.957.0", "@aws-sdk/client-s3": "^3.705.0", - "@certd/acme-client": "^1.37.16", - "@certd/basic": "^1.37.16", - "@certd/commercial-core": "^1.37.16", + "@certd/acme-client": "^1.37.17", + "@certd/basic": "^1.37.17", + "@certd/commercial-core": "^1.37.17", "@certd/cv4pve-api-javascript": "^8.4.2", - "@certd/jdcloud": "^1.37.16", - "@certd/lib-huawei": "^1.37.16", - "@certd/lib-k8s": "^1.37.16", - "@certd/lib-server": "^1.37.16", - "@certd/midway-flyway-js": "^1.37.16", - "@certd/pipeline": "^1.37.16", - "@certd/plugin-cert": "^1.37.16", - "@certd/plugin-lib": "^1.37.16", - "@certd/plugin-plus": "^1.37.16", - "@certd/plus-core": "^1.37.16", + "@certd/jdcloud": "^1.37.17", + "@certd/lib-huawei": "^1.37.17", + "@certd/lib-k8s": "^1.37.17", + "@certd/lib-server": "^1.37.17", + "@certd/midway-flyway-js": "^1.37.17", + "@certd/pipeline": "^1.37.17", + "@certd/plugin-cert": "^1.37.17", + "@certd/plugin-lib": "^1.37.17", + "@certd/plugin-plus": "^1.37.17", + "@certd/plus-core": "^1.37.17", "@huaweicloud/huaweicloud-sdk-cdn": "^3.1.120", "@huaweicloud/huaweicloud-sdk-core": "^3.1.120", "@koa/cors": "^5.0.0", From 883565905abae56014f91ea78eda72f5de5d1494 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 29 Dec 2025 22:33:12 +0800 Subject: [PATCH 08/21] build: trigger build image --- trigger/build.trigger | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trigger/build.trigger b/trigger/build.trigger index f5e4778d5..3e3439ce8 100644 --- a/trigger/build.trigger +++ b/trigger/build.trigger @@ -1 +1 @@ -01:47 +22:33 From f7863bd686236a952d500260346137fd42711e25 Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Mon, 29 Dec 2025 22:33:24 +0800 Subject: [PATCH 09/21] build: publish --- docs/guide/changelogs/CHANGELOG.md | 33 +++++++++++++++++++++ docs/guide/plugins/access.md | 4 ++- docs/guide/plugins/deploy.md | 23 +++++++++----- docs/guide/plugins/dns-provider.md | 33 +++++++++++---------- packages/core/acme-client/package.json | 2 +- packages/core/basic/package.json | 2 +- packages/core/pipeline/package.json | 2 +- packages/libs/lib-huawei/package.json | 2 +- packages/libs/lib-iframe/package.json | 2 +- packages/libs/lib-jdcloud/package.json | 2 +- packages/libs/lib-k8s/package.json | 2 +- packages/libs/lib-server/package.json | 2 +- packages/libs/midway-flyway-js/package.json | 2 +- packages/plugins/plugin-cert/package.json | 2 +- packages/plugins/plugin-lib/package.json | 2 +- 15 files changed, 80 insertions(+), 35 deletions(-) diff --git a/docs/guide/changelogs/CHANGELOG.md b/docs/guide/changelogs/CHANGELOG.md index 4df926faa..bbcfbceea 100644 --- a/docs/guide/changelogs/CHANGELOG.md +++ b/docs/guide/changelogs/CHANGELOG.md @@ -3,6 +3,39 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.17](https://github.com/certd/certd/compare/v1.37.16...v1.37.17) (2025-12-29) + +### Bug Fixes + +* 发送证书到邮箱插件的邮件模版转为使用邮箱配置中的通用模版 ([c5a3003](https://github.com/certd/certd/commit/c5a3003cf7b640500a90ec2c8961859ffe6fdb18)) +* 首页最快到期证书,不包含已禁用的流水线 ([d731956](https://github.com/certd/certd/commit/d731956b066e4dbbe24d4de7b3d3679b355eb97c)) +* 修复部署到华为obs 报错的bug ([dd19afc](https://github.com/certd/certd/commit/dd19afce928a7f36312af9df1e7e5ed3eb1e214a)) +* 修复从模版创建的流水线不会自动执行的bug ([833808c](https://github.com/certd/certd/commit/833808c5deb716122b241d3d67349d2d6a18bf45)) +* 修复流水线列表step数量统计错误的bug ([0e5a4fb](https://github.com/certd/certd/commit/0e5a4fb098d3261b690c551cf2b95198cac487e7)) +* 修复用户删除后,用相同的oauth授权登录报错用户不存在的问题 ([e505916](https://github.com/certd/certd/commit/e5059165259e4d757abc811c0c14bbc4a3dbaee9)) +* 修复站点ip监控报主站与ip证书过期时间不一致的问题 ([62f8525](https://github.com/certd/certd/commit/62f8525dd5da95dc07ed103f602644c6e5f7f8e3)) +* 修复serverchan3 没有选择tags报错的bug ([5bbf210](https://github.com/certd/certd/commit/5bbf210394883c4893c365bd16e999490b6e9b41)) +* telegram 修复消息内存在横杠无法发出的bug ([5f4469e](https://github.com/certd/certd/commit/5f4469e306187c31d8a74d53b17ea3a213420367)) + +### Performance Improvements + +* 批量修改定时时间支持随机时间 ([d0f653d](https://github.com/certd/certd/commit/d0f653da9a2970920e961e7404ff04080bccd343)) +* 批量运行优化,支持普通运行和强制重新运行 ([039c62b](https://github.com/certd/certd/commit/039c62b09b37cdda35d33c6ee9adecad62dee75c)) +* 升级lego到4.30.1版本 ([136e8dd](https://github.com/certd/certd/commit/136e8dd7c5ff7199ff4b0bcca95b8a03aa847553)) +* 腾讯云EO增加请求参数打印 ([5b5deac](https://github.com/certd/certd/commit/5b5deac7d98684eda5c68384241a4d62c48d803b)) +* 优化阿里云esa清理证书时机 ([5359a76](https://github.com/certd/certd/commit/5359a7670fac5a18c4294b37a34227308a0deed6)) +* 优化源码方式部署,前端无需编译 ([13ddc97](https://github.com/certd/certd/commit/13ddc979ec7953e3db8db76dd23fd85a3b3c7997)) +* 支持部署到goedge ([44bf4b1](https://github.com/certd/certd/commit/44bf4b1cc1aafa2d711c3b8e408009f0ceb413eb)) +* 支持从阿里云商用证书订单中获取证书 ([8872466](https://github.com/certd/certd/commit/887246696861c3a0b1f99fd9ad978caea423c650)) +* 支持授权给管理员查看和下载用户证书 ([1347355](https://github.com/certd/certd/commit/1347355cb117694abe99da385352a19771a32e84)) +* 支持执行队列,避免同一时间触发流水线太多导致被限制 ([888d959](https://github.com/certd/certd/commit/888d9591fe9730b529e1c355d71f41e7ec9b479d)) +* 支持aws route53 dns ([cbb8319](https://github.com/certd/certd/commit/cbb8319cfa48673e81ec15894adc3376c173c97e)) +* 支持ucloud waf(未测试) ([a248367](https://github.com/certd/certd/commit/a248367b154c38661a6797ef64e37ec99d4e2abf)) +* 支持ucloud,上传到ussl,部署到ucdn ([e61daae](https://github.com/certd/certd/commit/e61daaee2d0dec19710cd4ec759219a071f2435e)) +* 执行队列数量支持设置 ([cd94488](https://github.com/certd/certd/commit/cd944882c3272adad4a2da94a3889a01fe05fe13)) +* aws route53 ([8caab1f](https://github.com/certd/certd/commit/8caab1fd9264df548f467b94202d567107b7a30b)) +* ip证书校验方式提示 ([773cada](https://github.com/certd/certd/commit/773cada57a01fb28ea8602062aaeec3d45109ea9)) + ## [1.37.16](https://github.com/certd/certd/compare/v1.37.15...v1.37.16) (2025-12-15) ### Bug Fixes diff --git a/docs/guide/plugins/access.md b/docs/guide/plugins/access.md index 836458a81..42cb93da5 100644 --- a/docs/guide/plugins/access.md +++ b/docs/guide/plugins/access.md @@ -66,7 +66,9 @@ | 62.| **新网授权(代理方式)** | | | 63.| **新网互联授权** | 仅支持代理账号,ip需要加入白名单 | | 64.| **中国移动CND授权** | | -| 65.| **雨云授权** | https://app.rainyun.com/ | +| 65.| **UCloud授权** | 优刻得授权 | +| 66.| **雨云授权** | https://app.rainyun.com/ | +| 67.| **GoEdge授权** | |