Skip to content

Commit 1a4f208

Browse files
committed
minor #1559 Prepping 2.16 changelogs (weaverryan)
This PR was merged into the 2.x branch. Discussion ---------- Prepping 2.16 changelogs | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Issues | None | License | MIT Time for our end-of-month release. And since the last release 9 days ago... this is packed! * ✅ Live Components stable * ✅ CVA #1416 ... and many other goodies and fixes. Cool 😎 This release DOES contain a few BC breaks in Live Components (the last ones!) that will affect many / most applications. See the CHANGELOG for LiveComponents for details. Commits ------- 53ac573 Prepping 2.16 changelogs
2 parents 2defab2 + 53ac573 commit 1a4f208

File tree

5 files changed

+35
-6
lines changed

5 files changed

+35
-6
lines changed

UPGRADE.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# UPGRADE
22

3+
## FROM 2.15 to 2.16
4+
5+
- **Live Components**: Change `data-action-name` attribute to `data-live-action-param`
6+
and change action arguments to be passed as individual `data-live-` attributes #1418.
7+
See [LiveComponents CHANGELOG](https://github.com/symfony/ux/blob/2.x/src/LiveComponent/CHANGELOG.md#2160)
8+
for more details.
9+
10+
- **Live Components**: Remove the `|prevent` modifier and place it on the `data-action`
11+
instead - e.g. `data-action="live#action:prevent"`.
12+
13+
- **Live Components**: Change `data-event` attributes to `data-live-event-param` #1418.
14+
315
## FROM 2.14 to 2.15
416

517
- **Live Components**: Change `data-live-id` attributes to `id` #1484.

src/Autocomplete/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 2.16.0
4+
5+
- Missing translations added for many languages #1527 #1528 #1535
6+
37
## 2.15.0
48

59
- Add doctrine/orm 3 support #1468

src/LiveComponent/CHANGELOG.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
## 2.16.0
44

5+
- LiveComponents is now stable and no longer experimental 🥳
56
- [BC BREAK] The `data-action-name` attribute behavior was removed in favor of
67
using Stimulus "action parameters" and `data-live-action-param`. This is a
78
breaking change if you were using the `data-action-name` attribute directly
8-
in your templates.
9+
in your templates. #1418
910

1011
To upgrade your application, follow these changes:
1112

@@ -44,9 +45,14 @@
4445
- [BC BREAK] The `data-event` attribute was removed in favor of using Stimulus
4546
"action parameters": rename `data-event` to `data-live-event-param`. Additionally,
4647
if you were passing arguments to the event name, use action parameter attributes
47-
for those as well - e.g. `data-live-foo-param="bar"`.
48-
49-
- Reverted setting `ignoreActiveValue: true` in Idiomorph
48+
for those as well - e.g. `data-live-foo-param="bar"`. #1418
49+
50+
- Reverted setting `ignoreActiveValue: true` in Idiomorph #1548
51+
- New placeholder macro to generate defer/lazy skeleton #1532
52+
- improve TestLiveComponent::actingAs() #1461
53+
- Drop Twig 2 support #1436
54+
- Add better error message when hydrating dates #1431
55+
- Store TemplateMap in build_dir #1525
5056

5157
## 2.15.0
5258

src/Translator/CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# CHANGELOG
22

3-
## UNRELEASED
3+
## 2.16.0
44

5-
- Increase version range of `intl-messageformat` to `^10.5.11`, in order tou se a faster implementation of ICU messages parsing.
5+
- Increase version range of `intl-messageformat` to `^10.5.11`, in order to see
6+
a faster implementation of ICU messages parsing. #1443
67

78
## 2.13.2
89

src/TwigComponent/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## 2.16.0
4+
5+
- Introduce CVA to style TwigComponent #1416
6+
- Drop Twig 2 support #1436
7+
- Fix full context is stored in profiler #1552
8+
39
## 2.15.0
410

511
- Add the ability to render specific attributes from the `attributes` variable #1442

0 commit comments

Comments
 (0)