@storm-software/k8s-tools 0.42.189 → 0.42.191

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 +19 -0
  2. package/package.json +34 -33
package/CHANGELOG.md CHANGED
@@ -2,6 +2,25 @@
2
2
 
3
3
  # Changelog for Storm Ops - K8s Tools
4
4
 
5
+ ## [0.42.190](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.190) (05/15/2026)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Clean up dependencies in `package.json` files ([84994b720](https://github.com/storm-software/storm-ops/commit/84994b720))
10
+
11
+ ### Updated Dependencies
12
+
13
+ - Updated **workspace-tools** to **v1.295.75**
14
+ - Updated **config-tools** to **v1.190.15**
15
+ - Updated **config** to **v1.137.47**
16
+
17
+ ## [0.42.189](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.189) (05/15/2026)
18
+
19
+ ### Updated Dependencies
20
+
21
+ - Updated **workspace-tools** to **v1.295.74**
22
+ - Updated **config-tools** to **v1.190.14**
23
+
5
24
  ## [0.42.188](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.42.188) (05/15/2026)
6
25
 
7
26
  ### Updated Dependencies
package/package.json CHANGED
@@ -1,23 +1,31 @@
1
1
  {
2
2
  "name": "@storm-software/k8s-tools",
3
- "version": "0.42.189",
3
+ "version": "0.42.191",
4
+ "private": false,
4
5
  "description": "Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.",
6
+ "keywords": [
7
+ "helm",
8
+ "k8s",
9
+ "kubernetes",
10
+ "monorepo",
11
+ "storm",
12
+ "storm-ops",
13
+ "storm-stack",
14
+ "sullivanpj"
15
+ ],
16
+ "homepage": "https://stormsoftware.com",
17
+ "bugs": "https://github.com/storm-software/storm-ops/issues",
5
18
  "repository": {
6
19
  "type": "github",
7
20
  "url": "https://github.com/storm-software/storm-ops",
8
21
  "directory": "packages/k8s-tools"
9
22
  },
10
- "homepage": "https://stormsoftware.com",
11
- "bugs": "https://github.com/storm-software/storm-ops/issues",
23
+ "license": "Apache-2.0",
12
24
  "author": {
13
25
  "name": "Storm Software",
14
26
  "email": "contact@stormsoftware.com",
15
27
  "url": "https://stormsoftware.com"
16
28
  },
17
- "license": "Apache-2.0",
18
- "private": false,
19
- "main": "dist/index.js",
20
- "module": "dist/index.mjs",
21
29
  "exports": {
22
30
  "./package.json": "./package.json",
23
31
  "./docs/*": "./docs/*",
@@ -116,33 +124,13 @@
116
124
  "./generators/*/generator.js": "./dist/src/generators/*/generator.js",
117
125
  "./plugins/docker": "./dist/src/plugins/docker/index.js"
118
126
  },
127
+ "main": "dist/index.js",
128
+ "module": "dist/index.mjs",
119
129
  "typings": "dist/index.d.ts",
120
- "keywords": [
121
- "helm",
122
- "k8s",
123
- "kubernetes",
124
- "monorepo",
125
- "storm",
126
- "storm-ops",
127
- "storm-stack",
128
- "sullivanpj"
129
- ],
130
- "peerDependencies": {
131
- "@nx/devkit": "22.7.1",
132
- "prettier": "^3.8.3",
133
- "tsup": "8.4.0"
134
- },
135
- "peerDependenciesMeta": {
136
- "@nx-tools/container-metadata": { "optional": false },
137
- "@nx-tools/nx-container": { "optional": false },
138
- "@nx/devkit": { "optional": false },
139
- "@nx/workspace": { "optional": false },
140
- "nx": { "optional": false }
141
- },
142
130
  "dependencies": {
143
- "@storm-software/config": "^1.137.46",
144
- "@storm-software/config-tools": "^1.190.14",
145
- "@storm-software/workspace-tools": "^1.295.74",
131
+ "@storm-software/config": "^1.137.48",
132
+ "@storm-software/config-tools": "^1.190.16",
133
+ "@storm-software/workspace-tools": "^1.295.76",
146
134
  "defu": "6.1.4",
147
135
  "yaml": "^2.9.0"
148
136
  },
@@ -157,8 +145,21 @@
157
145
  "typescript": "^5.9.3",
158
146
  "untyped": "^2.0.0"
159
147
  },
148
+ "peerDependencies": {
149
+ "@nx/devkit": ">=22.7.1",
150
+ "nx": ">=22.7.1",
151
+ "prettier": "^3.8.3",
152
+ "tsup": "8.4.0"
153
+ },
154
+ "peerDependenciesMeta": {
155
+ "@nx-tools/container-metadata": { "optional": false },
156
+ "@nx-tools/nx-container": { "optional": false },
157
+ "@nx/devkit": { "optional": false },
158
+ "@nx/workspace": { "optional": false },
159
+ "nx": { "optional": false }
160
+ },
160
161
  "publishConfig": { "access": "public" },
161
162
  "executors": "./executors.json",
162
163
  "generators": "./generators.json",
163
- "gitHead": "0c334cad4cd3237b830127698face8e1f4f508fb"
164
+ "gitHead": "ac3b725aacca2de79c4225dbbe9763c632a8c44a"
164
165
  }