Skip to content

Commit bac577c

Browse files
committed
2.15 CHANGELOG
1 parent c74fa21 commit bac577c

File tree

6 files changed

+26
-5
lines changed

6 files changed

+26
-5
lines changed

src/Autocomplete/CHANGELOG.md

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

3-
## Unreleased
3+
## 2.15.0
44

5-
- Add doctrine/orm 3 support.
5+
- Add doctrine/orm 3 support #1468
6+
- Allow passing extra options to the autocomplete fields #1322
7+
- Fix 2 bugs where TomSelect would reset when not necessary #1502
8+
- Add one missing German translation #1521
69

710
## 2.14.0
811

src/Chartjs/CHANGELOG.md

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

3+
## 2.15.0
4+
5+
- Remove restriction that prevented Chart.js 3.9 #1518
6+
37
## 2.14.0
48

59
- Add support for Chart.js version 4

src/LiveComponent/CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
## 2.15.0
44

5-
- [BC BREAK] The `data-live-id` attribute was changed to `id`.
5+
- [BC BREAK] The `data-live-id` attribute was changed to `id` #1484
6+
- Fixed child handling bug during re-rendering introduced with the
7+
new morphing library in 2.14.0 #1484
8+
- Fix bug where the active input would maintain its value, but lose its cursor position #1501
9+
- Restrict Twig 3.9 for now #1486
610

711
## 2.14.1
812

src/Turbo/CHANGELOG.md

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

3+
## 2.15.0
4+
5+
- Add Turbo 8 support #1476
6+
- Fix missing `use` statement used during broadcast #1475
7+
38
## 2.14.2
49

510
- Fix using old `ClassUtils` class that's not used in newer versions of Doctrine

src/TwigComponent/CHANGELOG.md

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

3+
## 2.15.0
4+
5+
- Add the ability to render specific attributes from the `attributes` variable #1442
6+
- Restrict Twig 3.9 for now #1486
7+
- Build reproducible TemplateMap to fix possible post-deploy breakage #1497
8+
39
## 2.14.0
410

511
- Make `ComponentAttributes` traversable/countable
612
- Fixed lexing some `{# twig comments #}` with HTML Twig syntax
713
- Fix various usages of deprecated Twig code
8-
- Add attribute rendering system
914

1015
## 2.13.0
1116

ux.symfony.com/src/Util/SourceCleaner.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public static function extractTwigBlock(string $content, string $targetTwigBlock
151151
public static function removeExcessHtml(string $content): string
152152
{
153153
// remove all HTML attributes and values + whitespace around them
154-
$content = preg_replace_callback('/\s+[a-z0-9-]+="[^"]*"/', function($matches) {
154+
$content = preg_replace_callback('/\s+[a-z0-9-]+="[^"]*"/', function ($matches) {
155155
if (str_starts_with(trim($matches[0]), 'data-')) {
156156
return $matches[0];
157157
}

0 commit comments

Comments
 (0)