Skip to content

Commit 85555fb

Browse files
nchen63adidahiya
authored andcommitted
Prepare release v4.3.0 (palantir#1990)
1 parent e1a0188 commit 85555fb

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

CHANGELOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,44 @@
11
Change Log
22
===
33

4+
v4.3.0
5+
---
6+
7+
* **Enabled additional rules in `tslint:latest` configuration** (#1981)
8+
* [new-rule] `space-before-function-paren` (#1897)
9+
* [new-rule] `typeof-compare` (#1927)
10+
* [new-rule] `import-spacing` (#1935)
11+
* [new-rule] `unified-signatures` (#1944)
12+
* [new-fixer] `object-literal-key-quotes` (#1953)
13+
* [new-fixer] `no-angle-bracket-type-assertion` (#1979)
14+
* [bugfix] `adjacent-overload-signature` now handles static/computed function names (#1831)
15+
* [bugfix] `file-header` now handles files with only comments (#1913)
16+
* [bugfix] `no-consecutive-blank-lines` now allows blank lines in template strings (#1886)
17+
* [bugfix] `object-literal-key-quotes` no longer throws exception when using rest operator (#1916)
18+
* [bugfix] `restrict-plus-operands` no longer shows false positive in ternary operation (#1925)
19+
* [bugfix] `prefer-for-of` now handles nested `for` loops with reused iterator (#1926)
20+
* [bugfix] Exit gracefully when `tsconfig.json` passed as `--project` argument doens't have files (#1933)
21+
* [bugfix] `object-literal-key-quotes` now handles shorthand and spread properties (#1945)
22+
* [bugfix] `arrow-parens` Allow binding patterns `([x, y]) => ...` and `({x, y}) => ...` to have parens (#1958)
23+
* [bugfix] `semicolon` fixer now handles comma separator in interfaces and indicates failure when commas are using in interfaces (#1856)
24+
* [bugfix] `only-arrow-functions` option `allow-named-functions` now allows function declarations (#1961)
25+
* [bugfix] `prefer-for-of` no longer shows false positive when array is in parentheses (#1986)
26+
* [bugfix] `prefer-const` now works for TypeScript versions < 2.1.0 (#1989)
27+
* [enhancement] `member-access` narrow location of error (#1964)
28+
29+
Thanks to our contributors!
30+
31+
* Andrii Dieiev
32+
* @andy-ms
33+
* Andy Hanson
34+
* Josh Goldberg
35+
* Klaus Meinhardt
36+
* Linda_pp
37+
* Mohsen Azimi
38+
* Victor Grigoriu
39+
* Yuichi Nukiyama
40+
* cameron-mcateer
41+
442
v4.2.0
543
---
644

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tslint",
3-
"version": "4.2.0",
3+
"version": "4.3.0",
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 } from "./utils";
4242
* Linter that can lint multiple files in consecutive runs.
4343
*/
4444
class Linter {
45-
public static VERSION = "4.2.0";
45+
public static VERSION = "4.3.0";
4646

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

0 commit comments

Comments
 (0)