From 8fdc7dab296b680390887da8afb775b835ca165f Mon Sep 17 00:00:00 2001 From: David Molineus Date: Tue, 18 Sep 2018 10:26:38 +0200 Subject: [PATCH] Make alias generator services public for Contao 4.6/Symfony 4.0 compatibility. --- CHANGELOG.md | 7 +++++++ src/Bundle/Resources/config/services.yml | 2 ++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38c4157..f82dfa9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ Changelog ========= +3.0.3 (2018-09-18) +------------------ + +[Full Changelog](https://github.com/netzmacht/contao-leaflet-maps/compare/3.0.2...3.0.3) + + - Make alias generator services public for Contao 4.6/Symfony 4.0 compatibility. + 3.0.2 (2018-08-23) ------------------ diff --git a/src/Bundle/Resources/config/services.yml b/src/Bundle/Resources/config/services.yml index c77c5b8..2eae139 100644 --- a/src/Bundle/Resources/config/services.yml +++ b/src/Bundle/Resources/config/services.yml @@ -74,11 +74,13 @@ services: netzmacht.contao_leaflet.definition.alias_generator.factory_default: class: Netzmacht\Contao\Leaflet\Alias\DefaultAliasGeneratorFactory + public: true arguments: - '@database_connection' netzmacht.contao_leaflet.definition.alias_generator.factory_parent: class: Netzmacht\Contao\Leaflet\Alias\ParentAliasGeneratorFactory + public: true arguments: - '@database_connection'