@sleighmaster/bmad 1.5.2 → 1.5.3
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.
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
# git-cliff configuration for CHANGELOG generation
|
|
2
2
|
# https://git-cliff.org
|
|
3
|
+
#
|
|
4
|
+
# Follows "Keep a Changelog" (https://keepachangelog.com) conventions
|
|
5
|
+
# Only user-facing changes are included. Internal dev details are filtered out.
|
|
3
6
|
|
|
4
7
|
[changelog]
|
|
5
|
-
header = "# Changelog\n\n"
|
|
8
|
+
header = "# Changelog\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com),\nand this project adheres to [Semantic Versioning](https://semver.org).\n\n"
|
|
6
9
|
body = """
|
|
7
10
|
## [{{ version }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
|
8
11
|
{% for group, commits in commits | group_by(attribute="group") %}
|
|
9
12
|
### {{ group | upper_first }}
|
|
10
13
|
{% for commit in commits %}
|
|
11
|
-
- {{ commit.message | split(pat="\n") | first }}
|
|
14
|
+
- {{ commit.message | split(pat="\n") | first | trim_start_matches(pat="feat: ") | trim_start_matches(pat="feat(") | trim_start_matches(pat="fix: ") | trim_start_matches(pat="fix(") }}
|
|
12
15
|
{%- endfor %}
|
|
13
16
|
{% endfor %}
|
|
14
17
|
|
|
@@ -20,13 +23,33 @@ trim = true
|
|
|
20
23
|
conventional_commits = true
|
|
21
24
|
filter_unconventional = true
|
|
22
25
|
commit_parsers = [
|
|
26
|
+
# --- Skip: internal/noise commits ---
|
|
23
27
|
{ message = "^docs: update CHANGELOG", skip = true },
|
|
24
|
-
{ message = "^
|
|
25
|
-
{ message = "^
|
|
26
|
-
{ message = "^
|
|
27
|
-
{ message = "
|
|
28
|
-
{ message = "
|
|
29
|
-
{ message = "^
|
|
28
|
+
{ message = "^chore: release", skip = true },
|
|
29
|
+
{ message = "^chore\\(release\\)", skip = true },
|
|
30
|
+
{ message = "^bump version", skip = true },
|
|
31
|
+
{ message = "^\\d+\\.\\d+\\.\\d+", skip = true },
|
|
32
|
+
{ message = "\\[skip ci\\]", skip = true },
|
|
33
|
+
{ message = "^Merge", skip = true },
|
|
34
|
+
{ message = "^merge", skip = true },
|
|
35
|
+
{ message = "^sync package", skip = true },
|
|
36
|
+
{ message = "^chore: bump", skip = true },
|
|
37
|
+
{ message = "^chore: sync", skip = true },
|
|
38
|
+
{ message = "^style", skip = true },
|
|
39
|
+
{ message = "^ci", skip = true },
|
|
40
|
+
{ message = "^build", skip = true },
|
|
41
|
+
{ message = "^test", skip = true },
|
|
42
|
+
{ message = "^docs", skip = true },
|
|
43
|
+
{ message = "^chore", skip = true },
|
|
44
|
+
{ message = "^refactor", skip = true },
|
|
45
|
+
# --- Include: user-facing changes only ---
|
|
46
|
+
{ message = "^feat", group = "Added" },
|
|
47
|
+
{ message = "^fix", group = "Fixed" },
|
|
48
|
+
{ message = "^hotfix", group = "Fixed" },
|
|
49
|
+
{ message = "^perf", group = "Changed" },
|
|
50
|
+
{ message = "^revert", group = "Removed" },
|
|
51
|
+
# Breaking changes (from footer or ! suffix)
|
|
52
|
+
{ body = "BREAKING.CHANGE", group = "Breaking Changes" },
|
|
30
53
|
]
|
|
31
54
|
filter_commits = false
|
|
32
55
|
tag_pattern = "v[0-9]*"
|