From e068757ceba7c237ef41d858f96e37764c811739 Mon Sep 17 00:00:00 2001 From: Bernhard Rusch Date: Wed, 20 Jul 2022 16:26:03 +0200 Subject: [PATCH] [Sessions] Changed default value for `symfony.session.cookie_secure` to `auto` --- bundles/CoreBundle/Resources/config/pimcore/default.yaml | 1 + .../23_Installation_and_Upgrade/09_Upgrade_Notes/README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/bundles/CoreBundle/Resources/config/pimcore/default.yaml b/bundles/CoreBundle/Resources/config/pimcore/default.yaml index 3f6a9bee520..238b140ec2c 100644 --- a/bundles/CoreBundle/Resources/config/pimcore/default.yaml +++ b/bundles/CoreBundle/Resources/config/pimcore/default.yaml @@ -22,6 +22,7 @@ framework: handler_id: null cookie_samesite: 'strict' storage_factory_id: session.storage.factory.native + cookie_secure: auto php_errors: log: true assets: ~ diff --git a/doc/Development_Documentation/23_Installation_and_Upgrade/09_Upgrade_Notes/README.md b/doc/Development_Documentation/23_Installation_and_Upgrade/09_Upgrade_Notes/README.md index 59aa25944e2..280ec59da08 100644 --- a/doc/Development_Documentation/23_Installation_and_Upgrade/09_Upgrade_Notes/README.md +++ b/doc/Development_Documentation/23_Installation_and_Upgrade/09_Upgrade_Notes/README.md @@ -1,6 +1,7 @@ # Upgrade Notes ## 10.5.0 +- [Sessions] Changed default value for `symfony.session.cookie_secure` to `auto` - [Listings] `JsonListing` class is deprecated. Please use `CallableFilterListingInterface`, `FilterListingTrait` and `CallableOrderListingInterface`, `OrderListingTrait` instead. For examples please see existing classes, e.g. `Pimcore\Model\Document\DocType\Listing`.