Skip to content

Commit d4f789e

Browse files
authored
[Release] v2.0 (#480)
1 parent c230801 commit d4f789e

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

CHANGELOG.md

+39
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,45 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [v2.0.0]
8+
### Added
9+
- Minimal PHP version is now PHP 7.4 ([#391](https://github.com/nunomaduro/phpinsights/pull/391))
10+
- Support multiple path to analyse ([#384](https://github.com/nunomaduro/phpinsights/pull/384))
11+
- Autofixer ([#337](https://github.com/nunomaduro/phpinsights/pull/337))
12+
- Syntax check Insight is now using [PHP-Parallel-lint](https://github.com/php-parallel-lint/PHP-Parallel-Lint) ([#373](https://github.com/nunomaduro/phpinsights/pull/373), [#437](https://github.com/nunomaduro/phpinsights/pull/437), [#487](https://github.com/nunomaduro/phpinsights/pull/487))
13+
- Cache on analysis ([#407](https://github.com/nunomaduro/phpinsights/pull/407))
14+
- Allow to override preset config ([#420](https://github.com/nunomaduro/phpinsights/pull/420))
15+
- Support Composer v2 ([#433](https://github.com/nunomaduro/phpinsights/pull/433), [#442](https://github.com/nunomaduro/phpinsights/pull/442))
16+
- Support phploc v7 ([#428](https://github.com/nunomaduro/phpinsights/pull/428))
17+
- Parallelization of analysis ([#414](https://github.com/nunomaduro/phpinsights/pull/414))
18+
- Support PHP8 ([#448](https://github.com/nunomaduro/phpinsights/pull/448))
19+
- CheckStyle report use the dot notation format to be using with Checkstyle parsers ([#464](https://github.com/nunomaduro/phpinsights/pull/464))
20+
- Allow to use `version` in composer.json ([#473](https://github.com/nunomaduro/phpinsights/pull/473))
21+
- Upgrade to [Slevomat/Coding-standard v7](https://github.com/slevomat/coding-standard) ([#477](https://github.com/nunomaduro/phpinsights/pull/477))
22+
- New option to show summary only ([#481](https://github.com/nunomaduro/phpinsights/pull/481))
23+
- Support PHP-CS-Fixer v3 ([#490](https://github.com/nunomaduro/phpinsights/pull/490))
24+
- CodeClimate Formatter ([#498](https://github.com/nunomaduro/phpinsights/pull/498))
25+
- Configuring Fixers indentation ([#502](https://github.com/nunomaduro/phpinsights/pull/502))
26+
- Diff output configurable ([#482](https://github.com/nunomaduro/phpinsights/pull/482))
27+
28+
### Fixed
29+
- Performance issues ([#382](https://github.com/nunomaduro/phpinsights/pull/382), [#387](https://github.com/nunomaduro/phpinsights/pull/387), [#405](https://github.com/nunomaduro/phpinsights/pull/405))
30+
- Check that lock file exist ([#389](https://github.com/nunomaduro/phpinsights/pull/389))
31+
- Avoid conflict with phpcs config file ([#402](https://github.com/nunomaduro/phpinsights/pull/402))
32+
- Clean display message without file target ([#404](https://github.com/nunomaduro/phpinsights/pull/404))
33+
- IDE Link with colors ([#413](https://github.com/nunomaduro/phpinsights/pull/413))
34+
- No error trigger when Details Message issue contains console styling ([#447](https://github.com/nunomaduro/phpinsights/pull/447))
35+
- Excluded files from Cyclomatic Complexity are no more take in account for score ([#460](https://github.com/nunomaduro/phpinsights/pull/460))
36+
37+
### Changed
38+
- Refactoring code ([#391](https://github.com/nunomaduro/phpinsights/pull/391), [#393](https://github.com/nunomaduro/phpinsights/pull/393))
39+
- Process Security Checks during the project inspection ([#406](https://github.com/nunomaduro/phpinsights/pull/406))
40+
- Drop Travis-CI and use GithubAction ([#448](https://github.com/nunomaduro/phpinsights/pull/448))
41+
- Drop `object-calisthenics/phpcs-calisthenics-rules` dependency ([#477](https://github.com/nunomaduro/phpinsights/pull/477))
42+
43+
### Deprecated
44+
- Some Insights hare now deprecated or namespace changed. Find them [here (#477)][#477](https://github.com/nunomaduro/phpinsights/pull/477)
45+
746
## [v1.14.1]
847
### Changed
948
- Switch service to discover vulnerabilities ([#453](https://github.com/nunomaduro/phpinsights/pull/453))

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "phpinsights",
3-
"version": "1.14.1",
3+
"version": "2.0.0",
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {

src/Domain/Kernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ final class Kernel
2020
*
2121
* @noRector Rector\DeadCode\Rector\ClassConst\RemoveUnusedClassConstantRector
2222
*/
23-
public const VERSION = 'v1.14.1';
23+
public const VERSION = 'v2.0.0';
2424

2525
/**
2626
* Bootstraps the usage of the package.

0 commit comments

Comments
 (0)