@typescript-eslint/typescript-estree 8.67.1-alpha.8 → 8.68.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CHANGELOG.md +3619 -0
  2. package/dist/ast-converter.js +1 -0
  3. package/dist/check-modifiers.js +1 -0
  4. package/dist/check-syntax-errors.js +1 -0
  5. package/dist/clear-caches.js +1 -0
  6. package/dist/convert-comments.js +1 -0
  7. package/dist/convert.js +1 -0
  8. package/dist/create-program/WatchCompilerHostOfConfigFile.js +1 -0
  9. package/dist/create-program/createIsolatedProgram.js +1 -0
  10. package/dist/create-program/createProjectProgram.js +1 -0
  11. package/dist/create-program/createProjectProgramError.js +1 -0
  12. package/dist/create-program/createSourceFile.js +1 -0
  13. package/dist/create-program/describeFilePath.js +1 -0
  14. package/dist/create-program/getScriptKind.js +1 -0
  15. package/dist/create-program/getWatchProgramsForProjects.js +1 -0
  16. package/dist/create-program/shared.js +1 -0
  17. package/dist/create-program/useProvidedPrograms.js +1 -0
  18. package/dist/create-program/validateDefaultProjectForFilesGlob.js +1 -0
  19. package/dist/createParserServices.js +1 -0
  20. package/dist/getImportClausePhaseModifier.js +1 -0
  21. package/dist/getModifiers.js +1 -0
  22. package/dist/index.js +1 -0
  23. package/dist/jsx/xhtml-entities.js +1 -0
  24. package/dist/node-utils.js +1 -0
  25. package/dist/parseSettings/ExpiringCache.js +1 -0
  26. package/dist/parseSettings/candidateTSConfigRootDirs.js +1 -0
  27. package/dist/parseSettings/createParseSettings.js +1 -0
  28. package/dist/parseSettings/getProjectConfigFiles.js +1 -0
  29. package/dist/parseSettings/index.js +1 -0
  30. package/dist/parseSettings/inferSingleRun.js +1 -0
  31. package/dist/parseSettings/resolveProjectList.js +1 -0
  32. package/dist/parseSettings/warnAboutTSVersion.js +1 -0
  33. package/dist/parser-options.js +1 -0
  34. package/dist/parser.js +1 -0
  35. package/dist/semantic-or-syntactic-errors.js +1 -0
  36. package/dist/simple-traverse.js +1 -0
  37. package/dist/source-files.js +1 -0
  38. package/dist/ts-estree/estree-to-ts-node-types.js +1 -0
  39. package/dist/ts-estree/index.js +1 -0
  40. package/dist/ts-estree/ts-nodes.js +1 -0
  41. package/dist/use-at-your-own-risk.js +1 -0
  42. package/dist/useProgramFromProjectService.js +1 -0
  43. package/dist/version-check.js +1 -0
  44. package/dist/version.js +1 -0
  45. package/dist/withoutProjectParserOptions.js +1 -0
  46. package/package.json +7 -6
