Skip to content

Commit 470e08f

Browse files
committed
changelog
1 parent 1b16d4b commit 470e08f

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.claude/skills/changelog/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Run `git --no-pager log $(git describe --tags --abbrev=0)..HEAD --oneline --no-d
1515
For each commit:
1616
- Extract the PR number from the commit message (e.g., `(#13331)`)
1717
- Remove the commit SHA and `[6.x]` prefix from the message
18-
- Fetch the PR author from GitHub using `gh pr view <number> --json author --jq '.author.login'` for all PRs in a single command.
18+
- Fetch the PR author from GitHub using a sequential loop — do NOT use parallel background jobs (`&`) as they interleave stdout unpredictably. Use: `for pr in <numbers>; do echo -n "PR $pr: "; gh pr view $pr --json author --jq '.author.login'; done`
1919

2020
## 3. Skip certain commits
2121

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Release Notes
22

3+
## 6.7.3 (2026-03-25)
4+
5+
### What's fixed
6+
- Fix header z-index when creating a new nav [#14337](https://github.com/statamic/cms/issues/14337) by @jaygeorge
7+
- Remove fixed height from SVGs in UI labels to prevent flickering [#14338](https://github.com/statamic/cms/issues/14338) by @jaygeorge
8+
- Correct the Bard full-screen width [#14348](https://github.com/statamic/cms/issues/14348) by @jaygeorge
9+
- Fix duplicate translation for "Edit Fieldset" [#14349](https://github.com/statamic/cms/issues/14349) by @duncanmcclean
10+
- Delete unused `moment` translations [#14354](https://github.com/statamic/cms/issues/14354) by @duncanmcclean
11+
- Revert "Fix translator locale" [#14358](https://github.com/statamic/cms/issues/14358) by @jasonvarga
12+
- French translations [#14339](https://github.com/statamic/cms/issues/14339) by @ebeauchamps
13+
- German translations [#14352](https://github.com/statamic/cms/issues/14352) by @helloDanuk
14+
15+
16+
317
## 6.7.2 (2026-03-24)
418

519
### What's fixed

0 commit comments

Comments
 (0)