Skip to content

Commit b3b1171

Browse files
authored
[6.x] 6.24.0 (#14914)
1 parent 8472ded commit b3b1171

2 files changed

Lines changed: 28 additions & 1 deletion

File tree

.claude/skills/changelog/SKILL.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ Generate a changelog entry for the CHANGELOG.md file by following these steps:
88

99
## 1. Get commits since last tag
1010

11-
Run `git --no-pager log $(git describe --tags --abbrev=0)..HEAD --oneline --no-decorate --first-parent --no-merges`) to get the list of commits.
11+
Run the following to get the list of commits:
12+
13+
```
14+
git --no-pager log $(git merge-base $(git tag --list 'v*' --sort=-v:refname | head -n1) HEAD)..HEAD --oneline --no-decorate --first-parent --no-merges
15+
```
16+
17+
Note: The release workflow tags a separate "Build assets" commit that is *not* an ancestor of the branch, so the tag itself never lands on `6.x`. That means `git describe --tags` walks back to a stale tag. Instead, take the newest tag and use its `git merge-base` with `HEAD`, which resolves to the release commit that *is* on the branch.
1218

1319
## 2. Process each commit
1420

CHANGELOG.md

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

3+
## 6.24.0 (2026-07-01)
4+
5+
### What's new
6+
- OAuth Improvements [#14899](https://github.com/statamic/cms/issues/14899) by @jasonvarga
7+
- Add JSON language modes to code editor [#14904](https://github.com/statamic/cms/issues/14904) by @daun
8+
9+
### What's fixed
10+
- Remove `v6.` subdomain from documentation links [#14870](https://github.com/statamic/cms/issues/14870) by @duncanmcclean
11+
- Define emits in `PublishActions` component [#14872](https://github.com/statamic/cms/issues/14872) by @duncanmcclean
12+
- Style the list of blueprints as badges instead, improving legibility [#14878](https://github.com/statamic/cms/issues/14878) by @jaygeorge
13+
- Prevent browser re-sort of dictionary options with integer keys [#14875](https://github.com/statamic/cms/issues/14875) by @helloiamlukas
14+
- Improve the customize columns button layout so it no longer clashes with overflowing filters [#14885](https://github.com/statamic/cms/issues/14885) by @jaygeorge
15+
- Fix kebab-cased props not binding on Blade components in Antlers [#14891](https://github.com/statamic/cms/issues/14891) by @marcorieser
16+
- Tolerate a folded X-Statamic-Pagination header when warming [#14882](https://github.com/statamic/cms/issues/14882) by @mynetx
17+
- Fix icon fieldtype error when stored icon is missing [#14881](https://github.com/statamic/cms/issues/14881) by @mynetx
18+
- Pass active query scope handles to relationship index scopes [#14883](https://github.com/statamic/cms/issues/14883) by @mynetx
19+
- Fix stale Stache entry order when reordering structured collection [#14896](https://github.com/statamic/cms/issues/14896) by @joshuablum
20+
- Bump actions/checkout from 6.0.3 to 7.0.0 in the github-actions group [#14894](https://github.com/statamic/cms/issues/14894) by @dependabot
21+
22+
23+
324
## 6.23.0 (2026-06-23)
425

526
### What's new

0 commit comments

Comments
 (0)