@certd/pipeline 1.1.4 → 1.1.6

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,16 @@
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.1.6](https://github.com/certd/certd/compare/v1.1.5...v1.1.6) (2023-07-10)
7
+
8
+ ### Bug Fixes
9
+
10
+ * 修复上传证书到腾讯云失败的bug ([e950322](https://github.com/certd/certd/commit/e950322232e19d1263b8552eefa5b0150fd7864e))
11
+
12
+ ## [1.1.5](https://github.com/certd/certd/compare/v1.1.4...v1.1.5) (2023-07-03)
13
+
14
+ **Note:** Version bump only for package @certd/pipeline
15
+
6
16
  ## [1.1.4](https://github.com/certd/certd/compare/v1.1.3...v1.1.4) (2023-07-03)
7
17
 
8
18
  ### Performance Improvements
@@ -76,7 +76,7 @@ export type Pipeline = Runnable & {
76
76
  userId: any;
77
77
  stages: Stage[];
78
78
  triggers: Trigger[];
79
- notifications: Notification[];
79
+ notifications?: Notification[];
80
80
  };
81
81
  export type Context = {
82
82
  [key: string]: any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certd/pipeline",
3
3
  "private": false,
4
- "version": "1.1.4",
4
+ "version": "1.1.6",
5
5
  "main": "./dist/bundle.js",
6
6
  "module": "./dist/bundle.mjs",
7
7
  "types": "./dist/d/index.d.ts",
@@ -18,7 +18,7 @@
18
18
  "qs": "^6.11.2"
19
19
  },
20
20
  "devDependencies": {
21
- "@certd/acme-client": "^1.1.4",
21
+ "@certd/acme-client": "^1.1.6",
22
22
  "@rollup/plugin-commonjs": "^23.0.4",
23
23
  "@rollup/plugin-json": "^6.0.0",
24
24
  "@rollup/plugin-node-resolve": "^15.0.1",
@@ -51,5 +51,5 @@
51
51
  "vite": "^4.3.8",
52
52
  "vue-tsc": "^1.6.5"
53
53
  },
54
- "gitHead": "b258e926209fef4cc4d633b0383eb54e26c516f9"
54
+ "gitHead": "28449c348edaa419e15f7bb3249901022893fe99"
55
55
  }