Skip to content

Commit fa25523

Browse files
committed
Changelog v1.18.0
1 parent e14de0e commit fa25523

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

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

22
# Changelog
33

4+
## v1.18.0
5+
6+
* **phpstan**
7+
* [#108](https://github.com/EdgedesignCZ/phpqa/issues/108) - pretty html report, checkstyle output (_BC, requires phpstan >= [0.8](https://github.com/phpstan/phpstan/releases/tag/0.8)_)
8+
* [#110](https://github.com/EdgedesignCZ/phpqa/issues/110) - use entire phpstan config, not just parameters
9+
10+
![screenshot from 2018-02-08 19 41 21](https://user-images.githubusercontent.com/7994022/35991629-11ffea0a-0d08-11e8-9b3b-9cf8afa6941a.png)
11+
412
## v1.17.0
513

614
* [#98](https://github.com/EdgedesignCZ/phpqa/pull/98) - allow multiple configurations in `--config`

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ Beware that the image is as lean as possible. That can be a problem for running
131131
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)_).
132132

133133
```bash
134-
docker run --rm -it zdenekdrahos/phpqa:v1.17.0 phpqa tools
134+
docker run --rm -it zdenekdrahos/phpqa:v1.18.0 phpqa tools
135135
# using a tool without phpqa
136-
docker run --rm -it zdenekdrahos/phpqa:v1.17.0 phploc -v
136+
docker run --rm -it zdenekdrahos/phpqa:v1.18.0 phploc -v
137137
```
138138

139139
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/).
@@ -412,7 +412,7 @@ stages:
412412
413413
test:
414414
stage: test
415-
image: zdenekdrahos/phpqa:v1.17.0
415+
image: zdenekdrahos/phpqa:v1.18.0
416416
variables:
417417
BACKEND_QA: "*/backend/var/QA"
418418
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.17.0');
4+
define('PHPQA_VERSION', '1.18.0');
55
define('PHPQA_USED_COMMAND', implode(' ', $argv));
66

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

0 commit comments

Comments
 (0)