@storm-software/git-tools 2.123.6 → 2.123.7

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/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.123.4-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.123.5-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.cjs CHANGED
@@ -439,7 +439,7 @@ async function createPreset(variant = "monorepo") {
439
439
  );
440
440
  }
441
441
 
442
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.0/node_modules/conventional-commits-parser/dist/regex.js
442
+ // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/regex.js
443
443
  var nomatchRegex = /(?!.*)/;
444
444
  function join(parts, joiner) {
445
445
  return parts.map((val) => val.trim()).filter(Boolean).join(joiner);
@@ -459,7 +459,7 @@ function getReferencePartsRegex(issuePrefixes, issuePrefixesCaseSensitive) {
459
459
  return nomatchRegex;
460
460
  }
461
461
  const flags = issuePrefixesCaseSensitive ? "g" : "gi";
462
- return new RegExp(`(?:.*?)??\\s*([\\w-\\.\\/]*?)??(${join(issuePrefixes, "|")})([\\w-]*\\d+)`, flags);
462
+ return new RegExp(`(?:.*?)??\\s*([\\w-\\.\\/]*?)??(${join(issuePrefixes, "|")})([\\w-]+)(?=\\s|$|[,;)\\]])`, flags);
463
463
  }
464
464
  function getReferencesRegex(referenceActions) {
465
465
  if (!referenceActions) {
@@ -481,7 +481,7 @@ function getParserRegexes(options = {}) {
481
481
  };
482
482
  }
483
483
 
484
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.0/node_modules/conventional-commits-parser/dist/utils.js
484
+ // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/utils.js
485
485
  var SCISSOR = "------------------------ >8 ------------------------";
486
486
  function trimNewLines(input2) {
487
487
  const matches = input2.match(/[^\r\n]/);
@@ -521,7 +521,7 @@ function assignMatchedCorrespondence(target, matches, correspondence) {
521
521
  return target;
522
522
  }
523
523
 
524
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.0/node_modules/conventional-commits-parser/dist/options.js
524
+ // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/options.js
525
525
  var defaultOptions = {
526
526
  noteKeywords: ["BREAKING CHANGE", "BREAKING-CHANGE"],
527
527
  issuePrefixes: ["#"],
@@ -547,7 +547,7 @@ var defaultOptions = {
547
547
  fieldPattern: /^-(.*?)-$/
548
548
  };
549
549
 
550
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.0/node_modules/conventional-commits-parser/dist/CommitParser.js
550
+ // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/CommitParser.js
551
551
  function createCommitObject(initialData = {}) {
552
552
  return {
553
553
  merge: null,
package/bin/git.js CHANGED
@@ -421,7 +421,7 @@ async function createPreset(variant = "monorepo") {
421
421
  );
422
422
  }
423
423
 
424
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.0/node_modules/conventional-commits-parser/dist/regex.js
424
+ // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/regex.js
425
425
  var nomatchRegex = /(?!.*)/;
426
426
  function join(parts, joiner) {
427
427
  return parts.map((val) => val.trim()).filter(Boolean).join(joiner);
@@ -441,7 +441,7 @@ function getReferencePartsRegex(issuePrefixes, issuePrefixesCaseSensitive) {
441
441
  return nomatchRegex;
442
442
  }
443
443
  const flags = issuePrefixesCaseSensitive ? "g" : "gi";
444
- return new RegExp(`(?:.*?)??\\s*([\\w-\\.\\/]*?)??(${join(issuePrefixes, "|")})([\\w-]*\\d+)`, flags);
444
+ return new RegExp(`(?:.*?)??\\s*([\\w-\\.\\/]*?)??(${join(issuePrefixes, "|")})([\\w-]+)(?=\\s|$|[,;)\\]])`, flags);
445
445
  }
446
446
  function getReferencesRegex(referenceActions) {
447
447
  if (!referenceActions) {
@@ -463,7 +463,7 @@ function getParserRegexes(options = {}) {
463
463
  };
464
464
  }
465
465
 
466
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.0/node_modules/conventional-commits-parser/dist/utils.js
466
+ // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/utils.js
467
467
  var SCISSOR = "------------------------ >8 ------------------------";
468
468
  function trimNewLines(input2) {
469
469
  const matches = input2.match(/[^\r\n]/);
@@ -503,7 +503,7 @@ function assignMatchedCorrespondence(target, matches, correspondence) {
503
503
  return target;
504
504
  }
505
505
 
506
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.0/node_modules/conventional-commits-parser/dist/options.js
506
+ // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/options.js
507
507
  var defaultOptions = {
508
508
  noteKeywords: ["BREAKING CHANGE", "BREAKING-CHANGE"],
509
509
  issuePrefixes: ["#"],
@@ -529,7 +529,7 @@ var defaultOptions = {
529
529
  fieldPattern: /^-(.*?)-$/
530
530
  };
531
531
 
532
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.0/node_modules/conventional-commits-parser/dist/CommitParser.js
532
+ // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/CommitParser.js
533
533
  function createCommitObject(initialData = {}) {
534
534
  return {
535
535
  merge: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/git-tools",
3
- "version": "2.123.6",
3
+ "version": "2.123.7",
4
4
  "type": "module",
5
5
  "description": "Tools for managing Git repositories within a Nx workspace.",
6
6
  "repository": {
@@ -185,8 +185,8 @@
185
185
  "@inquirer/prompts": "7.2.1",
186
186
  "@nx/devkit": "^21.4.1",
187
187
  "@nx/js": "^21.4.1",
188
- "@storm-software/config": "^1.134.6",
189
- "@storm-software/config-tools": "^1.188.6",
188
+ "@storm-software/config": "^1.134.7",
189
+ "@storm-software/config-tools": "^1.188.7",
190
190
  "@textlint/ast-node-types": "14.4.2",
191
191
  "@textlint/markdown-to-ast": "14.4.2",
192
192
  "anchor-markdown-header": "0.7.0",
@@ -194,7 +194,7 @@
194
194
  "axios": "1.8.2",
195
195
  "chalk": "^4.1.2",
196
196
  "chalk-template": "1.1.0",
197
- "conventional-changelog-storm-software": "^0.3.6",
197
+ "conventional-changelog-storm-software": "^0.3.7",
198
198
  "htmlparser2": "10.0.0",
199
199
  "jsonc-parser": "3.2.1",
200
200
  "nx": "^21.4.1",
@@ -209,12 +209,12 @@
209
209
  "devDependencies": {
210
210
  "@types/node": "^22.10.2",
211
211
  "commander": "^12.1.0",
212
- "conventional-commits-parser": "^6.2.0",
212
+ "conventional-commits-parser": "^6.2.1",
213
213
  "defu": "6.1.4",
214
214
  "semver": "7.6.2",
215
215
  "simple-git": "^3.28.0",
216
216
  "tsup": "8.4.0"
217
217
  },
218
218
  "publishConfig": { "access": "public" },
219
- "gitHead": "feabcb14d4383826b5e1761f8593966eaad96d1c"
219
+ "gitHead": "f16b438d3b1a16b47bbed4a8564885f88462b331"
220
220
  }