From 673da7c3a7c1b286282f6cf72949567c5b2f6ece Mon Sep 17 00:00:00 2001 From: Grzegorz Sadowski Date: Tue, 2 Jun 2026 12:17:23 +0200 Subject: [PATCH 1/3] Change application's version to v2.1.15 --- composer.json | 2 +- src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 9d1419e1a9..6af58f34c2 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "sylius/sylius", "type": "library", - "version": "v2.1.15-dev", + "version": "v2.1.15", "description": "E-Commerce platform for PHP, based on Symfony framework.", "homepage": "https://sylius.com", "license": "MIT", diff --git a/src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php b/src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php index fa3ed4d303..c9d461e799 100644 --- a/src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php +++ b/src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php @@ -40,7 +40,7 @@ use Symfony\Component\DependencyInjection\ContainerBuilder; final class SyliusCoreBundle extends AbstractResourceBundle { - public const VERSION = '2.1.15-DEV'; + public const VERSION = '2.1.15'; public const VERSION_ID = '20115'; @@ -50,7 +50,7 @@ final class SyliusCoreBundle extends AbstractResourceBundle public const RELEASE_VERSION = '15'; - public const EXTRA_VERSION = 'DEV'; + public const EXTRA_VERSION = ''; /** @return string[] */ public function getSupportedDrivers(): array From 894f29731765b1c1249ba73eb9df36c998f962ce Mon Sep 17 00:00:00 2001 From: Grzegorz Sadowski Date: Tue, 2 Jun 2026 12:18:44 +0200 Subject: [PATCH 2/3] Generate changelog for v2.1.15 --- CHANGELOG-2.1.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG-2.1.md b/CHANGELOG-2.1.md index 769fe3d308..279b9d62b2 100644 --- a/CHANGELOG-2.1.md +++ b/CHANGELOG-2.1.md @@ -1,5 +1,13 @@ # CHANGELOG FOR `2.1.X` +## v2.1.15 (2026-06-02) + +#### Details + +- [#19038](https://github.com/Sylius/Sylius/pull/19038) [2.1] Prevent stale cart LiveComponents from mutating completed orders ([@TheMilek](https://github.com/TheMilek)) +- [#19039](https://github.com/Sylius/Sylius/pull/19039) [2.1][API] Enforce channel eligibility check when changing payment method via account endpoint ([@TheMilek](https://github.com/TheMilek)) +- [#19040](https://github.com/Sylius/Sylius/pull/19040) [2.1] Check payment request ownership ([@TheMilek](https://github.com/TheMilek)) + ## v2.1.14 (2026-04-10) #### Details From f2914c3200112e0b40e86aae466a3d2c9f827a13 Mon Sep 17 00:00:00 2001 From: Grzegorz Sadowski Date: Tue, 2 Jun 2026 12:19:08 +0200 Subject: [PATCH 3/3] Change application's version to v2.1.16-dev --- composer.json | 2 +- src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 6af58f34c2..25d542432c 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "sylius/sylius", "type": "library", - "version": "v2.1.15", + "version": "v2.1.16-dev", "description": "E-Commerce platform for PHP, based on Symfony framework.", "homepage": "https://sylius.com", "license": "MIT", diff --git a/src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php b/src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php index c9d461e799..1ed45d9d86 100644 --- a/src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php +++ b/src/Sylius/Bundle/CoreBundle/SyliusCoreBundle.php @@ -40,17 +40,17 @@ use Symfony\Component\DependencyInjection\ContainerBuilder; final class SyliusCoreBundle extends AbstractResourceBundle { - public const VERSION = '2.1.15'; + public const VERSION = '2.1.16-DEV'; - public const VERSION_ID = '20115'; + public const VERSION_ID = '20116'; public const MAJOR_VERSION = '2'; public const MINOR_VERSION = '1'; - public const RELEASE_VERSION = '15'; + public const RELEASE_VERSION = '16'; - public const EXTRA_VERSION = ''; + public const EXTRA_VERSION = 'DEV'; /** @return string[] */ public function getSupportedDrivers(): array