Skip to content

Commit d9504f5

Browse files
committed
prepare bugfixes release
1 parent db0f8ae commit d9504f5

File tree

9 files changed

+37
-19
lines changed

9 files changed

+37
-19
lines changed

.changes/7.x/7.1.1.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
## 7.1.1 - 2024-01-18
3+
4+
### Changed
5+
6+
- Add PHP-Parser 5.0 support (migrate code following https://github.com/nikic/PHP-Parser/blob/master/UPGRADE-5.0.md guide)
7+
8+
### Removed
9+
10+
- `Bartlett\CompatInfo\Application\PhpParser\NodeDumper` class (incompatible with PHP-Parser 5, and unused for production)
11+
12+
### Fixed
13+
14+
- [#368](https://github.com/llaville/php-compatinfo/issues/368) : clarify documentation about `ext-pdo` requirement
15+
- Sarif report did not report rules on recent php versions (8.2 and 8.3)
16+
- ReservedSniff is now able to detect correctly mixed and never keyword usage
17+
18+
**Full Changelog**: [7.1.0...7.1.1](https://github.com/llaville/php-compatinfo/compare/7.1.0...7.1.1)

.changes/7.x/unreleased/Changed-20240110-101704.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/7.x/unreleased/Fixed-20240102-144034.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/7.x/unreleased/Fixed-20240108-063636.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.changes/7.x/unreleased/Fixed-20240118-075507.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.changes/7.x/unreleased/Removed-20240111-094935.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
88
and is generated by [Changie](https://github.com/miniscruff/changie).
99

10+
## 7.1.1 - 2024-01-18
11+
12+
### Changed
13+
14+
- Add PHP-Parser 5.0 support (migrate code following https://github.com/nikic/PHP-Parser/blob/master/UPGRADE-5.0.md guide)
15+
16+
### Removed
17+
18+
- `Bartlett\CompatInfo\Application\PhpParser\NodeDumper` class (incompatible with PHP-Parser 5, and unused for production)
19+
20+
### Fixed
21+
22+
- [#368](https://github.com/llaville/php-compatinfo/issues/368) : clarify documentation about `ext-pdo` requirement
23+
- Sarif report did not report rules on recent php versions (8.2 and 8.3)
24+
- ReservedSniff is now able to detect correctly mixed and never keyword usage
25+
26+
**Full Changelog**: [7.1.0...7.1.1](https://github.com/llaville/php-compatinfo/compare/7.1.0...7.1.1)
27+
1028
## 7.1.0 - 2024-01-01
1129

1230
> **WARNING**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Running on PHP greater or equal than 7.2 for parsing source code in a format PHP
5454
[Branch_71x]: https://github.com/llaville/php-compatinfo/tree/7.1
5555
[PHPVersion_71x-img]: https://img.shields.io/packagist/php-v/bartlett/php-compatinfo/7.1.0
5656
[PHPVersion_71x]: https://www.php.net/supported-versions.php
57-
[Packagist_71x-img]: https://img.shields.io/badge/packagist-v7.1.0-blue
57+
[Packagist_71x-img]: https://img.shields.io/badge/packagist-v7.1.1-blue
5858
[Packagist_71x]: https://packagist.org/packages/bartlett/php-compatinfo
5959
[License_71x-img]: https://img.shields.io/packagist/l/bartlett/php-compatinfo
6060
[License_71x]: https://github.com/llaville/php-compatinfo/blob/7.1/LICENSE

resources/application-parser/datasource.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
\Bartlett\CompatInfo\Application\PhpParser\NodeVisitor\NodeVisitor::class,
2020
\Bartlett\CompatInfo\Application\PhpParser\NodeVisitor\ParentContextVisitor::class,
2121
\Bartlett\CompatInfo\Application\PhpParser\NodeVisitor\VersionResolverVisitor::class,
22-
\Bartlett\CompatInfo\Application\PhpParser\NodeDumper::class,
2322
\Bartlett\CompatInfo\Application\PhpParser\Parser::class,
2423
];
2524
foreach ($classes as $class) {

0 commit comments

Comments
 (0)