diff --git a/src/LiveComponent/CHANGELOG.md b/src/LiveComponent/CHANGELOG.md index f68755f58cc..b339b919a50 100644 --- a/src/LiveComponent/CHANGELOG.md +++ b/src/LiveComponent/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## 2.14.1 + +- Fixed a regression in the testing tools related to the default HTTP + method change + ## 2.14.0 - Add support for URL binding in `LiveProp` diff --git a/src/StimulusBundle/CHANGELOG.md b/src/StimulusBundle/CHANGELOG.md index cfd9fff13a8..d3c9157b582 100644 --- a/src/StimulusBundle/CHANGELOG.md +++ b/src/StimulusBundle/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 2.14.1 + +- Fixed bug with Stimulus controllers in subdirectories on Windows + ## 2.14.0 - Added Typescript controllers support diff --git a/ux.symfony.com/src/Controller/Demo/LiveMemoryController.php b/ux.symfony.com/src/Controller/Demo/LiveMemoryController.php index 0121642e11b..79938c9c48e 100644 --- a/ux.symfony.com/src/Controller/Demo/LiveMemoryController.php +++ b/ux.symfony.com/src/Controller/Demo/LiveMemoryController.php @@ -11,8 +11,8 @@ namespace App\Controller\Demo; -use App\Service\LiveDemoRepository; use App\LiveMemory\GameStorageInterface; +use App\Service\LiveDemoRepository; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Attribute\Route; diff --git a/ux.symfony.com/src/Twig/Components/LiveMemory/Board.php b/ux.symfony.com/src/Twig/Components/LiveMemory/Board.php index 28ba49d15a4..8b37a80972b 100644 --- a/ux.symfony.com/src/Twig/Components/LiveMemory/Board.php +++ b/ux.symfony.com/src/Twig/Components/LiveMemory/Board.php @@ -29,6 +29,7 @@ /** * @demo LiveMemory + * * @author Simon André */ #[AsLiveComponent('LiveMemory:Board')]