@storm-software/k8s-tools 0.33.73 → 0.35.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.
Files changed (44) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/README.md +2 -1
  3. package/dist/{chunk-3FCME2FS.mjs → chunk-2FO2YMCU.mjs} +550 -248
  4. package/dist/{chunk-KU6MH4UF.js → chunk-2HX3PTJZ.js} +3 -3
  5. package/dist/{chunk-DB4FPULK.mjs → chunk-34DSHAFO.mjs} +1 -1
  6. package/dist/{chunk-BHZBTBM6.js → chunk-65PVMD3D.js} +4 -4
  7. package/dist/{chunk-QDXEIRJV.js → chunk-ENUPAJDC.js} +6 -6
  8. package/dist/{chunk-XQ6ELAFS.mjs → chunk-G4YBLQT3.mjs} +3 -3
  9. package/dist/{chunk-7CVGLDYX.js → chunk-GHMQRIFB.js} +25 -25
  10. package/dist/{chunk-DU26E6TO.js → chunk-GIBAF5XB.js} +2 -2
  11. package/dist/{chunk-NOK6AZUO.mjs → chunk-GNJWDJDM.mjs} +3 -3
  12. package/dist/{chunk-YFYE4UFJ.js → chunk-HM4ZAY7F.js} +4 -4
  13. package/dist/{chunk-QO6CAV2A.js → chunk-HOSWW7JC.js} +19 -19
  14. package/dist/{chunk-GYP2ZHLK.mjs → chunk-IOVEMARV.mjs} +1 -1
  15. package/dist/{chunk-BF225HO4.mjs → chunk-JIUECHUZ.mjs} +2 -2
  16. package/dist/{chunk-AH4F7JLD.js → chunk-M35UNJM7.js} +550 -248
  17. package/dist/{chunk-FR7P26YN.mjs → chunk-NOK3A7PN.mjs} +1 -1
  18. package/dist/{chunk-7CJ2MXQW.mjs → chunk-OSGPDXOI.mjs} +1 -1
  19. package/dist/{chunk-YQ5GWKM5.mjs → chunk-PDN74IUT.mjs} +2 -2
  20. package/dist/{chunk-GO3R6YC6.mjs → chunk-VOIOFKIB.mjs} +1 -1
  21. package/dist/{chunk-CH5LNYVN.mjs → chunk-W7CSZXVE.mjs} +2 -2
  22. package/dist/executors.js +5 -5
  23. package/dist/executors.mjs +6 -6
  24. package/dist/generators.js +6 -6
  25. package/dist/generators.mjs +6 -6
  26. package/dist/index.js +9 -9
  27. package/dist/index.mjs +11 -11
  28. package/dist/src/executors/container-publish/executor.js +4 -4
  29. package/dist/src/executors/container-publish/executor.mjs +4 -4
  30. package/dist/src/executors/helm-package/executor.js +4 -4
  31. package/dist/src/executors/helm-package/executor.mjs +5 -5
  32. package/dist/src/generators/helm-chart/generator.js +5 -5
  33. package/dist/src/generators/helm-chart/generator.mjs +5 -5
  34. package/dist/src/generators/helm-dependency/generator.js +5 -5
  35. package/dist/src/generators/helm-dependency/generator.mjs +5 -5
  36. package/dist/src/plugins/docker/index.js +3 -3
  37. package/dist/src/plugins/docker/index.mjs +3 -3
  38. package/dist/src/types.mjs +1 -1
  39. package/dist/src/utils/client.mjs +2 -2
  40. package/dist/src/utils/ensure-init.mjs +1 -1
  41. package/dist/src/utils/index.mjs +3 -3
  42. package/dist/src/utils/prettier.mjs +2 -2
  43. package/dist/tsup.config.mjs +1 -1
  44. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,52 @@
2
2
 
3
3
  # Changelog for Storm Ops - K8s Tools
4
4
 
5
+ ## [0.34.1](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.34.1) (2025-08-05)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Updated workspace package links
10
+ ([51780ded4](https://github.com/storm-software/storm-ops/commit/51780ded4))
11
+ - **monorepo:** Regenerate README markdown files
12
+ ([1763510bb](https://github.com/storm-software/storm-ops/commit/1763510bb))
13
+
14
+ ### Updated Dependencies
15
+
16
+ - Updated workspace-tools to 1.280.1
17
+ - Updated config-tools to 1.179.1
18
+ - Updated config to 1.127.1
19
+
20
+ ## [0.34.0](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.34.0) (2025-08-05)
21
+
22
+ ### Features
23
+
24
+ - **workspace-tools:** Added the `enableTypeCheck` option to the base Nx plugin
25
+ ([c11a3c96e](https://github.com/storm-software/storm-ops/commit/c11a3c96e))
26
+
27
+ ### Miscellaneous
28
+
29
+ - **monorepo:** Regenerate README markdown files
30
+ ([cf6bd2d92](https://github.com/storm-software/storm-ops/commit/cf6bd2d92))
31
+
32
+ ### Updated Dependencies
33
+
34
+ - Updated workspace-tools to 1.280.0
35
+ - Updated config-tools to 1.179.0
36
+ - Updated config to 1.127.0
37
+
38
+ ## [0.33.73](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.33.73) (2025-08-05)
39
+
40
+ ### Miscellaneous
41
+
42
+ - **monorepo:** Regenerate README markdown files
43
+ ([21fa7cc54](https://github.com/storm-software/storm-ops/commit/21fa7cc54))
44
+
45
+ ### Updated Dependencies
46
+
47
+ - Updated workspace-tools to 1.279.3
48
+ - Updated config-tools to 1.178.7
49
+ - Updated config to 1.126.11
50
+
5
51
  ## [0.33.72](https://github.com/storm-software/storm-ops/releases/tag/k8s-tools%400.33.72) (2025-08-05)
6
52
 
7
53
  ### Miscellaneous
package/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.33.71-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.34.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
40
40
 
41
41
  <!-- START doctoc -->
42
42
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
43
+
43
44
  ## Table of Contents
44
45
 
45
46
  - [Storm Kubernetes Tools](#storm-kubernetes-tools)