diff --git a/CHANGELOG.md b/CHANGELOG.md index e639621..761e557 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,15 @@ Types of changes Security in case of vulnerabilities. ) +## [2.13.4](https://github.com/pdir/social-feed-bundle/tree/2.13.4) - 2024-08-20 + +This version is currently only available via the “early adopter” program (EAP). You can find out more at [Social Feed EAP](https://pdir.de/crowdfunding/social-feed-bundle.html). + +Diese Version ist aktuell nur über das "early adopter"-Programm (EAP) verfügbar. Mehr erfährst du unter [Social Feed EAP](https://pdir.de/crowdfunding/social-feed-bundle.html). + +- [Fixed] Fix newslist module (remove void) +- [Fixed] Missing images in moderated instagram import + ## [2.13.3](https://github.com/pdir/social-feed-bundle/tree/2.13.3) - 2024-08-07 This version is currently only available via the “early adopter” program (EAP). You can find out more at [Social Feed EAP](https://pdir.de/crowdfunding/social-feed-bundle.html). @@ -49,6 +58,10 @@ Diese Version ist aktuell nur über das "early adopter"-Programm (EAP) verfügba - [Fixed] Remove warnings in cron listener - [Fixed] Add missing translations (de,en,it) +## [2.12.6](https://github.com/pdir/social-feed-bundle/tree/2.12.5) - 2023-09-20 + +- [Fixed] Fix newslist module (remove void) + ## [2.12.5](https://github.com/pdir/social-feed-bundle/tree/2.12.5) - 2023-09-20 - [Changed] doctrine/cache from 1.9 to ^2.1 diff --git a/src/Dca/tl_social_feed.php b/src/Dca/tl_social_feed.php index 47ecd24..20d2ee9 100644 --- a/src/Dca/tl_social_feed.php +++ b/src/Dca/tl_social_feed.php @@ -29,7 +29,7 @@ class tl_social_feed /** * social-feed-bundle version. */ - public const VERSION = '2.12.5'; + public const VERSION = '2.12.6'; /** * Template. diff --git a/src/Module/ModuleCustomNewslist.php b/src/Module/ModuleCustomNewslist.php index 56dfea3..74a5e7d 100644 --- a/src/Module/ModuleCustomNewslist.php +++ b/src/Module/ModuleCustomNewslist.php @@ -32,7 +32,7 @@ class ModuleCustomNewslist extends ModuleNewsList */ protected $strTemplate = 'mod_newslist'; - protected function compile(): void + protected function compile() { parent::compile(); diff --git a/src/Module/NewsCategoriesModule.php b/src/Module/NewsCategoriesModule.php index 7711211..3c01cca 100644 --- a/src/Module/NewsCategoriesModule.php +++ b/src/Module/NewsCategoriesModule.php @@ -32,7 +32,7 @@ class NewsCategoriesModule extends NewsListModule */ protected $strTemplate = 'mod_newslist'; - protected function compile(): void + protected function compile() { parent::compile();