You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Includes:
* Mention of all relevant changes.
* Adding a link for the version diff.
* Updating the `VERSION` document with the version nr for the release.
* Updating the PHPCSDebug output sample in the README
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,26 @@ This projects adheres to [Keep a CHANGELOG](http://keepachangelog.com/) and uses
10
10
_Nothing yet._
11
11
12
12
13
+
## [1.2.0] - 2022-09-23
14
+
15
+
### Added
16
+
* An XSD schema for PHPCS sniff documentation files. Thanks to [@dingo_d] for this awesome contribution!
17
+
The XSD schema can be added to PHPCS sniff documentation XML files and can be used to verify these files comply with the requirements set by PHPCS, so the documentation will display correctly when using the PHPCS `--generator=...` feature.
18
+
Information about how to use this new feature has been added to the README.
19
+
* PHPCSDebug/TokenList sniff: tabs and spacess will now be visualized in whitespace-only tokens. In comment tokens, leading and trailing whitespace will be visualized.
20
+
Whitespace will also be visualized for any token which has (or should have) undergone a "tabs to spaces" conversion.
21
+
22
+
### Changed
23
+
* PHPCSDebug/TokenList sniff: the `'orig_content'` will now be shown for all tokens which have undergone a "tabs to spaces" conversion. Previously it was only shown for whitespace tokens which had been converted.
24
+
* The package will now identify itself as a static analysis tool to Composer. Thanks [@GaryJones]!
25
+
* Various other code and documentation improvements.
26
+
* Miscellaneous updates to the development environment and CI scripts.
27
+
28
+
### Fixed
29
+
* FeatureComplete: wrong error message was displayed for missing test case files in colors enabled mode.
30
+
* PHPCSDebug/TokenList sniff: for rare edge cases when PHPCS has not set the `'length'` information for a token, the length will no longer be calculated, but will show as `?`. This prevents a mismatch/misrepresentation between the output of the sniff and the real token array.
0 commit comments