Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

PRs and issues are linked, so you can find more about it. Thanks to [ChangelogLinker](https://github.com/Symplify/ChangelogLinker).

<!-- changelog-linker -->

## Unreleased

### Added

- [#1302] [Symfony 4.3] Add `SimplifyWebTestCaseAssertionsRector`
- [#1311] [CodingStyle] Add `SplitGroupedConstantsAndPropertiesRector`
- [#1301] [PHPUnit] Add `RemoveExpectAnyFromMockRector`
- [#1304] [SOLID] Add `PrivatizeLocalClassConstantRector`
- [#1303] [SOLID] Add `FinalizeClassesWithoutChildrenRector`
- [#1302] [Symfony 4.3] Add `SimplifyWebTestCaseAssertionsRector`

### Changed

- [#1314] rename `Attribute` to `AttributeKey` to prevent duplicated names with other projects

### Fixed

- [#1305] [Symfony 3.0] Fix wrong indentation in symfony30.yaml, Thanks to [@Dodenis]

[#1302]: https://github.com/rectorphp/rector/pull/1302
[#1314]: https://github.com/rectorphp/rector/pull/1314
[#1311]: https://github.com/rectorphp/rector/pull/1311
[#1305]: https://github.com/rectorphp/rector/pull/1305
[#1304]: https://github.com/rectorphp/rector/pull/1304
[#1303]: https://github.com/rectorphp/rector/pull/1303
[#1301]: https://github.com/rectorphp/rector/pull/1301
[@Dodenis]: https://github.com/Dodenis
3 changes: 3 additions & 0 deletions changelog-linker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# see https://github.com/symplify/changelogLinker#3-can-i-thank-my-contributors
parameters:
authors_to_ignore: ['TomasVotruba']
10 changes: 8 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@
"symplify/package-builder": "^5.4.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"ocramius/package-versions": "^1.3",
"phpunit/phpunit": "^7.5|^8.0",
"symplify/changelog-linker": "^5.4",
"symplify/easy-coding-standard": "^5.4.6",
"friendsofphp/php-cs-fixer": "^2.14",
"symplify/monorepo-builder": "^5.4.6",
"symplify/phpstan-extensions": "^5.4.6",
"thecodingmachine/phpstan-strict-rules": "^0.11.0",
Expand Down Expand Up @@ -124,6 +125,11 @@
"bin/clean_trailing_spaces.sh"
],
"phpstan": "vendor/bin/phpstan analyse packages src tests --error-format symplify --ansi",
"changelog": [
"vendor/bin/changelog-linker dump-merges --in-categories",
"vendor/bin/changelog-linker link",
"vendor/bin/changelog-linker cleanup"
],
"docs": [
"bin/rector dump-rectors -o markdown > docs/AllRectorsOverview.md",
"bin/rector dump-nodes -o markdown > docs/NodesOverview.md"
Expand All @@ -140,4 +146,4 @@
"dev-master": "0.5-dev"
}
}
}
}