Skip to content

Commit cc3f960

Browse files
committed
NEXT-37192 - Prepare release v6.5.8.12
1 parent 5936ba2 commit cc3f960

12 files changed

+40
-0
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changelog
22
This is the official changelog index of Shopware 6. Here you find a registry of all Shopware 6 releases with a reference to the detailed changelog of each version. If you want to know more about how the changelog is created have a look [here](/adr/workflow/2020-08-03-implement-New-Changelog.md).
33

4+
## 6.5.8.12
5+
* [NEXT-31890 - Fix Bulk Edit one to many associations length evaluation and infinite requests](./changelog/release-6-5-8-12/2023-09-27-fix-one-to-many-bulk-edit.md) ([Lily Berkow](https://github.com/TheAnimeGuru))
6+
* [NEXT-28322 - buld and variant retry](./changelog/release-6-5-8-12/2023-12-14-buld-and-variant-retry.md) ([Pascal Thesing](https://github.com/Pascal Thesing))
7+
* [NEXT-36441 - slotId ApiAware](./changelog/release-6-5-8-12/2024-05-29-slotid-apiaware.md)
8+
* [NEXT-36479 - Move routing overwrite](./changelog/release-6-5-8-12/2024-06-05-move-routing-overwrite.md)
9+
* [NEXT-16551 - Add order and customer number filters to admin lists](./changelog/release-6-5-8-12/2024-06-26-add-order-and-customer-number-filters-to-admin-lists.md)
10+
* [NEXT-36534 - Bulk edit with more than 25 selections broken](./changelog/release-6-5-8-12/2024-06-28-bulk-edit-with-more-than-25-selections-broken.md)
11+
* [NEXT-36927 - Don't remove cache cookies for 404 pages](./changelog/release-6-5-8-12/2024-07-03-dont-remove-cache-cookies-for-404.md)
12+
* [NEXT-31209 - Increase app payment timeout to 20 s](./changelog/release-6-5-8-12/2024-07-05-increase-app-payment-timeout-to-20-s.md)
13+
* [NEXT-37072 - Only cleanup successfully delivered or permanently failed webhook events](./changelog/release-6-5-8-12/2024-07-05-only-cleanup-sucessfully-delivered-webhooks.md)
14+
* [NEXT-37140 - Limit search term length for mysql search](./changelog/release-6-5-8-12/2024-07-08-limit-search-term-length-for-mysql-search.md)
15+
416
## 6.5.8.11
517
* [NEXT-31896 - Fix promotion individual code redeemer if first assigned promotion is not instance of PromotionIndividualCodeEntity](./changelog/release-6-5-8-11/2023-10-21-fix-promotion-used-logic.md) ([Wolfgang Kreminger](https://github.com/r4pt0s))
618
* [NEXT-30469 - Enable iFrame full screen for sdk modules](./changelog/release-6-5-8-11/2024-02-23-enable-iframe-full-screen-for-sdk-modules.md)

UPGRADE-6.5.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# 6.5.8.12
2+
## Messenger routing overwrite
3+
4+
The overwriting logic for the messenger routing has been moved from `framework.messenger.routing` to `shopware.messenger.routing_overwrite`. The old config key is still supported but deprecated and will be removed in the next major release.
5+
The new config key considers also the `instanceof` logic of the default symfony behavior.
6+
7+
We have made these changes for various reasons:
8+
1) In the old logic, the `instanceof` logic of Symfony was not taken into account. This means that only exact matches of the class were overwritten.
9+
2) It is not possible to simply backport this in the same config, as not only the project overwrites are in the old config, but also the standard Shopware routing configs.
10+
11+
The break will be introduced in v6.7.0.
12+
13+
```yaml
14+
15+
#before
16+
framework:
17+
messenger:
18+
routing:
19+
Shopware\Core\Framework\DataAbstractionLayer\Indexing\EntityIndexingMessage: entity_indexing
20+
21+
#after
22+
shopware:
23+
messenger:
24+
routing_overwrite:
25+
Shopware\Core\Framework\DataAbstractionLayer\Indexing\EntityIndexingMessage: entity_indexing
26+
27+
```
28+
129
# 6.5.8.6
230
## Main categories are now available in seo url templates
331
We added the `mainCategories` association in the `\Shopware\Storefront\Framework\Seo\SeoUrlRoute\ProductPageSeoUrlRoute::prepareCriteria` method.

0 commit comments

Comments
 (0)