Skip to content

Commit

Permalink
Merge pull request #12 from dachcom-digital/p10-6
Browse files Browse the repository at this point in the history
Pimcore 10.6 release
  • Loading branch information
solverat committed Jul 7, 2023
2 parents 56a7b34 + 98b4d9f commit be14e81
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codeception.yml
Expand Up @@ -38,12 +38,12 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
matrix:
php: [ 8.0 ]
php: [ 8.1 ]
symfony: [ ^5.4 ]
pimcore: [ ~10.5.0 ]
pimcore: [ ~10.6.0 ]
include:
- pimcore: ~10.5.0
template_tag: v10.2.0
- pimcore: ~10.6.0
template_tag: v10.2.5
steps:
- uses: actions/checkout@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ecs.yml
Expand Up @@ -37,12 +37,12 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
matrix:
php: [ 8.0 ]
php: [ 8.1 ]
symfony: [ ^5.4 ]
pimcore: [ ~10.5.0 ]
pimcore: [ ~10.6.0 ]
include:
- pimcore: ~10.5.0
template_tag: v10.2.0
- pimcore: ~10.6.0
template_tag: v10.2.5
steps:
- uses: actions/checkout@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/php-stan.yml
Expand Up @@ -37,12 +37,12 @@ jobs:
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
matrix:
php: [ 8.0 ]
php: [ 8.1 ]
symfony: [ ^5.4 ]
pimcore: [ ~10.5.0 ]
pimcore: [ ~10.6.0 ]
include:
- pimcore: ~10.5.0
template_tag: v10.2.0
- pimcore: ~10.6.0
template_tag: v10.2.5
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -12,7 +12,7 @@ This Bundles allows you to load social data from different networks like Faceboo
### Release Plan
| Release | Supported Pimcore Versions | Supported Symfony Versions | Release Date | Maintained | Branch |
|---------|----------------------------|----------------------------|--------------|----------------|------------------------------------------------------------------------|
| **2.x** | `10.1` - `10.5` | `5.4` | 05.01.2022 | Feature Branch | master |
| **2.x** | `10.1` - `10.6` | `5.4` | 05.01.2022 | Feature Branch | master |
| **1.x** | `6.0` - `6.9` | `3.4`, `^4.4` | 27.04.2020 | Unsupported | [1.x](https://github.com/dachcom-digital/pimcore-social-data/tree/1.x) |

## Installation
Expand Down
2 changes: 1 addition & 1 deletion src/SocialDataBundle/Manager/SocialPostManager.php
Expand Up @@ -115,7 +115,7 @@ public function persistSocialPostEntity(Concrete $post, FeedInterface $feed, boo

protected function persistMedia(FeedInterface $feed, SocialPostInterface $socialPost, bool $forceProcessing): void
{
if (empty($socialPost->getPosterUrl()) || !is_string($socialPost->getPosterUrl())) {
if (empty($socialPost->getPosterUrl())) {
// @todo: how to handle force processing (e.g. delete current asset?)
$this->logger->debug(sprintf('No poster url given for social post %s', $socialPost->getSocialId()), [$feed]);

Expand Down

0 comments on commit be14e81

Please sign in to comment.