Skip to content

Commit c1600cd

Browse files
jrfnlgrogy
authored andcommitted
Changelog for the 1.4.0 release
1 parent d8ccacd commit c1600cd

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

CHANGELOG.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,85 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

99
[Unreleased]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/compare/v1.3.2...HEAD
1010

11+
12+
## [1.4.0] - 2024-03-27
13+
14+
### Added
15+
- The "skip linting" feature can now be used in PHP files starting with a shebang, [#146] from [@xaben].
16+
17+
### Fixed
18+
- PHP 8.4 deprecation notice, [#154] from [@Ayesh] and [@jrfnl].
19+
- Bug fix: the PHP version check in the application bootstrap did not work on PHP < 5.3, [#100] from [@jrfnl], fixes [#62].
20+
- Bug fix: files containing the `~` character in their name can now be processed correctly, [#118] from [@jrfnl].
21+
- Bug fix: error message sometimes displayed on last line of code snippet, [#98] from [@jrfnl], fixes [#93].
22+
- Bug fix: error message would sometimes contain duplicate information, [#117] from [@jrfnl].
23+
- Bug fix: the "in file .. on line part" text did not always get cleaned correctly from the error message, [#118] from [@jrfnl].
24+
25+
### Changed
26+
- The percentage output in the progress report is now aligned, [#140] from [@robertology].
27+
- The error message displayed when the PHP version is too low for the application to run is now more informative, [#100] from [@jrfnl].
28+
- Composer: The package will now identify itself as a static analysis/linting tool, [#134] from [@staabm].
29+
- Composer: fix grammar error, [#139] from [@TravisCarden].
30+
- README: improvement to the install instructions, [#99] from [@samsonasik], fixes [#96].
31+
- README: move screenshot, [#97] from [@jrfnl].
32+
- README: fix typos, [#124] from [@krsriq].
33+
- Docs: code style consistency, [#137] from [@lens0021].
34+
35+
### Internal
36+
- Prevent PHAR not being compatible with PHP < 7.0, [#116] from [@jrfnl].
37+
- GH Actions: update used actions, [#109], [#158] from [@jrfnl].
38+
- GH Actions: updates for box 4.x, [#121] from [@jrfnl].
39+
- GH Actions: fix download URL for box, [#125] from [@jrfnl].
40+
- GH Actions: use fail-fast with setup-php when creating the binaries, [#131], [#132] from [@jrfnl].
41+
- GH Actions: update PHP version for PHAR boxing, [#152] from [@jrfnl].
42+
- GH Actions: harden the workflow against PHPCS ruleset errors, [#128] from [@jrfnl].
43+
- GH Actions: bust the cache semi-regularly, [#129] from [@jrfnl].
44+
- GH Actions: update PHP versions in workflows, [#130] from [@jrfnl].
45+
- GH Actions: update for the release of PHP 8.3, [#150], [#151] from [@jrfnl].
46+
- GH Actions: fix duplicate release, [#159] from [@jrfnl].
47+
- SettingsParseArgumentsTest: fix bug in test, [#102] from [@jrfnl].
48+
- OutputTest: fix risky test, [#156] from [@jrfnl].
49+
- Tests: fix issue with Nette Tester 1.x, [#141] from [@grogy].
50+
- Add dependabot configuration file, [#148] from [@jrfnl].
51+
52+
[1.4.0]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/compare/v1.3.2...v1.4.0
53+
54+
[#62]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/62
55+
[#93]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/93
56+
[#96]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues/96
57+
[#97]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/97
58+
[#98]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/98
59+
[#99]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/99
60+
[#100]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/100
61+
[#102]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/102
62+
[#109]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/109
63+
[#116]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/116
64+
[#117]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/117
65+
[#118]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/118
66+
[#121]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/121
67+
[#124]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/124
68+
[#125]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/125
69+
[#128]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/128
70+
[#129]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/129
71+
[#130]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/130
72+
[#131]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/131
73+
[#132]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/132
74+
[#134]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/134
75+
[#137]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/137
76+
[#139]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/139
77+
[#140]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/140
78+
[#141]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/141
79+
[#146]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/146
80+
[#148]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/148
81+
[#150]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/150
82+
[#151]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/151
83+
[#152]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/152
84+
[#154]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/154
85+
[#156]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/156
86+
[#158]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/158
87+
[#159]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/159
88+
89+
1190
## [1.3.2] - 2022-02-19
1291

1392
### Added
@@ -152,18 +231,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
152231
[1.2.0]: https://github.com/php-parallel-lint/PHP-Parallel-Lint/compare/v1.1.0...v1.2.0
153232

154233
[@arxeiss]: https://github.com/arxeiss
234+
[@Ayesh]: https://github.com/Ayesh
155235
[@Erkens]: https://github.com/Erkens
156236
[@glensc]: https://github.com/glensc
157237
[@gmazzap]: https://github.com/gmazzap
158238
[@grogy]: https://github.com/grogy
159239
[@jankonas]: https://github.com/jankonas
160240
[@jrfnl]: https://github.com/jrfnl
241+
[@krsriq]: https://github.com/krsriq
242+
[@lens0021]: https://github.com/lens0021
161243
[@lukas9393]: https://github.com/lukas9393
162244
[@mfn]: https://github.com/mfn
163245
[@OndraM]: https://github.com/OndraM
164246
[@ondrejmirtes]: https://github.com/ondrejmirtes
165247
[@reedy]: https://github.com/reedy
248+
[@robertology]: https://github.com/robertology
166249
[@roelofr]: https://github.com/roelofr
250+
[@samsonasik]: https://github.com/samsonasik
251+
[@staabm]: https://github.com/staabm
167252
[@stronk7]: https://github.com/stronk7
168253
[@szepeviktor]: https://github.com/szepeviktor
254+
[@TravisCarden]: https://github.com/TravisCarden
169255
[@villfa]: https://github.com/villfa
256+
[@xaben]: https://github.com/xaben

0 commit comments

Comments
 (0)