Skip to content

Commit ad97e48

Browse files
committed
Changelog v1.27.2
1 parent 8dcfd82 commit ad97e48

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
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.27.2
5+
6+
* _php8.5_ - fix deprecated null array offset - [#271](https://github.com/EdgedesignCZ/phpqa/pull/271)
7+
48
## v1.27.1
59

610
* _internal (CI)_

README.md

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

126126
```bash
127-
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.27.1-php7.2 phpqa tools
127+
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.27.2-php7.2 phpqa tools
128128
# using a tool without phpqa
129-
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.27.1-php7.2 phploc -v
129+
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.27.2-php7.2 phploc -v
130130
```
131131

132132
| Image | PHP version | Tools versions |
133133
| ----- | ----------- | ----- |
134-
| `ghcr.io/edgedesigncz/phpqa:v1.27.1-php7.2` | 7.2 | Versions that supports symfony2 components. Not [latest versions](https://github.com/EdgedesignCZ/phpqa/issues/159#issuecomment-452794397). |
135-
| `ghcr.io/edgedesigncz/phpqa:v1.27.1-php8.1` | 8.1 | |
136-
| `ghcr.io/edgedesigncz/phpqa:v1.27.1-php8.2` | 8.2 | |
137-
| `ghcr.io/edgedesigncz/phpqa:v1.27.1-php8.3` | 8.3 | |
138-
| `ghcr.io/edgedesigncz/phpqa:v1.27.1-php8.4` | 8.4 | |
139-
| `ghcr.io/edgedesigncz/phpqa:v1.27.1-php8.5` | 8.5 | Generally, latest versions available at the moment. If you need different versions, then [build custom docker image](https://github.com/EdgedesignCZ/phpqa/issues/210) |
134+
| `ghcr.io/edgedesigncz/phpqa:v1.27.2-php7.2` | 7.2 | Versions that supports symfony2 components. Not [latest versions](https://github.com/EdgedesignCZ/phpqa/issues/159#issuecomment-452794397). |
135+
| `ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.1` | 8.1 | |
136+
| `ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.2` | 8.2 | |
137+
| `ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.3` | 8.3 | |
138+
| `ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.4` | 8.4 | |
139+
| `ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.5` | 8.5 | 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.27.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.27.1-php8.4 sh -c "php --version && composer --version && composer outdated --direct --all && phpqa tools"
147+
docker run --rm -it ghcr.io/edgedesigncz/phpqa:v1.27.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.27.2-php8.4 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/).
@@ -492,7 +492,7 @@ stages:
492492
493493
test:
494494
stage: test
495-
image: ghcr.io/edgedesigncz/phpqa:v1.27.1-php7.2
495+
image: ghcr.io/edgedesigncz/phpqa:v1.27.2-php7.2
496496
variables:
497497
BACKEND_QA: "*/backend/var/QA"
498498
BACKEND_CACHE: $CI_PROJECT_DIR/.composercache
@@ -518,7 +518,7 @@ on: [push]
518518
519519
jobs:
520520
qa:
521-
container: ghcr.io/edgedesigncz/phpqa:v1.27.1-php8.4
521+
container: ghcr.io/edgedesigncz/phpqa:v1.27.2-php8.4
522522
runs-on: ubuntu-latest
523523
steps:
524524
- 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.27.1');
4+
define('PHPQA_VERSION', '1.27.2');
55
define('PHPQA_USED_COMMAND', implode(' ', $argv));
66

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

0 commit comments

Comments
 (0)