File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 the following to get the list of commits:
11+ First, fetch tags from origin — they sit off-branch (see note below) so they don't come down with a normal ` git pull ` /` git fetch ` on the branch:
12+
13+ ```
14+ git fetch origin --tags
15+ ```
16+
17+ Then run the following to get the list of commits:
1218
1319```
1420git --no-pager log $(git merge-base $(git tag --list 'v*' --sort=-v:refname | head -n1) HEAD)..HEAD --oneline --no-decorate --no-merges
Original file line number Diff line number Diff line change 11# Release Notes
22
3+ ## 6.24.2 (2026-07-08)
4+
5+ ### What's fixed
6+ - Convert date bindings to app timezone in raw SQL dump [ #14937 ] ( https://github.com/statamic/cms/issues/14937 ) by @marcorieser
7+ - Fix errors when a structure tree contains a null item [ #14941 ] ( https://github.com/statamic/cms/issues/14941 ) by @mynetx
8+ - Fix timezone handling in ` whereDate ` and ` whereTime ` [ #14940 ] ( https://github.com/statamic/cms/issues/14940 ) by @marcorieser
9+ - Fix dictionary single-select showing the raw id instead of the label [ #14935 ] ( https://github.com/statamic/cms/issues/14935 ) by @mynetx
10+ - Do not set the Inertia root view globally [ #14942 ] ( https://github.com/statamic/cms/issues/14942 ) by @lazerg
11+ - Fix asset filters not applying the first time [ #14943 ] ( https://github.com/statamic/cms/issues/14943 ) by @duncanmcclean
12+ - Prevent the focus box on filters from being clipped [ #14953 ] ( https://github.com/statamic/cms/issues/14953 ) by @jaygeorge
13+ - Fix incorrect update badges in the Control Panel updater [ #14890 ] ( https://github.com/statamic/cms/issues/14890 ) by @aaronbushnell
14+ - Fix global variable references not resolving through the data repository [ #14938 ] ( https://github.com/statamic/cms/issues/14938 ) by @lazerg
15+ - Tighten front-end form upload validation [ #14958 ] ( https://github.com/statamic/cms/issues/14958 ) by @jasonvarga
16+ - Escape submitted values in automagic email [ #14959 ] ( https://github.com/statamic/cms/issues/14959 ) by @jasonvarga
17+ - Fix broken asset reference when discarding a duplicate upload [ #14947 ] ( https://github.com/statamic/cms/issues/14947 ) by @lazerg
18+ - Fix relationship-based fields showing raw ids after saving [ #14948 ] ( https://github.com/statamic/cms/issues/14948 ) by @mynetx
19+ - Fix Bard set disappearing after save [ #14956 ] ( https://github.com/statamic/cms/issues/14956 ) by @eminos
20+
21+
22+
323## 6.24.1 (2026-07-03)
424
525### What's fixed
You can’t perform that action at this time.
0 commit comments