From bdd49e3a1d572661e5b28f635624363b5b091c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zdene=CC=8Ck=20Drahos=CC=8C?= Date: Sat, 30 Apr 2022 11:06:04 +0200 Subject: [PATCH] Changelog v1.26.0 --- CHANGELOG.md | 9 +++++++++ README.md | 16 ++++++++-------- phpqa | 2 +- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4438c92..3620cf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog +## v1.26.0 + +* **tools** + * upgrade pdepend, phpmd, phpcs [#245](https://github.com/EdgedesignCZ/phpqa/pull/245) + * phpstan - use excludePaths instead of excludes_analyse [#241](https://github.com/EdgedesignCZ/phpqa/issues/241) + * security-checker - enable overriding composer.lock location [#248](https://github.com/EdgedesignCZ/phpqa/pull/248) +* _internal_ + * CI - add PHP 8.1 - [#246](https://github.com/EdgedesignCZ/phpqa/pull/246) + ## v1.25.0 * **tools** diff --git a/README.md b/README.md index c76b3d3..965d073 100644 --- a/README.md +++ b/README.md @@ -128,15 +128,15 @@ Official docker image repository is https://hub.docker.com/r/zdenekdrahos/phpqa/ Images can be used at [Gitlab CI](#gitlabci---docker-installation--composer-cache--artifacts). ```bash -docker run --rm -it zdenekdrahos/phpqa:v1.25.0-php7.2 phpqa tools +docker run --rm -it zdenekdrahos/phpqa:v1.26.0-php7.2 phpqa tools # using a tool without phpqa -docker run --rm -it zdenekdrahos/phpqa:v1.25.0-php7.2 phploc -v +docker run --rm -it zdenekdrahos/phpqa:v1.26.0-php7.2 phploc -v ``` | Image | PHP version | Composer version | Tools versions | | ----- | ----------- | ---------------- | ----- | -| `zdenekdrahos/phpqa:v1.25.0-php7.2` | 7.2 | 1.8.0 | Versions that supports symfony2 components from default composer.lock. Not [latest versions](https://github.com/EdgedesignCZ/phpqa/issues/159#issuecomment-452794397). | -| `zdenekdrahos/phpqa:v1.25.0-php7.4` | 7.4 | 2.0.7 | Generally, latest versions available at the moment. If you need different versions, then [build custom docker image](https://github.com/EdgedesignCZ/phpqa/issues/210) | +| `zdenekdrahos/phpqa:v1.26.0-php7.2` | 7.2 | 1.8.0 | Versions that supports symfony2 components from default composer.lock. Not [latest versions](https://github.com/EdgedesignCZ/phpqa/issues/159#issuecomment-452794397). | +| `zdenekdrahos/phpqa:v1.26.0-php7.4` | 7.4 | 2.0.7 | Generally, latest versions available at the moment. If you need different versions, then [build custom docker image](https://github.com/EdgedesignCZ/phpqa/issues/210) | Beware that images as lean as possible. That can be a problem for running PHPUnit tests. In that case, you might need different PHP version, miss PHP extensions for database etc. @@ -144,8 +144,8 @@ You can [install phpqa](https://gitlab.com/costlocker/integrations/blob/213aab7/ Or [build custom docker image](https://github.com/EdgedesignCZ/phpqa/issues/168#issuecomment-489180974). ```bash -docker run --rm -it zdenekdrahos/phpqa:v1.25.0-php7.2 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools" -docker run --rm -it zdenekdrahos/phpqa:v1.25.0-php7.4 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools" +docker run --rm -it zdenekdrahos/phpqa:v1.26.0-php7.2 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools" +docker run --rm -it zdenekdrahos/phpqa:v1.26.0-php7.4 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools" ``` There are also available images [eko3alpha/docker-phpqa](https://hub.docker.com/r/eko3alpha/docker-phpqa/) and [sparkfabrik/docker-phpqa](https://hub.docker.com/r/sparkfabrik/docker-phpqa/). @@ -491,7 +491,7 @@ stages: test: stage: test - image: zdenekdrahos/phpqa:v1.25.0-php7.2 + image: zdenekdrahos/phpqa:v1.26.0-php7.2 variables: BACKEND_QA: "*/backend/var/QA" BACKEND_CACHE: $CI_PROJECT_DIR/.composercache @@ -517,7 +517,7 @@ on: [push] jobs: qa: - container: zdenekdrahos/phpqa:v1.25.0-php7.4 + container: zdenekdrahos/phpqa:v1.26.0-php7.4 runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/phpqa b/phpqa index ded441c..8f269c3 100755 --- a/phpqa +++ b/phpqa @@ -1,7 +1,7 @@ #!/usr/bin/env php