kubernetes-fluent-client 3.11.7 → 3.11.8

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 (1) hide show
  1. package/package.json +19 -34
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "kubernetes-fluent-client",
3
- "version": "3.11.7",
3
+ "version": "3.11.8",
4
4
  "description": "A @kubernetes/client-node fluent API wrapper that leverages K8s Server Side Apply.",
5
5
  "bin": "./dist/cli.js",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "type": "module",
9
9
  "engines": {
10
- "node": ">=20.6.0"
10
+ "node": ">=22.19.0"
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
@@ -37,7 +37,7 @@
37
37
  "scripts": {
38
38
  "prebuild": "rm -rf dist",
39
39
  "build": "tsc && npm pack",
40
- "semantic-release": "semantic-release",
40
+ "set-version": "node ./scripts/set-version.cjs",
41
41
  "test": "vitest src run --coverage",
42
42
  "test:e2e": "vitest run e2e/",
43
43
  "test:e2e:prep-crds": "kubectl apply -f test/ && npx tsx src/cli.ts crd ./test/datastore.crd.yaml e2e && npx tsx src/cli.ts crd https://raw.githubusercontent.com/defenseunicorns/kubernetes-fluent-client/refs/heads/main/test/webapp.crd.yaml e2e && npx tsx src/cli.ts crd https://raw.githubusercontent.com/defenseunicorns/kubernetes-fluent-client/refs/heads/main/test/webapp.crd.yaml -l json-schema e2e/schemas/webapp",
@@ -46,22 +46,23 @@
46
46
  "test:e2e:run": "npm run test:e2e:prep-cluster && npm run test:e2e:prep-crds && npm run test:e2e:prep-image && npm run test:e2e && npm run test:e2e:cleanup",
47
47
  "test:e2e:cleanup": "k3d cluster delete kfc-dev",
48
48
  "format:check": "eslint src e2e && prettier . --check",
49
+ "format:check:changed": "bash scripts/format-changed.sh",
49
50
  "format:fix": "eslint --fix src e2e && prettier . --write",
50
51
  "prepare": "if [ \"$NODE_ENV\" != 'production' ]; then husky; fi"
51
52
  },
52
53
  "dependencies": {
53
54
  "@kubernetes/client-node": "1.4.0",
54
55
  "http-status-codes": "2.3.0",
55
- "js-yaml": "4.1.1",
56
+ "js-yaml": "4.3.0",
56
57
  "node-fetch": "2.7.0",
57
58
  "quicktype-core": "23.2.6",
58
- "tsx": "4.21.0",
59
- "undici": "7.24.6",
59
+ "tsx": "4.22.0",
60
+ "undici": "8.4.1",
60
61
  "yargs": "18.0.0"
61
62
  },
62
63
  "devDependencies": {
63
- "@commitlint/cli": "20.5.0",
64
- "@commitlint/config-conventional": "20.5.0",
64
+ "@commitlint/cli": "20.5.3",
65
+ "@commitlint/config-conventional": "20.5.3",
65
66
  "@defenseunicorns/eslint-config": "1.2.0",
66
67
  "@eslint/eslintrc": "3.3.5",
67
68
  "@eslint/js": "10.0.1",
@@ -70,37 +71,21 @@
70
71
  "@types/urijs": "1.19.26",
71
72
  "@types/ws": "8.18.1",
72
73
  "@types/yargs": "17.0.35",
73
- "@typescript-eslint/eslint-plugin": "8.58.2",
74
- "@typescript-eslint/parser": "8.58.2",
75
- "@vitest/coverage-v8": "4.1.4",
74
+ "@typescript-eslint/eslint-plugin": "8.59.3",
75
+ "@typescript-eslint/parser": "8.59.3",
76
+ "@vitest/coverage-v8": "4.1.6",
76
77
  "command-line-args": "6.0.2",
77
- "eslint": "10.2.0",
78
- "eslint-plugin-jsdoc": "62.9.0",
79
- "globals": "17.5.0",
78
+ "eslint": "10.4.0",
79
+ "eslint-plugin-jsdoc": "63.0.0",
80
+ "globals": "17.6.0",
80
81
  "husky": "9.1.7",
81
82
  "lint-staged": "16.4.0",
82
83
  "prettier": "3.8.3",
83
- "semantic-release": "25.0.3",
84
- "typescript": "6.0.2",
85
- "vitest": "4.1.4"
84
+ "typescript": "6.0.3",
85
+ "vitest": "4.1.6"
86
86
  },
87
87
  "overrides": {
88
88
  "tar-fs": "3.1.1",
89
- "typescript-eslint": "8.58.0",
90
- "semantic-release@24.2.0": {
91
- "npm": {
92
- "glob": {
93
- "foreground-child": {
94
- "cross-spawn": "7.0.6"
95
- }
96
- }
97
- }
98
- }
99
- },
100
- "release": {
101
- "branches": [
102
- "main",
103
- "next"
104
- ]
89
+ "typescript-eslint": "8.58.0"
105
90
  }
106
- }
91
+ }