@certd/plugin-cert 1.31.5 → 1.31.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/plugin/cert-plugin/index.js +2 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.31.7](https://github.com/certd/certd/compare/v1.31.6...v1.31.7) (2025-03-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @certd/plugin-cert
|
|
9
|
+
|
|
10
|
+
## [1.31.6](https://github.com/certd/certd/compare/v1.31.5...v1.31.6) (2025-03-24)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @certd/plugin-cert
|
|
13
|
+
|
|
6
14
|
## [1.31.5](https://github.com/certd/certd/compare/v1.31.4...v1.31.5) (2025-03-22)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @certd/plugin-cert
|
|
@@ -32,7 +32,7 @@ let CertApplyPlugin = class CertApplyPlugin extends CertApplyBasePlugin {
|
|
|
32
32
|
useProxy = false;
|
|
33
33
|
reverseProxy = "";
|
|
34
34
|
skipLocalVerify = false;
|
|
35
|
-
maxCheckRetryCount =
|
|
35
|
+
maxCheckRetryCount = 20;
|
|
36
36
|
acme;
|
|
37
37
|
eab;
|
|
38
38
|
async onInit() {
|
|
@@ -437,7 +437,7 @@ __decorate([
|
|
|
437
437
|
__decorate([
|
|
438
438
|
TaskInput({
|
|
439
439
|
title: "检查解析重试次数",
|
|
440
|
-
value:
|
|
440
|
+
value: 20,
|
|
441
441
|
component: {
|
|
442
442
|
name: "a-input-number",
|
|
443
443
|
vModel: "value",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@certd/plugin-cert",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.31.
|
|
4
|
+
"version": "1.31.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"preview": "vite preview"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@certd/acme-client": "^1.31.
|
|
19
|
-
"@certd/basic": "^1.31.
|
|
20
|
-
"@certd/pipeline": "^1.31.
|
|
21
|
-
"@certd/plugin-lib": "^1.31.
|
|
18
|
+
"@certd/acme-client": "^1.31.7",
|
|
19
|
+
"@certd/basic": "^1.31.7",
|
|
20
|
+
"@certd/pipeline": "^1.31.7",
|
|
21
|
+
"@certd/plugin-lib": "^1.31.7",
|
|
22
22
|
"@google-cloud/publicca": "^1.3.0",
|
|
23
23
|
"dayjs": "^1.11.7",
|
|
24
24
|
"jszip": "^3.10.1",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"tslib": "^2.8.1",
|
|
42
42
|
"typescript": "^5.4.2"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "0725c663c49d72226c9fb55e2c0c5d134c93ba58"
|
|
45
45
|
}
|