@certd/plugin-cert 1.31.1 → 1.31.3
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
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.3](https://github.com/certd/certd/compare/v1.31.2...v1.31.3) (2025-03-13)
|
|
7
|
+
|
|
8
|
+
### Performance Improvements
|
|
9
|
+
|
|
10
|
+
* 1panel支持 apikey方式授权 ([170b2af](https://github.com/certd/certd/commit/170b2afb0e3b125e4ed057f633fe895b5ac3ac22))
|
|
11
|
+
|
|
12
|
+
## [1.31.2](https://github.com/certd/certd/compare/v1.31.1...v1.31.2) (2025-03-12)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* 修复cname记录查找bug ([95fb4e3](https://github.com/certd/certd/commit/95fb4e3e8be6ca13cc43b451f6141d62190ba453))
|
|
17
|
+
|
|
6
18
|
## [1.31.1](https://github.com/certd/certd/compare/v1.31.0...v1.31.1) (2025-03-11)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @certd/plugin-cert
|
|
@@ -220,7 +220,7 @@ __decorate([
|
|
|
220
220
|
],
|
|
221
221
|
},
|
|
222
222
|
required: true,
|
|
223
|
-
helper: `DNS直接验证:域名是在阿里云、腾讯云、华为云、Cloudflare、NameSilo
|
|
223
|
+
helper: `DNS直接验证:域名是在阿里云、腾讯云、华为云、Cloudflare、NameSilo、西数、dns.la注册的,选它;
|
|
224
224
|
CNAME代理验证:支持任何注册商注册的域名,但第一次需要手动添加CNAME记录;
|
|
225
225
|
HTTP文件验证:不支持泛域名,需要配置网站文件上传`,
|
|
226
226
|
}),
|
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.3",
|
|
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.3",
|
|
19
|
+
"@certd/basic": "^1.31.3",
|
|
20
|
+
"@certd/pipeline": "^1.31.3",
|
|
21
|
+
"@certd/plugin-lib": "^1.31.3",
|
|
22
22
|
"@google-cloud/publicca": "^1.3.0",
|
|
23
23
|
"dayjs": "^1.11.7",
|
|
24
24
|
"jszip": "^3.10.1",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"@types/chai": "^4.3.3",
|
|
31
31
|
"@types/mocha": "^10.0.0",
|
|
32
32
|
"@types/psl": "^1.1.3",
|
|
33
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
34
|
-
"@typescript-eslint/parser": "^
|
|
33
|
+
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
34
|
+
"@typescript-eslint/parser": "^8.26.1",
|
|
35
35
|
"chai": "^4.3.6",
|
|
36
36
|
"eslint": "^8.24.0",
|
|
37
37
|
"eslint-config-prettier": "^8.5.0",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"tslib": "^2.8.1",
|
|
42
42
|
"typescript": "^5.4.2"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "cfbbac9796477f830e1f57f77777f6554da9e31d"
|
|
45
45
|
}
|