Skip to content

Commit f12f058

Browse files
committed
Changelog v1.26.2
1 parent d1afabe commit f12f058

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

22
# Changelog
33

4+
## v1.26.2
5+
6+
* **tools** - upgrade phpcs _(support PHP 8.1 Enums)_ [#251](https://github.com/EdgedesignCZ/phpqa/pull/251)
7+
48
## v1.26.1
59

610
* **Docker** - php 8.1, github container registry [#249](https://github.com/EdgedesignCZ/phpqa/pull/249)

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -128,24 +128,24 @@ Official docker image repository is https://github.com/EdgedesignCZ/phpqa/pkgs/c
128128
Images can be used at [Gitlab CI](#gitlabci---docker-installation--composer-cache--artifacts).
129129

130130
```bash
131-
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.26.1-php7.2 phpqa tools
131+
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.26.2-php7.2 phpqa tools
132132
# using a tool without phpqa
133-
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.26.1-php7.2 phploc -v
133+
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.26.2-php7.2 phploc -v
134134
```
135135

136136
| Image | PHP version | Composer version | Tools versions |
137137
| ----- | ----------- | ---------------- | ----- |
138-
| `ghcr.io/edgedesigncz/phpqa:v1.26.1-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). |
139-
| `ghcr.io/edgedesigncz/phpqa:v1.26.1-php8.1` | 8.1 | 2.2.12 | Generally, latest versions available at the moment. If you need different versions, then [build custom docker image](https://github.com/EdgedesignCZ/phpqa/issues/210) |
138+
| `ghcr.io/edgedesigncz/phpqa:v1.26.2-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). |
139+
| `ghcr.io/edgedesigncz/phpqa:v1.26.2-php8.1` | 8.1 | 2.2.12 | Generally, latest versions available at the moment. If you need different versions, then [build custom docker image](https://github.com/EdgedesignCZ/phpqa/issues/210) |
140140

141141
Beware that images as lean as possible. That can be a problem for running PHPUnit tests.
142142
In that case, you might need different PHP version, miss PHP extensions for database etc.
143143
You can [install phpqa](https://gitlab.com/costlocker/integrations/blob/213aab7/.ci/get-phpqa-binary#L40) in another [php image](https://gitlab.com/costlocker/integrations/blob/213aab7/.ci/.gitlab-ci.yml#L28)
144144
Or [build custom docker image](https://github.com/EdgedesignCZ/phpqa/issues/168#issuecomment-489180974).
145145

146146
```bash
147-
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.26.1-php7.2 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools"
148-
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.26.1-php8.1 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools"
147+
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.26.2-php7.2 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools"
148+
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.26.2-php8.1 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools"
149149
```
150150

151151
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:
491491
492492
test:
493493
stage: test
494-
image: ghcr.io/edgedesigncz/phpqa:v1.26.1-php7.2
494+
image: ghcr.io/edgedesigncz/phpqa:v1.26.2-php7.2
495495
variables:
496496
BACKEND_QA: "*/backend/var/QA"
497497
BACKEND_CACHE: $CI_PROJECT_DIR/.composercache
@@ -517,7 +517,7 @@ on: [push]
517517
518518
jobs:
519519
qa:
520-
container: ghcr.io/edgedesigncz/phpqa:v1.26.1-php8.1
520+
container: ghcr.io/edgedesigncz/phpqa:v1.26.2-php8.1
521521
runs-on: ubuntu-latest
522522
steps:
523523
- uses: actions/checkout@v2

phpqa

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env php
22
<?php
33

4-
define('PHPQA_VERSION', '1.26.1');
4+
define('PHPQA_VERSION', '1.26.2');
55
define('PHPQA_USED_COMMAND', implode(' ', $argv));
66

77
if (getenv('COMPOSER_BIN_DIR') && getenv('COMPOSER_VENDOR_DIR')) {

0 commit comments

Comments
 (0)