Skip to content

Commit

Permalink
minor #1524 2.15 CHANGELOG (weaverryan)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.x branch.

Discussion
----------

2.15 CHANGELOG

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| Issues        | None
| License       | MIT

Normal releases happen near the end of each month. Due to the morphing library change in 2.14.0, there were enough changes & bugs fixed that I'd like to push an earlier release now.

Cheers!

Commits
-------

bac577c 2.15 CHANGELOG
  • Loading branch information
weaverryan committed Feb 20, 2024
2 parents c74fa21 + bac577c commit c41a2be
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 5 deletions.
7 changes: 5 additions & 2 deletions src/Autocomplete/CHANGELOG.md
@@ -1,8 +1,11 @@
# CHANGELOG

## Unreleased
## 2.15.0

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

## 2.14.0

Expand Down
4 changes: 4 additions & 0 deletions src/Chartjs/CHANGELOG.md
@@ -1,5 +1,9 @@
# CHANGELOG

## 2.15.0

- Remove restriction that prevented Chart.js 3.9 #1518

## 2.14.0

- Add support for Chart.js version 4
Expand Down
6 changes: 5 additions & 1 deletion src/LiveComponent/CHANGELOG.md
Expand Up @@ -2,7 +2,11 @@

## 2.15.0

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

## 2.14.1

Expand Down
5 changes: 5 additions & 0 deletions src/Turbo/CHANGELOG.md
@@ -1,5 +1,10 @@
# CHANGELOG

## 2.15.0

- Add Turbo 8 support #1476
- Fix missing `use` statement used during broadcast #1475

## 2.14.2

- Fix using old `ClassUtils` class that's not used in newer versions of Doctrine
Expand Down
7 changes: 6 additions & 1 deletion src/TwigComponent/CHANGELOG.md
@@ -1,11 +1,16 @@
# CHANGELOG

## 2.15.0

- Add the ability to render specific attributes from the `attributes` variable #1442
- Restrict Twig 3.9 for now #1486
- Build reproducible TemplateMap to fix possible post-deploy breakage #1497

## 2.14.0

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

## 2.13.0

Expand Down
2 changes: 1 addition & 1 deletion ux.symfony.com/src/Util/SourceCleaner.php
Expand Up @@ -151,7 +151,7 @@ public static function extractTwigBlock(string $content, string $targetTwigBlock
public static function removeExcessHtml(string $content): string
{
// remove all HTML attributes and values + whitespace around them
$content = preg_replace_callback('/\s+[a-z0-9-]+="[^"]*"/', function($matches) {
$content = preg_replace_callback('/\s+[a-z0-9-]+="[^"]*"/', function ($matches) {
if (str_starts_with(trim($matches[0]), 'data-')) {
return $matches[0];
}
Expand Down

0 comments on commit c41a2be

Please sign in to comment.