@certd/plugin-lib 1.38.0 → 1.38.1
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 +6 -0
- package/dist/lib/index.d.ts +0 -1
- package/dist/lib/index.js +0 -1
- package/package.json +6 -6
- package/dist/lib/check.d.ts +0 -6
- package/dist/lib/check.js +0 -13
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.38.1](https://github.com/certd/certd/compare/v1.38.0...v1.38.1) (2026-01-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 修复自定义插件name丢失author导致找不到插件的bug ([2fbb58e](https://github.com/certd/certd/commit/2fbb58eb2b239eab4864f90aa72b0ef2ada38e8f))
|
|
11
|
+
|
|
6
12
|
# [1.38.0](https://github.com/certd/certd/compare/v1.37.17...v1.38.0) (2026-01-13)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/dist/lib/index.d.ts
CHANGED
package/dist/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@certd/plugin-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.38.
|
|
4
|
+
"version": "1.38.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"@alicloud/pop-core": "^1.7.10",
|
|
23
23
|
"@alicloud/tea-util": "^1.4.11",
|
|
24
24
|
"@aws-sdk/client-s3": "^3.964.0",
|
|
25
|
-
"@certd/acme-client": "^1.38.
|
|
26
|
-
"@certd/basic": "^1.38.
|
|
27
|
-
"@certd/pipeline": "^1.38.
|
|
28
|
-
"@certd/plus-core": "^1.38.
|
|
25
|
+
"@certd/acme-client": "^1.38.1",
|
|
26
|
+
"@certd/basic": "^1.38.1",
|
|
27
|
+
"@certd/pipeline": "^1.38.1",
|
|
28
|
+
"@certd/plus-core": "^1.38.1",
|
|
29
29
|
"@kubernetes/client-node": "0.21.0",
|
|
30
30
|
"ali-oss": "^6.22.0",
|
|
31
31
|
"basic-ftp": "^5.0.5",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"tslib": "^2.8.1",
|
|
58
58
|
"typescript": "^5.4.2"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "2c80c35b21b3f435e835167fca13db510bbc38a2"
|
|
61
61
|
}
|
package/dist/lib/check.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { AbstractTaskPlugin, TaskInstanceContext } from "@certd/pipeline";
|
|
2
|
-
export declare function mustPlus(): void;
|
|
3
|
-
export declare abstract class AbstractPlusTaskPlugin extends AbstractTaskPlugin {
|
|
4
|
-
setCtx(ctx: TaskInstanceContext): void;
|
|
5
|
-
abstract execute(): Promise<void>;
|
|
6
|
-
}
|
package/dist/lib/check.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { AbstractTaskPlugin } from "@certd/pipeline";
|
|
2
|
-
import { isPlus } from "@certd/plus-core";
|
|
3
|
-
export function mustPlus() {
|
|
4
|
-
if (!isPlus()) {
|
|
5
|
-
throw new Error("此插件仅供专业版中使用");
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
export class AbstractPlusTaskPlugin extends AbstractTaskPlugin {
|
|
9
|
-
setCtx(ctx) {
|
|
10
|
-
super.setCtx(ctx);
|
|
11
|
-
mustPlus();
|
|
12
|
-
}
|
|
13
|
-
}
|