@storm-software/terraform-tools 0.66.81 → 0.66.82

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 (36) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/{chunk-DQLLLQ3W.js → chunk-32ZQWQIT.js} +1 -1
  3. package/dist/{chunk-BYMZHOCC.js → chunk-4C2JLEGM.js} +157 -157
  4. package/dist/{chunk-JFUM7ZZB.mjs → chunk-4HFRNBTV.mjs} +1 -1
  5. package/dist/{chunk-TBA2JJ4J.mjs → chunk-5KCR6NZ4.mjs} +1 -1
  6. package/dist/{chunk-SAKJKPCQ.js → chunk-FHJ2WS6Y.js} +2 -2
  7. package/dist/{chunk-6FYSEZWH.mjs → chunk-FXNK7PAR.mjs} +1 -1
  8. package/dist/{chunk-DZ42ZKYZ.mjs → chunk-IEIKPI3T.mjs} +1 -1
  9. package/dist/{chunk-3IRIVVDV.mjs → chunk-P6HUD4HG.mjs} +1 -1
  10. package/dist/{chunk-YYE5IN55.js → chunk-RNHIB3GP.js} +2 -2
  11. package/dist/{chunk-J57WHN7L.mjs → chunk-SZRRECOC.mjs} +1 -1
  12. package/dist/{chunk-6ETHBIXV.js → chunk-UWKE3D5R.js} +2 -2
  13. package/dist/{chunk-E4ESQN5K.js → chunk-VUFJ736C.js} +2 -2
  14. package/dist/{chunk-523C2S52.mjs → chunk-XGK3D7O7.mjs} +1 -1
  15. package/dist/{chunk-3FDOVLTY.js → chunk-XH3MWODV.js} +2 -2
  16. package/dist/executors.js +6 -6
  17. package/dist/executors.mjs +6 -6
  18. package/dist/generators.js +3 -3
  19. package/dist/generators.mjs +2 -2
  20. package/dist/index.js +8 -8
  21. package/dist/index.mjs +7 -7
  22. package/dist/src/base/index.js +3 -3
  23. package/dist/src/base/index.mjs +2 -2
  24. package/dist/src/base/terraform-executor.js +3 -3
  25. package/dist/src/base/terraform-executor.mjs +2 -2
  26. package/dist/src/executors/apply/executor.js +4 -4
  27. package/dist/src/executors/apply/executor.mjs +3 -3
  28. package/dist/src/executors/destroy/executor.js +4 -4
  29. package/dist/src/executors/destroy/executor.mjs +3 -3
  30. package/dist/src/executors/output/executor.js +4 -4
  31. package/dist/src/executors/output/executor.mjs +3 -3
  32. package/dist/src/executors/plan/executor.js +4 -4
  33. package/dist/src/executors/plan/executor.mjs +3 -3
  34. package/dist/src/generators/init/init.js +3 -3
  35. package/dist/src/generators/init/init.mjs +2 -2
  36. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  # Changelog for Storm Ops - Terraform Tools
4
4
 
5
+ ## [0.66.81](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.81) (01/14/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **workspace-tools** to **v1.294.25**
10
+ - Updated **config-tools** to **v1.188.79**
11
+
5
12
  ## [0.66.80](https://github.com/storm-software/storm-ops/releases/tag/terraform-tools%400.66.80) (01/14/2026)
6
13
 
7
14
  ### Updated Dependencies
@@ -115,7 +115,7 @@ function isUnicodeSupported() {
115
115
  var useIcon = (c, fallback) => isUnicodeSupported() ? c : fallback;
116
116
  var CONSOLE_ICONS = {
117
117
  [LogLevelLabel.ERROR]: useIcon("\u2718", "\xD7"),
118
- [LogLevelLabel.FATAL]: useIcon("\u2622", "\xD7"),
118
+ [LogLevelLabel.FATAL]: useIcon("\u{1F571}", "\xD7"),
119
119
  [LogLevelLabel.WARN]: useIcon("\u26A0", "\u203C"),
120
120
  [LogLevelLabel.INFO]: useIcon("\u2139", "i"),
121
121
  [LogLevelLabel.SUCCESS]: useIcon("\u2714", "\u221A"),