@certd/basic 1.38.7 → 1.38.9

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.38.9](https://github.com/certd/certd/compare/v1.38.8...v1.38.9) (2026-02-09)
7
+
8
+ ### Bug Fixes
9
+
10
+ * esxi部署失败的bug ([6ab1fca](https://github.com/certd/certd/commit/6ab1fcaf894f7ce343af4b5bf4b0d67438df6618))
11
+
12
+ ## [1.38.8](https://github.com/certd/certd/compare/v1.38.7...v1.38.8) (2026-02-06)
13
+
14
+ **Note:** Version bump only for package @certd/basic
15
+
6
16
  ## [1.38.7](https://github.com/certd/certd/compare/v1.38.6...v1.38.7) (2026-02-05)
7
17
 
8
18
  **Note:** Version bump only for package @certd/basic
package/build.md CHANGED
@@ -1 +1 @@
1
- 16:26
1
+ 23:08
@@ -1,6 +1,6 @@
1
- import log4js, { CallStack, Level } from "log4js";
1
+ import { CallStack, Level } from "log4js";
2
2
  export declare function resetLogConfigure(): void;
3
- export declare const logger: log4js.Logger;
3
+ export declare const logger: ILogger;
4
4
  export declare function resetLogFilePath(filePath: string): void;
5
5
  export declare function buildLogger(write: (text: string) => void): PipelineLogger;
6
6
  export type ILogger = {
@@ -37,6 +37,7 @@ export type ILogger = {
37
37
  error(message: any, ...args: any[]): void;
38
38
  fatal(message: any, ...args: any[]): void;
39
39
  mark(message: any, ...args: any[]): void;
40
+ addSecret(secret: string): void;
40
41
  };
41
42
  export declare class PipelineLogger implements ILogger {
42
43
  callStackLinesToSkip: number;
@@ -50,9 +50,13 @@ export class PipelineLogger {
50
50
  customWriter;
51
51
  constructor(name, write) {
52
52
  this.customWriter = write;
53
+ //@ts-ignore
53
54
  this.logger = log4js.getLogger(name);
54
55
  }
55
56
  addSecret(secret) {
57
+ if (!secret) {
58
+ return;
59
+ }
56
60
  this._secrets.push(secret);
57
61
  }
58
62
  _doLog(level, ...args) {
@@ -1,4 +1,4 @@
1
- import * as _ from 'lodash-es';
1
+ import * as _ from "lodash-es";
2
2
  function isUnMergeable(srcValue) {
3
3
  return srcValue != null && srcValue instanceof UnMergeable;
4
4
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certd/basic",
3
3
  "private": false,
4
- "version": "1.38.7",
4
+ "version": "1.38.9",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -47,5 +47,5 @@
47
47
  "tslib": "^2.8.1",
48
48
  "typescript": "^5.4.2"
49
49
  },
50
- "gitHead": "29d37075dd600fa4898c5e38611e09db522e32fc"
50
+ "gitHead": "b30cb5d7dc8311af4863da7dc8781f7264ba0545"
51
51
  }