Skip to content

Commit b8ad194

Browse files
committed
Merge remote-tracking branch 'origin/6.x' into disable-elevated-session
# Conflicts: # src/Http/Middleware/CP/RequireElevatedSession.php
2 parents 5158dfe + 79cdda5 commit b8ad194

173 files changed

Lines changed: 6812 additions & 3272 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/tests.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,16 @@ jobs:
3737
uses: tj-actions/changed-files@v46
3838
with:
3939
files: |
40-
config
41-
lang
42-
resources/users
43-
resources/views
44-
routes
45-
src
46-
tests
40+
config/**
41+
lang/**
42+
resources/users/**
43+
resources/views/**
44+
routes/**
45+
src/**
46+
tests/**
4747
composer.json
4848
phpunit.xml.dist
4949
.github/workflows/tests.yml
50-
tests/Composer/__fixtures__
5150
**.php
5251
5352
- name: Determine whether tests should run

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ignore-scripts=true
2+
min-release-age=3

.storybook/main.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ const config: StorybookConfig = {
2525
'@api': resolve(process.cwd(), 'resources/js/api.js'),
2626
};
2727
}
28+
config.build = {
29+
...config.build,
30+
reportCompressedSize: false,
31+
};
2832
return config;
2933
},
3034
};

.storybook/preview.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {router} from '@inertiajs/vue3';
55
import {action} from 'storybook/actions';
66
import './storybook.css';
77
import './theme.css';
8-
import {translate} from '@/translations/translator';
8+
import {translate, translateChoice} from '@/translations/translator';
99
import registerUiComponents from '@/bootstrap/ui';
1010
import DateFormatter from '@/components/DateFormatter';
1111
import NumberFormatter from '@/components/NumberFormatter';
@@ -25,6 +25,7 @@ router.on('before', (event) => {
2525

2626
setup(async (app) => {
2727
window.__ = translate;
28+
window.__n = translateChoice;
2829

2930
window.Statamic = {
3031
$config: {
@@ -63,6 +64,7 @@ setup(async (app) => {
6364
};
6465

6566
app.config.globalProperties.__ = translate;
67+
app.config.globalProperties.__n = translateChoice;
6668
app.config.globalProperties.$date = new DateFormatter;
6769
app.config.globalProperties.$number = new NumberFormatter;
6870
app.config.globalProperties.cp_url = (url) => url;

.storybook/storybook.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
@custom-variant dark (&:where(.dark, .dark *));
1010

1111
:root {
12+
--focus-outline-color: var(--color-blue-400);
13+
1214
/* GROUP VARIABLES -- DECORATION -- COLOURS
1315
=================================================== */
1416
--color-code-background: hsl(287deg 80% 93.5%);

CHANGELOG.md

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

