From ac70821fea8fb283709870a3eb08f1cd92c94aeb Mon Sep 17 00:00:00 2001 From: xiaojunnuo Date: Tue, 18 Nov 2025 01:16:57 +0800 Subject: [PATCH] v1.37.8 --- CHANGELOG.md | 11 ++++++++ lerna.json | 2 +- packages/core/acme-client/CHANGELOG.md | 4 +++ packages/core/acme-client/package.json | 4 +-- packages/core/basic/CHANGELOG.md | 4 +++ packages/core/basic/package.json | 2 +- packages/core/pipeline/CHANGELOG.md | 4 +++ 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 | 4 +++ 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 | 4 +++ 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 | 6 +++++ packages/ui/certd-client/package.json | 6 ++--- packages/ui/certd-server/CHANGELOG.md | 10 ++++++++ packages/ui/certd-server/package.json | 28 ++++++++++----------- 28 files changed, 115 insertions(+), 44 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81a584d8..3f93e191 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.37.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +### Bug Fixes + +* **plugins/woai-cdn:** 修正默认接口域名与帮助链接中的路径 ([#576](https://github.com/certd/certd/issues/576)) @LjyLab ([d20046c](https://github.com/certd/certd/commit/d20046c86681ea177ece434423b7c81a76b437fb)) + +### Performance Improvements + +* 修复西数解析记录添加失败的bug,支持部署证书到西数虚拟主机 ([1102952](https://github.com/certd/certd/commit/1102952b4703e8c0bbc17b0700c0ed3ef6f866d3)) +* 支持回车键触发登录 ([eb5c88f](https://github.com/certd/certd/commit/eb5c88fbb2901f1a9669429a7cd8dc76f6806d01)) + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 280d2299..d60eb2a9 100644 --- a/lerna.json +++ b/lerna.json @@ -9,5 +9,5 @@ } }, "npmClient": "pnpm", - "version": "1.37.7" + "version": "1.37.8" } diff --git a/packages/core/acme-client/CHANGELOG.md b/packages/core/acme-client/CHANGELOG.md index 7070b20f..58122d8a 100644 --- a/packages/core/acme-client/CHANGELOG.md +++ b/packages/core/acme-client/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.8](https://github.com/publishlab/node-acme-client/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/acme-client + ## [1.37.7](https://github.com/publishlab/node-acme-client/compare/v1.37.6...v1.37.7) (2025-11-12) ### Performance Improvements diff --git a/packages/core/acme-client/package.json b/packages/core/acme-client/package.json index 6c5d7b31..a860d07e 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.7", + "version": "1.37.8", "type": "module", "module": "scr/index.js", "main": "src/index.js", @@ -18,7 +18,7 @@ "types" ], "dependencies": { - "@certd/basic": "^1.37.7", + "@certd/basic": "^1.37.8", "@peculiar/x509": "^1.11.0", "asn1js": "^3.0.5", "axios": "^1.7.2", diff --git a/packages/core/basic/CHANGELOG.md b/packages/core/basic/CHANGELOG.md index 2f14e645..446deb36 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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/basic + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) ### Performance Improvements diff --git a/packages/core/basic/package.json b/packages/core/basic/package.json index 3b4dbce9..f00fd43d 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.7", + "version": "1.37.8", "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 05ebe76a..fdfbab65 100644 --- a/packages/core/pipeline/CHANGELOG.md +++ b/packages/core/pipeline/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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/pipeline + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) **Note:** Version bump only for package @certd/pipeline diff --git a/packages/core/pipeline/package.json b/packages/core/pipeline/package.json index c0e9cd27..7223fed6 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.7", + "version": "1.37.8", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", @@ -18,8 +18,8 @@ "compile": "tsc --skipLibCheck --watch" }, "dependencies": { - "@certd/basic": "^1.37.7", - "@certd/plus-core": "^1.37.7", + "@certd/basic": "^1.37.8", + "@certd/plus-core": "^1.37.8", "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 8d5ec049..d543de19 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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/lib-huawei + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) **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 39a1aa19..405d4212 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.7", + "version": "1.37.8", "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 bd34f081..e4de928c 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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/lib-iframe + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) **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 b6cbcc7c..24393431 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.7", + "version": "1.37.8", "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 b480f846..33531bf0 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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/jdcloud + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) **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 6b651795..82053302 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.7", + "version": "1.37.8", "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 734a0000..7d7a06fd 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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/lib-k8s + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) **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 1e98d6e8..8a7eb06a 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.7", + "version": "1.37.8", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", @@ -17,7 +17,7 @@ "pub": "npm publish" }, "dependencies": { - "@certd/basic": "^1.37.7", + "@certd/basic": "^1.37.8", "@kubernetes/client-node": "0.21.0" }, "devDependencies": { diff --git a/packages/libs/lib-server/CHANGELOG.md b/packages/libs/lib-server/CHANGELOG.md index e34317f8..28a81a27 100644 --- a/packages/libs/lib-server/CHANGELOG.md +++ b/packages/libs/lib-server/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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/lib-server + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) **Note:** Version bump only for package @certd/lib-server diff --git a/packages/libs/lib-server/package.json b/packages/libs/lib-server/package.json index 072a2b67..0d6aacd3 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.7", + "version": "1.37.8", "description": "midway with flyway, sql upgrade way ", "private": false, "type": "module", @@ -28,11 +28,11 @@ ], "license": "AGPL", "dependencies": { - "@certd/acme-client": "^1.37.7", - "@certd/basic": "^1.37.7", - "@certd/pipeline": "^1.37.7", - "@certd/plugin-lib": "^1.37.7", - "@certd/plus-core": "^1.37.7", + "@certd/acme-client": "^1.37.8", + "@certd/basic": "^1.37.8", + "@certd/pipeline": "^1.37.8", + "@certd/plugin-lib": "^1.37.8", + "@certd/plus-core": "^1.37.8", "@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 7d53fc72..e42cb262 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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/midway-flyway-js + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) **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 9b74ac40..9ad70ba4 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.7", + "version": "1.37.8", "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 4583c50f..d28e2aa1 100644 --- a/packages/plugins/plugin-cert/CHANGELOG.md +++ b/packages/plugins/plugin-cert/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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/plugin-cert + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) ### Performance Improvements diff --git a/packages/plugins/plugin-cert/package.json b/packages/plugins/plugin-cert/package.json index 009235d9..b4d47003 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.7", + "version": "1.37.8", "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.7", - "@certd/basic": "^1.37.7", - "@certd/pipeline": "^1.37.7", - "@certd/plugin-lib": "^1.37.7", + "@certd/acme-client": "^1.37.8", + "@certd/basic": "^1.37.8", + "@certd/pipeline": "^1.37.8", + "@certd/plugin-lib": "^1.37.8", "@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 6254845c..206d9112 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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +**Note:** Version bump only for package @certd/plugin-lib + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) ### Performance Improvements diff --git a/packages/plugins/plugin-lib/package.json b/packages/plugins/plugin-lib/package.json index 35bc2e13..a4908efc 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.7", + "version": "1.37.8", "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.7", - "@certd/pipeline": "^1.37.7", + "@certd/basic": "^1.37.8", + "@certd/pipeline": "^1.37.8", "@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 c78fc38f..d4258e7f 100644 --- a/packages/ui/certd-client/CHANGELOG.md +++ b/packages/ui/certd-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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +### Performance Improvements + +* 支持回车键触发登录 ([eb5c88f](https://github.com/certd/certd/commit/eb5c88fbb2901f1a9669429a7cd8dc76f6806d01)) + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) ### Bug Fixes diff --git a/packages/ui/certd-client/package.json b/packages/ui/certd-client/package.json index 9d7179d2..4bd25199 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.7", + "version": "1.37.8", "private": true, "scripts": { "dev": "vite --open", @@ -106,8 +106,8 @@ "zod-defaults": "^0.1.3" }, "devDependencies": { - "@certd/lib-iframe": "^1.37.7", - "@certd/pipeline": "^1.37.7", + "@certd/lib-iframe": "^1.37.8", + "@certd/pipeline": "^1.37.8", "@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 12ac74ad..1fd7677e 100644 --- a/packages/ui/certd-server/CHANGELOG.md +++ b/packages/ui/certd-server/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.8](https://github.com/certd/certd/compare/v1.37.7...v1.37.8) (2025-11-17) + +### Bug Fixes + +* **plugins/woai-cdn:** 修正默认接口域名与帮助链接中的路径 ([#576](https://github.com/certd/certd/issues/576)) @LjyLab ([d20046c](https://github.com/certd/certd/commit/d20046c86681ea177ece434423b7c81a76b437fb)) + +### Performance Improvements + +* 修复西数解析记录添加失败的bug,支持部署证书到西数虚拟主机 ([1102952](https://github.com/certd/certd/commit/1102952b4703e8c0bbc17b0700c0ed3ef6f866d3)) + ## [1.37.7](https://github.com/certd/certd/compare/v1.37.6...v1.37.7) (2025-11-12) ### Performance Improvements diff --git a/packages/ui/certd-server/package.json b/packages/ui/certd-server/package.json index 80b579fb..86141cda 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.7", + "version": "1.37.8", "description": "fast-server base midway", "private": true, "type": "module", @@ -45,20 +45,20 @@ "@aws-sdk/client-cloudfront": "^3.699.0", "@aws-sdk/client-iam": "^3.699.0", "@aws-sdk/client-s3": "^3.705.0", - "@certd/acme-client": "^1.37.7", - "@certd/basic": "^1.37.7", - "@certd/commercial-core": "^1.37.7", + "@certd/acme-client": "^1.37.8", + "@certd/basic": "^1.37.8", + "@certd/commercial-core": "^1.37.8", "@certd/cv4pve-api-javascript": "^8.4.2", - "@certd/jdcloud": "^1.37.7", - "@certd/lib-huawei": "^1.37.7", - "@certd/lib-k8s": "^1.37.7", - "@certd/lib-server": "^1.37.7", - "@certd/midway-flyway-js": "^1.37.7", - "@certd/pipeline": "^1.37.7", - "@certd/plugin-cert": "^1.37.7", - "@certd/plugin-lib": "^1.37.7", - "@certd/plugin-plus": "^1.37.7", - "@certd/plus-core": "^1.37.7", + "@certd/jdcloud": "^1.37.8", + "@certd/lib-huawei": "^1.37.8", + "@certd/lib-k8s": "^1.37.8", + "@certd/lib-server": "^1.37.8", + "@certd/midway-flyway-js": "^1.37.8", + "@certd/pipeline": "^1.37.8", + "@certd/plugin-cert": "^1.37.8", + "@certd/plugin-lib": "^1.37.8", + "@certd/plugin-plus": "^1.37.8", + "@certd/plus-core": "^1.37.8", "@huaweicloud/huaweicloud-sdk-cdn": "^3.1.120", "@huaweicloud/huaweicloud-sdk-core": "^3.1.120", "@koa/cors": "^5.0.0",