@certd/lib-k8s 1.39.11 → 1.39.13

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +6 -3
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.39.13](https://github.com/certd/certd/compare/v1.39.12...v1.39.13) (2026-05-10)
7
+
8
+ ### Performance Improvements
9
+
10
+ * 重构自动加载模块并优化EAB授权处理 ([4755216](https://github.com/certd/certd/commit/4755216505ad18555a50da9d8008c2207c48df86))
11
+
12
+ ## [1.39.12](https://github.com/certd/certd/compare/v1.39.11...v1.39.12) (2026-04-29)
13
+
14
+ **Note:** Version bump only for package @certd/lib-k8s
15
+
6
16
  ## [1.39.11](https://github.com/certd/certd/compare/v1.39.10...v1.39.11) (2026-04-26)
7
17
 
8
18
  **Note:** Version bump only for package @certd/lib-k8s
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certd/lib-k8s",
3
3
  "private": false,
4
- "version": "1.39.11",
4
+ "version": "1.39.13",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -14,24 +14,27 @@
14
14
  "build3": "rollup -c",
15
15
  "build2": "vue-tsc --noEmit && vite build",
16
16
  "preview": "vite preview",
17
+ "test:unit": "cross-env NODE_ENV=unittest echo no unit tests",
17
18
  "pub": "npm publish",
18
19
  "compile": "tsc --skipLibCheck --watch"
19
20
  },
20
21
  "dependencies": {
21
- "@certd/basic": "^1.39.11",
22
+ "@certd/basic": "^1.39.13",
22
23
  "@kubernetes/client-node": "0.21.0"
23
24
  },
24
25
  "devDependencies": {
25
26
  "@types/chai": "^4.3.3",
26
27
  "@typescript-eslint/eslint-plugin": "^8.26.1",
27
28
  "@typescript-eslint/parser": "^8.26.1",
29
+ "cross-env": "^7.0.3",
28
30
  "eslint": "^8.24.0",
29
31
  "eslint-config-prettier": "^8.5.0",
30
32
  "eslint-plugin-prettier": "^4.2.1",
33
+ "esmock": "^2.7.5",
31
34
  "prettier": "^2.8.8",
32
35
  "rimraf": "^5.0.5",
33
36
  "tslib": "^2.8.1",
34
37
  "typescript": "^5.4.2"
35
38
  },
36
- "gitHead": "ec466dc818eace59825d8ae2ebbc9fc75a94a6b0"
39
+ "gitHead": "9f7d766cb386b299d4098141f4a47d23e16975e3"
37
40
  }