package/CHANGELOG.md ADDED
@@ -0,0 +1,3619 @@
1
+ ## 8.68.0 (2026-08-24)
2
+
3
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
4
+
5
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.68.0) for more information.
6
+
7
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
8
+
9
+ ## 8.67.0 (2026-08-10)
10
+
11
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
12
+
13
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.67.0) for more information.
14
+
15
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
16
+
17
+ ## 8.66.0 (2026-08-03)
18
+
19
+ ### 🚀 Features
20
+
21
+ - **typescript-estree:** handle import.defer() as ImportExpression ([#12609](https://github.com/typescript-eslint/typescript-eslint/pull/12609))
22
+
23
+ ### ❤️ Thank You
24
+
25
+ - Evyatar Daud @StyleShit
26
+ - Kirk Waiblinger @kirkwaiblinger
27
+
28
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.66.0) for more information.
29
+
30
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
31
+
32
+ ## 8.65.0 (2026-07-20)
33
+
34
+ ### 🚀 Features
35
+
36
+ - **parser:** add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions ([#12465](https://github.com/typescript-eslint/typescript-eslint/pull/12465))
37
+ - **typescript-estree:** throw for invalid import defer syntax ([#12552](https://github.com/typescript-eslint/typescript-eslint/pull/12552))
38
+
39
+ ### ❤️ Thank You
40
+
41
+ - Evyatar Daud @StyleShit
42
+ - Josh Goldberg ✨
43
+ - 송재욱
44
+
45
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.65.0) for more information.
46
+
47
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
48
+
49
+ ## 8.64.0 (2026-07-13)
50
+
51
+ ### 🚀 Features
52
+
53
+ - **typescript-estree:** throw for invalid definite assignment in class properties ([#12543](https://github.com/typescript-eslint/typescript-eslint/pull/12543))
54
+ - support parsing `import defer` ([#12513](https://github.com/typescript-eslint/typescript-eslint/pull/12513))
55
+
56
+ ### ❤️ Thank You
57
+
58
+ - Evyatar Daud @StyleShit
59
+
60
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.64.0) for more information.
61
+
62
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
63
+
64
+ ## 8.63.0 (2026-07-06)
65
+
66
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
67
+
68
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.63.0) for more information.
69
+
70
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
71
+
72
+ ## 8.62.1 (2026-06-29)
73
+
74
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
75
+
76
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.62.1) for more information.
77
+
78
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
79
+
80
+ ## 8.62.0 (2026-06-22)
81
+
82
+ ### 🚀 Features
83
+
84
+ - remove redundant package.json "files" ([#12444](https://github.com/typescript-eslint/typescript-eslint/pull/12444))
85
+
86
+ ### ❤️ Thank You
87
+
88
+ - Kirk Waiblinger @kirkwaiblinger
89
+
90
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.62.0) for more information.
91
+
92
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
93
+
94
+ ## 8.61.1 (2026-06-15)
95
+
96
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
97
+
98
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.61.1) for more information.
99
+
100
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
101
+
102
+ ## 8.61.0 (2026-06-08)
103
+
104
+ ### 🚀 Features
105
+
106
+ - **ast-spec:** change type of `UnaryExpression.prefix` to always `true` ([#12372](https://github.com/typescript-eslint/typescript-eslint/pull/12372))
107
+
108
+ ### ❤️ Thank You
109
+
110
+ - Kirk Waiblinger @kirkwaiblinger
111
+
112
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.61.0) for more information.
113
+
114
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
115
+
116
+ ## 8.60.1 (2026-06-01)
117
+
118
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
119
+
120
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.60.1) for more information.
121
+
122
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
123
+
124
+ ## 8.60.0 (2026-05-25)
125
+
126
+ ### 🩹 Fixes
127
+
128
+ - playground TS version selector is not working ([#12326](https://github.com/typescript-eslint/typescript-eslint/pull/12326), [#12325](https://github.com/typescript-eslint/typescript-eslint/issues/12325))
129
+
130
+ ### ❤️ Thank You
131
+
132
+ - Evyatar Daud @StyleShit
133
+
134
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.60.0) for more information.
135
+
136
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
137
+
138
+ ## 8.59.4 (2026-05-18)
139
+
140
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
141
+
142
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.4) for more information.
143
+
144
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
145
+
146
+ ## 8.59.3 (2026-05-11)
147
+
148
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
149
+
150
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.3) for more information.
151
+
152
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
153
+
154
+ ## 8.59.2 (2026-05-04)
155
+
156
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
157
+
158
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.2) for more information.
159
+
160
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
161
+
162
+ ## 8.59.1 (2026-04-27)
163
+
164
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
165
+
166
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.1) for more information.
167
+
168
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
169
+
170
+ ## 8.59.0 (2026-04-20)
171
+
172
+ ### 🚀 Features
173
+
174
+ - **eslint-plugin:** [no-unnecessary-type-assertion] report more cases based on assignability ([#11789](https://github.com/typescript-eslint/typescript-eslint/pull/11789))
175
+
176
+ ### ❤️ Thank You
177
+
178
+ - Ulrich Stark
179
+
180
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.0) for more information.
181
+
182
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
183
+
184
+ ## 8.58.2 (2026-04-13)
185
+
186
+ ### 🩹 Fixes
187
+
188
+ - **eslint-plugin:** [no-unnecessary-condition] use assignability checks in checkTypePredicates ([#12147](https://github.com/typescript-eslint/typescript-eslint/pull/12147))
189
+ - remove tsbuildinfo cache file from published packages ([#12187](https://github.com/typescript-eslint/typescript-eslint/pull/12187))
190
+
191
+ ### ❤️ Thank You
192
+
193
+ - Abhijeet Singh @cseas
194
+ - 송재욱
195
+
196
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.2) for more information.
197
+
198
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
199
+
200
+ ## 8.58.1 (2026-04-08)
201
+
202
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
203
+
204
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.1) for more information.
205
+
206
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
207
+
208
+ ## 8.58.0 (2026-03-30)
209
+
210
+ ### 🚀 Features
211
+
212
+ - support TypeScript 6 ([#12124](https://github.com/typescript-eslint/typescript-eslint/pull/12124))
213
+
214
+ ### ❤️ Thank You
215
+
216
+ - Evyatar Daud @StyleShit
217
+
218
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.0) for more information.
219
+
220
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
221
+
222
+ ## 8.57.2 (2026-03-23)
223
+
224
+ ### 🩹 Fixes
225
+
226
+ - **typescript-estree:** skip createIsolatedProgram fallback for projectService ([#12066](https://github.com/typescript-eslint/typescript-eslint/pull/12066), [#12065](https://github.com/typescript-eslint/typescript-eslint/issues/12065))
227
+
228
+ ### ❤️ Thank You
229
+
230
+ - Claude Opus 4.6
231
+ - RyoheiYamamoto
232
+
233
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.2) for more information.
234
+
235
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
236
+
237
+ ## 8.57.1 (2026-03-16)
238
+
239
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
240
+
241
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.1) for more information.
242
+
243
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
244
+
245
+ ## 8.57.0 (2026-03-09)
246
+
247
+ ### 🩹 Fixes
248
+
249
+ - **typescript-estree:** if the template literal is tagged and the text has an invalid escape, `cooked` will be `null` ([#11355](https://github.com/typescript-eslint/typescript-eslint/pull/11355))
250
+ - **typescript-estree:** switch back to use `ts.getModifiers()` ([#12034](https://github.com/typescript-eslint/typescript-eslint/pull/12034))
251
+
252
+ ### ❤️ Thank You
253
+
254
+ - Brad Zacher @bradzacher
255
+ - fisker Cheung @fisker
256
+ - James Henry @JamesHenry
257
+ - Kirk Waiblinger @kirkwaiblinger
258
+ - Younsang Na @nayounsang
259
+
260
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.0) for more information.
261
+
262
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
263
+
264
+ ## 8.56.1 (2026-02-23)
265
+
266
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
267
+
268
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.56.1) for more information.
269
+
270
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
271
+
272
+ ## 8.56.0 (2026-02-16)
273
+
274
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
275
+
276
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.56.0) for more information.
277
+
278
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
279
+
280
+ ## 8.55.0 (2026-02-09)
281
+
282
+ ### 🩹 Fixes
283
+
284
+ - **typescript-estree:** forbid invalid modifier in object expression ([#11931](https://github.com/typescript-eslint/typescript-eslint/pull/11931))
285
+
286
+ ### ❤️ Thank You
287
+
288
+ - fisker Cheung @fisker
289
+
290
+ See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.55.0) for more information.
291
+
292
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
293
+
294
+ ## 8.54.0 (2026-01-26)
295
+
296
+ ### 🚀 Features
297
+
298
+ - **typescript-estree:** add shortcut methods to ParserServicesWithTypeInformation ([#11965](https://github.com/typescript-eslint/typescript-eslint/pull/11965), [#11955](https://github.com/typescript-eslint/typescript-eslint/issues/11955))
299
+
300
+ ### ❤️ Thank You
301
+
302
+ - MinJae @Ju-MINJAE
303
+
304
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
305
+
306
+ ## 8.53.1 (2026-01-19)
307
+
308
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
309
+
310
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
311
+
312
+ ## 8.53.0 (2026-01-12)
313
+
314
+ ### 🩹 Fixes
315
+
316
+ - **typescript-estree:** forbid invalid `extends` and `implements` in interface declaration ([#11935](https://github.com/typescript-eslint/typescript-eslint/pull/11935))
317
+ - **typescript-estree:** forbid invalid "import equals" declaration ([#11936](https://github.com/typescript-eslint/typescript-eslint/pull/11936))
318
+ - **typescript-estree:** forbid invalid class implements ([#11934](https://github.com/typescript-eslint/typescript-eslint/pull/11934))
319
+ - **typescript-estree:** fix syntax check for `using` declaration ([#11910](https://github.com/typescript-eslint/typescript-eslint/pull/11910))
320
+ - **typescript-estree:** forbid type-only import with both default and named specifiers ([#11930](https://github.com/typescript-eslint/typescript-eslint/pull/11930))
321
+
322
+ ### ❤️ Thank You
323
+
324
+ - fisker Cheung @fisker
325
+
326
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
327
+
328
+ ## 8.52.0 (2026-01-05)
329
+
330
+ ### 🚀 Features
331
+
332
+ - **typescript-estree:** add tseslint.com redirects for CLI outputs ([#11895](https://github.com/typescript-eslint/typescript-eslint/pull/11895))
333
+
334
+ ### ❤️ Thank You
335
+
336
+ - Josh Goldberg ✨
337
+
338
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
339
+
340
+ ## 8.51.0 (2025-12-29)
341
+
342
+ ### 🩹 Fixes
343
+
344
+ - **eslint-plugin:** [prefer-optional-chain] handle MemberExpression in final chain position ([#11835](https://github.com/typescript-eslint/typescript-eslint/pull/11835))
345
+ - **eslint-plugin:** bump ts-api-utils to 2.2.0 ([#11881](https://github.com/typescript-eslint/typescript-eslint/pull/11881))
346
+
347
+ ### ❤️ Thank You
348
+
349
+ - Josh Goldberg ✨
350
+ - mdm317
351
+
352
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
353
+
354
+ ## 8.50.1 (2025-12-22)
355
+
356
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
357
+
358
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
359
+
360
+ ## 8.50.0 (2025-12-15)
361
+
362
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
363
+
364
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
365
+
366
+ ## 8.49.0 (2025-12-08)
367
+
368
+ ### 🩹 Fixes
369
+
370
+ - **deps:** update dependency prettier to v3.7.2 ([#11820](https://github.com/typescript-eslint/typescript-eslint/pull/11820))
371
+
372
+ ### ❤️ Thank You
373
+
374
+ - Kirk Waiblinger @kirkwaiblinger
375
+
376
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
377
+
378
+ ## 8.48.1 (2025-12-02)
379
+
380
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
381
+
382
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
383
+
384
+ ## 8.48.0 (2025-11-24)
385
+
386
+ ### 🚀 Features
387
+
388
+ - **typescript-estree:** replace fast-glob with tinyglobby ([#11740](https://github.com/typescript-eslint/typescript-eslint/pull/11740))
389
+ - **eslint-plugin:** [no-redundant-type-constituents] use assignability checking for redundancy checks ([#10744](https://github.com/typescript-eslint/typescript-eslint/pull/10744))
390
+ - **typescript-estree:** gate all errors behind allowInvalidAST ([#11693](https://github.com/typescript-eslint/typescript-eslint/pull/11693))
391
+
392
+ ### 🩹 Fixes
393
+
394
+ - **typescript-estree:** disallow binding patterns in parameter properties ([#11760](https://github.com/typescript-eslint/typescript-eslint/pull/11760))
395
+ - **typescript-estree:** infers singleRun as true for project service ([#11327](https://github.com/typescript-eslint/typescript-eslint/pull/11327))
396
+
397
+ ### ❤️ Thank You
398
+
399
+ - Ben McCann @benmccann
400
+ - Dima Barabash @dbarabashh
401
+ - fisker Cheung @fisker
402
+ - James Henry @JamesHenry
403
+ - JamesHenry @JamesHenry
404
+ - Josh Goldberg
405
+ - Josh Goldberg ✨
406
+ - mdm317 @gen-ip-1
407
+ - Younsang Na @nayounsang
408
+
409
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
410
+
411
+ ## 8.47.0 (2025-11-17)
412
+
413
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
414
+
415
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
416
+
417
+ ## 8.46.4 (2025-11-10)
418
+
419
+ ### 🩹 Fixes
420
+
421
+ - **parser:** error when both `projectService` and `project` are set ([#11333](https://github.com/typescript-eslint/typescript-eslint/pull/11333))
422
+
423
+ ### ❤️ Thank You
424
+
425
+ - Maria Solano @MariaSolOs
426
+
427
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
428
+
429
+ ## 8.46.3 (2025-11-03)
430
+
431
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
432
+
433
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
434
+
435
+ ## 8.46.2 (2025-10-20)
436
+
437
+ ### 🩹 Fixes
438
+
439
+ - **typescript-estree:** forbid invalid modifiers in object methods ([#11689](https://github.com/typescript-eslint/typescript-eslint/pull/11689))
440
+
441
+ ### ❤️ Thank You
442
+
443
+ - fisker Cheung @fisker
444
+
445
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
446
+
447
+ ## 8.46.1 (2025-10-13)
448
+
449
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
450
+
451
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
452
+
453
+ ## 8.46.0 (2025-10-06)
454
+
455
+ ### 🚀 Features
456
+
457
+ - **typescript-estree:** private identifiers can only appear on LHS of in expressions ([#9232](https://github.com/typescript-eslint/typescript-eslint/pull/9232))
458
+ - **typescript-estree:** mention file specifics in project service allowDefaultProject error ([#11635](https://github.com/typescript-eslint/typescript-eslint/pull/11635))
459
+
460
+ ### 🩹 Fixes
461
+
462
+ - **typescript-estree:** forbid abstract method and accessor to have implementation ([#11657](https://github.com/typescript-eslint/typescript-eslint/pull/11657))
463
+ - **typescript-estree:** forbid `abstract` modifier in object methods ([#11656](https://github.com/typescript-eslint/typescript-eslint/pull/11656))
464
+
465
+ ### ❤️ Thank You
466
+
467
+ - fisker Cheung @fisker
468
+ - Josh Goldberg ✨
469
+ - Joshua Chen
470
+
471
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
472
+
473
+ ## 8.45.0 (2025-09-29)
474
+
475
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
476
+
477
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
478
+
479
+ ## 8.44.1 (2025-09-22)
480
+
481
+ ### 🩹 Fixes
482
+
483
+ - **typescript-estree:** forbid class property with name `constructor` ([#11590](https://github.com/typescript-eslint/typescript-eslint/pull/11590))
484
+
485
+ ### ❤️ Thank You
486
+
487
+ - fisker Cheung @fisker
488
+
489
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
490
+
491
+ ## 8.44.0 (2025-09-15)
492
+
493
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
494
+
495
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
496
+
497
+ ## 8.43.0 (2025-09-08)
498
+
499
+ ### 🚀 Features
500
+
501
+ - **typescript-estree:** disallow empty type parameter/argument lists ([#11563](https://github.com/typescript-eslint/typescript-eslint/pull/11563))
502
+
503
+ ### 🩹 Fixes
504
+
505
+ - **typescript-estree:** match filenames starting with a period when using glob in allowDefaultProject / ([#11537](https://github.com/typescript-eslint/typescript-eslint/pull/11537))
506
+
507
+ ### ❤️ Thank You
508
+
509
+ - Kirk Waiblinger @kirkwaiblinger
510
+ - Nicolas Le Cam
511
+
512
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
513
+
514
+ ## 8.42.0 (2025-09-02)
515
+
516
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
517
+
518
+ You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
519
+
520
+ ## 8.41.0 (2025-08-25)
521
+
522
+ ### 🚀 Features
523
+
524
+ - tighten `tsconfigRootDir` validation ([#11463](https://github.com/typescript-eslint/typescript-eslint/pull/11463))
525
+
526
+ ### ❤️ Thank You
527
+
528
+ - Kirk Waiblinger @kirkwaiblinger
529
+
530
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
531
+
532
+ ## 8.40.0 (2025-08-18)
533
+
534
+ ### 🚀 Features
535
+
536
+ - **typescript-estree:** forbid invalid keys in `EnumMember` ([#11232](https://github.com/typescript-eslint/typescript-eslint/pull/11232))
537
+
538
+ ### 🩹 Fixes
539
+
540
+ - **typescript-estree:** correct range of import assertion with trailing comma ([#11478](https://github.com/typescript-eslint/typescript-eslint/pull/11478))
541
+
542
+ ### ❤️ Thank You
543
+
544
+ - fisker Cheung @fisker
545
+ - Kirk Waiblinger @kirkwaiblinger
546
+
547
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
548
+
549
+ ## 8.39.1 (2025-08-11)
550
+
551
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
552
+
553
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
554
+
555
+ ## 8.39.0 (2025-08-04)
556
+
557
+ ### 🚀 Features
558
+
559
+ - update to TypeScript 5.9.2 ([#11445](https://github.com/typescript-eslint/typescript-eslint/pull/11445))
560
+
561
+ ### ❤️ Thank You
562
+
563
+ - Brad Zacher @bradzacher
564
+
565
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
566
+
567
+ ## 8.38.0 (2025-07-21)
568
+
569
+ ### 🚀 Features
570
+
571
+ - **typescript-estree:** forbid optional chain in `TemplateTaggedLiteral` ([#11391](https://github.com/typescript-eslint/typescript-eslint/pull/11391))
572
+
573
+ ### 🩹 Fixes
574
+
575
+ - **typescript-estree:** ensure the token type of the property name is Identifier ([#11329](https://github.com/typescript-eslint/typescript-eslint/pull/11329))
576
+
577
+ ### ❤️ Thank You
578
+
579
+ - MK @asdf93074
580
+ - tao
581
+
582
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
583
+
584
+ ## 8.37.0 (2025-07-14)
585
+
586
+ ### 🚀 Features
587
+
588
+ - **typescript-estree:** infer tsconfigRootDir from call stack ([#11370](https://github.com/typescript-eslint/typescript-eslint/pull/11370))
589
+
590
+ ### ❤️ Thank You
591
+
592
+ - Josh Goldberg ✨
593
+
594
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
595
+
596
+ ## 8.36.0 (2025-07-07)
597
+
598
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
599
+
600
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
601
+
602
+ ## 8.35.1 (2025-06-30)
603
+
604
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
605
+
606
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
607
+
608
+ ## 8.35.0 (2025-06-23)
609
+
610
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
611
+
612
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
613
+
614
+ ## 8.34.1 (2025-06-16)
615
+
616
+ ### 🩹 Fixes
617
+
618
+ - **typescript-estree:** emit a Literal instead of Identifier for constructor when the identifier is a string ([#11299](https://github.com/typescript-eslint/typescript-eslint/pull/11299))
619
+
620
+ ### ❤️ Thank You
621
+
622
+ - Tao
623
+
624
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
625
+
626
+ ## 8.34.0 (2025-06-09)
627
+
628
+ ### 🩹 Fixes
629
+
630
+ - **typescript-estree:** add validation to interface extends ([#11271](https://github.com/typescript-eslint/typescript-eslint/pull/11271))
631
+ - **typescript-estree:** change the token type of `null` from `Keyword` to `Null` ([#11283](https://github.com/typescript-eslint/typescript-eslint/pull/11283))
632
+
633
+ ### ❤️ Thank You
634
+
635
+ - Tao
636
+
637
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
638
+
639
+ ## 8.33.1 (2025-06-02)
640
+
641
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
642
+
643
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
644
+
645
+ ## 8.33.0 (2025-05-26)
646
+
647
+ ### 🚀 Features
648
+
649
+ - create standalone project-service, tsconfig-utils packages ([#11182](https://github.com/typescript-eslint/typescript-eslint/pull/11182))
650
+
651
+ ### ❤️ Thank You
652
+
653
+ - Josh Goldberg ✨
654
+
655
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
656
+
657
+ ## 8.32.1 (2025-05-12)
658
+
659
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
660
+
661
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
662
+
663
+ ## 8.32.0 (2025-05-05)
664
+
665
+ ### 🩹 Fixes
666
+
667
+ - **typescript-estree:** correct `TSImportType` property name when `assert` ([#11115](https://github.com/typescript-eslint/typescript-eslint/pull/11115))
668
+ - **typescript-estree:** ensure consistent TSMappedType AST shape ([#11086](https://github.com/typescript-eslint/typescript-eslint/pull/11086))
669
+
670
+ ### ❤️ Thank You
671
+
672
+ - Dima Barabash @dbarabashh
673
+ - overlookmotel
674
+
675
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
676
+
677
+ ## 8.31.1 (2025-04-28)
678
+
679
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
680
+
681
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
682
+
683
+ ## 8.31.0 (2025-04-21)
684
+
685
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
686
+
687
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
688
+
689
+ ## 8.30.1 (2025-04-14)
690
+
691
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
692
+
693
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
694
+
695
+ ## 8.30.0 (2025-04-14)
696
+
697
+ ### 🩹 Fixes
698
+
699
+ - **typescript-estree:** use token type of `PrivateIdentifier` instead of `Identifier` for private identifiers ([#11023](https://github.com/typescript-eslint/typescript-eslint/pull/11023))
700
+
701
+ ### ❤️ Thank You
702
+
703
+ - Ronen Amiel
704
+
705
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
706
+
707
+ ## 8.29.1 (2025-04-07)
708
+
709
+ ### 🩹 Fixes
710
+
711
+ - **typescript-estree:** use token type of `Numeric` instead of `Identifier` for bigint literals ([#11021](https://github.com/typescript-eslint/typescript-eslint/pull/11021))
712
+
713
+ ### ❤️ Thank You
714
+
715
+ - Ronen Amiel
716
+
717
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
718
+
719
+ ## 8.29.0 (2025-03-31)
720
+
721
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
722
+
723
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
724
+
725
+ ## 8.28.0 (2025-03-24)
726
+
727
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
728
+
729
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
730
+
731
+ ## 8.27.0 (2025-03-17)
732
+
733
+ ### 🩹 Fixes
734
+
735
+ - **typescript-estree:** fix span start for decorated `AssignmentPattern` function parameter ([#10939](https://github.com/typescript-eslint/typescript-eslint/pull/10939))
736
+
737
+ ### ❤️ Thank You
738
+
739
+ - Ronen Amiel
740
+
741
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
742
+
743
+ ## 8.26.1 (2025-03-10)
744
+
745
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
746
+
747
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
748
+
749
+ ## 8.26.0 (2025-03-03)
750
+
751
+ ### 🚀 Features
752
+
753
+ - support TypeScript 5.8 ([#10903](https://github.com/typescript-eslint/typescript-eslint/pull/10903))
754
+
755
+ ### ❤️ Thank You
756
+
757
+ - Dirk Luijk @dirkluijk
758
+
759
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
760
+
761
+ ## 8.25.0 (2025-02-24)
762
+
763
+ ### 🩹 Fixes
764
+
765
+ - **ast-spec:** replace `attributes` with `options` property in `TSImportType` ([#10691](https://github.com/typescript-eslint/typescript-eslint/pull/10691))
766
+ - **typescript-estree:** align TS module nodes to namespaces ([#10504](https://github.com/typescript-eslint/typescript-eslint/pull/10504))
767
+
768
+ ### ❤️ Thank You
769
+
770
+ - fisker Cheung @fisker
771
+ - Josh Goldberg ✨
772
+
773
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
774
+
775
+ ## 8.24.1 (2025-02-17)
776
+
777
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
778
+
779
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
780
+
781
+ ## 8.24.0 (2025-02-10)
782
+
783
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
784
+
785
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
786
+
787
+ ## 8.23.0 (2025-02-03)
788
+
789
+ ### 🩹 Fixes
790
+
791
+ - bump ts-api-utils to ^2.0.1 ([#10761](https://github.com/typescript-eslint/typescript-eslint/pull/10761))
792
+
793
+ ### ❤️ Thank You
794
+
795
+ - Josh Goldberg ✨
796
+
797
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
798
+
799
+ ## 8.22.0 (2025-01-27)
800
+
801
+ ### 🚀 Features
802
+
803
+ - **parser:** add standalone isolatedDeclarations option ([#10499](https://github.com/typescript-eslint/typescript-eslint/pull/10499))
804
+
805
+ ### ❤️ Thank You
806
+
807
+ - Josh Goldberg ✨
808
+
809
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
810
+
811
+ ## 8.21.0 (2025-01-20)
812
+
813
+ ### 🚀 Features
814
+
815
+ - **ast-spec:** support import attributes in `TSImportType` ([#10640](https://github.com/typescript-eslint/typescript-eslint/pull/10640))
816
+
817
+ ### ❤️ Thank You
818
+
819
+ - Ronen Amiel
820
+
821
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
822
+
823
+ ## 8.20.0 (2025-01-13)
824
+
825
+ ### 🚀 Features
826
+
827
+ - standardize debug namespaces to file paths ([#10599](https://github.com/typescript-eslint/typescript-eslint/pull/10599))
828
+
829
+ ### ❤️ Thank You
830
+
831
+ - Josh Goldberg ✨
832
+
833
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
834
+
835
+ ## 8.19.1 (2025-01-06)
836
+
837
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
838
+
839
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
840
+
841
+ ## 8.19.0 (2024-12-30)
842
+
843
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
844
+
845
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
846
+
847
+ ## 8.18.2 (2024-12-23)
848
+
849
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
850
+
851
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
852
+
853
+ ## 8.18.1 (2024-12-16)
854
+
855
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
856
+
857
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
858
+
859
+ ## 8.18.0 (2024-12-09)
860
+
861
+ ### 🩹 Fixes
862
+
863
+ - typescript peer dependency ([#10373](https://github.com/typescript-eslint/typescript-eslint/pull/10373))
864
+
865
+ ### ❤️ Thank You
866
+
867
+ - rtritto
868
+
869
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
870
+
871
+ ## 8.17.0 (2024-12-02)
872
+
873
+ ### 🚀 Features
874
+
875
+ - **typescript-estree:** add package version to ts version warning ([#10343](https://github.com/typescript-eslint/typescript-eslint/pull/10343))
876
+
877
+ ### ❤️ Thank You
878
+
879
+ - Marco Pasqualetti @marcalexiei
880
+
881
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
882
+
883
+ ## 8.16.0 (2024-11-25)
884
+
885
+ ### 🩹 Fixes
886
+
887
+ - **typescript-estree:** update conditions for unsupported version warning ([#10385](https://github.com/typescript-eslint/typescript-eslint/pull/10385))
888
+
889
+ ### ❤️ Thank You
890
+
891
+ - Inga @inga-lovinde
892
+
893
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
894
+
895
+ ## 8.15.0 (2024-11-18)
896
+
897
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
898
+
899
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
900
+
901
+ ## 8.14.0 (2024-11-11)
902
+
903
+ ### 🚀 Features
904
+
905
+ - **eslint-plugin:** [no-confusing-void-expression] add an option to ignore void<->void ([#10067](https://github.com/typescript-eslint/typescript-eslint/pull/10067))
906
+
907
+ ### ❤️ Thank You
908
+
909
+ - Ronen Amiel
910
+
911
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
912
+
913
+ ## 8.13.0 (2024-11-04)
914
+
915
+ ### 🚀 Features
916
+
917
+ - add `options` property to `ImportExpression` node ([#10255](https://github.com/typescript-eslint/typescript-eslint/pull/10255))
918
+
919
+ ### ❤️ Thank You
920
+
921
+ - Yosuke Ota @ota-meshi
922
+
923
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
924
+
925
+ ## 8.12.2 (2024-10-29)
926
+
927
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
928
+
929
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
930
+
931
+ ## 8.12.1 (2024-10-28)
932
+
933
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
934
+
935
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
936
+
937
+ ## 8.12.0 (2024-10-28)
938
+
939
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
940
+
941
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
942
+
943
+ ## 8.11.0 (2024-10-21)
944
+
945
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
946
+
947
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
948
+
949
+ ## 8.10.0 (2024-10-17)
950
+
951
+ ### 🚀 Features
952
+
953
+ - support TypeScript 5.6 ([#9972](https://github.com/typescript-eslint/typescript-eslint/pull/9972))
954
+
955
+ ### ❤️ Thank You
956
+
957
+ - Josh Goldberg ✨
958
+
959
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
960
+
961
+ ## 8.9.0 (2024-10-14)
962
+
963
+
964
+ ### 🩹 Fixes
965
+
966
+ - **typescript-estree:** improve project service error message when file extension missing from extraFileExtensions
967
+
968
+
969
+ ### ❤️ Thank You
970
+
971
+ - Abraham Guo
972
+ - Anna Bocharova
973
+ - Arya Emami
974
+ - auvred
975
+ - Joshua Chen
976
+ - Kirk Waiblinger
977
+ - Lotfi Meklati
978
+ - mdm317
979
+ - Ronen Amiel
980
+ - Sukka
981
+ - YeonJuan
982
+
983
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
984
+
985
+ ## 8.8.1 (2024-10-07)
986
+
987
+
988
+ ### 🩹 Fixes
989
+
990
+ - **typescript-estree:** fix crash when running from a `node --eval` script
991
+
992
+ - **typescript-estree:** ensure mjs/mts files are always be parsed as ESM
993
+
994
+
995
+ ### ❤️ Thank You
996
+
997
+ - Brad Zacher
998
+ - Ronen Amiel
999
+ - WhitePiano
1000
+
1001
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1002
+
1003
+ ## 8.8.0 (2024-09-30)
1004
+
1005
+
1006
+ ### 🚀 Features
1007
+
1008
+ - **eslint-plugin:** [no-unnecessary-condition] add checkTypePredicates
1009
+
1010
+
1011
+ ### 🩹 Fixes
1012
+
1013
+ - remove `export type *` in d.ts to support TS<5.0
1014
+
1015
+
1016
+ ### ❤️ Thank You
1017
+
1018
+ - auvred
1019
+ - Josh Goldberg ✨
1020
+ - Kirk Waiblinger
1021
+ - Ronen Amiel
1022
+ - Tarun Chauhan
1023
+ - YeonJuan
1024
+
1025
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1026
+
1027
+ ## 8.7.0 (2024-09-23)
1028
+
1029
+
1030
+ ### 🚀 Features
1031
+
1032
+ - **eslint-plugin:** [consistent-type-exports] check `export *` exports to see if all exported members are types
1033
+
1034
+
1035
+ ### ❤️ Thank You
1036
+
1037
+ - Abraham Guo
1038
+ - auvred
1039
+ - Brian Donovan
1040
+ - Kirk Waiblinger
1041
+
1042
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1043
+
1044
+ ## 8.6.0 (2024-09-16)
1045
+
1046
+
1047
+ ### 🚀 Features
1048
+
1049
+ - **typescript-estree:** disable plugin loading by default in project service
1050
+
1051
+
1052
+ ### 🩹 Fixes
1053
+
1054
+ - **typescript-estree:** don't throw on missing tsconfig.json by default in project service
1055
+
1056
+
1057
+ ### ❤️ Thank You
1058
+
1059
+ - Abraham Guo
1060
+ - auvred
1061
+ - Josh Goldberg ✨
1062
+ - Kim Sang Du
1063
+ - YeonJuan
1064
+
1065
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1066
+
1067
+ ## 8.5.0 (2024-09-09)
1068
+
1069
+
1070
+ ### 🚀 Features
1071
+
1072
+ - **typescript-estree:** default projectService.defaultProject to 'tsconfig.json'
1073
+
1074
+
1075
+ ### ❤️ Thank You
1076
+
1077
+ - f44da958e
1078
+ - Josh Goldberg ✨
1079
+ - Kirk Waiblinger
1080
+ - YeonJuan
1081
+
1082
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1083
+
1084
+ ## 8.4.0 (2024-09-02)
1085
+
1086
+
1087
+ ### 🚀 Features
1088
+
1089
+ - **typescript-estree:** make withoutProjectParserOptions generic
1090
+
1091
+
1092
+ ### ❤️ Thank You
1093
+
1094
+ - Josh Goldberg ✨
1095
+
1096
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1097
+
1098
+ ## 8.3.0 (2024-08-26)
1099
+
1100
+
1101
+ ### 🚀 Features
1102
+
1103
+ - **eslint-plugin:** [no-deprecation] add rule
1104
+
1105
+ - **typescript-estree:** replace `globby` w/ `fast-glob`
1106
+
1107
+ - **typescript-estree:** reload project service once when file config isn't found
1108
+
1109
+
1110
+ ### ❤️ Thank You
1111
+
1112
+ - Abraham Guo
1113
+ - Daichi Kamiyama
1114
+ - Josh Goldberg ✨
1115
+ - Kim Sang Du
1116
+ - Sukka
1117
+ - Vida Xie
1118
+
1119
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1120
+
1121
+ ## 8.2.0 (2024-08-19)
1122
+
1123
+
1124
+ ### 🚀 Features
1125
+
1126
+ - **typescript-estree:** special-case error for parserOptions.project and project references
1127
+
1128
+
1129
+ ### 🩹 Fixes
1130
+
1131
+ - **typescript-estree:** pass in tsconfigRootDir as cwd to getParsedConfigFile
1132
+
1133
+
1134
+ ### ❤️ Thank You
1135
+
1136
+ - Abraham Guo
1137
+ - Dave
1138
+ - Jake Bailey
1139
+ - James
1140
+ - Josh Goldberg ✨
1141
+ - liuxingbaoyu
1142
+ - Yukihiro Hasegawa
1143
+ - Yutong Zhu
1144
+
1145
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1146
+
1147
+ ## 8.1.0 (2024-08-12)
1148
+
1149
+
1150
+ ### 🚀 Features
1151
+
1152
+ - **typescript-estree:** restrict variable declarator definite/init combinations
1153
+
1154
+
1155
+ ### ❤️ Thank You
1156
+
1157
+ - Aly Thobani
1158
+ - Brad Zacher
1159
+ - James
1160
+ - Josh Goldberg ✨
1161
+ - Joshua Chen
1162
+ - Olivier Zalmanski
1163
+ - YeonJuan
1164
+ - Yukihiro Hasegawa
1165
+
1166
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1167
+
1168
+ ## 8.0.1 (2024-08-05)
1169
+
1170
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1171
+
1172
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1173
+
1174
+ # 8.0.0 (2024-07-31)
1175
+
1176
+
1177
+ ### 🚀 Features
1178
+
1179
+ - speed up non-type-aware linting with project service
1180
+
1181
+ - **typescript-estree:** remove slow deprecated and isolated programs
1182
+
1183
+ - **typescript-estree:** split TSMappedType typeParameter into constraint and key
1184
+
1185
+ - **typescript-estree:** rename automaticSingleRunInference to disallowAutomaticSingleRunInference
1186
+
1187
+ - **parser:** always enable comment, loc, range, tokens
1188
+
1189
+ - **eslint-plugin:** split no-empty-object-type out from ban-types and no-empty-interfaces
1190
+
1191
+ - **ast-spec:** remove deprecated type params
1192
+
1193
+ - **typescript-estree:** stabilize EXPERIMENTAL_useProjectService as projectService
1194
+
1195
+ - **typescript-estree:** remove EXPERIMENTAL_useSourceOfProjectReferenceRedirect
1196
+
1197
+ - **eslint-plugin:** apply initial config changes for v8
1198
+
1199
+ - **typescript-estree:** also remove projectService in withoutProjectParserOptions
1200
+
1201
+ - **typescript-estree:** exposes ProjectService logs through the plugin
1202
+
1203
+
1204
+ ### 🩹 Fixes
1205
+
1206
+ - **typescript-estree:** add TSEnumBody node for TSEnumDeclaration body
1207
+
1208
+ - **typescript-estree:** enable dot globs for project by default
1209
+
1210
+ - **typescript-estree:** pass extraFileExtensions to projectService
1211
+
1212
+ - **types:** allow ProjectServiceOptions for projectService
1213
+
1214
+ - **typescript-estree:** only run projectService setHostConfiguration when needed
1215
+
1216
+ - **typescript-estree:** specific error for parserOptions.project not including a file
1217
+
1218
+ - **typescript-estree:** adds support for project services using extended config files
1219
+
1220
+ - **typescript-estree:** factor tsconfigRootDir into allowDefaultProject
1221
+
1222
+
1223
+ ### ❤️ Thank You
1224
+
1225
+ - Abraham Guo
1226
+ - Alfred Ringstad
1227
+ - auvred
1228
+ - Brad Zacher
1229
+ - Christopher Aubut
1230
+ - Collin Bachman
1231
+ - James Henry
1232
+ - Josh Goldberg
1233
+ - Josh Goldberg ✨
1234
+ - Kirk Waiblinger
1235
+ - StyleShit
1236
+ - Victor Lin
1237
+ - Yukihiro Hasegawa
1238
+
1239
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1240
+
1241
+ ## 7.18.0 (2024-07-29)
1242
+
1243
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1244
+
1245
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1246
+
1247
+ ## 7.17.0 (2024-07-22)
1248
+
1249
+
1250
+ ### 🩹 Fixes
1251
+
1252
+ - **typescript-estree:** don't infer single-run when --fix is in proces.argv
1253
+
1254
+ - **typescript-estree:** disable single-run inference with extraFileExtensions
1255
+
1256
+
1257
+ ### ❤️ Thank You
1258
+
1259
+ - Armano
1260
+ - Josh Goldberg ✨
1261
+ - Kirk Waiblinger
1262
+ - StyleShit
1263
+
1264
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1265
+
1266
+ ## 7.16.1 (2024-07-15)
1267
+
1268
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1269
+
1270
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1271
+
1272
+ ## 7.16.0 (2024-07-08)
1273
+
1274
+
1275
+ ### 🩹 Fixes
1276
+
1277
+ - **deps:** update dependency @eslint-community/regexpp to v4.11.0
1278
+
1279
+ - **website:** react key error on internal pages of website
1280
+
1281
+
1282
+ ### ❤️ Thank You
1283
+
1284
+ - Abraham Guo
1285
+ - auvred
1286
+ - Josh Goldberg ✨
1287
+ - Juan Sanchez
1288
+ - Vinccool96
1289
+ - YeonJuan
1290
+ - Yukihiro Hasegawa
1291
+
1292
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1293
+
1294
+ ## 7.15.0 (2024-07-01)
1295
+
1296
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1297
+
1298
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1299
+
1300
+ ## 7.14.1 (2024-06-24)
1301
+
1302
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1303
+
1304
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1305
+
1306
+ ## 7.14.0 (2024-06-24)
1307
+
1308
+
1309
+ ### 🚀 Features
1310
+
1311
+ - support TypeScript 5.5
1312
+
1313
+
1314
+ ### 🩹 Fixes
1315
+
1316
+ - keep warnAbountTSVersion in sync with package.json
1317
+
1318
+
1319
+ ### ❤️ Thank You
1320
+
1321
+ - Brad Zacher
1322
+ - cm-ayf
1323
+ - Jake Bailey
1324
+ - James Zhan
1325
+ - Joshua Chen
1326
+ - yoshi2no
1327
+
1328
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1329
+
1330
+ ## 7.13.1 (2024-06-17)
1331
+
1332
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1333
+
1334
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1335
+
1336
+ ## 7.13.0 (2024-06-10)
1337
+
1338
+
1339
+ ### 🚀 Features
1340
+
1341
+ - **typescript-estree:** require `import = require()` argument to be a string literal
1342
+
1343
+ - **typescript-estree:** forbid `.body`, `.async`, `.generator` on `declare function`
1344
+
1345
+ - **parser, typescript-estree:** export withoutProjectParserOptions utility
1346
+
1347
+
1348
+ ### ❤️ Thank You
1349
+
1350
+ - Fotis Papadogeorgopoulos
1351
+ - Joshua Chen
1352
+ - Kirk Waiblinger
1353
+ - Tobiloba Adedeji
1354
+ - Vinccool96
1355
+ - YeonJuan
1356
+
1357
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1358
+
1359
+ ## 7.12.0 (2024-06-03)
1360
+
1361
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1362
+
1363
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1364
+
1365
+ ## 7.11.0 (2024-05-27)
1366
+
1367
+
1368
+ ### 🩹 Fixes
1369
+
1370
+ - **typescript-estree:** truncate number of files printed by the maximum file error
1371
+
1372
+
1373
+ ### ❤️ Thank You
1374
+
1375
+ - Abraham Guo
1376
+ - auvred
1377
+ - Dom Armstrong
1378
+ - Kirk Waiblinger
1379
+
1380
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1381
+
1382
+ ## 7.10.0 (2024-05-20)
1383
+
1384
+
1385
+ ### 🩹 Fixes
1386
+
1387
+ - **typescript-estree:** don't add in-project files to defaultProjectMatchedFiles
1388
+
1389
+
1390
+ ### ❤️ Thank You
1391
+
1392
+ - auvred
1393
+ - Emanuel Hoogeveen
1394
+ - jsfm01
1395
+ - Kirk Waiblinger
1396
+
1397
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1398
+
1399
+ ## 7.9.0 (2024-05-13)
1400
+
1401
+
1402
+ ### 🩹 Fixes
1403
+
1404
+ - do not pass tsconfig canonical file name to typescript API to get program details for config file
1405
+
1406
+
1407
+ ### ❤️ Thank You
1408
+
1409
+ - Kirk Waiblinger
1410
+ - Sheetal Nandi
1411
+ - Vinccool96
1412
+
1413
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1414
+
1415
+ ## 7.8.0 (2024-04-29)
1416
+
1417
+
1418
+ ### 🚀 Features
1419
+
1420
+ - **typescript-estree:** add maximumDefaultProjectFileMatchCount and wide allowDefaultProjectForFiles glob restrictions
1421
+
1422
+
1423
+ ### ❤️ Thank You
1424
+
1425
+ - auvred
1426
+ - Josh Goldberg ✨
1427
+ - jsfm01
1428
+ - Kim Sang Du
1429
+ - YeonJuan
1430
+
1431
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1432
+
1433
+ ## 7.7.1 (2024-04-22)
1434
+
1435
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1436
+
1437
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1438
+
1439
+ ## 7.7.0 (2024-04-15)
1440
+
1441
+
1442
+ ### 🚀 Features
1443
+
1444
+ - **typescript-estree:** add defaultProject for project service
1445
+
1446
+
1447
+ ### ❤️ Thank You
1448
+
1449
+ - Dave
1450
+ - Josh Goldberg ✨
1451
+
1452
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1453
+
1454
+ ## 7.6.0 (2024-04-08)
1455
+
1456
+
1457
+ ### 🚀 Features
1458
+
1459
+ - bump npm dependency ranges
1460
+
1461
+
1462
+ ### ❤️ Thank You
1463
+
1464
+ - Abraham Guo
1465
+ - auvred
1466
+ - Brad Zacher
1467
+
1468
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1469
+
1470
+ ## 7.5.0 (2024-04-01)
1471
+
1472
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1473
+
1474
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1475
+
1476
+ ## 7.4.0 (2024-03-25)
1477
+
1478
+
1479
+ ### 🚀 Features
1480
+
1481
+ - **eslint-plugin:** [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata
1482
+
1483
+
1484
+ ### ❤️ Thank You
1485
+
1486
+ - Abraham Guo
1487
+ - Brad Zacher
1488
+ - Josh Goldberg ✨
1489
+ - Kim Sang Du
1490
+ - Kirk Waiblinger
1491
+ - Marco Pasqualetti
1492
+ - YeonJuan
1493
+
1494
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1495
+
1496
+ ## 7.3.1 (2024-03-18)
1497
+
1498
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1499
+
1500
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1501
+
1502
+ ## 7.3.0 (2024-03-18)
1503
+
1504
+
1505
+ ### 🚀 Features
1506
+
1507
+ - **typescript-estree:** disallow switch statements with multiple default cases
1508
+
1509
+
1510
+ ### 🩹 Fixes
1511
+
1512
+ - correct `engines.node` constraints in `package.json`
1513
+
1514
+ - **eslint-plugin:** [no-unnecessary-type-assertion] fix false negative for const variable declarations
1515
+
1516
+ - **typescript-estree:** fix the issue of single run inferring in the pnpm repo
1517
+
1518
+
1519
+ ### ❤️ Thank You
1520
+
1521
+ - Abraham Guo
1522
+ - Alexu
1523
+ - Arka Pratim Chaudhuri
1524
+ - auvred
1525
+ - Derrick Isaacson
1526
+ - fnx
1527
+ - Josh Goldberg ✨
1528
+ - Kirk Waiblinger
1529
+ - Marta Cardoso
1530
+ - Michaël De Boey
1531
+ - Tristan Rasmussen
1532
+ - YeonJuan
1533
+
1534
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1535
+
1536
+ ## 7.2.0 (2024-03-11)
1537
+
1538
+
1539
+ ### 🚀 Features
1540
+
1541
+ - support TS 5.4
1542
+
1543
+
1544
+ ### ❤️ Thank You
1545
+
1546
+ - Arka Pratim Chaudhuri
1547
+ - auvred
1548
+ - Chris Plummer
1549
+ - Fotis Papadogeorgopoulos
1550
+ - Josh Goldberg ✨
1551
+ - Kirk Waiblinger
1552
+ - Wayne Zhang
1553
+ - YeonJuan
1554
+
1555
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1556
+
1557
+ ## 7.1.1 (2024-03-04)
1558
+
1559
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1560
+
1561
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1562
+
1563
+ ## 7.1.0 (2024-02-26)
1564
+
1565
+
1566
+ ### 🚀 Features
1567
+
1568
+ - **typescript-estree:** add debug logs for useProgramFromProjectService
1569
+
1570
+
1571
+ ### 🩹 Fixes
1572
+
1573
+ - **typescript-estree:** use simpler absolutify behavior for project service client file paths
1574
+
1575
+
1576
+ ### ❤️ Thank You
1577
+
1578
+ - Arka Pratim Chaudhuri
1579
+ - Josh Goldberg ✨
1580
+ - YeonJuan
1581
+
1582
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1583
+
1584
+ ## 7.0.2 (2024-02-19)
1585
+
1586
+
1587
+ ### 🩹 Fixes
1588
+
1589
+ - fix tsconfig-less check errors, fix `@types/eslint` incompatibilities, add tests
1590
+
1591
+
1592
+ ### ❤️ Thank You
1593
+
1594
+ - Brad Zacher
1595
+ - Gareth Jones
1596
+
1597
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1598
+
1599
+ ## 7.0.1 (2024-02-12)
1600
+
1601
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1602
+
1603
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1604
+
1605
+ # 7.0.0 (2024-02-12)
1606
+
1607
+
1608
+ ### 🚀 Features
1609
+
1610
+ - ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
1611
+
1612
+ - add support for flat configs
1613
+
1614
+
1615
+ #### ⚠️ Breaking Changes
1616
+
1617
+ - ⚠️ bump ESLint, NodeJS, and TS minimum version requirements
1618
+
1619
+ ### ❤️ Thank You
1620
+
1621
+ - Brad Zacher
1622
+ - Kirk Waiblinger
1623
+ - StyleShit
1624
+ - YeonJuan
1625
+
1626
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1627
+
1628
+ ## 6.21.0 (2024-02-05)
1629
+
1630
+
1631
+ ### 🚀 Features
1632
+
1633
+ - allow `parserOptions.project: false`
1634
+
1635
+ - **typescript-estree:** forbid duplicated accessibility modifiers
1636
+
1637
+
1638
+ ### ❤️ Thank You
1639
+
1640
+ - auvred
1641
+ - Brad Zacher
1642
+ - Kirk Waiblinger
1643
+ - Pete Gonzalez
1644
+ - YeonJuan
1645
+
1646
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1647
+
1648
+ ## 6.20.0 (2024-01-29)
1649
+
1650
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1651
+
1652
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1653
+
1654
+ ## 6.19.1 (2024-01-22)
1655
+
1656
+ This was a version bump only for typescript-estree to align it with other projects, there were no code changes.
1657
+
1658
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1659
+
1660
+ ## 6.19.0 (2024-01-15)
1661
+
1662
+
1663
+ ### 🩹 Fixes
1664
+
1665
+ - **typescript-estree:** add JSDocParsingMode enum merge for typescript/lib/tsserverlibrary
1666
+
1667
+ - **typescript-estree:** disallow `using` as the variable keyword for `for..in` loops
1668
+
1669
+ - **typescript-estree:** fix incorrect backwards-compat augmentation in TS 5.3
1670
+
1671
+
1672
+ ### ❤️ Thank You
1673
+
1674
+ - auvred
1675
+ - Brad Zacher
1676
+ - Josh Goldberg ✨
1677
+ - Joshua Chen
1678
+ - LJX
1679
+ - Steven
1680
+ - StyleShit
1681
+
1682
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1683
+
1684
+ ## 6.18.1 (2024-01-08)
1685
+
1686
+
1687
+ ### 🩹 Fixes
1688
+
1689
+ - **typescript-estree:** fix invalid parsing error when use update expression on non-null assertion
1690
+
1691
+ - **typescript-estree:** only create project service from env setting if project is enabled
1692
+
1693
+
1694
+ ### ❤️ Thank You
1695
+
1696
+ - auvred
1697
+ - James
1698
+ - Josh Goldberg ✨
1699
+ - YeonJuan
1700
+
1701
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1702
+
1703
+ ## 6.18.0 (2024-01-06)
1704
+
1705
+
1706
+ ### 🚀 Features
1707
+
1708
+ - **typescript-estree:** throw on invalid update expressions
1709
+
1710
+ - **typescript-estree:** throw error when CatchClause param contains initializer
1711
+
1712
+
1713
+ ### ❤️ Thank You
1714
+
1715
+ - auvred
1716
+ - Joshua Chen
1717
+
1718
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1719
+
1720
+ # [6.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0) (2024-01-01)
1721
+
1722
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1723
+
1724
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1725
+
1726
+
1727
+
1728
+
1729
+
1730
+ # [6.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0) (2023-12-25)
1731
+
1732
+
1733
+ ### Features
1734
+
1735
+ * **typescript-estree:** add allowDefaultProjectForFiles project service allowlist option ([#7752](https://github.com/typescript-eslint/typescript-eslint/issues/7752)) ([7ddadda](https://github.com/typescript-eslint/typescript-eslint/commit/7ddadda10845bc53967eeec83ba6b7cdc71a079f))
1736
+
1737
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1738
+
1739
+
1740
+
1741
+
1742
+
1743
+ # [6.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0) (2023-12-18)
1744
+
1745
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1746
+
1747
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1748
+
1749
+
1750
+
1751
+
1752
+
1753
+ # [6.14.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.2...v6.14.0) (2023-12-11)
1754
+
1755
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1756
+
1757
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1758
+
1759
+
1760
+
1761
+
1762
+
1763
+ ## [6.13.2](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.1...v6.13.2) (2023-12-04)
1764
+
1765
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1766
+
1767
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+ ## [6.13.1](https://github.com/typescript-eslint/typescript-eslint/compare/v6.13.0...v6.13.1) (2023-11-28)
1774
+
1775
+
1776
+ ### Bug Fixes
1777
+
1778
+ * default to parse all JSDoc and provide options to configure it ([#7999](https://github.com/typescript-eslint/typescript-eslint/issues/7999)) ([779e13e](https://github.com/typescript-eslint/typescript-eslint/commit/779e13ec86f92b94a96ecdf81cbc36120a132ff6))
1779
+
1780
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1781
+
1782
+
1783
+
1784
+
1785
+
1786
+ # [6.13.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.12.0...v6.13.0) (2023-11-27)
1787
+
1788
+
1789
+ ### Bug Fixes
1790
+
1791
+ * **typescript-estree:** ensure backwards compat with pre-5.3 import attributes ([#7967](https://github.com/typescript-eslint/typescript-eslint/issues/7967)) ([810fc8c](https://github.com/typescript-eslint/typescript-eslint/commit/810fc8c9a18cb55af144d8945fdf38d841c9d486))
1792
+
1793
+
1794
+ ### Features
1795
+
1796
+ * support TS 5.3 ([#7968](https://github.com/typescript-eslint/typescript-eslint/issues/7968)) ([fb50638](https://github.com/typescript-eslint/typescript-eslint/commit/fb50638650d35fbd39f2b19446fa54c864bfc2ef))
1797
+ * **typescript-estree:** pass jsDocParsingMode everywhere ([#7997](https://github.com/typescript-eslint/typescript-eslint/issues/7997)) ([3d2a344](https://github.com/typescript-eslint/typescript-eslint/commit/3d2a3446518c4da303a569830bb83bf166742535))
1798
+
1799
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1800
+
1801
+
1802
+
1803
+
1804
+
1805
+ # [6.12.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.11.0...v6.12.0) (2023-11-20)
1806
+
1807
+
1808
+ ### Features
1809
+
1810
+ * update TypeScript to 5.3-rc ([#7923](https://github.com/typescript-eslint/typescript-eslint/issues/7923)) ([9034d17](https://github.com/typescript-eslint/typescript-eslint/commit/9034d17027f798c38ffc19141e3c08ca8ea31290))
1811
+
1812
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1813
+
1814
+
1815
+
1816
+
1817
+
1818
+ # [6.11.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.10.0...v6.11.0) (2023-11-13)
1819
+
1820
+
1821
+ ### Features
1822
+
1823
+ * allow typescript@5.3.0-RC as devDependency ([#7821](https://github.com/typescript-eslint/typescript-eslint/issues/7821)) ([b6c40b4](https://github.com/typescript-eslint/typescript-eslint/commit/b6c40b42b68d5567c7468030ee45b9b84bec4c4d))
1824
+ * **typescript-estree:** skip `isTTY` version check if user passes `loggerFn` on unsupported TypeScript version warning ([#7739](https://github.com/typescript-eslint/typescript-eslint/issues/7739)) ([9656e13](https://github.com/typescript-eslint/typescript-eslint/commit/9656e135e78d9346d326d0c78ba772a5596c1812))
1825
+
1826
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1827
+
1828
+
1829
+
1830
+
1831
+
1832
+ # [6.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.9.1...v6.10.0) (2023-11-06)
1833
+
1834
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1835
+
1836
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1837
+
1838
+
1839
+
1840
+
1841
+
1842
+ ## [6.9.1](https://github.com/typescript-eslint/typescript-eslint/compare/v6.9.0...v6.9.1) (2023-10-30)
1843
+
1844
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1845
+
1846
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1847
+
1848
+
1849
+
1850
+
1851
+
1852
+ # [6.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.8.0...v6.9.0) (2023-10-23)
1853
+
1854
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1855
+
1856
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1857
+
1858
+
1859
+
1860
+
1861
+
1862
+ # [6.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.7.5...v6.8.0) (2023-10-16)
1863
+
1864
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1865
+
1866
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1867
+
1868
+
1869
+
1870
+
1871
+
1872
+ ## [6.7.5](https://github.com/typescript-eslint/typescript-eslint/compare/v6.7.4...v6.7.5) (2023-10-09)
1873
+
1874
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1875
+
1876
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1877
+
1878
+
1879
+
1880
+
1881
+
1882
+ ## [6.7.4](https://github.com/typescript-eslint/typescript-eslint/compare/v6.7.3...v6.7.4) (2023-10-02)
1883
+
1884
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1885
+
1886
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1887
+
1888
+
1889
+
1890
+
1891
+
1892
+ ## [6.7.3](https://github.com/typescript-eslint/typescript-eslint/compare/v6.7.2...v6.7.3) (2023-09-25)
1893
+
1894
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1895
+
1896
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1897
+
1898
+
1899
+
1900
+
1901
+
1902
+ ## [6.7.2](https://github.com/typescript-eslint/typescript-eslint/compare/v6.7.1...v6.7.2) (2023-09-18)
1903
+
1904
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1905
+
1906
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1907
+
1908
+
1909
+
1910
+
1911
+
1912
+ ## [6.7.1](https://github.com/typescript-eslint/typescript-eslint/compare/v6.7.0...v6.7.1) (2023-09-18)
1913
+
1914
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1915
+
1916
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1917
+
1918
+
1919
+
1920
+
1921
+
1922
+ # [6.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.6.0...v6.7.0) (2023-09-11)
1923
+
1924
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1925
+
1926
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1927
+
1928
+
1929
+
1930
+
1931
+
1932
+ # [6.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.5.0...v6.6.0) (2023-09-04)
1933
+
1934
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1935
+
1936
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1937
+
1938
+
1939
+
1940
+
1941
+
1942
+ # [6.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.4.1...v6.5.0) (2023-08-28)
1943
+
1944
+
1945
+ ### Features
1946
+
1947
+ * bump supported TS version to 5.2 ([#7535](https://github.com/typescript-eslint/typescript-eslint/issues/7535)) ([f18c88d](https://github.com/typescript-eslint/typescript-eslint/commit/f18c88dd35a807958af41404001c78485b7b558a))
1948
+ * support Explicit Resource Management syntax for TS 5.2 ([#7479](https://github.com/typescript-eslint/typescript-eslint/issues/7479)) ([c11e05c](https://github.com/typescript-eslint/typescript-eslint/commit/c11e05c97ef80d36fd194ac15952c339c1612b9e))
1949
+
1950
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1951
+
1952
+
1953
+
1954
+
1955
+
1956
+ ## [6.4.1](https://github.com/typescript-eslint/typescript-eslint/compare/v6.4.0...v6.4.1) (2023-08-21)
1957
+
1958
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1959
+
1960
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1961
+
1962
+
1963
+
1964
+
1965
+
1966
+ # [6.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.3.0...v6.4.0) (2023-08-14)
1967
+
1968
+
1969
+ ### Bug Fixes
1970
+
1971
+ * **typescript-estree:** support `declare` and `export` modifiers for nested namespace declaration ([#7410](https://github.com/typescript-eslint/typescript-eslint/issues/7410)) ([49a53f0](https://github.com/typescript-eslint/typescript-eslint/commit/49a53f0ba985941a431269d3761030dc414916b1))
1972
+
1973
+
1974
+ ### Features
1975
+
1976
+ * update to lib types for TS 5.2 RC ([#7451](https://github.com/typescript-eslint/typescript-eslint/issues/7451)) ([479f9f6](https://github.com/typescript-eslint/typescript-eslint/commit/479f9f6c053874bd584220edf594ec56d6b0b71a))
1977
+
1978
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1979
+
1980
+
1981
+
1982
+
1983
+
1984
+ # [6.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.2.1...v6.3.0) (2023-08-07)
1985
+
1986
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1987
+
1988
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1989
+
1990
+
1991
+
1992
+
1993
+
1994
+ ## [6.2.1](https://github.com/typescript-eslint/typescript-eslint/compare/v6.2.0...v6.2.1) (2023-07-31)
1995
+
1996
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1997
+
1998
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
1999
+
2000
+
2001
+
2002
+
2003
+
2004
+ # [6.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.1.0...v6.2.0) (2023-07-24)
2005
+
2006
+
2007
+ ### Bug Fixes
2008
+
2009
+ * **typescript-estree:** fix TSNode type error on old ts versions ([#7267](https://github.com/typescript-eslint/typescript-eslint/issues/7267)) ([f2aed1b](https://github.com/typescript-eslint/typescript-eslint/commit/f2aed1bee1d265e8c87423a17b674be31a075f58))
2010
+
2011
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
2012
+
2013
+
2014
+
2015
+
2016
+
2017
+ # [6.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v6.0.0...v6.1.0) (2023-07-17)
2018
+
2019
+
2020
+ ### Bug Fixes
2021
+
2022
+ * **typescript-estree:** remove ts.sys watch program override ([#7252](https://github.com/typescript-eslint/typescript-eslint/issues/7252)) ([41d6e9d](https://github.com/typescript-eslint/typescript-eslint/commit/41d6e9d6c0a58973700e2b971b7464cde636f147))
2023
+
2024
+
2025
+ ### Features
2026
+
2027
+ * **typescript-estree:** add EXPERIMENTAL_useProjectService option to use TypeScript project service ([#6754](https://github.com/typescript-eslint/typescript-eslint/issues/6754)) ([6d3d162](https://github.com/typescript-eslint/typescript-eslint/commit/6d3d162ce032ebcf5f892a4edfb897797fc96191))
2028
+
2029
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
2030
+
2031
+
2032
+
2033
+
2034
+
2035
+ # [6.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.62.0...v6.0.0) (2023-07-10)
2036
+
2037
+
2038
+ ### Bug Fixes
2039
+
2040
+ * **ast-spec:** remove more invalid properties ([#6243](https://github.com/typescript-eslint/typescript-eslint/issues/6243)) ([aa20f63](https://github.com/typescript-eslint/typescript-eslint/commit/aa20f63e8f345767bb4693c9d20f751e6998bd65))
2041
+ * bumped ts-api-utils to 0.0.39 ([#6497](https://github.com/typescript-eslint/typescript-eslint/issues/6497)) ([217c710](https://github.com/typescript-eslint/typescript-eslint/commit/217c710d99445994b9c8db7b9bee9b9cc63bc4cb))
2042
+ * fix illegal decorator check ([#6723](https://github.com/typescript-eslint/typescript-eslint/issues/6723)) ([c456f8c](https://github.com/typescript-eslint/typescript-eslint/commit/c456f8cdef5a931c631bfbcfc84d8a25caaf019f))
2043
+ * rename typeParameters to typeArguments where needed ([#5384](https://github.com/typescript-eslint/typescript-eslint/issues/5384)) ([08d757b](https://github.com/typescript-eslint/typescript-eslint/commit/08d757b26b00d0accea010e61ec42b4f753f993e))
2044
+ * replace tsutils with ts-api-tools ([#6428](https://github.com/typescript-eslint/typescript-eslint/issues/6428)) ([79327b4](https://github.com/typescript-eslint/typescript-eslint/commit/79327b4999999cde3003901b40527af002c4906a))
2045
+ * **type-utils:** file variant of TypeOrValueSpecifier uses canonical filenames instead of lowercasing ([#6781](https://github.com/typescript-eslint/typescript-eslint/issues/6781)) ([5095d05](https://github.com/typescript-eslint/typescript-eslint/commit/5095d05ac97320e7e50decef58279b01f2bfbd18))
2046
+ * **type-utils:** treat intrinsic types as if they are from lib and never match error types ([#6869](https://github.com/typescript-eslint/typescript-eslint/issues/6869)) ([ecb57de](https://github.com/typescript-eslint/typescript-eslint/commit/ecb57de5eb50511bed163f6e1b27e31b8577344e))
2047
+ * **typescript-estree:** account for namespace nesting in AST conversion ([#6272](https://github.com/typescript-eslint/typescript-eslint/issues/6272)) ([09e3877](https://github.com/typescript-eslint/typescript-eslint/commit/09e38776c63fea3328f71df36644ee11dd137cc1))
2048
+ * **typescript-estree:** allow writing to deprecated node properties ([#6670](https://github.com/typescript-eslint/typescript-eslint/issues/6670)) ([6652ebe](https://github.com/typescript-eslint/typescript-eslint/commit/6652ebea3e338f05a377f6f124d20520a840b1d5))
2049
+ * **typescript-estree:** fix error handling on `ImportExpression` ([#6587](https://github.com/typescript-eslint/typescript-eslint/issues/6587)) ([e8cdd5c](https://github.com/typescript-eslint/typescript-eslint/commit/e8cdd5ce48fa0a2f6f93e6b3ed7c337d042ab45d))
2050
+ * **typescript-estree:** forbid `override` on non-constructor function/methods ([#6729](https://github.com/typescript-eslint/typescript-eslint/issues/6729)) ([2f3638f](https://github.com/typescript-eslint/typescript-eslint/commit/2f3638fb00745429d6392a8e6492e83f853e92db))
2051
+ * **typescript-estree:** wrap import = declaration in an export node ([#5885](https://github.com/typescript-eslint/typescript-eslint/issues/5885)) ([1c3f470](https://github.com/typescript-eslint/typescript-eslint/commit/1c3f470da75bf63526efbf5b45615772e562dcb5)), closes [#5036](https://github.com/typescript-eslint/typescript-eslint/issues/5036) [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864) [#3076](https://github.com/typescript-eslint/typescript-eslint/issues/3076) [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864) [#5889](https://github.com/typescript-eslint/typescript-eslint/issues/5889) [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864) [#5883](https://github.com/typescript-eslint/typescript-eslint/issues/5883) [#4863](https://github.com/typescript-eslint/typescript-eslint/issues/4863) [#5381](https://github.com/typescript-eslint/typescript-eslint/issues/5381) [#5256](https://github.com/typescript-eslint/typescript-eslint/issues/5256)
2052
+ * update `exports` field in package.json files ([#6550](https://github.com/typescript-eslint/typescript-eslint/issues/6550)) ([53776c2](https://github.com/typescript-eslint/typescript-eslint/commit/53776c244f8bbdc852d57c7b313b0935e755ddc4))
2053
+
2054
+
2055
+ ### chore
2056
+
2057
+ * drop support for node v14.17, v17 ([#5971](https://github.com/typescript-eslint/typescript-eslint/issues/5971)) ([cc62015](https://github.com/typescript-eslint/typescript-eslint/commit/cc62015b8ae5f207912ff8988e2a0b3fe9a79243))
2058
+
2059
+
2060
+ ### Features
2061
+
2062
+ * add new package `rule-tester` ([#6777](https://github.com/typescript-eslint/typescript-eslint/issues/6777)) ([2ce1c1d](https://github.com/typescript-eslint/typescript-eslint/commit/2ce1c1d22c799a1ca027674fcb9b3a7ab0107428))
2063
+ * add package.json exports for public packages ([#6458](https://github.com/typescript-eslint/typescript-eslint/issues/6458)) ([d676683](https://github.com/typescript-eslint/typescript-eslint/commit/d6766838a05259556029acaac57dc7839b68c592))
2064
+ * bump minimum supported TS version to 4.2.4 ([#5915](https://github.com/typescript-eslint/typescript-eslint/issues/5915)) ([a8e71d5](https://github.com/typescript-eslint/typescript-eslint/commit/a8e71d52169f32ab9e836ec96d980ba52deffe12))
2065
+ * bump ts-api-utils to v0.0.21 ([#6459](https://github.com/typescript-eslint/typescript-eslint/issues/6459)) ([3915661](https://github.com/typescript-eslint/typescript-eslint/commit/391566172dbc6013be79952fc68a588bf653fa8d))
2066
+ * bump ts-api-utils to v0.0.22 ([#6472](https://github.com/typescript-eslint/typescript-eslint/issues/6472)) ([b88cd23](https://github.com/typescript-eslint/typescript-eslint/commit/b88cd2332921efcca7ec5f4176f19779346d963b))
2067
+ * create TSTypeQuery node when TSImportType has isTypeOf ([#3076](https://github.com/typescript-eslint/typescript-eslint/issues/3076)) ([2b69b65](https://github.com/typescript-eslint/typescript-eslint/commit/2b69b659d87b58468e413801d31086ae0eeafff4)), closes [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864)
2068
+ * drop support for node v12 ([#5918](https://github.com/typescript-eslint/typescript-eslint/issues/5918)) ([7e3fe9a](https://github.com/typescript-eslint/typescript-eslint/commit/7e3fe9a67abd394b0a114f2deb466edf5c9759ac))
2069
+ * drop support for node v14 and test against node v20 ([#7022](https://github.com/typescript-eslint/typescript-eslint/issues/7022)) ([e6235bf](https://github.com/typescript-eslint/typescript-eslint/commit/e6235bf61b781066653581b57b7cd976c9c4f905))
2070
+ * **eslint-plugin:** [prefer-optional-chain] handle cases where the first operands are unrelated to the rest of the chain and add type info ([#6397](https://github.com/typescript-eslint/typescript-eslint/issues/6397)) ([02a37c4](https://github.com/typescript-eslint/typescript-eslint/commit/02a37c4c79d9b83998b7ee1376be43b06e12b3a0))
2071
+ * **eslint-plugin:** add config that disables type-aware linting ([#6470](https://github.com/typescript-eslint/typescript-eslint/issues/6470)) ([3b063cf](https://github.com/typescript-eslint/typescript-eslint/commit/3b063cfadce50985f8ec6d8f44f5b1cbd5c1ea57))
2072
+ * **eslint-plugin:** apply final v6 changes to configs ([#7110](https://github.com/typescript-eslint/typescript-eslint/issues/7110)) ([c13ce0b](https://github.com/typescript-eslint/typescript-eslint/commit/c13ce0b4f7a74a6d8fecf78d25ebd8181f7a9119))
2073
+ * **eslint-plugin:** final final config changes for v6 ([#7157](https://github.com/typescript-eslint/typescript-eslint/issues/7157)) ([e35c5c1](https://github.com/typescript-eslint/typescript-eslint/commit/e35c5c1c39f3d76b916ad1c1ac2c7bf05b379193))
2074
+ * **eslint-plugin:** rework configs: recommended, strict, stylistic; -type-checked ([#5251](https://github.com/typescript-eslint/typescript-eslint/issues/5251)) ([5346b5b](https://github.com/typescript-eslint/typescript-eslint/commit/5346b5bbdbba81439ba761c282ba9cdcec7b45c8)), closes [#5036](https://github.com/typescript-eslint/typescript-eslint/issues/5036) [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864) [#3076](https://github.com/typescript-eslint/typescript-eslint/issues/3076) [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864) [#5889](https://github.com/typescript-eslint/typescript-eslint/issues/5889) [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864) [#5883](https://github.com/typescript-eslint/typescript-eslint/issues/5883) [#4863](https://github.com/typescript-eslint/typescript-eslint/issues/4863) [#5381](https://github.com/typescript-eslint/typescript-eslint/issues/5381) [#5256](https://github.com/typescript-eslint/typescript-eslint/issues/5256) [#5399](https://github.com/typescript-eslint/typescript-eslint/issues/5399)
2075
+ * improve error location ([#6556](https://github.com/typescript-eslint/typescript-eslint/issues/6556)) ([355adf0](https://github.com/typescript-eslint/typescript-eslint/commit/355adf0b5dcc1b4f5c360722acc1ba8b6f4e4117))
2076
+ * made BaseNode.parent non-optional ([#5252](https://github.com/typescript-eslint/typescript-eslint/issues/5252)) ([a4768f3](https://github.com/typescript-eslint/typescript-eslint/commit/a4768f38ef4943873c1e9443e8cd101a663ac3c0)), closes [#5036](https://github.com/typescript-eslint/typescript-eslint/issues/5036) [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864) [#3076](https://github.com/typescript-eslint/typescript-eslint/issues/3076) [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864) [#5889](https://github.com/typescript-eslint/typescript-eslint/issues/5889) [#5834](https://github.com/typescript-eslint/typescript-eslint/issues/5834) [#5882](https://github.com/typescript-eslint/typescript-eslint/issues/5882) [#5864](https://github.com/typescript-eslint/typescript-eslint/issues/5864) [#5883](https://github.com/typescript-eslint/typescript-eslint/issues/5883) [#4863](https://github.com/typescript-eslint/typescript-eslint/issues/4863) [#5381](https://github.com/typescript-eslint/typescript-eslint/issues/5381) [#5256](https://github.com/typescript-eslint/typescript-eslint/issues/5256) [#5399](https://github.com/typescript-eslint/typescript-eslint/issues/5399)
2077
+ * remove moduleResolver API ([#6609](https://github.com/typescript-eslint/typescript-eslint/issues/6609)) ([f0f45a9](https://github.com/typescript-eslint/typescript-eslint/commit/f0f45a9d35453c3ec601df770092d236c72d447b))
2078
+ * remove partial type-information program ([#6066](https://github.com/typescript-eslint/typescript-eslint/issues/6066)) ([7fc062a](https://github.com/typescript-eslint/typescript-eslint/commit/7fc062abc30a73093cd943c2cb808ae373fe12d9))
2079
+ * remove semantically invalid properties from TSEnumDeclaration, TSInterfaceDeclaration and TSModuleDeclaration ([#4863](https://github.com/typescript-eslint/typescript-eslint/issues/4863)) ([844875c](https://github.com/typescript-eslint/typescript-eslint/commit/844875cbe933195ff25ba218f82ede3ebde9a0a0))
2080
+ * **typescript-estree:** add type checker wrapper APIs to ParserServicesWithTypeInformation ([#6404](https://github.com/typescript-eslint/typescript-eslint/issues/6404)) ([62d5755](https://github.com/typescript-eslint/typescript-eslint/commit/62d57559564fb08512eafe03a2c1b167c4377601))
2081
+ * **typescript-estree:** added allowInvalidAST option to not throw on invalid tokens ([#6247](https://github.com/typescript-eslint/typescript-eslint/issues/6247)) ([a3b177d](https://github.com/typescript-eslint/typescript-eslint/commit/a3b177d59adaf8ea76b205befc8b12d86447f1fb))
2082
+ * **typescript-estree:** allow providing code as a ts.SourceFile ([#5892](https://github.com/typescript-eslint/typescript-eslint/issues/5892)) ([af41b7f](https://github.com/typescript-eslint/typescript-eslint/commit/af41b7fa7b9b8f3023fdabd40846598d5d4d4f61))
2083
+ * **typescript-estree:** check for illegal decorators on function declarations ([#6590](https://github.com/typescript-eslint/typescript-eslint/issues/6590)) ([1b39cfd](https://github.com/typescript-eslint/typescript-eslint/commit/1b39cfd307955deb8e407cf8dd3a6ca1ed1b8df6))
2084
+ * **typescript-estree:** check modifiers on every node ([#6615](https://github.com/typescript-eslint/typescript-eslint/issues/6615)) ([62d6230](https://github.com/typescript-eslint/typescript-eslint/commit/62d62304e16b553274a80d8ab2653543a22f2391))
2085
+ * **typescript-estree:** deprecate createDefaultProgram ([#5890](https://github.com/typescript-eslint/typescript-eslint/issues/5890)) ([426d6b6](https://github.com/typescript-eslint/typescript-eslint/commit/426d6b647e6df3e312d1cef3e28dadaef6675fd3))
2086
+ * **typescript-estree:** forbid members in Mapped Type ([#6802](https://github.com/typescript-eslint/typescript-eslint/issues/6802)) ([b93458f](https://github.com/typescript-eslint/typescript-eslint/commit/b93458f9dfe36409d3a736a081ab69ba749caf24))
2087
+ * **typescript-estree:** remove optionality from AST boolean properties ([#6274](https://github.com/typescript-eslint/typescript-eslint/issues/6274)) ([df131e2](https://github.com/typescript-eslint/typescript-eslint/commit/df131e258c93e5714c88c0373cfeb2e1e75afc75))
2088
+ * **typescript-estree:** remove parseWithNodeMaps ([#7120](https://github.com/typescript-eslint/typescript-eslint/issues/7120)) ([e2a0a76](https://github.com/typescript-eslint/typescript-eslint/commit/e2a0a768d18a6aed5046946a2b57b219a54dcf3e))
2089
+ * **typescript-estree:** strict class heritage clauses check ([#6576](https://github.com/typescript-eslint/typescript-eslint/issues/6576)) ([530185b](https://github.com/typescript-eslint/typescript-eslint/commit/530185bd7e62b05adc673d1f96257dd14bb4d9dc))
2090
+ * **typescript-estree:** throw errors for object methods without function bodies ([#6589](https://github.com/typescript-eslint/typescript-eslint/issues/6589)) ([1d78576](https://github.com/typescript-eslint/typescript-eslint/commit/1d78576d41323e35c2d2a2ecc92f6ee76ed61d57))
2091
+ * **typescript-estree:** throw errors on interface with implements ([#6551](https://github.com/typescript-eslint/typescript-eslint/issues/6551)) ([67e05c8](https://github.com/typescript-eslint/typescript-eslint/commit/67e05c8f0381ba7065a0257d6038f0a50a3b9888))
2092
+ * **typescript-estree:** throw errors when abstract property has initializer ([#6613](https://github.com/typescript-eslint/typescript-eslint/issues/6613)) ([dcdbc76](https://github.com/typescript-eslint/typescript-eslint/commit/dcdbc76d5418a383968d15e32d2eba7a9d2d7e79))
2093
+ * **typescript-estree:** warn on deprecated AST property accesses ([#6525](https://github.com/typescript-eslint/typescript-eslint/issues/6525)) ([79c058d](https://github.com/typescript-eslint/typescript-eslint/commit/79c058d69f723ed18a3a7631370009359510d128))
2094
+
2095
+
2096
+ ### BREAKING CHANGES
2097
+
2098
+ * drops support for node v17
2099
+ * Bumps the minimum supported range and removes handling for old versions
2100
+ * drops support for node v12
2101
+
2102
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
2103
+
2104
+
2105
+
2106
+
2107
+
2108
+ # [5.62.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.61.0...v5.62.0) (2023-07-10)
2109
+
2110
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2111
+
2112
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
2113
+
2114
+
2115
+
2116
+
2117
+
2118
+ # [5.61.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.60.1...v5.61.0) (2023-07-03)
2119
+
2120
+
2121
+ ### Features
2122
+
2123
+ * support TypeScript 5.1 ([#7088](https://github.com/typescript-eslint/typescript-eslint/issues/7088)) ([4bf2d73](https://github.com/typescript-eslint/typescript-eslint/commit/4bf2d7360eaf74c9ef87b196ff4c459b8f50800b))
2124
+
2125
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
2126
+
2127
+
2128
+
2129
+
2130
+
2131
+ ## [5.60.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.60.0...v5.60.1) (2023-06-26)
2132
+
2133
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2134
+
2135
+ You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
2136
+
2137
+
2138
+
2139
+
2140
+
2141
+ # [5.60.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.11...v5.60.0) (2023-06-19)
2142
+
2143
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2144
+
2145
+
2146
+
2147
+
2148
+
2149
+ ## [5.59.11](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.10...v5.59.11) (2023-06-12)
2150
+
2151
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2152
+
2153
+
2154
+
2155
+
2156
+
2157
+ ## [5.59.10](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.9...v5.59.10) (2023-06-12)
2158
+
2159
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2160
+
2161
+
2162
+
2163
+
2164
+
2165
+ ## [5.59.9](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.8...v5.59.9) (2023-06-05)
2166
+
2167
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2168
+
2169
+
2170
+
2171
+
2172
+
2173
+ ## [5.59.8](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.7...v5.59.8) (2023-05-29)
2174
+
2175
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2176
+
2177
+
2178
+
2179
+
2180
+
2181
+ ## [5.59.7](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.6...v5.59.7) (2023-05-22)
2182
+
2183
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2184
+
2185
+
2186
+
2187
+
2188
+
2189
+ ## [5.59.6](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.5...v5.59.6) (2023-05-15)
2190
+
2191
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2192
+
2193
+
2194
+
2195
+
2196
+
2197
+ ## [5.59.5](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.4...v5.59.5) (2023-05-08)
2198
+
2199
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2200
+
2201
+
2202
+
2203
+
2204
+
2205
+ ## [5.59.4](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.3...v5.59.4) (2023-05-08)
2206
+
2207
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2208
+
2209
+
2210
+
2211
+
2212
+
2213
+ ## [5.59.3](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.2...v5.59.3) (2023-05-08)
2214
+
2215
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2216
+
2217
+
2218
+
2219
+
2220
+
2221
+ ## [5.59.2](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.1...v5.59.2) (2023-05-01)
2222
+
2223
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2224
+
2225
+
2226
+
2227
+
2228
+
2229
+ ## [5.59.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.59.0...v5.59.1) (2023-04-24)
2230
+
2231
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2232
+
2233
+
2234
+
2235
+
2236
+
2237
+ # [5.59.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.58.0...v5.59.0) (2023-04-17)
2238
+
2239
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2240
+
2241
+
2242
+
2243
+
2244
+
2245
+ # [5.58.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.57.1...v5.58.0) (2023-04-10)
2246
+
2247
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2248
+
2249
+
2250
+
2251
+
2252
+
2253
+ ## [5.57.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.57.0...v5.57.1) (2023-04-03)
2254
+
2255
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2256
+
2257
+
2258
+
2259
+
2260
+
2261
+ # [5.57.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.56.0...v5.57.0) (2023-03-27)
2262
+
2263
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2264
+
2265
+
2266
+
2267
+
2268
+
2269
+ # [5.56.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0) (2023-03-20)
2270
+
2271
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2272
+
2273
+
2274
+
2275
+
2276
+
2277
+ # [5.55.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.54.1...v5.55.0) (2023-03-13)
2278
+
2279
+
2280
+ ### Features
2281
+
2282
+ * **typescript-estree:** support `const` modifiers for type parameters ([#6600](https://github.com/typescript-eslint/typescript-eslint/issues/6600)) ([f3c6373](https://github.com/typescript-eslint/typescript-eslint/commit/f3c637328b1a3923b9ecdfaeea86ccf73cbdda06))
2283
+ * update TypeScript to 5.0 RC ([#6570](https://github.com/typescript-eslint/typescript-eslint/issues/6570)) ([36ef0e1](https://github.com/typescript-eslint/typescript-eslint/commit/36ef0e16f31810c27dda299e739d1610b689d3ad))
2284
+
2285
+
2286
+
2287
+
2288
+
2289
+ ## [5.54.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.54.0...v5.54.1) (2023-03-06)
2290
+
2291
+
2292
+ ### Bug Fixes
2293
+
2294
+ * **typescript-estree:** do not call export of clearProgramCache ([#6540](https://github.com/typescript-eslint/typescript-eslint/issues/6540)) ([181e705](https://github.com/typescript-eslint/typescript-eslint/commit/181e705887e9e07f0fa28195644cc94e5b4f039d))
2295
+
2296
+
2297
+
2298
+
2299
+
2300
+ # [5.54.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.53.0...v5.54.0) (2023-02-27)
2301
+
2302
+
2303
+ ### Bug Fixes
2304
+
2305
+ * **typescript-estree:** check for relative/root paths in printing file path errors ([#6491](https://github.com/typescript-eslint/typescript-eslint/issues/6491)) ([dc14242](https://github.com/typescript-eslint/typescript-eslint/commit/dc1424298493f1ee2e5a357e103c504655546d61))
2306
+
2307
+
2308
+
2309
+
2310
+
2311
+ # [5.53.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.52.0...v5.53.0) (2023-02-20)
2312
+
2313
+
2314
+ ### Features
2315
+
2316
+ * **typescript-estree:** expose a wrapper cache clearing function for advanced usecases ([#6476](https://github.com/typescript-eslint/typescript-eslint/issues/6476)) ([d816496](https://github.com/typescript-eslint/typescript-eslint/commit/d8164960d21336d4a726d8179b314f05fe3aeb22))
2317
+
2318
+
2319
+
2320
+
2321
+
2322
+ # [5.52.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.51.0...v5.52.0) (2023-02-13)
2323
+
2324
+
2325
+ ### Features
2326
+
2327
+ * **typescript-estree:** add `.kind` to `TSModuleDeclaration` ([#6443](https://github.com/typescript-eslint/typescript-eslint/issues/6443)) ([2f948df](https://github.com/typescript-eslint/typescript-eslint/commit/2f948df35b73d916e7fe42b21343568b1617e3f1))
2328
+ * **typescript-estree:** allow specifying project: true ([#6084](https://github.com/typescript-eslint/typescript-eslint/issues/6084)) ([dcd05f0](https://github.com/typescript-eslint/typescript-eslint/commit/dcd05f0b3ab62779571294d08a4542d66ebb2294))
2329
+
2330
+
2331
+
2332
+
2333
+
2334
+ # [5.51.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.50.0...v5.51.0) (2023-02-06)
2335
+
2336
+
2337
+ ### Features
2338
+
2339
+ * **typescript-estree:** cache project glob resolution ([#6367](https://github.com/typescript-eslint/typescript-eslint/issues/6367)) ([afae837](https://github.com/typescript-eslint/typescript-eslint/commit/afae8374df64101627808ccfeb5b715c865e910f))
2340
+
2341
+
2342
+
2343
+
2344
+
2345
+ # [5.50.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.49.0...v5.50.0) (2023-01-31)
2346
+
2347
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2348
+
2349
+
2350
+
2351
+
2352
+
2353
+ # [5.49.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.48.2...v5.49.0) (2023-01-23)
2354
+
2355
+
2356
+ ### Bug Fixes
2357
+
2358
+ * **typescript-estree:** fix typo in FAQ link ([#6346](https://github.com/typescript-eslint/typescript-eslint/issues/6346)) ([eefc578](https://github.com/typescript-eslint/typescript-eslint/commit/eefc5781b0f455264e4e58e33c27f8a91b3ab5e3))
2359
+
2360
+
2361
+
2362
+
2363
+
2364
+ ## [5.48.2](https://github.com/typescript-eslint/typescript-eslint/compare/v5.48.1...v5.48.2) (2023-01-16)
2365
+
2366
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2367
+
2368
+
2369
+
2370
+
2371
+
2372
+ ## [5.48.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.48.0...v5.48.1) (2023-01-09)
2373
+
2374
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2375
+
2376
+
2377
+
2378
+
2379
+
2380
+ # [5.48.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.47.1...v5.48.0) (2023-01-02)
2381
+
2382
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2383
+
2384
+ ## [5.47.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.47.0...v5.47.1) (2022-12-26)
2385
+
2386
+ ### Bug Fixes
2387
+
2388
+ - **ast-spec:** correct some incorrect ast types ([#6257](https://github.com/typescript-eslint/typescript-eslint/issues/6257)) ([0f3f645](https://github.com/typescript-eslint/typescript-eslint/commit/0f3f64571ea5d938081b1a9f3fd1495765201700))
2389
+
2390
+ # [5.47.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.46.1...v5.47.0) (2022-12-19)
2391
+
2392
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2393
+
2394
+ ## [5.46.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.46.0...v5.46.1) (2022-12-12)
2395
+
2396
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2397
+
2398
+ # [5.46.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.45.1...v5.46.0) (2022-12-08)
2399
+
2400
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2401
+
2402
+ ## [5.45.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.45.0...v5.45.1) (2022-12-05)
2403
+
2404
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2405
+
2406
+ # [5.45.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.44.0...v5.45.0) (2022-11-28)
2407
+
2408
+ ### Bug Fixes
2409
+
2410
+ - **typescript-estree:** stub out `ts.SatisfiesExpression` on old TS versions ([#6076](https://github.com/typescript-eslint/typescript-eslint/issues/6076)) ([1302b30](https://github.com/typescript-eslint/typescript-eslint/commit/1302b30ecad9eb55aa9f1daa5068d9fb72c3688e))
2411
+
2412
+ ### Features
2413
+
2414
+ - support Auto Accessor syntax ([#5926](https://github.com/typescript-eslint/typescript-eslint/issues/5926)) ([becd1f8](https://github.com/typescript-eslint/typescript-eslint/commit/becd1f8581c0013399dfe71be6c265e96cedb57a))
2415
+
2416
+ # [5.44.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.43.0...v5.44.0) (2022-11-21)
2417
+
2418
+ ### Bug Fixes
2419
+
2420
+ - **typescript-estree:** don't consider a cached program unless it's specified in the current `parserOptions.project` config ([#5999](https://github.com/typescript-eslint/typescript-eslint/issues/5999)) ([530e0e6](https://github.com/typescript-eslint/typescript-eslint/commit/530e0e618cdf4bb956149bf8a8484848e1b9a1f5))
2421
+
2422
+ ### Features
2423
+
2424
+ - support parsing `satisfies` operators ([#5717](https://github.com/typescript-eslint/typescript-eslint/issues/5717)) ([20d7cae](https://github.com/typescript-eslint/typescript-eslint/commit/20d7caee35ab84ae6381fdf04338c9e2b9e2bc48))
2425
+ - update to TypeScript 4.9 ([#5716](https://github.com/typescript-eslint/typescript-eslint/issues/5716)) ([4d744ea](https://github.com/typescript-eslint/typescript-eslint/commit/4d744ea10ba03c66eebcb63e8722e9f0165fbeed))
2426
+
2427
+ # [5.43.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.42.1...v5.43.0) (2022-11-14)
2428
+
2429
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2430
+
2431
+ ## [5.42.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.42.0...v5.42.1) (2022-11-07)
2432
+
2433
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2434
+
2435
+ # [5.42.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.41.0...v5.42.0) (2022-10-31)
2436
+
2437
+ ### Bug Fixes
2438
+
2439
+ - **typescript-estree:** don't allow single-run unless we're in type-aware linting mode ([#5893](https://github.com/typescript-eslint/typescript-eslint/issues/5893)) ([891b087](https://github.com/typescript-eslint/typescript-eslint/commit/891b0879ba9c64a4722b8c0bf9e599a725b6d6df))
2440
+
2441
+ ### Features
2442
+
2443
+ - **typescript-estree:** clarify docs and error for program project without matching TSConfig ([#5762](https://github.com/typescript-eslint/typescript-eslint/issues/5762)) ([67744db](https://github.com/typescript-eslint/typescript-eslint/commit/67744db31f61acab14b5fe027fbc2844ba198c97))
2444
+
2445
+ # [5.41.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.40.1...v5.41.0) (2022-10-24)
2446
+
2447
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2448
+
2449
+ ## [5.40.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.40.0...v5.40.1) (2022-10-17)
2450
+
2451
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2452
+
2453
+ # [5.40.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.39.0...v5.40.0) (2022-10-10)
2454
+
2455
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2456
+
2457
+ # [5.39.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.38.1...v5.39.0) (2022-10-03)
2458
+
2459
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2460
+
2461
+ ## [5.38.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.38.0...v5.38.1) (2022-09-26)
2462
+
2463
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2464
+
2465
+ # [5.38.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.37.0...v5.38.0) (2022-09-19)
2466
+
2467
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2468
+
2469
+ # [5.37.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.36.2...v5.37.0) (2022-09-12)
2470
+
2471
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2472
+
2473
+ ## [5.36.2](https://github.com/typescript-eslint/typescript-eslint/compare/v5.36.1...v5.36.2) (2022-09-05)
2474
+
2475
+ ### Bug Fixes
2476
+
2477
+ - **typescript-estree:** don't double add decorators to a parameter property's parameter ([#5582](https://github.com/typescript-eslint/typescript-eslint/issues/5582)) ([863694c](https://github.com/typescript-eslint/typescript-eslint/commit/863694cbc71b5158ca6a018de8707c9f9fbc22c3))
2478
+
2479
+ ## [5.36.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.36.0...v5.36.1) (2022-08-30)
2480
+
2481
+ ### Bug Fixes
2482
+
2483
+ - **typescript-estree:** fix decorator regression for pre TS4.8 ([#5574](https://github.com/typescript-eslint/typescript-eslint/issues/5574)) ([a603015](https://github.com/typescript-eslint/typescript-eslint/commit/a603015c93a6ea96d500c57bec1e284340141b1f))
2484
+
2485
+ # [5.36.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.35.1...v5.36.0) (2022-08-30)
2486
+
2487
+ ### Features
2488
+
2489
+ - support TypeScript 4.8 ([#5551](https://github.com/typescript-eslint/typescript-eslint/issues/5551)) ([81450ed](https://github.com/typescript-eslint/typescript-eslint/commit/81450ed7eaede74b384e9a91a84e9b4d34513866))
2490
+
2491
+ ## [5.35.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.35.0...v5.35.1) (2022-08-24)
2492
+
2493
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2494
+
2495
+ # [5.35.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.34.0...v5.35.0) (2022-08-24)
2496
+
2497
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2498
+
2499
+ # [5.34.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.33.1...v5.34.0) (2022-08-22)
2500
+
2501
+ ### Features
2502
+
2503
+ - **eslint-plugin:** [prefer-optional-chain] support suggesting `!foo || !foo.bar` as a valid match for the rule ([#5266](https://github.com/typescript-eslint/typescript-eslint/issues/5266)) ([aca935c](https://github.com/typescript-eslint/typescript-eslint/commit/aca935c9696712d4aff18144c4690db4d6ba9bf9))
2504
+
2505
+ ## [5.33.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.33.0...v5.33.1) (2022-08-15)
2506
+
2507
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2508
+
2509
+ # [5.33.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.32.0...v5.33.0) (2022-08-08)
2510
+
2511
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2512
+
2513
+ # [5.32.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.31.0...v5.32.0) (2022-08-01)
2514
+
2515
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2516
+
2517
+ # [5.31.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.30.7...v5.31.0) (2022-07-25)
2518
+
2519
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2520
+
2521
+ ## [5.30.7](https://github.com/typescript-eslint/typescript-eslint/compare/v5.30.6...v5.30.7) (2022-07-18)
2522
+
2523
+ ### Bug Fixes
2524
+
2525
+ - expose types supporting old versions of typescript ([#5339](https://github.com/typescript-eslint/typescript-eslint/issues/5339)) ([4ba9bdb](https://github.com/typescript-eslint/typescript-eslint/commit/4ba9bdb93f87e6bc370f13aa1de48f435abe3f88))
2526
+
2527
+ ## [5.30.6](https://github.com/typescript-eslint/typescript-eslint/compare/v5.30.5...v5.30.6) (2022-07-11)
2528
+
2529
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2530
+
2531
+ ## [5.30.5](https://github.com/typescript-eslint/typescript-eslint/compare/v5.30.4...v5.30.5) (2022-07-04)
2532
+
2533
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2534
+
2535
+ ## [5.30.4](https://github.com/typescript-eslint/typescript-eslint/compare/v5.30.3...v5.30.4) (2022-07-03)
2536
+
2537
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2538
+
2539
+ ## [5.30.3](https://github.com/typescript-eslint/typescript-eslint/compare/v5.30.2...v5.30.3) (2022-07-01)
2540
+
2541
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2542
+
2543
+ ## [5.30.2](https://github.com/typescript-eslint/typescript-eslint/compare/v5.30.1...v5.30.2) (2022-07-01)
2544
+
2545
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2546
+
2547
+ ## 5.30.1 (2022-07-01)
2548
+
2549
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2550
+
2551
+ # [5.30.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.29.0...v5.30.0) (2022-06-27)
2552
+
2553
+ ### Features
2554
+
2555
+ - treat `this` in `typeof this` as a `ThisExpression` ([#4382](https://github.com/typescript-eslint/typescript-eslint/issues/4382)) ([b04b2ce](https://github.com/typescript-eslint/typescript-eslint/commit/b04b2ce1ba90d94718891f2562dd210a6d7b8609))
2556
+
2557
+ # [5.29.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.28.0...v5.29.0) (2022-06-20)
2558
+
2559
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2560
+
2561
+ # [5.28.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.27.1...v5.28.0) (2022-06-13)
2562
+
2563
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2564
+
2565
+ ## [5.27.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.27.0...v5.27.1) (2022-06-06)
2566
+
2567
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2568
+
2569
+ # [5.27.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.26.0...v5.27.0) (2022-05-30)
2570
+
2571
+ ### Bug Fixes
2572
+
2573
+ - **types:** remove leftovers from removal of useJSXTextNode ([#5091](https://github.com/typescript-eslint/typescript-eslint/issues/5091)) ([f9c3647](https://github.com/typescript-eslint/typescript-eslint/commit/f9c3647cb637c8d1ee461b471da9d817ccbde77c))
2574
+
2575
+ ### Features
2576
+
2577
+ - [4.7] support new extensions ([#5027](https://github.com/typescript-eslint/typescript-eslint/issues/5027)) ([efc147b](https://github.com/typescript-eslint/typescript-eslint/commit/efc147b04dce52ab17415b6a4ae4076b944b9036))
2578
+ - [TS4.7] support type parameters for `typeof` ([#5067](https://github.com/typescript-eslint/typescript-eslint/issues/5067)) ([836de79](https://github.com/typescript-eslint/typescript-eslint/commit/836de79e8d1bff43149168cc913a4c2b60e79bf6))
2579
+ - bump dependency ranges to TypeScript 4.7 ([#5082](https://github.com/typescript-eslint/typescript-eslint/issues/5082)) ([c4310b1](https://github.com/typescript-eslint/typescript-eslint/commit/c4310b1aac35c7d31b826f0602eca6a5900a09ee))
2580
+
2581
+ # [5.26.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.25.0...v5.26.0) (2022-05-23)
2582
+
2583
+ ### Features
2584
+
2585
+ - [4.7] support instantiation expressions ([#4938](https://github.com/typescript-eslint/typescript-eslint/issues/4938)) ([79fbc77](https://github.com/typescript-eslint/typescript-eslint/commit/79fbc7743ae5dce3190f8168776e0204755390ad))
2586
+ - [4.7] support optional variance annotation ([#4831](https://github.com/typescript-eslint/typescript-eslint/issues/4831)) ([7e7b24c](https://github.com/typescript-eslint/typescript-eslint/commit/7e7b24c196e6d968e48f97f46feae5e7027e22d2))
2587
+ - **typescript-estree:** `extends` constraints for `infer` ([#4830](https://github.com/typescript-eslint/typescript-eslint/issues/4830)) ([8cbbcc3](https://github.com/typescript-eslint/typescript-eslint/commit/8cbbcc3d317779e0dcba15d3835137f38383de34))
2588
+
2589
+ # [5.25.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.24.0...v5.25.0) (2022-05-17)
2590
+
2591
+ ### Features
2592
+
2593
+ - update to TypeScript 4.7-rc ([#4829](https://github.com/typescript-eslint/typescript-eslint/issues/4829)) ([6fe783c](https://github.com/typescript-eslint/typescript-eslint/commit/6fe783c20aebe26ef42b526e4a59a9be84dd5643))
2594
+
2595
+ # [5.24.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.23.0...v5.24.0) (2022-05-16)
2596
+
2597
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2598
+
2599
+ # [5.23.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.22.0...v5.23.0) (2022-05-09)
2600
+
2601
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2602
+
2603
+ # [5.22.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.21.0...v5.22.0) (2022-05-02)
2604
+
2605
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2606
+
2607
+ # [5.21.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.20.0...v5.21.0) (2022-04-25)
2608
+
2609
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2610
+
2611
+ # [5.20.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.19.0...v5.20.0) (2022-04-18)
2612
+
2613
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2614
+
2615
+ # [5.19.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.18.0...v5.19.0) (2022-04-11)
2616
+
2617
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2618
+
2619
+ # [5.18.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.17.0...v5.18.0) (2022-04-04)
2620
+
2621
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2622
+
2623
+ # [5.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.16.0...v5.17.0) (2022-03-28)
2624
+
2625
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2626
+
2627
+ # [5.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.15.0...v5.16.0) (2022-03-21)
2628
+
2629
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2630
+
2631
+ # [5.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.14.0...v5.15.0) (2022-03-14)
2632
+
2633
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2634
+
2635
+ # [5.14.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.13.0...v5.14.0) (2022-03-07)
2636
+
2637
+ ### Features
2638
+
2639
+ - TypeScript 4.6 ([#4615](https://github.com/typescript-eslint/typescript-eslint/issues/4615)) ([a02c63a](https://github.com/typescript-eslint/typescript-eslint/commit/a02c63a264e5a6c3557468a8eff48d34ca2b718a))
2640
+
2641
+ # [5.13.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.12.1...v5.13.0) (2022-02-28)
2642
+
2643
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2644
+
2645
+ ## [5.12.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.12.0...v5.12.1) (2022-02-21)
2646
+
2647
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2648
+
2649
+ # [5.12.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.11.0...v5.12.0) (2022-02-14)
2650
+
2651
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2652
+
2653
+ # [5.11.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.10.2...v5.11.0) (2022-02-07)
2654
+
2655
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2656
+
2657
+ ## [5.10.2](https://github.com/typescript-eslint/typescript-eslint/compare/v5.10.1...v5.10.2) (2022-01-31)
2658
+
2659
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2660
+
2661
+ ## [5.10.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.10.0...v5.10.1) (2022-01-24)
2662
+
2663
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2664
+
2665
+ # [5.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.9.1...v5.10.0) (2022-01-17)
2666
+
2667
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2668
+
2669
+ ## [5.9.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.9.0...v5.9.1) (2022-01-10)
2670
+
2671
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2672
+
2673
+ # [5.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.8.1...v5.9.0) (2022-01-03)
2674
+
2675
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2676
+
2677
+ ## [5.8.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.8.0...v5.8.1) (2021-12-27)
2678
+
2679
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2680
+
2681
+ # [5.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.7.0...v5.8.0) (2021-12-20)
2682
+
2683
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2684
+
2685
+ # [5.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.6.0...v5.7.0) (2021-12-13)
2686
+
2687
+ ### Bug Fixes
2688
+
2689
+ - **typescript-estree:** type-only regression for consumers not yet on TS 4.5 ([#4272](https://github.com/typescript-eslint/typescript-eslint/issues/4272)) ([550b61e](https://github.com/typescript-eslint/typescript-eslint/commit/550b61ee1096113b234bf035dd267ba385809961))
2690
+
2691
+ # [5.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.5.0...v5.6.0) (2021-12-06)
2692
+
2693
+ ### Features
2694
+
2695
+ - **scope-manager:** update lib types ([#4240](https://github.com/typescript-eslint/typescript-eslint/issues/4240)) ([8377e6e](https://github.com/typescript-eslint/typescript-eslint/commit/8377e6ea422ee2d52455da8955ff055e09c238d3))
2696
+
2697
+ # [5.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.4.0...v5.5.0) (2021-11-29)
2698
+
2699
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2700
+
2701
+ # [5.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.3.1...v5.4.0) (2021-11-15)
2702
+
2703
+ ### Features
2704
+
2705
+ - **typescript-estree:** support Import Assertions ([#4074](https://github.com/typescript-eslint/typescript-eslint/issues/4074)) ([ae0fb5a](https://github.com/typescript-eslint/typescript-eslint/commit/ae0fb5a591958216b7df656e66b1dfe464898167))
2706
+ - **typescript-estree:** support private fields in-in syntax ([#4075](https://github.com/typescript-eslint/typescript-eslint/issues/4075)) ([939d8ea](https://github.com/typescript-eslint/typescript-eslint/commit/939d8eac547fb1734aa00f1ea01cc6eae0b4280a))
2707
+ - **typescript-estree:** support type-only module specifiers ([#4076](https://github.com/typescript-eslint/typescript-eslint/issues/4076)) ([77baa92](https://github.com/typescript-eslint/typescript-eslint/commit/77baa9203638e888a76e21003a278a8da386e133))
2708
+
2709
+ ## [5.3.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.3.0...v5.3.1) (2021-11-08)
2710
+
2711
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2712
+
2713
+ # [5.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.2.0...v5.3.0) (2021-11-01)
2714
+
2715
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2716
+
2717
+ # [5.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.1.0...v5.2.0) (2021-10-25)
2718
+
2719
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2720
+
2721
+ # [5.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.0.0...v5.1.0) (2021-10-18)
2722
+
2723
+ ### Bug Fixes
2724
+
2725
+ - **typescript-estree:** support private optional property definition ([#3997](https://github.com/typescript-eslint/typescript-eslint/issues/3997)) ([8605e08](https://github.com/typescript-eslint/typescript-eslint/commit/8605e080a4dac4a277e6108cd9ed1e5a707302fa))
2726
+
2727
+ # [5.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.33.0...v5.0.0) (2021-10-11)
2728
+
2729
+ ### Bug Fixes
2730
+
2731
+ - **typescript-estree:** change `source` of ExportNamedDeclaration to Literal from Expression ([#3763](https://github.com/typescript-eslint/typescript-eslint/issues/3763)) ([dc5a0f5](https://github.com/typescript-eslint/typescript-eslint/commit/dc5a0f5104b400f4422b8d67ecfc6cc7a32613a2))
2732
+
2733
+ ### Features
2734
+
2735
+ - **ast-spec:** bring `Node` objects in line with ESTree ([#3771](https://github.com/typescript-eslint/typescript-eslint/issues/3771)) ([dd14064](https://github.com/typescript-eslint/typescript-eslint/commit/dd140643b457aa515cc21fcda2b3cd4acc2a1c5c))
2736
+ - **eslint-plugin:** update recommended configs ([#3809](https://github.com/typescript-eslint/typescript-eslint/issues/3809)) ([deeb7bb](https://github.com/typescript-eslint/typescript-eslint/commit/deeb7bb9334d301c6af56aefd37d318231af11ef))
2737
+ - align class property representation with ESTree ([#3806](https://github.com/typescript-eslint/typescript-eslint/issues/3806)) ([22fa5c0](https://github.com/typescript-eslint/typescript-eslint/commit/22fa5c0c4705ed2898f00b7cacc5dd642d859275)), closes [#3430](https://github.com/typescript-eslint/typescript-eslint/issues/3430) [#3077](https://github.com/typescript-eslint/typescript-eslint/issues/3077)
2738
+ - remove `TSParenthesizedType` ([#3340](https://github.com/typescript-eslint/typescript-eslint/issues/3340)) ([c8ee432](https://github.com/typescript-eslint/typescript-eslint/commit/c8ee43269faea4c04ec02eaa2b81a0aa6eec5d3e)), closes [#3136](https://github.com/typescript-eslint/typescript-eslint/issues/3136)
2739
+ - support `PrivateIdentifier` ([#3808](https://github.com/typescript-eslint/typescript-eslint/issues/3808)) ([0eefe5e](https://github.com/typescript-eslint/typescript-eslint/commit/0eefe5e49d21af3f1e3e2d9a90c2e49929863ac2)), closes [#3430](https://github.com/typescript-eslint/typescript-eslint/issues/3430) [#2933](https://github.com/typescript-eslint/typescript-eslint/issues/2933)
2740
+ - **eslint-plugin:** removed value from abstract property nodes ([#3765](https://github.com/typescript-eslint/typescript-eslint/issues/3765)) ([5823524](https://github.com/typescript-eslint/typescript-eslint/commit/58235241714596b641a1e8b39c569e561e0039b4)), closes [#3748](https://github.com/typescript-eslint/typescript-eslint/issues/3748)
2741
+ - **typescript-estree:** remove legacy `useJSXTextNode` option ([#3109](https://github.com/typescript-eslint/typescript-eslint/issues/3109)) ([5b84b98](https://github.com/typescript-eslint/typescript-eslint/commit/5b84b98fb3cf68d944b7d4e970f39f4e88f0b2d5))
2742
+
2743
+ # [4.33.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.32.0...v4.33.0) (2021-10-04)
2744
+
2745
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2746
+
2747
+ # [4.32.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.31.2...v4.32.0) (2021-09-27)
2748
+
2749
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2750
+
2751
+ ## [4.31.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.31.1...v4.31.2) (2021-09-20)
2752
+
2753
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2754
+
2755
+ ## [4.31.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.31.0...v4.31.1) (2021-09-13)
2756
+
2757
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2758
+
2759
+ # [4.31.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.30.0...v4.31.0) (2021-09-06)
2760
+
2761
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2762
+
2763
+ # [4.30.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.29.3...v4.30.0) (2021-08-30)
2764
+
2765
+ ### Features
2766
+
2767
+ - **typescript-estree:** add support for class static blocks ([#3730](https://github.com/typescript-eslint/typescript-eslint/issues/3730)) ([f81831b](https://github.com/typescript-eslint/typescript-eslint/commit/f81831bd279a32da6dbab0f1c061053ea43965f6))
2768
+
2769
+ ## [4.29.3](https://github.com/typescript-eslint/typescript-eslint/compare/v4.29.2...v4.29.3) (2021-08-23)
2770
+
2771
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2772
+
2773
+ ## [4.29.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.29.1...v4.29.2) (2021-08-16)
2774
+
2775
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2776
+
2777
+ ## [4.29.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.29.0...v4.29.1) (2021-08-09)
2778
+
2779
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2780
+
2781
+ # [4.29.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.5...v4.29.0) (2021-08-02)
2782
+
2783
+ ### Bug Fixes
2784
+
2785
+ - **typescript-estree:** correct tty check ([#3635](https://github.com/typescript-eslint/typescript-eslint/issues/3635)) ([62bcc93](https://github.com/typescript-eslint/typescript-eslint/commit/62bcc937f08cd18296ffbe96a3551ec1fb87aecd))
2786
+ - **typescript-estree:** ensure --fix works with singleRun mode ([#3655](https://github.com/typescript-eslint/typescript-eslint/issues/3655)) ([99eca0d](https://github.com/typescript-eslint/typescript-eslint/commit/99eca0d428187d4c29ded9ddd1b57b40ab463c01))
2787
+
2788
+ ### Features
2789
+
2790
+ - **ast-spec:** make `BaseNode` & `BaseToken` more type-safe ([#3560](https://github.com/typescript-eslint/typescript-eslint/issues/3560)) ([a6c5604](https://github.com/typescript-eslint/typescript-eslint/commit/a6c5604b65b6330d047aa016fc46b8a597a6ae58))
2791
+ - **typescript-estree:** add support for custom module resolution ([#3516](https://github.com/typescript-eslint/typescript-eslint/issues/3516)) ([d48429d](https://github.com/typescript-eslint/typescript-eslint/commit/d48429d97326545bb727f88ce9056270b1599a31))
2792
+
2793
+ ## [4.28.5](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.4...v4.28.5) (2021-07-26)
2794
+
2795
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2796
+
2797
+ ## [4.28.4](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.3...v4.28.4) (2021-07-19)
2798
+
2799
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2800
+
2801
+ ## [4.28.3](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.2...v4.28.3) (2021-07-12)
2802
+
2803
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2804
+
2805
+ ## [4.28.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.1...v4.28.2) (2021-07-05)
2806
+
2807
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2808
+
2809
+ ## [4.28.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.0...v4.28.1) (2021-06-28)
2810
+
2811
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2812
+
2813
+ # [4.28.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.27.0...v4.28.0) (2021-06-21)
2814
+
2815
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2816
+
2817
+ # [4.27.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.26.1...v4.27.0) (2021-06-14)
2818
+
2819
+ ### Bug Fixes
2820
+
2821
+ - **typescript-estree:** allow providing more one than one existing program in config ([#3508](https://github.com/typescript-eslint/typescript-eslint/issues/3508)) ([4f1806e](https://github.com/typescript-eslint/typescript-eslint/commit/4f1806e548affb7265da360d1fc8d033e25de325))
2822
+ - **typescript-estree:** support override modifier for parameter property ([#3485](https://github.com/typescript-eslint/typescript-eslint/issues/3485)) ([33b9f69](https://github.com/typescript-eslint/typescript-eslint/commit/33b9f69a681cd3219a2acca5b0b2fa67609f099e))
2823
+
2824
+ ### Features
2825
+
2826
+ - **ast-spec:** specify `PunctuatorToken`'s `value` type ([#3496](https://github.com/typescript-eslint/typescript-eslint/issues/3496)) ([fdb1d81](https://github.com/typescript-eslint/typescript-eslint/commit/fdb1d81f0fcf75a9216e6a90469f18c24c91f718))
2827
+ - **typescript-estree:** add opt-in inference for single runs and create programs for projects up front ([#3512](https://github.com/typescript-eslint/typescript-eslint/issues/3512)) ([06c2d9b](https://github.com/typescript-eslint/typescript-eslint/commit/06c2d9ba5442330f56637ecb14fae7e41696699c))
2828
+ - allow user to provide TS program instance in parser options ([#3484](https://github.com/typescript-eslint/typescript-eslint/issues/3484)) ([e855b18](https://github.com/typescript-eslint/typescript-eslint/commit/e855b18b8feee0edb5c617c11006861426a6f530))
2829
+
2830
+ ## [4.26.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.26.0...v4.26.1) (2021-06-07)
2831
+
2832
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2833
+
2834
+ # [4.26.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.25.0...v4.26.0) (2021-05-31)
2835
+
2836
+ ### Bug Fixes
2837
+
2838
+ - generate library types for TypeScript v4.3 ([#3460](https://github.com/typescript-eslint/typescript-eslint/issues/3460)) ([ed4776a](https://github.com/typescript-eslint/typescript-eslint/commit/ed4776afa1374279027b9b7d82aa4b453b334998)), closes [#3449](https://github.com/typescript-eslint/typescript-eslint/issues/3449)
2839
+
2840
+ # [4.25.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.24.0...v4.25.0) (2021-05-24)
2841
+
2842
+ ### Features
2843
+
2844
+ - **typescript-estree:** [TS4.3] support overrides on class members ([#3429](https://github.com/typescript-eslint/typescript-eslint/issues/3429)) ([21d1b62](https://github.com/typescript-eslint/typescript-eslint/commit/21d1b62a0b84b502d2cf12674b3d141994a3ffd4))
2845
+ - **typescript-estree:** add support for getter/setter signatures on types ([#3427](https://github.com/typescript-eslint/typescript-eslint/issues/3427)) ([b830b7f](https://github.com/typescript-eslint/typescript-eslint/commit/b830b7f4e8a99affc8af8b53cb83371ef81d7032)), closes [#3272](https://github.com/typescript-eslint/typescript-eslint/issues/3272) [#3272](https://github.com/typescript-eslint/typescript-eslint/issues/3272)
2846
+
2847
+ # [4.24.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.23.0...v4.24.0) (2021-05-17)
2848
+
2849
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2850
+
2851
+ # [4.23.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.22.1...v4.23.0) (2021-05-10)
2852
+
2853
+ ### Features
2854
+
2855
+ - refactor to split AST specification out as its own module ([#2911](https://github.com/typescript-eslint/typescript-eslint/issues/2911)) ([25ea953](https://github.com/typescript-eslint/typescript-eslint/commit/25ea953cc60b118bd385c71e0a9b61c286c26fcf))
2856
+
2857
+ ## [4.22.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.22.0...v4.22.1) (2021-05-04)
2858
+
2859
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2860
+
2861
+ # [4.22.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.21.0...v4.22.0) (2021-04-12)
2862
+
2863
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2864
+
2865
+ # [4.21.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.20.0...v4.21.0) (2021-04-05)
2866
+
2867
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2868
+
2869
+ # [4.20.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.19.0...v4.20.0) (2021-03-29)
2870
+
2871
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2872
+
2873
+ # [4.19.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.18.0...v4.19.0) (2021-03-22)
2874
+
2875
+ ### Bug Fixes
2876
+
2877
+ - **typescript-estree:** [ts 4.2] add support for import type equal declaration ([#3189](https://github.com/typescript-eslint/typescript-eslint/issues/3189)) ([6a25faf](https://github.com/typescript-eslint/typescript-eslint/commit/6a25faf5cfa4d21a7546d9866819f4e017308fb2))
2878
+
2879
+ # [4.18.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.17.0...v4.18.0) (2021-03-15)
2880
+
2881
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2882
+
2883
+ # [4.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.16.1...v4.17.0) (2021-03-08)
2884
+
2885
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2886
+
2887
+ ## [4.16.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.16.0...v4.16.1) (2021-03-01)
2888
+
2889
+ ### Bug Fixes
2890
+
2891
+ - **typescript-estree:** update TS version range ([#3127](https://github.com/typescript-eslint/typescript-eslint/issues/3127)) ([0473674](https://github.com/typescript-eslint/typescript-eslint/commit/0473674c58df5039a2de3c63ad7494fc6be7487e))
2892
+
2893
+ # [4.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.15.2...v4.16.0) (2021-03-01)
2894
+
2895
+ ### Features
2896
+
2897
+ - TypeScript 4.2 syntax support ([#3112](https://github.com/typescript-eslint/typescript-eslint/issues/3112)) ([2ebfb21](https://github.com/typescript-eslint/typescript-eslint/commit/2ebfb21ba6c88c793cfbd0e231e5803b2381694c))
2898
+ - **typescript-estree:** throw custom error instead of plain object ([#3011](https://github.com/typescript-eslint/typescript-eslint/issues/3011)) ([ae14bf5](https://github.com/typescript-eslint/typescript-eslint/commit/ae14bf55fe31b0eb982ba17333e4aac550d10342))
2899
+
2900
+ ## [4.15.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.15.1...v4.15.2) (2021-02-22)
2901
+
2902
+ ### Bug Fixes
2903
+
2904
+ - **typescript-estree:** correct issues in AST definition ([#3083](https://github.com/typescript-eslint/typescript-eslint/issues/3083)) ([509a117](https://github.com/typescript-eslint/typescript-eslint/commit/509a11749f85400a01e9fecfecd12871ce562d3d))
2905
+ - add missing intrinsic keyword node to AST ([#3081](https://github.com/typescript-eslint/typescript-eslint/issues/3081)) ([409bf0b](https://github.com/typescript-eslint/typescript-eslint/commit/409bf0bb3e2ac4d8782408d436ebdefb42dba38b))
2906
+ - correct test names on windows for semantic-diagnostics-enabled ([#3060](https://github.com/typescript-eslint/typescript-eslint/issues/3060)) ([885780d](https://github.com/typescript-eslint/typescript-eslint/commit/885780d4a2b07e418256b7323d76b18453c14a50))
2907
+
2908
+ ## [4.15.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.15.0...v4.15.1) (2021-02-15)
2909
+
2910
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2911
+
2912
+ # [4.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.14.2...v4.15.0) (2021-02-08)
2913
+
2914
+ ### Features
2915
+
2916
+ - **typescript-estree:** improve logic used to escape string literals in jsx ([#2995](https://github.com/typescript-eslint/typescript-eslint/issues/2995)) ([3cb3aad](https://github.com/typescript-eslint/typescript-eslint/commit/3cb3aade2864bab15ed1ff8d7cd32766aa57152f))
2917
+
2918
+ ## [4.14.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.14.1...v4.14.2) (2021-02-01)
2919
+
2920
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2921
+
2922
+ ## [4.14.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.14.0...v4.14.1) (2021-01-25)
2923
+
2924
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2925
+
2926
+ # [4.14.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.13.0...v4.14.0) (2021-01-18)
2927
+
2928
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2929
+
2930
+ # [4.13.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.12.0...v4.13.0) (2021-01-11)
2931
+
2932
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2933
+
2934
+ # [4.12.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.11.1...v4.12.0) (2021-01-04)
2935
+
2936
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2937
+
2938
+ ## [4.11.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.11.0...v4.11.1) (2020-12-28)
2939
+
2940
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2941
+
2942
+ # [4.11.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.10.0...v4.11.0) (2020-12-21)
2943
+
2944
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2945
+
2946
+ # [4.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.9.1...v4.10.0) (2020-12-14)
2947
+
2948
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2949
+
2950
+ ## [4.9.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.9.0...v4.9.1) (2020-12-07)
2951
+
2952
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2953
+
2954
+ # [4.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.8.2...v4.9.0) (2020-11-30)
2955
+
2956
+ ### Bug Fixes
2957
+
2958
+ - **typescript-estree:** add default value for `parserOptions.projectFolderIgnoreList` and deduplicate resolved projects ([#2819](https://github.com/typescript-eslint/typescript-eslint/issues/2819)) ([bf904ec](https://github.com/typescript-eslint/typescript-eslint/commit/bf904ec72db57174fec531f61e9427230662553e)), closes [#2418](https://github.com/typescript-eslint/typescript-eslint/issues/2418) [#2814](https://github.com/typescript-eslint/typescript-eslint/issues/2814)
2959
+
2960
+ ## [4.8.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.8.1...v4.8.2) (2020-11-23)
2961
+
2962
+ ### Bug Fixes
2963
+
2964
+ - **typescript-estree:** fix type-only regression for consumers not yet on TS 4.1 ([#2789](https://github.com/typescript-eslint/typescript-eslint/issues/2789)) ([50a46c6](https://github.com/typescript-eslint/typescript-eslint/commit/50a46c60fb81d8434aa4268a13d17d8fcf499e21))
2965
+
2966
+ ## [4.8.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.8.0...v4.8.1) (2020-11-17)
2967
+
2968
+ ### Bug Fixes
2969
+
2970
+ - **typescript-estree:** parseWithNodeMaps returning empty maps ([#2773](https://github.com/typescript-eslint/typescript-eslint/issues/2773)) ([3e4a0ed](https://github.com/typescript-eslint/typescript-eslint/commit/3e4a0ed0d615fd22a2f28c7c8af6179673e195f8))
2971
+
2972
+ # [4.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.7.0...v4.8.0) (2020-11-16)
2973
+
2974
+ ### Features
2975
+
2976
+ - **typescript-estree:** add `parseWithNodeMaps` API ([#2760](https://github.com/typescript-eslint/typescript-eslint/issues/2760)) ([9441d50](https://github.com/typescript-eslint/typescript-eslint/commit/9441d5030211f1c32f5ae8e61d5565cab8bb6823)), closes [#1852](https://github.com/typescript-eslint/typescript-eslint/issues/1852)
2977
+
2978
+ # [4.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.6.1...v4.7.0) (2020-11-09)
2979
+
2980
+ ### Features
2981
+
2982
+ - support TS4.1 features ([#2748](https://github.com/typescript-eslint/typescript-eslint/issues/2748)) ([2be354b](https://github.com/typescript-eslint/typescript-eslint/commit/2be354bb15f9013a2da1b13a0c0836e9ef057e16)), closes [#2583](https://github.com/typescript-eslint/typescript-eslint/issues/2583)
2983
+
2984
+ ## [4.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.6.0...v4.6.1) (2020-11-02)
2985
+
2986
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2987
+
2988
+ # [4.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.5.0...v4.6.0) (2020-10-26)
2989
+
2990
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
2991
+
2992
+ # [4.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.4.1...v4.5.0) (2020-10-19)
2993
+
2994
+ ### Features
2995
+
2996
+ - **typescript-estree:** add flag EXPERIMENTAL_useSourceOfProjectReferenceRedirect ([#2669](https://github.com/typescript-eslint/typescript-eslint/issues/2669)) ([90a5878](https://github.com/typescript-eslint/typescript-eslint/commit/90a587845088da1b205e4d7d77dbc3f9447b1c5a))
2997
+
2998
+ ## [4.4.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.4.0...v4.4.1) (2020-10-12)
2999
+
3000
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3001
+
3002
+ # [4.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.3.0...v4.4.0) (2020-10-05)
3003
+
3004
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3005
+
3006
+ # [4.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.2.0...v4.3.0) (2020-09-28)
3007
+
3008
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3009
+
3010
+ # [4.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.1.1...v4.2.0) (2020-09-21)
3011
+
3012
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3013
+
3014
+ ## [4.1.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.1.0...v4.1.1) (2020-09-14)
3015
+
3016
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3017
+
3018
+ # [4.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.0.1...v4.1.0) (2020-09-07)
3019
+
3020
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3021
+
3022
+ ## [4.0.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.0.0...v4.0.1) (2020-08-31)
3023
+
3024
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3025
+
3026
+ # [4.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.10.1...v4.0.0) (2020-08-31)
3027
+
3028
+ ### Bug Fixes
3029
+
3030
+ - correct decorator traversal for AssignmentPattern ([#2375](https://github.com/typescript-eslint/typescript-eslint/issues/2375)) ([d738fa4](https://github.com/typescript-eslint/typescript-eslint/commit/d738fa4eff0a5c4cfc9b30b1c0502f8d1e78d7b6))
3031
+ - **typescript-estree:** correct ChainExpression interaction with parentheses and non-nulls ([#2380](https://github.com/typescript-eslint/typescript-eslint/issues/2380)) ([762bc99](https://github.com/typescript-eslint/typescript-eslint/commit/762bc99584ede4d0b8099a743991e957aec86aa8))
3032
+
3033
+ ### Features
3034
+
3035
+ - support ESTree optional chaining representation ([#2308](https://github.com/typescript-eslint/typescript-eslint/issues/2308)) ([e9d2ab6](https://github.com/typescript-eslint/typescript-eslint/commit/e9d2ab638b6767700b52797e74b814ea059beaae))
3036
+ - **typescript-estree:** switch to globby ([#2418](https://github.com/typescript-eslint/typescript-eslint/issues/2418)) ([3a7ec9b](https://github.com/typescript-eslint/typescript-eslint/commit/3a7ec9bcf1873a99c6da2f19ade8ab4763b4793c)), closes [#2398](https://github.com/typescript-eslint/typescript-eslint/issues/2398)
3037
+
3038
+ ### BREAKING CHANGES
3039
+
3040
+ - **typescript-estree:** - removes the ability to supply a `RegExp` to `projectFolderIgnoreList`, and changes the meaning of the string value from a regex to a glob.
3041
+ - - Removed decorators property from several Nodes that could never semantically have them (FunctionDeclaration, TSEnumDeclaration, and TSInterfaceDeclaration)
3042
+
3043
+ * Removed AST_NODE_TYPES.Import. This is a minor breaking change as the node type that used this was removed ages ago.
3044
+
3045
+ ## [3.10.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.10.0...v3.10.1) (2020-08-25)
3046
+
3047
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3048
+
3049
+ # [3.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.9.1...v3.10.0) (2020-08-24)
3050
+
3051
+ ### Bug Fixes
3052
+
3053
+ - **typescript-estree:** ts.NamedTupleMember workaround for <TS4.0 ([#2405](https://github.com/typescript-eslint/typescript-eslint/issues/2405)) ([b62331a](https://github.com/typescript-eslint/typescript-eslint/commit/b62331ad02dcff3236e18f10eb92d59e7371d4c3))
3054
+
3055
+ ### Features
3056
+
3057
+ - **typescript-estree:** update allowed TS version range ([#2419](https://github.com/typescript-eslint/typescript-eslint/issues/2419)) ([e6be621](https://github.com/typescript-eslint/typescript-eslint/commit/e6be62128b3a98541fe590512892c4b501914e46))
3058
+
3059
+ ## [3.9.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.9.0...v3.9.1) (2020-08-17)
3060
+
3061
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3062
+
3063
+ # [3.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.8.0...v3.9.0) (2020-08-10)
3064
+
3065
+ ### Features
3066
+
3067
+ - **typescript-estree:** support TSv4 labelled tuple members ([#2378](https://github.com/typescript-eslint/typescript-eslint/issues/2378)) ([00d84ff](https://github.com/typescript-eslint/typescript-eslint/commit/00d84ffbcbe9d0ec98bdb2f2ce59959a27ce4dbe))
3068
+
3069
+ # [3.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.7.1...v3.8.0) (2020-08-03)
3070
+
3071
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3072
+
3073
+ ## [3.7.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.7.0...v3.7.1) (2020-07-27)
3074
+
3075
+ ### Bug Fixes
3076
+
3077
+ - **typescript-estree:** correct AST regression introduced by TS4.0 upgrade ([#2316](https://github.com/typescript-eslint/typescript-eslint/issues/2316)) ([d7fefba](https://github.com/typescript-eslint/typescript-eslint/commit/d7fefba3741a526ff2b58dd713995c3ee5603962))
3078
+
3079
+ # [3.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.1...v3.7.0) (2020-07-20)
3080
+
3081
+ ### Features
3082
+
3083
+ - **typescript-estree:** support short-circuiting assignment operators ([#2307](https://github.com/typescript-eslint/typescript-eslint/issues/2307)) ([2c90d9f](https://github.com/typescript-eslint/typescript-eslint/commit/2c90d9fa3aa5ebd7db697dddb7762bca2dd0e06b))
3084
+ - **typescript-estree:** support type annotations on catch clauses ([#2306](https://github.com/typescript-eslint/typescript-eslint/issues/2306)) ([b5afe9c](https://github.com/typescript-eslint/typescript-eslint/commit/b5afe9c560b9f38c8dffc312a600db30944129c8))
3085
+
3086
+ ## [3.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.0...v3.6.1) (2020-07-13)
3087
+
3088
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3089
+
3090
+ # [3.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.5.0...v3.6.0) (2020-07-06)
3091
+
3092
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3093
+
3094
+ # [3.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.4.0...v3.5.0) (2020-06-29)
3095
+
3096
+ ### Bug Fixes
3097
+
3098
+ - **typescript-estree:** forward compatibility for new compound assignment operators ([#2253](https://github.com/typescript-eslint/typescript-eslint/issues/2253)) ([ba41680](https://github.com/typescript-eslint/typescript-eslint/commit/ba41680f2a25b1aa4d05c2d4b132ac73a6faefbd))
3099
+
3100
+ ### Features
3101
+
3102
+ - add package scope-manager ([#1939](https://github.com/typescript-eslint/typescript-eslint/issues/1939)) ([682eb7e](https://github.com/typescript-eslint/typescript-eslint/commit/682eb7e009c3f22a542882dfd3602196a60d2a1e))
3103
+ - split types into their own package ([#2229](https://github.com/typescript-eslint/typescript-eslint/issues/2229)) ([5f45918](https://github.com/typescript-eslint/typescript-eslint/commit/5f4591886f3438329fbf2229b03ac66174334a24))
3104
+ - split visitor keys into their own package ([#2230](https://github.com/typescript-eslint/typescript-eslint/issues/2230)) ([689dae3](https://github.com/typescript-eslint/typescript-eslint/commit/689dae37392d527c64ae83db2a4c3e6b7fecece7))
3105
+
3106
+ # [3.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.3.0...v3.4.0) (2020-06-22)
3107
+
3108
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3109
+
3110
+ # [3.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.2.0...v3.3.0) (2020-06-15)
3111
+
3112
+ ### Bug Fixes
3113
+
3114
+ - **typescript-estree:** handle TS4.0 breaking change in TupleType ([#2197](https://github.com/typescript-eslint/typescript-eslint/issues/2197)) ([5d68129](https://github.com/typescript-eslint/typescript-eslint/commit/5d6812914831a386997b453b4db1e3283e26005d))
3115
+
3116
+ # [3.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.1.0...v3.2.0) (2020-06-08)
3117
+
3118
+ ### Bug Fixes
3119
+
3120
+ - **eslint-plugin:** [prefer-optional-chain] handling first member expression ([#2156](https://github.com/typescript-eslint/typescript-eslint/issues/2156)) ([de18660](https://github.com/typescript-eslint/typescript-eslint/commit/de18660a8cf8f7033798646d8c5b0938d1accb12))
3121
+
3122
+ # [3.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.0.2...v3.1.0) (2020-06-01)
3123
+
3124
+ ### Bug Fixes
3125
+
3126
+ - **eslint-plugin:** [no-unused-expressions] ignore import expressions ([#2130](https://github.com/typescript-eslint/typescript-eslint/issues/2130)) ([e383691](https://github.com/typescript-eslint/typescript-eslint/commit/e3836910efdafd9edf04daed149c9e839c08047e))
3127
+ - **experimental-utils:** downlevel type declarations for versions older than 3.8 ([#2133](https://github.com/typescript-eslint/typescript-eslint/issues/2133)) ([7925823](https://github.com/typescript-eslint/typescript-eslint/commit/792582326a8065270b69a0ffcaad5a7b4b103ff3))
3128
+
3129
+ ## [3.0.2](https://github.com/typescript-eslint/typescript-eslint/compare/v3.0.1...v3.0.2) (2020-05-27)
3130
+
3131
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3132
+
3133
+ ## [3.0.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.0.0...v3.0.1) (2020-05-25)
3134
+
3135
+ ### Bug Fixes
3136
+
3137
+ - **typescript-estree:** handle `BigInt` with `_` numeric separator ([#2067](https://github.com/typescript-eslint/typescript-eslint/issues/2067)) ([66f1627](https://github.com/typescript-eslint/typescript-eslint/commit/66f1627b11a566d5b925a577e800f99d5c808be2))
3138
+ - **typescript-estree:** mark TS 3.8 and 3.9 as "supported" ([#2057](https://github.com/typescript-eslint/typescript-eslint/issues/2057)) ([5eedbff](https://github.com/typescript-eslint/typescript-eslint/commit/5eedbff01178ea33b98ab22e556df4c1a195f839)), closes [#1436](https://github.com/typescript-eslint/typescript-eslint/issues/1436) [#1436](https://github.com/typescript-eslint/typescript-eslint/issues/1436)
3139
+
3140
+ # [3.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.34.0...v3.0.0) (2020-05-21)
3141
+
3142
+ ## [Please see the release notes for v3.0.0](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v3.0.0)
3143
+
3144
+ ### Bug Fixes
3145
+
3146
+ - **typescript-estree:** remove now defunct `Import` node type ([f199cbd](https://github.com/typescript-eslint/typescript-eslint/commit/f199cbdbbd892b5ba03bfff66f463f3d9c92ee9b))
3147
+ - **typescript-estree:** use `TSEmptyBodyFunctionExpression` for body-less nodes ([#1289](https://github.com/typescript-eslint/typescript-eslint/issues/1289)) ([82e7163](https://github.com/typescript-eslint/typescript-eslint/commit/82e7163214b56ccde93ba97807b161669a50a60b))
3148
+
3149
+ ### Features
3150
+
3151
+ - add index files to parser and typescript-estree ([3dfc46d](https://github.com/typescript-eslint/typescript-eslint/commit/3dfc46dccbbd28eed2d74c7b6cacddf1a0848598))
3152
+ - bump minimum required TS version ([#2004](https://github.com/typescript-eslint/typescript-eslint/issues/2004)) ([7ad4d7c](https://github.com/typescript-eslint/typescript-eslint/commit/7ad4d7c2db088b6f779b9d883a4acad13eee3775))
3153
+ - **eslint-plugin:** [ban-types] rework default options ([#848](https://github.com/typescript-eslint/typescript-eslint/issues/848)) ([8e31d5d](https://github.com/typescript-eslint/typescript-eslint/commit/8e31d5dbe9fe5227fdbefcecfd50ce5dd51360c3))
3154
+ - **typescript-estree:** align nodes with estree 2020 ([#1389](https://github.com/typescript-eslint/typescript-eslint/issues/1389)) ([aff5b62](https://github.com/typescript-eslint/typescript-eslint/commit/aff5b62044f9b93f2087a1d261e9be3f8d6fd54d))
3155
+ - **typescript-estree:** align optional fields ([#1429](https://github.com/typescript-eslint/typescript-eslint/issues/1429)) ([0e0010f](https://github.com/typescript-eslint/typescript-eslint/commit/0e0010f82952f9beeeb84136eea00cc5eecc9db6))
3156
+ - drop support for node v8 ([#1997](https://github.com/typescript-eslint/typescript-eslint/issues/1997)) ([b6c3b7b](https://github.com/typescript-eslint/typescript-eslint/commit/b6c3b7b84b8d199fa75a46432febd4a364a63217))
3157
+ - **typescript-estree:** always return parserServices ([#716](https://github.com/typescript-eslint/typescript-eslint/issues/716)) ([5b23443](https://github.com/typescript-eslint/typescript-eslint/commit/5b23443c48f3f62424db3e742243f3568080b946))
3158
+ - **typescript-estree:** handle 3.9's non-null assertion changes ([#2036](https://github.com/typescript-eslint/typescript-eslint/issues/2036)) ([06bec63](https://github.com/typescript-eslint/typescript-eslint/commit/06bec63c56536db070608ab136d2ad57083f0c6a))
3159
+
3160
+ # [2.34.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.33.0...v2.34.0) (2020-05-18)
3161
+
3162
+ ### Bug Fixes
3163
+
3164
+ - **typescript-estree:** fix handling of range/loc removal ([#2028](https://github.com/typescript-eslint/typescript-eslint/issues/2028)) ([ce344d9](https://github.com/typescript-eslint/typescript-eslint/commit/ce344d90e7c78b0c4b4b823494a3e78190f45c64))
3165
+
3166
+ # [2.33.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.32.0...v2.33.0) (2020-05-12)
3167
+
3168
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3169
+
3170
+ # [2.32.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.31.0...v2.32.0) (2020-05-11)
3171
+
3172
+ ### Features
3173
+
3174
+ - bump dependencies and align AST ([#2007](https://github.com/typescript-eslint/typescript-eslint/issues/2007)) ([18668b7](https://github.com/typescript-eslint/typescript-eslint/commit/18668b78fd7d1e5281af7fc26c76e0ca53297f69))
3175
+
3176
+ # [2.31.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.30.0...v2.31.0) (2020-05-04)
3177
+
3178
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3179
+
3180
+ # [2.30.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.29.0...v2.30.0) (2020-04-27)
3181
+
3182
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3183
+
3184
+ # [2.29.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.28.0...v2.29.0) (2020-04-20)
3185
+
3186
+ ### Features
3187
+
3188
+ - **eslint-plugin:** [no-floating-promise] add option to ignore IIFEs ([#1799](https://github.com/typescript-eslint/typescript-eslint/issues/1799)) ([cea51bf](https://github.com/typescript-eslint/typescript-eslint/commit/cea51bf130d6d3c2935f5e2dcc468196f2ad9d00))
3189
+
3190
+ # [2.28.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.27.0...v2.28.0) (2020-04-13)
3191
+
3192
+ ### Features
3193
+
3194
+ - **eslint-plugin:** add rule `prefer-ts-expect-error` ([#1705](https://github.com/typescript-eslint/typescript-eslint/issues/1705)) ([7021f21](https://github.com/typescript-eslint/typescript-eslint/commit/7021f2151a25db2a8edf17e06cd6f21e90761ec8))
3195
+ - **eslint-plugin:** add rule no-unsafe-assignment ([#1694](https://github.com/typescript-eslint/typescript-eslint/issues/1694)) ([a49b860](https://github.com/typescript-eslint/typescript-eslint/commit/a49b860cbbb2c7d718b99f561e2fb6eaadf16f17))
3196
+
3197
+ # [2.27.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.26.0...v2.27.0) (2020-04-06)
3198
+
3199
+ ### Bug Fixes
3200
+
3201
+ - **typescript-estree:** add support for TS3.9 extra file extensions ([#1833](https://github.com/typescript-eslint/typescript-eslint/issues/1833)) ([1f0ff41](https://github.com/typescript-eslint/typescript-eslint/commit/1f0ff41aa1bc3b7c5330b2f5fe22e24bf578a6b2))
3202
+
3203
+ ### Features
3204
+
3205
+ - **eslint-plugin:** sort members alphabetically ([#263](https://github.com/typescript-eslint/typescript-eslint/issues/263)) ([485e902](https://github.com/typescript-eslint/typescript-eslint/commit/485e90213a0f8baac0587f7d56925448883fc5bd))
3206
+
3207
+ # [2.26.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.25.0...v2.26.0) (2020-03-30)
3208
+
3209
+ ### Features
3210
+
3211
+ - **typescript-estree:** add option to ignore certain folders from glob resolution ([#1802](https://github.com/typescript-eslint/typescript-eslint/issues/1802)) ([1e29e69](https://github.com/typescript-eslint/typescript-eslint/commit/1e29e69b289d61107a7de67592beae331ba50222))
3212
+
3213
+ # [2.25.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.24.0...v2.25.0) (2020-03-23)
3214
+
3215
+ ### Bug Fixes
3216
+
3217
+ - **typescript-estree:** export \* regression from 133f622f ([#1751](https://github.com/typescript-eslint/typescript-eslint/issues/1751)) ([09d8afc](https://github.com/typescript-eslint/typescript-eslint/commit/09d8afca684635b5ac604bc1794240484a70ce91))
3218
+
3219
+ # [2.24.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.23.0...v2.24.0) (2020-03-16)
3220
+
3221
+ ### Bug Fixes
3222
+
3223
+ - **typescript-estree:** unnecessary program updates by removing timeout methods ([#1693](https://github.com/typescript-eslint/typescript-eslint/issues/1693)) ([2ccd66b](https://github.com/typescript-eslint/typescript-eslint/commit/2ccd66b920816d54cc1a639059f60410df665900))
3224
+
3225
+ ### Features
3226
+
3227
+ - **typescript-estree:** support 3.8 `export * as ns` ([#1698](https://github.com/typescript-eslint/typescript-eslint/issues/1698)) ([133f622](https://github.com/typescript-eslint/typescript-eslint/commit/133f622f38a286eac45288a9789d2ee529d5e582))
3228
+
3229
+ # [2.23.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.22.0...v2.23.0) (2020-03-09)
3230
+
3231
+ ### Features
3232
+
3233
+ - **typescript-estree:** support 3.8 import/export type ([#1697](https://github.com/typescript-eslint/typescript-eslint/issues/1697)) ([625d603](https://github.com/typescript-eslint/typescript-eslint/commit/625d603f94bf0521f834313bf31c734ce4948b7a))
3234
+
3235
+ # [2.22.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.21.0...v2.22.0) (2020-03-02)
3236
+
3237
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3238
+
3239
+ # [2.21.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.20.0...v2.21.0) (2020-02-24)
3240
+
3241
+ ### Bug Fixes
3242
+
3243
+ - **typescript-estree:** process.stdout can be undefined ([#1619](https://github.com/typescript-eslint/typescript-eslint/issues/1619)) ([0d8e87e](https://github.com/typescript-eslint/typescript-eslint/commit/0d8e87e09704588273bc94a740279b3e8af7474f))
3244
+
3245
+ # [2.20.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.19.2...v2.20.0) (2020-02-17)
3246
+
3247
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3248
+
3249
+ ## [2.19.2](https://github.com/typescript-eslint/typescript-eslint/compare/v2.19.1...v2.19.2) (2020-02-10)
3250
+
3251
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3252
+
3253
+ ## [2.19.1](https://github.com/typescript-eslint/typescript-eslint/compare/v2.19.0...v2.19.1) (2020-02-10)
3254
+
3255
+ ### Bug Fixes
3256
+
3257
+ - **typescript-estree:** ts returning wrong file with project references ([#1575](https://github.com/typescript-eslint/typescript-eslint/issues/1575)) ([4c12dac](https://github.com/typescript-eslint/typescript-eslint/commit/4c12dac075f774801a145cd29c4c7eff64f98fdc))
3258
+
3259
+ # [2.19.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.18.0...v2.19.0) (2020-02-03)
3260
+
3261
+ ### Bug Fixes
3262
+
3263
+ - **typescript-estree:** fix regression introduced in [#1525](https://github.com/typescript-eslint/typescript-eslint/issues/1525) ([#1543](https://github.com/typescript-eslint/typescript-eslint/issues/1543)) ([bec4572](https://github.com/typescript-eslint/typescript-eslint/commit/bec45722dfed8aeb49189d151252b83d4a34239c))
3264
+ - **typescript-estree:** persisted parse and module none ([#1516](https://github.com/typescript-eslint/typescript-eslint/issues/1516)) ([7c70323](https://github.com/typescript-eslint/typescript-eslint/commit/7c7032322f55d9492e21d3bfa5da16da1f05cbce))
3265
+
3266
+ # [2.18.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.17.0...v2.18.0) (2020-01-27)
3267
+
3268
+ ### Bug Fixes
3269
+
3270
+ - improve token types and add missing type guards ([#1497](https://github.com/typescript-eslint/typescript-eslint/issues/1497)) ([ce41d7d](https://github.com/typescript-eslint/typescript-eslint/commit/ce41d7de33bcb7ccf96c03ac1438304c5a49ff54))
3271
+ - **typescript-estree:** error on unexpected jsdoc nodes ([#1525](https://github.com/typescript-eslint/typescript-eslint/issues/1525)) ([c8dfac3](https://github.com/typescript-eslint/typescript-eslint/commit/c8dfac3d2f066e50fa9d2b5a86beffdaafddb643))
3272
+ - **typescript-estree:** fix identifier tokens typed as `Keyword` ([#1487](https://github.com/typescript-eslint/typescript-eslint/issues/1487)) ([77a1caa](https://github.com/typescript-eslint/typescript-eslint/commit/77a1caa562638645b4717449800e410107d512c8))
3273
+
3274
+ ### Features
3275
+
3276
+ - **eslint-plugin:** add new rule prefer-as-const ([#1431](https://github.com/typescript-eslint/typescript-eslint/issues/1431)) ([420db96](https://github.com/typescript-eslint/typescript-eslint/commit/420db96921435e8bf7fb484ae74552a912a6adde))
3277
+
3278
+ # [2.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.16.0...v2.17.0) (2020-01-20)
3279
+
3280
+ ### Bug Fixes
3281
+
3282
+ - **typescript-estree:** correct type of `ArrayPattern.elements` ([#1451](https://github.com/typescript-eslint/typescript-eslint/issues/1451)) ([62e4ca0](https://github.com/typescript-eslint/typescript-eslint/commit/62e4ca0))
3283
+
3284
+ # [2.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.15.0...v2.16.0) (2020-01-13)
3285
+
3286
+ ### Bug Fixes
3287
+
3288
+ - **typescript-estree:** fix persisted parse for relative paths ([#1424](https://github.com/typescript-eslint/typescript-eslint/issues/1424)) ([9720d2c](https://github.com/typescript-eslint/typescript-eslint/commit/9720d2c))
3289
+ - **typescript-estree:** parsing of deeply nested new files in new folder ([#1412](https://github.com/typescript-eslint/typescript-eslint/issues/1412)) ([206c94b](https://github.com/typescript-eslint/typescript-eslint/commit/206c94b))
3290
+ - **typescript-estree:** resolve path relative to tsconfigRootDir ([#1439](https://github.com/typescript-eslint/typescript-eslint/issues/1439)) ([c709056](https://github.com/typescript-eslint/typescript-eslint/commit/c709056))
3291
+
3292
+ ### Features
3293
+
3294
+ - **typescript-estree:** add parserOption to turn on debug logs ([#1413](https://github.com/typescript-eslint/typescript-eslint/issues/1413)) ([25092fd](https://github.com/typescript-eslint/typescript-eslint/commit/25092fd))
3295
+ - **typescript-estree:** add strict type mapping to esTreeNodeToTSNodeMap ([#1382](https://github.com/typescript-eslint/typescript-eslint/issues/1382)) ([d3d70a3](https://github.com/typescript-eslint/typescript-eslint/commit/d3d70a3))
3296
+
3297
+ # [2.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.14.0...v2.15.0) (2020-01-06)
3298
+
3299
+ ### Bug Fixes
3300
+
3301
+ - **typescript-estree:** correct persisted parse for windows ([#1406](https://github.com/typescript-eslint/typescript-eslint/issues/1406)) ([1a42f3d](https://github.com/typescript-eslint/typescript-eslint/commit/1a42f3d))
3302
+
3303
+ # [2.14.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.13.0...v2.14.0) (2019-12-30)
3304
+
3305
+ ### Bug Fixes
3306
+
3307
+ - **typescript-estree:** visit typeParameters in OptionalCallExpr ([#1377](https://github.com/typescript-eslint/typescript-eslint/issues/1377)) ([cba6a2a](https://github.com/typescript-eslint/typescript-eslint/commit/cba6a2a))
3308
+
3309
+ ### Features
3310
+
3311
+ - add internal eslint plugin for repo-specific lint rules ([#1373](https://github.com/typescript-eslint/typescript-eslint/issues/1373)) ([3a15413](https://github.com/typescript-eslint/typescript-eslint/commit/3a15413))
3312
+
3313
+ # [2.13.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.12.0...v2.13.0) (2019-12-23)
3314
+
3315
+ ### Bug Fixes
3316
+
3317
+ - **typescript-estree:** correct type of key for base nodes ([#1367](https://github.com/typescript-eslint/typescript-eslint/issues/1367)) ([099225a](https://github.com/typescript-eslint/typescript-eslint/commit/099225a))
3318
+
3319
+ ### Features
3320
+
3321
+ - **typescript-estree:** computed members discriminated unions ([#1349](https://github.com/typescript-eslint/typescript-eslint/issues/1349)) ([013df9a](https://github.com/typescript-eslint/typescript-eslint/commit/013df9a))
3322
+ - **typescript-estree:** tighten prop name and destructure types ([#1346](https://github.com/typescript-eslint/typescript-eslint/issues/1346)) ([f335c50](https://github.com/typescript-eslint/typescript-eslint/commit/f335c50))
3323
+
3324
+ # [2.12.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.11.0...v2.12.0) (2019-12-16)
3325
+
3326
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3327
+
3328
+ # [2.11.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.10.0...v2.11.0) (2019-12-09)
3329
+
3330
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3331
+
3332
+ # [2.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.9.0...v2.10.0) (2019-12-02)
3333
+
3334
+ ### Bug Fixes
3335
+
3336
+ - **eslint-plugin:** [no-unused-expressions] ignore directives ([#1285](https://github.com/typescript-eslint/typescript-eslint/issues/1285)) ([ce4c803](https://github.com/typescript-eslint/typescript-eslint/commit/ce4c803))
3337
+ - **typescript-estree:** make FunctionDeclaration.body non-null ([#1288](https://github.com/typescript-eslint/typescript-eslint/issues/1288)) ([dc73510](https://github.com/typescript-eslint/typescript-eslint/commit/dc73510))
3338
+
3339
+ # [2.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.8.0...v2.9.0) (2019-11-25)
3340
+
3341
+ ### Bug Fixes
3342
+
3343
+ - **typescript-estree:** fix synthetic default import ([#1245](https://github.com/typescript-eslint/typescript-eslint/issues/1245)) ([d97f809](https://github.com/typescript-eslint/typescript-eslint/commit/d97f809))
3344
+
3345
+ ### Features
3346
+
3347
+ - **eslint-plugin:** add no-unused-vars-experimental ([#688](https://github.com/typescript-eslint/typescript-eslint/issues/688)) ([05ebea5](https://github.com/typescript-eslint/typescript-eslint/commit/05ebea5))
3348
+
3349
+ # [2.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.7.0...v2.8.0) (2019-11-18)
3350
+
3351
+ ### Bug Fixes
3352
+
3353
+ - **eslint-plugin:** [unified-signatures] crash: cannot read pro… ([#1096](https://github.com/typescript-eslint/typescript-eslint/issues/1096)) ([d1de3a7](https://github.com/typescript-eslint/typescript-eslint/commit/d1de3a7))
3354
+ - **typescript-estree:** correctly account for trailing slash in… ([#1205](https://github.com/typescript-eslint/typescript-eslint/issues/1205)) ([ba89168](https://github.com/typescript-eslint/typescript-eslint/commit/ba89168))
3355
+ - **typescript-estree:** options range loc being always true ([#704](https://github.com/typescript-eslint/typescript-eslint/issues/704)) ([db1aa18](https://github.com/typescript-eslint/typescript-eslint/commit/db1aa18))
3356
+
3357
+ # [2.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.6.1...v2.7.0) (2019-11-11)
3358
+
3359
+ ### Bug Fixes
3360
+
3361
+ - **typescript-estree:** hash code to reduce update frequency ([#1179](https://github.com/typescript-eslint/typescript-eslint/issues/1179)) ([96d1cc3](https://github.com/typescript-eslint/typescript-eslint/commit/96d1cc3))
3362
+ - **typescript-estree:** reduce bundle footprint of tsutils ([#1177](https://github.com/typescript-eslint/typescript-eslint/issues/1177)) ([c8fe515](https://github.com/typescript-eslint/typescript-eslint/commit/c8fe515))
3363
+
3364
+ ## [2.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v2.6.0...v2.6.1) (2019-11-04)
3365
+
3366
+ ### Bug Fixes
3367
+
3368
+ - **typescript-estree:** don't use typescript's synthetic default ([#1156](https://github.com/typescript-eslint/typescript-eslint/issues/1156)) ([17c956e](https://github.com/typescript-eslint/typescript-eslint/commit/17c956e)), closes [#1153](https://github.com/typescript-eslint/typescript-eslint/issues/1153)
3369
+ - **typescript-estree:** fix filename handling for vue JSX + markdown ([#1127](https://github.com/typescript-eslint/typescript-eslint/issues/1127)) ([366518f](https://github.com/typescript-eslint/typescript-eslint/commit/366518f))
3370
+ - **typescript-estree:** improve comment parsing code ([#1120](https://github.com/typescript-eslint/typescript-eslint/issues/1120)) ([e54998d](https://github.com/typescript-eslint/typescript-eslint/commit/e54998d))
3371
+
3372
+ # [2.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.5.0...v2.6.0) (2019-10-28)
3373
+
3374
+ ### Bug Fixes
3375
+
3376
+ - **parser:** adds TTY check before logging the version mismatch warning ([#1121](https://github.com/typescript-eslint/typescript-eslint/issues/1121)) ([768ef63](https://github.com/typescript-eslint/typescript-eslint/commit/768ef63))
3377
+ - **typescript-estree:** better handle canonical paths ([#1111](https://github.com/typescript-eslint/typescript-eslint/issues/1111)) ([8dcbf4c](https://github.com/typescript-eslint/typescript-eslint/commit/8dcbf4c))
3378
+ - **typescript-estree:** correct parenthesized optional chain AST ([#1141](https://github.com/typescript-eslint/typescript-eslint/issues/1141)) ([5ae286e](https://github.com/typescript-eslint/typescript-eslint/commit/5ae286e))
3379
+ - **typescript-estree:** ensure parent pointers are set ([#1129](https://github.com/typescript-eslint/typescript-eslint/issues/1129)) ([d4703e1](https://github.com/typescript-eslint/typescript-eslint/commit/d4703e1))
3380
+ - **typescript-estree:** normalize paths to fix cache miss on windows ([#1128](https://github.com/typescript-eslint/typescript-eslint/issues/1128)) ([6d0f2ce](https://github.com/typescript-eslint/typescript-eslint/commit/6d0f2ce))
3381
+
3382
+ ### Features
3383
+
3384
+ - **typescript-estree:** add support for declare class properties ([#1136](https://github.com/typescript-eslint/typescript-eslint/issues/1136)) ([1508670](https://github.com/typescript-eslint/typescript-eslint/commit/1508670))
3385
+
3386
+ # [2.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.4.0...v2.5.0) (2019-10-21)
3387
+
3388
+ ### Bug Fixes
3389
+
3390
+ - **typescript-estree:** correct semver check range ([#1109](https://github.com/typescript-eslint/typescript-eslint/issues/1109)) ([2fc9bd2](https://github.com/typescript-eslint/typescript-eslint/commit/2fc9bd2))
3391
+ - **typescript-estree:** handle running out of fs watchers ([#1088](https://github.com/typescript-eslint/typescript-eslint/issues/1088)) ([ec62747](https://github.com/typescript-eslint/typescript-eslint/commit/ec62747))
3392
+ - **typescript-estree:** parsing error for vue sfc ([#1083](https://github.com/typescript-eslint/typescript-eslint/issues/1083)) ([7a8cce6](https://github.com/typescript-eslint/typescript-eslint/commit/7a8cce6))
3393
+ - **typescript-estree:** remove now unneeded dep on chokidar ([088a691](https://github.com/typescript-eslint/typescript-eslint/commit/088a691))
3394
+
3395
+ ### Features
3396
+
3397
+ - **typescript-estree:** support long running lint without watch ([#1106](https://github.com/typescript-eslint/typescript-eslint/issues/1106)) ([ed5564d](https://github.com/typescript-eslint/typescript-eslint/commit/ed5564d))
3398
+
3399
+ # [2.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.3.3...v2.4.0) (2019-10-14)
3400
+
3401
+ ### Bug Fixes
3402
+
3403
+ - support long running "watch" lint sessions ([#973](https://github.com/typescript-eslint/typescript-eslint/issues/973)) ([854620e](https://github.com/typescript-eslint/typescript-eslint/commit/854620e))
3404
+
3405
+ ### Features
3406
+
3407
+ - **typescript-estree:** support for parsing 3.7 features ([#1045](https://github.com/typescript-eslint/typescript-eslint/issues/1045)) ([623febf](https://github.com/typescript-eslint/typescript-eslint/commit/623febf))
3408
+
3409
+ ## [2.3.3](https://github.com/typescript-eslint/typescript-eslint/compare/v2.3.2...v2.3.3) (2019-10-07)
3410
+
3411
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3412
+
3413
+ ## [2.3.2](https://github.com/typescript-eslint/typescript-eslint/compare/v2.3.1...v2.3.2) (2019-09-30)
3414
+
3415
+ ### Bug Fixes
3416
+
3417
+ - **typescript-estree:** correct ClassDeclarationBase type ([#1008](https://github.com/typescript-eslint/typescript-eslint/issues/1008)) ([8ce3a81](https://github.com/typescript-eslint/typescript-eslint/commit/8ce3a81))
3418
+ - **typescript-estree:** handle optional computed prop w/o type ([#1026](https://github.com/typescript-eslint/typescript-eslint/issues/1026)) ([95c13fe](https://github.com/typescript-eslint/typescript-eslint/commit/95c13fe))
3419
+
3420
+ ## [2.3.1](https://github.com/typescript-eslint/typescript-eslint/compare/v2.3.0...v2.3.1) (2019-09-23)
3421
+
3422
+ ### Bug Fixes
3423
+
3424
+ - **typescript-estree:** parsing error for await in non-async func ([#988](https://github.com/typescript-eslint/typescript-eslint/issues/988)) ([19abbe0](https://github.com/typescript-eslint/typescript-eslint/commit/19abbe0))
3425
+
3426
+ # [2.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.2.0...v2.3.0) (2019-09-16)
3427
+
3428
+ ### Bug Fixes
3429
+
3430
+ - **typescript-estree:** ImportDeclaration.specifier to Literal ([#974](https://github.com/typescript-eslint/typescript-eslint/issues/974)) ([2bf8231](https://github.com/typescript-eslint/typescript-eslint/commit/2bf8231))
3431
+
3432
+ # [2.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.1.0...v2.2.0) (2019-09-09)
3433
+
3434
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3435
+
3436
+ # [2.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.0.0...v2.1.0) (2019-09-02)
3437
+
3438
+ ### Bug Fixes
3439
+
3440
+ - **eslint-plugin:** [unified-signatures] type comparison and exported nodes ([#839](https://github.com/typescript-eslint/typescript-eslint/issues/839)) ([580eceb](https://github.com/typescript-eslint/typescript-eslint/commit/580eceb))
3441
+ - **typescript-estree:** improve missing project file error msg ([#866](https://github.com/typescript-eslint/typescript-eslint/issues/866)) ([8f3b0a8](https://github.com/typescript-eslint/typescript-eslint/commit/8f3b0a8)), closes [#853](https://github.com/typescript-eslint/typescript-eslint/issues/853)
3442
+
3443
+ ### Features
3444
+
3445
+ - **eslint-plugin:** [no-type-alias] support tuples ([#775](https://github.com/typescript-eslint/typescript-eslint/issues/775)) ([c68e033](https://github.com/typescript-eslint/typescript-eslint/commit/c68e033))
3446
+ - **typescript-estree:** Accept a glob pattern for `options.project` ([#806](https://github.com/typescript-eslint/typescript-eslint/issues/806)) ([9e5f21e](https://github.com/typescript-eslint/typescript-eslint/commit/9e5f21e))
3447
+
3448
+ # [2.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.13.0...v2.0.0) (2019-08-13)
3449
+
3450
+ - feat(eslint-plugin)!: change recommended config (#729) ([428567d](https://github.com/typescript-eslint/typescript-eslint/commit/428567d)), closes [#729](https://github.com/typescript-eslint/typescript-eslint/issues/729)
3451
+ - feat(typescript-estree)!: throw error on file not in project when `project` set (#760) ([3777b77](https://github.com/typescript-eslint/typescript-eslint/commit/3777b77)), closes [#760](https://github.com/typescript-eslint/typescript-eslint/issues/760)
3452
+ - feat(eslint-plugin)!: add rule `consistent-type-assertions` (#731) ([92e98de](https://github.com/typescript-eslint/typescript-eslint/commit/92e98de)), closes [#731](https://github.com/typescript-eslint/typescript-eslint/issues/731)
3453
+
3454
+ ### Bug Fixes
3455
+
3456
+ - **typescript-estree:** fix `is` token typed as `Keyword ([#750](https://github.com/typescript-eslint/typescript-eslint/issues/750)) ([35dec52](https://github.com/typescript-eslint/typescript-eslint/commit/35dec52))
3457
+ - **typescript-estree:** jsx comment parsing ([#703](https://github.com/typescript-eslint/typescript-eslint/issues/703)) ([0cfc48e](https://github.com/typescript-eslint/typescript-eslint/commit/0cfc48e))
3458
+
3459
+ ### Features
3460
+
3461
+ - explicitly support eslint v6 ([#645](https://github.com/typescript-eslint/typescript-eslint/issues/645)) ([34a7cf6](https://github.com/typescript-eslint/typescript-eslint/commit/34a7cf6))
3462
+
3463
+ ### BREAKING CHANGES
3464
+
3465
+ - recommended config changes are considered breaking
3466
+ - by default we will now throw when a file is not in the `project` provided
3467
+ - Merges both no-angle-bracket-type-assertion and no-object-literal-type-assertion into one rule
3468
+ - Node 6 is no longer supported
3469
+
3470
+ # [1.13.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.12.0...v1.13.0) (2019-07-21)
3471
+
3472
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3473
+
3474
+ # [1.12.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.11.0...v1.12.0) (2019-07-12)
3475
+
3476
+ ### Bug Fixes
3477
+
3478
+ - **eslint-plugin:** handle `const;` ([#633](https://github.com/typescript-eslint/typescript-eslint/issues/633)) ([430d628](https://github.com/typescript-eslint/typescript-eslint/commit/430d628)), closes [#441](https://github.com/typescript-eslint/typescript-eslint/issues/441)
3479
+ - **typescript-estree:** fix `async` identifier token typed as `Keyword` ([#681](https://github.com/typescript-eslint/typescript-eslint/issues/681)) ([6de19d3](https://github.com/typescript-eslint/typescript-eslint/commit/6de19d3))
3480
+
3481
+ ### Features
3482
+
3483
+ - **eslint-plugin:** added new rule prefer-readonly ([#555](https://github.com/typescript-eslint/typescript-eslint/issues/555)) ([76b89a5](https://github.com/typescript-eslint/typescript-eslint/commit/76b89a5))
3484
+
3485
+ # [1.11.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.10.2...v1.11.0) (2019-06-23)
3486
+
3487
+ ### Bug Fixes
3488
+
3489
+ - **typescript-estree:** fix more cases with double slash in JSX text ([#607](https://github.com/typescript-eslint/typescript-eslint/issues/607)) ([34cfa53](https://github.com/typescript-eslint/typescript-eslint/commit/34cfa53))
3490
+
3491
+ ## [1.10.2](https://github.com/typescript-eslint/typescript-eslint/compare/v1.10.1...v1.10.2) (2019-06-10)
3492
+
3493
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3494
+
3495
+ ## [1.10.1](https://github.com/typescript-eslint/typescript-eslint/compare/v1.10.0...v1.10.1) (2019-06-09)
3496
+
3497
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3498
+
3499
+ # [1.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.9.0...v1.10.0) (2019-06-09)
3500
+
3501
+ ### Bug Fixes
3502
+
3503
+ - **eslint-plugin:** [explicit-function-return-type] Fix obj setter prop ([8c8497c](https://github.com/typescript-eslint/typescript-eslint/commit/8c8497c)), closes [#525](https://github.com/typescript-eslint/typescript-eslint/issues/525)
3504
+ - **eslint-plugin:** [no-extra-parens] Fix crash default switch case crash ([5ec2b32](https://github.com/typescript-eslint/typescript-eslint/commit/5ec2b32)), closes [#509](https://github.com/typescript-eslint/typescript-eslint/issues/509)
3505
+ - **typescript-estree:** allow expressions in ExportDefaultDeclaration ([#593](https://github.com/typescript-eslint/typescript-eslint/issues/593)) ([861844d](https://github.com/typescript-eslint/typescript-eslint/commit/861844d))
3506
+ - **typescript-estree:** stop ignoring comments in JSX with generic ([#596](https://github.com/typescript-eslint/typescript-eslint/issues/596)) ([31d5bd4](https://github.com/typescript-eslint/typescript-eslint/commit/31d5bd4))
3507
+
3508
+ ### Features
3509
+
3510
+ - make utils/TSESLint export typed classes instead of just types ([#526](https://github.com/typescript-eslint/typescript-eslint/issues/526)) ([370ac72](https://github.com/typescript-eslint/typescript-eslint/commit/370ac72))
3511
+ - support TypeScript versions >=3.2.1 <3.6.0 ([#597](https://github.com/typescript-eslint/typescript-eslint/issues/597)) ([5d2b962](https://github.com/typescript-eslint/typescript-eslint/commit/5d2b962))
3512
+
3513
+ # [1.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.8.0...v1.9.0) (2019-05-12)
3514
+
3515
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3516
+
3517
+ # [1.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.7.0...v1.8.0) (2019-05-10)
3518
+
3519
+ ### Bug Fixes
3520
+
3521
+ - **eslint-plugin:** [array-type] support readonly operator ([#429](https://github.com/typescript-eslint/typescript-eslint/issues/429)) ([8e2d2f5](https://github.com/typescript-eslint/typescript-eslint/commit/8e2d2f5))
3522
+ - **eslint-plugin:** Support more nodes [no-extra-parens](<[#465](https://github.com/typescript-eslint/typescript-eslint/issues/465)>) ([2d15644](https://github.com/typescript-eslint/typescript-eslint/commit/2d15644))
3523
+ - **typescript-estree:** ensure parents are defined during subsequent parses ([#500](https://github.com/typescript-eslint/typescript-eslint/issues/500)) ([665278f](https://github.com/typescript-eslint/typescript-eslint/commit/665278f))
3524
+
3525
+ ### Features
3526
+
3527
+ - **eslint-plugin:** (EXPERIMENTAL) begin indent rewrite ([#439](https://github.com/typescript-eslint/typescript-eslint/issues/439)) ([6eb97d4](https://github.com/typescript-eslint/typescript-eslint/commit/6eb97d4))
3528
+ - **eslint-plugin:** no-inferrable-types: Support more primitives ([#442](https://github.com/typescript-eslint/typescript-eslint/issues/442)) ([4e193ca](https://github.com/typescript-eslint/typescript-eslint/commit/4e193ca))
3529
+ - **ts-estree:** add preserveNodeMaps option ([#494](https://github.com/typescript-eslint/typescript-eslint/issues/494)) ([c3061f9](https://github.com/typescript-eslint/typescript-eslint/commit/c3061f9))
3530
+ - Move shared types into their own package ([#425](https://github.com/typescript-eslint/typescript-eslint/issues/425)) ([a7a03ce](https://github.com/typescript-eslint/typescript-eslint/commit/a7a03ce))
3531
+
3532
+ # [1.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.6.0...v1.7.0) (2019-04-20)
3533
+
3534
+ ### Features
3535
+
3536
+ - **eslint-plugin:** support type assertions in no-extra-parens rule ([#311](https://github.com/typescript-eslint/typescript-eslint/issues/311)) ([116ca75](https://github.com/typescript-eslint/typescript-eslint/commit/116ca75))
3537
+
3538
+ # [1.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.5.0...v1.6.0) (2019-04-03)
3539
+
3540
+ ### Bug Fixes
3541
+
3542
+ - **typescript-estree:** add ExportDefaultDeclaration to union DeclarationStatement ([#378](https://github.com/typescript-eslint/typescript-eslint/issues/378)) ([bf04398](https://github.com/typescript-eslint/typescript-eslint/commit/bf04398))
3543
+
3544
+ ### Features
3545
+
3546
+ - change TypeScript version range to >=3.2.1 <3.5.0 ([#399](https://github.com/typescript-eslint/typescript-eslint/issues/399)) ([a4f95d3](https://github.com/typescript-eslint/typescript-eslint/commit/a4f95d3))
3547
+
3548
+ # [1.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.4.2...v1.5.0) (2019-03-20)
3549
+
3550
+ ### Bug Fixes
3551
+
3552
+ - **eslint-plugin:** fix false positives for adjacent-overload-signatures regarding computed property names ([#340](https://github.com/typescript-eslint/typescript-eslint/issues/340)) ([f6e5118](https://github.com/typescript-eslint/typescript-eslint/commit/f6e5118))
3553
+ - **typescript-estree:** only call watch callback on new files ([#367](https://github.com/typescript-eslint/typescript-eslint/issues/367)) ([0ef07c4](https://github.com/typescript-eslint/typescript-eslint/commit/0ef07c4))
3554
+
3555
+ ## [1.4.2](https://github.com/typescript-eslint/typescript-eslint/compare/v1.4.1...v1.4.2) (2019-02-25)
3556
+
3557
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3558
+
3559
+ ## [1.4.1](https://github.com/typescript-eslint/typescript-eslint/compare/v1.4.0...v1.4.1) (2019-02-23)
3560
+
3561
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3562
+
3563
+ # [1.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.3.0...v1.4.0) (2019-02-19)
3564
+
3565
+ ### Bug Fixes
3566
+
3567
+ - **ts-estree:** make sure that every node can be converted to tsNode ([#287](https://github.com/typescript-eslint/typescript-eslint/issues/287)) ([9f1d314](https://github.com/typescript-eslint/typescript-eslint/commit/9f1d314))
3568
+ - **typescript-estree, eslint-plugin:** stop adding ParenthesizedExpressions to node maps ([#226](https://github.com/typescript-eslint/typescript-eslint/issues/226)) ([317405a](https://github.com/typescript-eslint/typescript-eslint/commit/317405a))
3569
+
3570
+ ### Features
3571
+
3572
+ - **eslint-plugin:** add 'no-unnecessary-qualifier' rule ([#231](https://github.com/typescript-eslint/typescript-eslint/issues/231)) ([cc8f906](https://github.com/typescript-eslint/typescript-eslint/commit/cc8f906))
3573
+ - **eslint-plugin:** Migrate plugin to ts ([#120](https://github.com/typescript-eslint/typescript-eslint/issues/120)) ([61c60dc](https://github.com/typescript-eslint/typescript-eslint/commit/61c60dc))
3574
+ - **ts-estree:** fix parsing nested sequence expressions ([#286](https://github.com/typescript-eslint/typescript-eslint/issues/286)) ([ecc9631](https://github.com/typescript-eslint/typescript-eslint/commit/ecc9631))
3575
+
3576
+ # [1.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.2.0...v1.3.0) (2019-02-07)
3577
+
3578
+ ### Bug Fixes
3579
+
3580
+ - **ts-estree:** align typeArguments and typeParameters across nodes ([#223](https://github.com/typescript-eslint/typescript-eslint/issues/223)) ([3306198](https://github.com/typescript-eslint/typescript-eslint/commit/3306198))
3581
+ - **ts-estree:** convert decorators on var and fn decs ([#211](https://github.com/typescript-eslint/typescript-eslint/issues/211)) ([0a1777f](https://github.com/typescript-eslint/typescript-eslint/commit/0a1777f))
3582
+ - **ts-estree:** fix issues with typeParams in FunctionExpression ([#208](https://github.com/typescript-eslint/typescript-eslint/issues/208)) ([d4dfa3b](https://github.com/typescript-eslint/typescript-eslint/commit/d4dfa3b))
3583
+
3584
+ ### Features
3585
+
3586
+ - change TypeScript version range to >=3.2.1 <3.4.0 ([#184](https://github.com/typescript-eslint/typescript-eslint/issues/184)) ([f513a14](https://github.com/typescript-eslint/typescript-eslint/commit/f513a14))
3587
+ - **ts-estree:** enable errors 1098 and 1099 ([#219](https://github.com/typescript-eslint/typescript-eslint/issues/219)) ([fc50167](https://github.com/typescript-eslint/typescript-eslint/commit/fc50167))
3588
+
3589
+ # [1.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.1.1...v1.2.0) (2019-02-01)
3590
+
3591
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
3592
+
3593
+ ## [1.1.1](https://github.com/typescript-eslint/typescript-eslint/compare/v1.1.0...v1.1.1) (2019-01-29)
3594
+
3595
+ ### Bug Fixes
3596
+
3597
+ - **parser:** add visiting of type parameters in JSXOpeningElement ([#150](https://github.com/typescript-eslint/typescript-eslint/issues/150)) ([5e16003](https://github.com/typescript-eslint/typescript-eslint/commit/5e16003))
3598
+ - **ts-estree:** expand optional property to include question token ([#138](https://github.com/typescript-eslint/typescript-eslint/issues/138)) ([9068b62](https://github.com/typescript-eslint/typescript-eslint/commit/9068b62))
3599
+
3600
+ ### Performance Improvements
3601
+
3602
+ - **ts-estree:** don't create Program in parse() ([#148](https://github.com/typescript-eslint/typescript-eslint/issues/148)) ([aacf5b0](https://github.com/typescript-eslint/typescript-eslint/commit/aacf5b0))
3603
+
3604
+ # [1.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.0.0...v1.1.0) (2019-01-23)
3605
+
3606
+ ### Bug Fixes
3607
+
3608
+ - **typescript-estree:** correct range of parameters with comments ([#128](https://github.com/typescript-eslint/typescript-eslint/issues/128)) ([91eedf2](https://github.com/typescript-eslint/typescript-eslint/commit/91eedf2))
3609
+ - **typescript-estree:** fix range of assignment in parameter ([#115](https://github.com/typescript-eslint/typescript-eslint/issues/115)) ([4e781f1](https://github.com/typescript-eslint/typescript-eslint/commit/4e781f1))
3610
+
3611
+ # [1.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v0.2.1...v1.0.0) (2019-01-20)
3612
+
3613
+ ### Features
3614
+
3615
+ - **parser:** support ecmaFeatures.jsx flag and tests ([#85](https://github.com/typescript-eslint/typescript-eslint/issues/85)) ([b321736](https://github.com/typescript-eslint/typescript-eslint/commit/b321736))
3616
+
3617
+ ## [0.2.1](https://github.com/typescript-eslint/typescript-eslint/compare/v0.2.0...v0.2.1) (2019-01-20)
3618
+
3619
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree