From 4f7ac38cddf4d24cfbe4d2869e19746c54511bcc Mon Sep 17 00:00:00 2001 From: Dominik Pfaffenbauer Date: Thu, 25 Jan 2024 18:19:07 +0100 Subject: [PATCH 1/4] [Release] 3.2.2 --- CHANGELOG-3.2.x.md | 5 +++++ src/CoreShop/Bundle/CoreBundle/Application/Version.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG-3.2.x.md b/CHANGELOG-3.2.x.md index 9406ff431c..aff74afd11 100644 --- a/CHANGELOG-3.2.x.md +++ b/CHANGELOG-3.2.x.md @@ -1,3 +1,8 @@ +# 3.2.2 +* [CartManager] create unique key for cart items by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2510 +* [Core] Use order tokens in payment capture by @yariksheptykin in https://github.com/coreshop/CoreShop/pull/2515 +* [Core] add caching for recursive variant checking by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2520 + # 3.2.1 * [ClassDefinitionPatch] allow update of field-definitions instead of replace by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2494 * [Product] assert range sort for qpr by @solverat in https://github.com/coreshop/CoreShop/pull/2498 diff --git a/src/CoreShop/Bundle/CoreBundle/Application/Version.php b/src/CoreShop/Bundle/CoreBundle/Application/Version.php index 5f9fa3cc8c..8c3d30c453 100644 --- a/src/CoreShop/Bundle/CoreBundle/Application/Version.php +++ b/src/CoreShop/Bundle/CoreBundle/Application/Version.php @@ -24,7 +24,7 @@ final class Version public const MINOR_VERSION = '2'; - public const RELEASE_VERSION = '1'; + public const RELEASE_VERSION = '2'; public const EXTRA_VERSION = ''; From d9f5ba8817f019ddf372129b16a7aad2c87ed4ab Mon Sep 17 00:00:00 2001 From: Dominik Pfaffenbauer Date: Fri, 26 Jan 2024 12:48:07 +0100 Subject: [PATCH 2/4] [Release] 3.2.2 --- CHANGELOG-3.2.x.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG-3.2.x.md b/CHANGELOG-3.2.x.md index aff74afd11..eed38d09b8 100644 --- a/CHANGELOG-3.2.x.md +++ b/CHANGELOG-3.2.x.md @@ -2,6 +2,7 @@ * [CartManager] create unique key for cart items by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2510 * [Core] Use order tokens in payment capture by @yariksheptykin in https://github.com/coreshop/CoreShop/pull/2515 * [Core] add caching for recursive variant checking by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2520 +* use null coalescing operator against maxUsagePerUser by @sovlerat in https://github.com/coreshop/CoreShop/pull/2524 # 3.2.1 * [ClassDefinitionPatch] allow update of field-definitions instead of replace by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2494 From 3b154478a26d6602021f2a0b95eaa41b49ffc301 Mon Sep 17 00:00:00 2001 From: Dominik Pfaffenbauer Date: Thu, 25 Jan 2024 18:19:07 +0100 Subject: [PATCH 3/4] [Release] 3.2.2 --- CHANGELOG-3.2.x.md | 5 +++++ src/CoreShop/Bundle/CoreBundle/Application/Version.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG-3.2.x.md b/CHANGELOG-3.2.x.md index 9406ff431c..aff74afd11 100644 --- a/CHANGELOG-3.2.x.md +++ b/CHANGELOG-3.2.x.md @@ -1,3 +1,8 @@ +# 3.2.2 +* [CartManager] create unique key for cart items by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2510 +* [Core] Use order tokens in payment capture by @yariksheptykin in https://github.com/coreshop/CoreShop/pull/2515 +* [Core] add caching for recursive variant checking by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2520 + # 3.2.1 * [ClassDefinitionPatch] allow update of field-definitions instead of replace by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2494 * [Product] assert range sort for qpr by @solverat in https://github.com/coreshop/CoreShop/pull/2498 diff --git a/src/CoreShop/Bundle/CoreBundle/Application/Version.php b/src/CoreShop/Bundle/CoreBundle/Application/Version.php index 1c4d360265..7d51b4eb5b 100644 --- a/src/CoreShop/Bundle/CoreBundle/Application/Version.php +++ b/src/CoreShop/Bundle/CoreBundle/Application/Version.php @@ -24,7 +24,7 @@ final class Version public const MINOR_VERSION = '0'; - public const RELEASE_VERSION = '1'; + public const RELEASE_VERSION = '2'; public const EXTRA_VERSION = ''; From 6a93114dcd984b1f3ad5f090c3f08243d5fb5165 Mon Sep 17 00:00:00 2001 From: Dominik Pfaffenbauer Date: Thu, 25 Jan 2024 18:25:14 +0100 Subject: [PATCH 4/4] [Release] 4.0.2 --- CHANGELOG-4.0.x.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG-4.0.x.md b/CHANGELOG-4.0.x.md index b4451104ed..b0f19ac870 100644 --- a/CHANGELOG-4.0.x.md +++ b/CHANGELOG-4.0.x.md @@ -1,3 +1,9 @@ +# 4.0.2 + +* [DataHub] only enable queries for selected entities by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2512 +* add address identifier repository to subscribed services by @solverat in https://github.com/coreshop/CoreShop/pull/2518 +* add guest condition by @breakone in https://github.com/coreshop/CoreShop/pull/2514 + # 4.0.1 * [Docs] Update docusaurus by @dpfaffenbauer in https://github.com/coreshop/CoreShop/pull/2490