Skip to content

Commit ff79554

Browse files
authored
Prepare release v6.0.0-beta0 (palantir#4885)
1 parent f04d150 commit ff79554

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
@@ -1,5 +1,44 @@
11
# Change Log
22

3+
## v6.0.0-beta0
4+
5+
- :fire: BREAKING CHANGES :fire:
6+
- [api] Changed default formatter to stylish (#4872)
7+
- [enhancement] Removed formatting and whitespace rules from `tslint:recommended` configuration (#4871)
8+
- [enhancement] Removed pedantic rules from `tslint:recommended` configuration (#4312)
9+
- [enhancement] `vso` formatter now reports severity of rule failures (#4286)
10+
- [enhancement] [`typedef`](https://palantir.github.io/tslint/rules/typedef/) rule `arrow-call-signature` option is more consistent in reporting errors on lambdas and will flag more violations that were missed in the previous rule implementation (#4533)
11+
- [bugfix] [`ordered-imports`](https://palantir.github.io/tslint/rules/ordered-imports/) is now consistent with TypeScript's Organise Imports ordering (#4064)
12+
- [bugfix] [`member-ordering`](https://palantir.github.io/tslint/rules/member-ordering/) now checks property accessors (getters and setters) (#3984)
13+
- Other changes
14+
- [bugfix] Removed deprecated rules from `tslint:all` configuration (#4862)
15+
- [bugfix] Preserve significant zeros in fixer for number-literal-format (#4856)
16+
- [bugfix] [`no-redundant-jsdoc`](https://palantir.github.io/tslint/rules/no-redundant-jsdoc/) allow `@author` tag (#4854)
17+
- [bugfix] `RuleFailure#toJson()` no longer forces rule severity to be an uppercase string (#2622)
18+
- [bugfixfix] [`return-undefined`](https://palantir.github.io/tslint/rules/return-undefined/) rule now works with TS 3.7 (#4866)
19+
- [enhancement] [`prefer-switch`](https://palantir.github.io/tslint/rules/prefer-switch/) is more lenient with `if` statements containing multiple OR conditions without any `else` clause (#4873)
20+
- [enhancement] [`completed-doc`](https://palantir.github.io/tslint/rules/completed-doc/): add support for constructor documentation (#4861)
21+
- [new-rule-option] `case-insensitive-legacy` for [`ordered-imports`](https://palantir.github.io/tslint/rules/ordered-imports/) rule (#4064)
22+
- [docs] [`import-blacklist`](https://palantir.github.io/tslint/rules/import-blacklist/): add some options examples (#4858)
23+
- [docs] Update custom rule example to use recursive walker (#4883)
24+
25+
Thanks to our contributors!
26+
- J Rob Gant
27+
- Tanmoy Bhowmik
28+
- 谭九鼎
29+
- Ahmed Ghoneim
30+
- Josh Goldberg
31+
- Andrew Boyton
32+
- Peter Sandor
33+
- Vincent Langlet
34+
- Adrian Leonhard
35+
- Philipp Foedermayr
36+
- Adi Dahiya
37+
- Brian Olore
38+
- andrew bernard
39+
- joon1030
40+
41+
342
## v5.20.0
443

544
- [bugfix] fix [`strict-boolean-expressions`](https://palantir.github.io/tslint/rules/strict-boolean-expressions/) false positive with `"ignore-rhs"` option (#4833)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tslint",
3-
"version": "5.20.0",
3+
"version": "6.0.0-beta0",
44
"description": "An extensible static analysis linter for the TypeScript language",
55
"bin": {
66
"tslint": "./bin/tslint"

src/linter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import { arrayify, dedent, flatMap, mapDefined } from "./utils";
4242
* Linter that can lint multiple files in consecutive runs.
4343
*/
4444
export class Linter {
45-
public static VERSION = "5.20.0";
45+
public static VERSION = "6.0.0-beta0";
4646

4747
public static findConfiguration = findConfiguration;
4848
public static findConfigurationPath = findConfigurationPath;

0 commit comments

Comments
 (0)