@storm-software/git-tools 2.56.0 → 2.57.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## 2.57.0 (2024-09-06)
2
+
3
+
4
+ ### Features
5
+
6
+ - **git-tools:** Added logic to skip signing during CI workflows ([4a7062ce](https://github.com/storm-software/storm-ops/commit/4a7062ce))
7
+
1
8
  ## 2.56.0 (2024-09-06)
2
9
 
3
10
 
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-2.55.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)
24
+ [![Version](https://img.shields.io/badge/version-2.56.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 -->
package/bin/git.js CHANGED
@@ -232276,7 +232276,7 @@ var runCommit = async (commitConfig = "@storm-software/git-tools/commit/config.j
232276
232276
  commandItems.push("-S");
232277
232277
  }
232278
232278
  commandItems.push(...["--file", commitMsgFile]);
232279
- const command = shellescape.default();
232279
+ const command = shellescape.default(commandItems);
232280
232280
  if (dryRun) {
232281
232281
  console.log("Will execute command:");
232282
232282
  console.log(command.replace(commitMsgFile, ".git/COMMIT_EDITMSG"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "2.56.0",
3
+ "version": "2.57.0",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing various git tools used in Storm workspaces.",
6
6
  "repository": {
package/src/cli/index.js CHANGED
@@ -228066,7 +228066,7 @@ var runCommit = async (commitConfig = "@storm-software/git-tools/commit/config.j
228066
228066
  commandItems.push("-S");
228067
228067
  }
228068
228068
  commandItems.push(...["--file", commitMsgFile]);
228069
- const command = shellescape.default();
228069
+ const command = shellescape.default(commandItems);
228070
228070
  if (dryRun) {
228071
228071
  console.log("Will execute command:");
228072
228072
  console.log(command.replace(commitMsgFile, ".git/COMMIT_EDITMSG"));
@@ -38089,7 +38089,7 @@ var runCommit = async (commitConfig = "@storm-software/git-tools/commit/config.j
38089
38089
  commandItems.push("-S");
38090
38090
  }
38091
38091
  commandItems.push(...["--file", commitMsgFile]);
38092
- const command = shellescape.default();
38092
+ const command = shellescape.default(commandItems);
38093
38093
  if (dryRun) {
38094
38094
  console.log("Will execute command:");
38095
38095
  console.log(command.replace(commitMsgFile, ".git/COMMIT_EDITMSG"));
package/src/index.js CHANGED
@@ -228168,7 +228168,7 @@ var runCommit = async (commitConfig = "@storm-software/git-tools/commit/config.j
228168
228168
  commandItems.push("-S");
228169
228169
  }
228170
228170
  commandItems.push(...["--file", commitMsgFile]);
228171
- const command = shellescape.default();
228171
+ const command = shellescape.default(commandItems);
228172
228172
  if (dryRun) {
228173
228173
  console.log("Will execute command:");
228174
228174
  console.log(command.replace(commitMsgFile, ".git/COMMIT_EDITMSG"));