Skip to content

Commit 145f2c0

Browse files
committed
Changelog v1.20.0
1 parent 88cb1e8 commit 145f2c0

3 files changed

Lines changed: 19 additions & 4 deletions

File tree

CHANGELOG.md

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

22
# Changelog
33

4+
## v1.20.0
5+
6+
* [#157](https://github.com/EdgedesignCZ/phpqa/pull/157) - support Psalm 3.x _([#158](https://github.com/EdgedesignCZ/phpqa/pull/158) internalClass refactoring)_
7+
* [#156](https://github.com/EdgedesignCZ/phpqa/pull/156) - upgrade phpcs, enable defining allowed errors count in . phpqa.yml
8+
* [#150](https://github.com/EdgedesignCZ/phpqa/issues/150) - phpstan - use --errorFormat only if version < 0.10.3
9+
* [#149](https://github.com/EdgedesignCZ/phpqa/pull/149) - fix displaying psalm issue line numbers
10+
* [#147](https://github.com/EdgedesignCZ/phpqa/issues/147) - phpmd - fix excluding files on Windows
11+
* [#145](https://github.com/EdgedesignCZ/phpqa/pull/145) - fix psalm issues (v2 compatibility - [#142](https://github.com/EdgedesignCZ/phpqa/issues/142) stopOnFirstError, UntypedParam, [#144](https://github.com/EdgedesignCZ/phpqa/issues/144)/[#146](https://github.com/EdgedesignCZ/phpqa/issues/146) --use-ini-defaults)
12+
* [#140](https://github.com/EdgedesignCZ/phpqa/issues/140) - fix ignoring subdirectories on Windows
13+
* [#138](https://github.com/EdgedesignCZ/phpqa/pull/138) - fix phpunit issues ([#136](https://github.com/EdgedesignCZ/phpqa/issues/136) spaces in path, [#137](https://github.com/EdgedesignCZ/phpqa/issues/137) html/xml coverage directory)
14+
* _CI_
15+
* [#139](https://github.com/EdgedesignCZ/phpqa/pull/139) - fix installing phpstan
16+
* [#154](https://github.com/EdgedesignCZ/phpqa/pull/154) - fix phpunit CVE, add php 7.3
17+
* [#141](https://github.com/EdgedesignCZ/phpqa/issues/141) - Windows build on Appveyor
18+
419
## v1.19.0
520

621
* **HTML reports**

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ Beware that the image is as lean as possible. That can be a problem for running
130130
In that case, you might miss PHP extensions for database etc (_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)_).
131131

132132
```bash
133-
docker run --rm -it zdenekdrahos/phpqa:v1.19.0 phpqa tools
133+
docker run --rm -it zdenekdrahos/phpqa:v1.20.0 phpqa tools
134134
# using a tool without phpqa
135-
docker run --rm -it zdenekdrahos/phpqa:v1.19.0 phploc -v
135+
docker run --rm -it zdenekdrahos/phpqa:v1.20.0 phploc -v
136136
```
137137

138138
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/).
@@ -425,7 +425,7 @@ stages:
425425
426426
test:
427427
stage: test
428-
image: zdenekdrahos/phpqa:v1.19.0
428+
image: zdenekdrahos/phpqa:v1.20.0
429429
variables:
430430
BACKEND_QA: "*/backend/var/QA"
431431
BACKEND_CACHE: $CI_PROJECT_DIR/.composercache

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.19.0');
4+
define('PHPQA_VERSION', '1.20.0');
55
define('PHPQA_USED_COMMAND', implode(' ', $argv));
66

77
if (file_exists(__DIR__ . '/vendor/autoload.php')) {

0 commit comments

Comments
 (0)