Skip to content

Commit

Permalink
prepare bugfixes release
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Jan 18, 2024
1 parent db0f8ae commit d9504f5
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 19 deletions.
18 changes: 18 additions & 0 deletions .changes/7.x/7.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

## 7.1.1 - 2024-01-18

### Changed

- Add PHP-Parser 5.0 support (migrate code following https://github.com/nikic/PHP-Parser/blob/master/UPGRADE-5.0.md guide)

### Removed

- `Bartlett\CompatInfo\Application\PhpParser\NodeDumper` class (incompatible with PHP-Parser 5, and unused for production)

### Fixed

- [#368](https://github.com/llaville/php-compatinfo/issues/368) : clarify documentation about `ext-pdo` requirement
- Sarif report did not report rules on recent php versions (8.2 and 8.3)
- ReservedSniff is now able to detect correctly mixed and never keyword usage

**Full Changelog**: [7.1.0...7.1.1](https://github.com/llaville/php-compatinfo/compare/7.1.0...7.1.1)
4 changes: 0 additions & 4 deletions .changes/7.x/unreleased/Changed-20240110-101704.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/7.x/unreleased/Fixed-20240102-144034.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/7.x/unreleased/Fixed-20240108-063636.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/7.x/unreleased/Fixed-20240118-075507.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/7.x/unreleased/Removed-20240111-094935.yaml

This file was deleted.

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

## 7.1.1 - 2024-01-18

### Changed

- Add PHP-Parser 5.0 support (migrate code following https://github.com/nikic/PHP-Parser/blob/master/UPGRADE-5.0.md guide)

### Removed

- `Bartlett\CompatInfo\Application\PhpParser\NodeDumper` class (incompatible with PHP-Parser 5, and unused for production)

### Fixed

- [#368](https://github.com/llaville/php-compatinfo/issues/368) : clarify documentation about `ext-pdo` requirement
- Sarif report did not report rules on recent php versions (8.2 and 8.3)
- ReservedSniff is now able to detect correctly mixed and never keyword usage

**Full Changelog**: [7.1.0...7.1.1](https://github.com/llaville/php-compatinfo/compare/7.1.0...7.1.1)

## 7.1.0 - 2024-01-01

> **WARNING**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Running on PHP greater or equal than 7.2 for parsing source code in a format PHP
[Branch_71x]: https://github.com/llaville/php-compatinfo/tree/7.1
[PHPVersion_71x-img]: https://img.shields.io/packagist/php-v/bartlett/php-compatinfo/7.1.0
[PHPVersion_71x]: https://www.php.net/supported-versions.php
[Packagist_71x-img]: https://img.shields.io/badge/packagist-v7.1.0-blue
[Packagist_71x-img]: https://img.shields.io/badge/packagist-v7.1.1-blue
[Packagist_71x]: https://packagist.org/packages/bartlett/php-compatinfo
[License_71x-img]: https://img.shields.io/packagist/l/bartlett/php-compatinfo
[License_71x]: https://github.com/llaville/php-compatinfo/blob/7.1/LICENSE
Expand Down
1 change: 0 additions & 1 deletion resources/application-parser/datasource.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
\Bartlett\CompatInfo\Application\PhpParser\NodeVisitor\NodeVisitor::class,
\Bartlett\CompatInfo\Application\PhpParser\NodeVisitor\ParentContextVisitor::class,
\Bartlett\CompatInfo\Application\PhpParser\NodeVisitor\VersionResolverVisitor::class,
\Bartlett\CompatInfo\Application\PhpParser\NodeDumper::class,
\Bartlett\CompatInfo\Application\PhpParser\Parser::class,
];
foreach ($classes as $class) {
Expand Down

0 comments on commit d9504f5

Please sign in to comment.