@certd/basic 1.38.11 → 1.39.0

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,20 @@
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.39.0](https://github.com/certd/certd/compare/v1.38.12...v1.39.0) (2026-03-07)
7
+
8
+ ### Bug Fixes
9
+
10
+ * esxi部署失败的bug ([1e44115](https://github.com/certd/certd/commit/1e441154617e6516a9a3610412bf597128c62696))
11
+
12
+ ### Performance Improvements
13
+
14
+ * http请求增加建立连接超时配置 ([3c85602](https://github.com/certd/certd/commit/3c85602ab1fc1953cdc06a6cd75a971d14119179))
15
+
16
+ ## [1.38.12](https://github.com/certd/certd/compare/v1.38.11...v1.38.12) (2026-02-18)
17
+
18
+ **Note:** Version bump only for package @certd/basic
19
+
6
20
  ## [1.38.11](https://github.com/certd/certd/compare/v1.38.10...v1.38.11) (2026-02-16)
7
21
 
8
22
  **Note:** Version bump only for package @certd/basic
package/build.md CHANGED
@@ -1 +1 @@
1
- 23:40
1
+ 01:15
@@ -274,6 +274,7 @@ export function createAgent(opts = {}) {
274
274
  opts = merge({
275
275
  autoSelectFamily: true,
276
276
  autoSelectFamilyAttemptTimeout: 1000,
277
+ connectTimeout: 5000, // 连接建立超时
277
278
  }, opts);
278
279
  let httpAgent, httpsAgent;
279
280
  const httpProxy = opts.httpProxy;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certd/basic",
3
3
  "private": false,
4
- "version": "1.38.11",
4
+ "version": "1.39.0",
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": "1f002159e2a3c73fb5e00341a344effa07d6f653"
50
+ "gitHead": "3bb29abe32c311e1cf840f97d485d1147411992a"
51
51
  }