3+
## 6.14.0 (2026-04-16)
4+
5+
### What's new
6+
- Fieldset sections [#14297](https://github.com/statamic/cms/issues/14297) by @jackmcdade
7+
- Collaboration support [#13974](https://github.com/statamic/cms/issues/13974) by @joshuablum
8+
9+
### What's fixed
10+
- Use he-tree i18n prop for tree aria instructions [#14499](https://github.com/statamic/cms/issues/14499) by @jasonvarga
11+
- Rename `Add Block` back to `Add Set` in replicators [#14503](https://github.com/statamic/cms/issues/14503) by @joshuablum
12+
- Resolve Cascade content closure before checking content [#14502](https://github.com/statamic/cms/issues/14502) by @marcorieser
13+
- Fix nocache database driver failing on MySQL with invalid UTF-8 [#14505](https://github.com/statamic/cms/issues/14505) by @jasonvarga
14+
- Fix bard undos [#14506](https://github.com/statamic/cms/issues/14506) by @jackmcdade
15+
- Fix collection listing search case insensitivity [#14486](https://github.com/statamic/cms/issues/14486) by @joshuablum
16+
- Bump follow-redirects from 1.15.11 to 1.16.0 [#14498](https://github.com/statamic/cms/issues/14498) by @dependabot
17+
- Bump dompurify from 3.3.3 to 3.4.0 [#14500](https://github.com/statamic/cms/issues/14500) by @dependabot
18+
19+
20+
21+
## 6.13.0 (2026-04-13)
22+
23+
### What's new
24+
- Frontend Passkeys [#14453](https://github.com/statamic/cms/issues/14453) by @duncanmcclean
25+
- Allow control over who can be impersonated in UserPolicy [#14469](https://github.com/statamic/cms/issues/14469) by @ryanmitchell
26+
27+
### What's fixed
28+
- Fix Bard arrow keys/undo [#14467](https://github.com/statamic/cms/issues/14467) by @jackmcdade
29+
- Fix visible he-tree accessibility text in tree view [#14465](https://github.com/statamic/cms/issues/14465) by @duncanmcclean
30+
- Append to Bard Entry links [#11468](https://github.com/statamic/cms/issues/11468) by @edalzell
31+
- Disable broadcast provider when broadcasting driver is null [#14471](https://github.com/statamic/cms/issues/14471) by @jasonvarga
32+
- Make the collapsible section icon smaller to fit in with the rest of UI [#14478](https://github.com/statamic/cms/issues/14478) by @jaygeorge
33+
- Add `.npmrc` file [#14477](https://github.com/statamic/cms/issues/14477) by @duncanmcclean
34+
- Fix SVG sanitization tests [#14483](https://github.com/statamic/cms/issues/14483) by @duncanmcclean
35+
- Use `cursor: pointer` when selecting from asset grid [#14487](https://github.com/statamic/cms/issues/14487) by @joshuablum
36+
- Remove negative assertions from `TestCase` [#14458](https://github.com/statamic/cms/issues/14458) by @duncanmcclean
37+
- Harden OrderBys [#14474](https://github.com/statamic/cms/issues/14474) by @duncanmcclean
38+
- Harden query value resolution [#14476](https://github.com/statamic/cms/issues/14476) by @duncanmcclean
39+
- French translations [#14479](https://github.com/statamic/cms/issues/14479) by @ebeauchamps
40+
- Bump axios from 1.14.0 to 1.15.0 [#14473](https://github.com/statamic/cms/issues/14473) by @dependabot
41+
42+
43+
44+
## 6.12.0 (2026-04-08)
45+
46+
### What's new
47+
- Add support for filtering conditions in Assets Tag [#13936](https://github.com/statamic/cms/issues/13936) by @jackmcdade
48+
49+
### What's fixed
50+
- Add padding around 2FA QR code for dark mode scanning [#14460](https://github.com/statamic/cms/issues/14460) by @duncanmcclean
51+
- Fix form submissions with non-UTF-8 data crashing the CP listing [#14461](https://github.com/statamic/cms/issues/14461) by @duncanmcclean
52+
- Remove deprecated function calls [#14457](https://github.com/statamic/cms/issues/14457) by @justindantzer
53+
- Upgrade to Vite 8 [#14459](https://github.com/statamic/cms/issues/14459) by @jasonvarga
54+
- Nested fields should respect read-only state [#14351](https://github.com/statamic/cms/issues/14351) by @duncanmcclean
55+
56+
57+
358
## 6.11.0 (2026-04-07)
459

560
### What's new

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"pixelfear/composer-dist-plugin": "^0.1.4",
2828
"pragmarx/google2fa": "^8.0 || ^9.0",
2929
"rebing/graphql-laravel": "^9.15",
30-
"rhukster/dom-sanitizer": "^1.0.7",
30+
"rhukster/dom-sanitizer": "^1.0.10",
3131
"spatie/blink": "^1.3",
3232
"spatie/error-solutions": "^1.0 || ^2.0",
3333
"statamic/stringy": "^3.1.2",

config/users.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,8 @@
182182

183183
'elevated_session_duration' => 15,
184184

185+
'elevated_session_url' => null,
186+
185187
/*
186188
|--------------------------------------------------------------------------
187189
| Elevated Session Disabled

lang/de.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"Add": "Hinzufügen",
3434
"Add a link label": "Linktitel hinzufügen",
3535
"Add Attribute": "Attribut hinzufügen",
36-
"Add Block": "Block hinzufügen",
3736
"Add child link to entry": "Untereintrag hinzufügen",
3837
"Add child nav item": "Unterpunkt hinzufügen",
3938
"Add Color": "Farbe hinzufügen",

lang/de_CH.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"Add": "Hinzufügen",
3434
"Add a link label": "Linktitel hinzufügen",
3535
"Add Attribute": "Attribut hinzufügen",
36-
"Add Block": "Block hinzufügen",
3736
"Add child link to entry": "Untereintrag hinzufügen",
3837
"Add child nav item": "Unterpunkt hinzufügen",
3938
"Add Color": "Farbe hinzufügen",

0 commit comments

Comments
 (0)