Skip to content

Commit

Permalink
Merge pull request #117 from pdir/2.12.1
Browse files Browse the repository at this point in the history
2.12.1
  • Loading branch information
seibtph authored Jun 9, 2023
2 parents a73f008 + 420295c commit f169a1c
Show file tree
Hide file tree
Showing 44 changed files with 332 additions and 1,002 deletions.
100 changes: 100 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
name: CI

on:
pull_request: ~
push: ~

jobs:
ecs:
name: ECS
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4 # Run with the lowest supported to avoid incompatible fixes
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout
uses: actions/checkout@v3

- name: Install the dependencies
run: composer install --no-interaction --no-progress

- name: Run ECS
run: vendor/bin/ecs check src tests --config ecs.php --no-progress-bar --ansi

phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout
uses: actions/checkout@v3

- name: Install the dependencies
run: |
composer install --no-interaction --no-progress
- name: Run PHPStan
run: vendor/bin/phpstan analyse src tests --no-progress

# tests:
# name: PHP ${{ matrix.php }}
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# php: [ 7.4, 8.0, 8.1 ]
# steps:
# - name: Setup PHP
# uses: shivammathur/setup-php@v2
# with:
# php-version: ${{ matrix.php }}
# extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
# coverage: none
# env:
# COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
# - name: Checkout
# uses: actions/checkout@v3
#
# - name: Install the dependencies
# run: composer install --no-interaction --no-progress
#
# - name: Run the unit tests
# run: vendor/bin/phpunit --colors=always

# nightly:
# name: PHP 8.2
# runs-on: ubuntu-latest
# continue-on-error: true
# steps:
# - name: Setup PHP
# uses: shivammathur/setup-php@v2
# with:
# php-version: 8.2
# extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
# coverage: none
# env:
# COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
# - name: Checkout
# uses: actions/checkout@v3
#
# - name: Install the dependencies
# run: composer install --ignore-platform-req=php --no-interaction --no-progress
#
# - name: Run the unit tests
# run: vendor/bin/phpunit --colors=always
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@ Types of changes
Security in case of vulnerabilities.
)

## [2.12.1](https://github.com/pdir/contao-webtools/tree/2.12.1) - 2023-04-14

## [2.12.0](https://github.com/pdir/contao-webtools/tree/2.12.0) - 2023-10-02
- [Fixed] Fix error if type and access token is empty
- [Fixed] Fix error if twitter access token is invalid or expired
- [Fixed] Fix Instagram import if media_url is null ([#109](https://github.com/pdir/social-feed-bundle/issues/109))
- [Fixed] Fix Facebook import if post has no attachments
- [Fixed] Fix Instagram account name is not displayed ([#115](https://github.com/pdir/social-feed-bundle/issues/115))

## [2.12.0](https://github.com/pdir/contao-webtools/tree/2.12.0) - 2023-02-10

- [Added] refresh instagram access token automatically
- [Changed] Unlock nickdnk/graph-sdk v7 🤗 [rabauss](https://github.com/rabauss)
Expand Down
Loading

0 comments on commit f169a1c

Please sign in to comment.