bulk-release 2.15.36 → 2.15.37
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 +5 -0
- package/package.json +1 -1
- package/src/main/js/steps/analyze.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## [2.15.37](https://github.com/semrel-extra/zx-bulk-release/compare/v2.15.36...v2.15.37) (2025-09-28)
|
|
2
|
+
|
|
3
|
+
### Fixes & improvements
|
|
4
|
+
* fix(67): Match Jira ticket numbers which usually have upper case letters (#72) ([0d55633](https://github.com/semrel-extra/zx-bulk-release/commit/0d55633ec17bdb50049d2b255a9fda3480c10620))
|
|
5
|
+
|
|
1
6
|
## [2.15.36](https://github.com/semrel-extra/zx-bulk-release/compare/v2.15.35...v2.15.36) (2025-09-27)
|
|
2
7
|
|
|
3
8
|
### Fixes & improvements
|
package/package.json
CHANGED
|
@@ -49,7 +49,7 @@ export const getSemanticChanges = async (cwd, from, to, rules = semanticRules) =
|
|
|
49
49
|
export const analyzeCommits = (commits, rules) =>
|
|
50
50
|
commits.reduce((acc, {subj, body, short, hash}) => {
|
|
51
51
|
rules.forEach(({group, releaseType, prefixes, keywords}) => {
|
|
52
|
-
const prefixMatcher = prefixes && new RegExp(`^(${prefixes.join('|')})(\\([a-
|
|
52
|
+
const prefixMatcher = prefixes && new RegExp(`^(${prefixes.join('|')})(\\([a-zA-Z0-9\\-_,]+\\))?:\\s.+$`)
|
|
53
53
|
const keywordsMatcher = keywords && new RegExp(`(${keywords.join('|')}):\\s(.+)`)
|
|
54
54
|
const change = subj.match(prefixMatcher)?.[0] || body.match(keywordsMatcher)?.[2]
|
|
55
55
|
|