@typescript-eslint/project-service 8.69.0 → 8.70.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.
- package/dist/createProjectService.js +7 -9
- package/package.json +3 -3
- package/CHANGELOG.md +0 -467
|
@@ -12,6 +12,11 @@ const logTsserverErr = (0, debug_1.default)('typescript-eslint:project-service:t
|
|
|
12
12
|
const logTsserverInfo = (0, debug_1.default)('typescript-eslint:project-service:tsserver:info');
|
|
13
13
|
const logTsserverPerf = (0, debug_1.default)('typescript-eslint:project-service:tsserver:perf');
|
|
14
14
|
const logTsserverEvent = (0, debug_1.default)('typescript-eslint:project-service:tsserver:event');
|
|
15
|
+
// The debug library doesn't use levels without creating a namespace for each.
|
|
16
|
+
// Log levels are not passed to the writer so we wouldn't be able to forward
|
|
17
|
+
// to a respective namespace. Supporting them would require an additional flag
|
|
18
|
+
// for granular control. Defaulting to all levels for now.
|
|
19
|
+
const isTsserverLoggingEnabled = () => logTsserverInfo.enabled || logTsserverErr.enabled || logTsserverPerf.enabled;
|
|
15
20
|
// For TypeScript APIs that expect a function to be passed in
|
|
16
21
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
17
22
|
const doNothing = () => { };
|
|
@@ -68,19 +73,12 @@ function createProjectService({ host, jsDocParsingMode, options: optionsRaw = {}
|
|
|
68
73
|
close: doNothing,
|
|
69
74
|
endGroup: doNothing,
|
|
70
75
|
getLogFileName: () => undefined,
|
|
71
|
-
|
|
72
|
-
// Log levels are not passed to the writer so we wouldn't be able to forward
|
|
73
|
-
// to a respective namespace. Supporting would require an additional flag for
|
|
74
|
-
// granular control. Defaulting to all levels for now.
|
|
75
|
-
hasLevel: () => true,
|
|
76
|
+
hasLevel: isTsserverLoggingEnabled,
|
|
76
77
|
info(s) {
|
|
77
78
|
this.msg(s, tsserver.server.Msg.Info);
|
|
78
79
|
},
|
|
79
|
-
loggingEnabled: () =>
|
|
80
80
|
// if none of the debug namespaces are enabled, then don't enable logging in tsserver
|
|
81
|
-
|
|
82
|
-
logTsserverErr.enabled ||
|
|
83
|
-
logTsserverPerf.enabled,
|
|
81
|
+
loggingEnabled: isTsserverLoggingEnabled,
|
|
84
82
|
msg: (s, type) => {
|
|
85
83
|
switch (type) {
|
|
86
84
|
case tsserver.server.Msg.Err:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/project-service",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.70.0",
|
|
4
4
|
"description": "Standalone TypeScript project service wrapper for linting.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"typescript": ">=4.8.4 <6.1.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
42
|
-
"@typescript-eslint/types": "^8.
|
|
41
|
+
"@typescript-eslint/tsconfig-utils": "^8.70.0",
|
|
42
|
+
"@typescript-eslint/types": "^8.70.0",
|
|
43
43
|
"debug": "^4.4.3"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
package/CHANGELOG.md
DELETED
|
@@ -1,467 +0,0 @@
|
|
|
1
|
-
## 8.69.0 (2026-08-31)
|
|
2
|
-
|
|
3
|
-
This was a version bump only for project-service 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.69.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.68.0 (2026-08-24)
|
|
10
|
-
|
|
11
|
-
This was a version bump only for project-service 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.68.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.67.0 (2026-08-10)
|
|
18
|
-
|
|
19
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
20
|
-
|
|
21
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.67.0) for more information.
|
|
22
|
-
|
|
23
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
24
|
-
|
|
25
|
-
## 8.66.0 (2026-08-03)
|
|
26
|
-
|
|
27
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
28
|
-
|
|
29
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.66.0) for more information.
|
|
30
|
-
|
|
31
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
32
|
-
|
|
33
|
-
## 8.65.0 (2026-07-20)
|
|
34
|
-
|
|
35
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
36
|
-
|
|
37
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.65.0) for more information.
|
|
38
|
-
|
|
39
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
40
|
-
|
|
41
|
-
## 8.64.0 (2026-07-13)
|
|
42
|
-
|
|
43
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
44
|
-
|
|
45
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.64.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.63.0 (2026-07-06)
|
|
50
|
-
|
|
51
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
52
|
-
|
|
53
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.63.0) for more information.
|
|
54
|
-
|
|
55
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
56
|
-
|
|
57
|
-
## 8.62.1 (2026-06-29)
|
|
58
|
-
|
|
59
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
60
|
-
|
|
61
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.62.1) for more information.
|
|
62
|
-
|
|
63
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
64
|
-
|
|
65
|
-
## 8.62.0 (2026-06-22)
|
|
66
|
-
|
|
67
|
-
### 🚀 Features
|
|
68
|
-
|
|
69
|
-
- remove redundant package.json "files" ([#12444](https://github.com/typescript-eslint/typescript-eslint/pull/12444))
|
|
70
|
-
|
|
71
|
-
### ❤️ Thank You
|
|
72
|
-
|
|
73
|
-
- Kirk Waiblinger @kirkwaiblinger
|
|
74
|
-
|
|
75
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.62.0) for more information.
|
|
76
|
-
|
|
77
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
78
|
-
|
|
79
|
-
## 8.61.1 (2026-06-15)
|
|
80
|
-
|
|
81
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
82
|
-
|
|
83
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.61.1) for more information.
|
|
84
|
-
|
|
85
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
86
|
-
|
|
87
|
-
## 8.61.0 (2026-06-08)
|
|
88
|
-
|
|
89
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
90
|
-
|
|
91
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.61.0) for more information.
|
|
92
|
-
|
|
93
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
94
|
-
|
|
95
|
-
## 8.60.1 (2026-06-01)
|
|
96
|
-
|
|
97
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
98
|
-
|
|
99
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.60.1) for more information.
|
|
100
|
-
|
|
101
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
102
|
-
|
|
103
|
-
## 8.60.0 (2026-05-25)
|
|
104
|
-
|
|
105
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
106
|
-
|
|
107
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.60.0) for more information.
|
|
108
|
-
|
|
109
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
110
|
-
|
|
111
|
-
## 8.59.4 (2026-05-18)
|
|
112
|
-
|
|
113
|
-
### 🩹 Fixes
|
|
114
|
-
|
|
115
|
-
- **project-service:** throw error cause in `getParsedConfigFileFromTSServer` ([#12321](https://github.com/typescript-eslint/typescript-eslint/pull/12321))
|
|
116
|
-
|
|
117
|
-
### ❤️ Thank You
|
|
118
|
-
|
|
119
|
-
- lumir
|
|
120
|
-
|
|
121
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.4) for more information.
|
|
122
|
-
|
|
123
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
124
|
-
|
|
125
|
-
## 8.59.3 (2026-05-11)
|
|
126
|
-
|
|
127
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
128
|
-
|
|
129
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.3) for more information.
|
|
130
|
-
|
|
131
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
132
|
-
|
|
133
|
-
## 8.59.2 (2026-05-04)
|
|
134
|
-
|
|
135
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
136
|
-
|
|
137
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.2) for more information.
|
|
138
|
-
|
|
139
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
140
|
-
|
|
141
|
-
## 8.59.1 (2026-04-27)
|
|
142
|
-
|
|
143
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
144
|
-
|
|
145
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.1) for more information.
|
|
146
|
-
|
|
147
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
148
|
-
|
|
149
|
-
## 8.59.0 (2026-04-20)
|
|
150
|
-
|
|
151
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
152
|
-
|
|
153
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.59.0) for more information.
|
|
154
|
-
|
|
155
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
156
|
-
|
|
157
|
-
## 8.58.2 (2026-04-13)
|
|
158
|
-
|
|
159
|
-
### 🩹 Fixes
|
|
160
|
-
|
|
161
|
-
- remove tsbuildinfo cache file from published packages ([#12187](https://github.com/typescript-eslint/typescript-eslint/pull/12187))
|
|
162
|
-
|
|
163
|
-
### ❤️ Thank You
|
|
164
|
-
|
|
165
|
-
- Abhijeet Singh @cseas
|
|
166
|
-
|
|
167
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.2) for more information.
|
|
168
|
-
|
|
169
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
170
|
-
|
|
171
|
-
## 8.58.1 (2026-04-08)
|
|
172
|
-
|
|
173
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
174
|
-
|
|
175
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.1) for more information.
|
|
176
|
-
|
|
177
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
178
|
-
|
|
179
|
-
## 8.58.0 (2026-03-30)
|
|
180
|
-
|
|
181
|
-
### 🚀 Features
|
|
182
|
-
|
|
183
|
-
- support TypeScript 6 ([#12124](https://github.com/typescript-eslint/typescript-eslint/pull/12124))
|
|
184
|
-
|
|
185
|
-
### ❤️ Thank You
|
|
186
|
-
|
|
187
|
-
- Evyatar Daud @StyleShit
|
|
188
|
-
|
|
189
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.58.0) for more information.
|
|
190
|
-
|
|
191
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
192
|
-
|
|
193
|
-
## 8.57.2 (2026-03-23)
|
|
194
|
-
|
|
195
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
196
|
-
|
|
197
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.2) for more information.
|
|
198
|
-
|
|
199
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
200
|
-
|
|
201
|
-
## 8.57.1 (2026-03-16)
|
|
202
|
-
|
|
203
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
204
|
-
|
|
205
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.1) for more information.
|
|
206
|
-
|
|
207
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
208
|
-
|
|
209
|
-
## 8.57.0 (2026-03-09)
|
|
210
|
-
|
|
211
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
212
|
-
|
|
213
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.57.0) for more information.
|
|
214
|
-
|
|
215
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
216
|
-
|
|
217
|
-
## 8.56.1 (2026-02-23)
|
|
218
|
-
|
|
219
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
220
|
-
|
|
221
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.56.1) for more information.
|
|
222
|
-
|
|
223
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
224
|
-
|
|
225
|
-
## 8.56.0 (2026-02-16)
|
|
226
|
-
|
|
227
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
228
|
-
|
|
229
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.56.0) for more information.
|
|
230
|
-
|
|
231
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
232
|
-
|
|
233
|
-
## 8.55.0 (2026-02-09)
|
|
234
|
-
|
|
235
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
236
|
-
|
|
237
|
-
See [GitHub Releases](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.55.0) for more information.
|
|
238
|
-
|
|
239
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
240
|
-
|
|
241
|
-
## 8.54.0 (2026-01-26)
|
|
242
|
-
|
|
243
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
244
|
-
|
|
245
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
246
|
-
|
|
247
|
-
## 8.53.1 (2026-01-19)
|
|
248
|
-
|
|
249
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
250
|
-
|
|
251
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
252
|
-
|
|
253
|
-
## 8.53.0 (2026-01-12)
|
|
254
|
-
|
|
255
|
-
### 🚀 Features
|
|
256
|
-
|
|
257
|
-
- **project-service:** allow passing `Partial<ts.server.ServerHost>` to project service ([#11932](https://github.com/typescript-eslint/typescript-eslint/pull/11932))
|
|
258
|
-
|
|
259
|
-
### ❤️ Thank You
|
|
260
|
-
|
|
261
|
-
- auvred @auvred
|
|
262
|
-
|
|
263
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
264
|
-
|
|
265
|
-
## 8.52.0 (2026-01-05)
|
|
266
|
-
|
|
267
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
268
|
-
|
|
269
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
270
|
-
|
|
271
|
-
## 8.51.0 (2025-12-29)
|
|
272
|
-
|
|
273
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
274
|
-
|
|
275
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
276
|
-
|
|
277
|
-
## 8.50.1 (2025-12-22)
|
|
278
|
-
|
|
279
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
280
|
-
|
|
281
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
282
|
-
|
|
283
|
-
## 8.50.0 (2025-12-15)
|
|
284
|
-
|
|
285
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
286
|
-
|
|
287
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
288
|
-
|
|
289
|
-
## 8.49.0 (2025-12-08)
|
|
290
|
-
|
|
291
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
292
|
-
|
|
293
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
294
|
-
|
|
295
|
-
## 8.48.1 (2025-12-02)
|
|
296
|
-
|
|
297
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
298
|
-
|
|
299
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
300
|
-
|
|
301
|
-
## 8.48.0 (2025-11-24)
|
|
302
|
-
|
|
303
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
304
|
-
|
|
305
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
306
|
-
|
|
307
|
-
## 8.47.0 (2025-11-17)
|
|
308
|
-
|
|
309
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
310
|
-
|
|
311
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
312
|
-
|
|
313
|
-
## 8.46.4 (2025-11-10)
|
|
314
|
-
|
|
315
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
316
|
-
|
|
317
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
318
|
-
|
|
319
|
-
## 8.46.3 (2025-11-03)
|
|
320
|
-
|
|
321
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
322
|
-
|
|
323
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
324
|
-
|
|
325
|
-
## 8.46.2 (2025-10-20)
|
|
326
|
-
|
|
327
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
328
|
-
|
|
329
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
330
|
-
|
|
331
|
-
## 8.46.1 (2025-10-13)
|
|
332
|
-
|
|
333
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
334
|
-
|
|
335
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
336
|
-
|
|
337
|
-
## 8.46.0 (2025-10-06)
|
|
338
|
-
|
|
339
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
340
|
-
|
|
341
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
342
|
-
|
|
343
|
-
## 8.45.0 (2025-09-29)
|
|
344
|
-
|
|
345
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
346
|
-
|
|
347
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
348
|
-
|
|
349
|
-
## 8.44.1 (2025-09-22)
|
|
350
|
-
|
|
351
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
352
|
-
|
|
353
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
354
|
-
|
|
355
|
-
## 8.44.0 (2025-09-15)
|
|
356
|
-
|
|
357
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
358
|
-
|
|
359
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
360
|
-
|
|
361
|
-
## 8.43.0 (2025-09-08)
|
|
362
|
-
|
|
363
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
364
|
-
|
|
365
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
366
|
-
|
|
367
|
-
## 8.42.0 (2025-09-02)
|
|
368
|
-
|
|
369
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
370
|
-
|
|
371
|
-
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning) and [releases](https://typescript-eslint.io/users/releases) on our website.
|
|
372
|
-
|
|
373
|
-
## 8.41.0 (2025-08-25)
|
|
374
|
-
|
|
375
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
376
|
-
|
|
377
|
-
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.
|
|
378
|
-
|
|
379
|
-
## 8.40.0 (2025-08-18)
|
|
380
|
-
|
|
381
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
382
|
-
|
|
383
|
-
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.
|
|
384
|
-
|
|
385
|
-
## 8.39.1 (2025-08-11)
|
|
386
|
-
|
|
387
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
388
|
-
|
|
389
|
-
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.
|
|
390
|
-
|
|
391
|
-
## 8.39.0 (2025-08-04)
|
|
392
|
-
|
|
393
|
-
### 🚀 Features
|
|
394
|
-
|
|
395
|
-
- update to TypeScript 5.9.2 ([#11445](https://github.com/typescript-eslint/typescript-eslint/pull/11445))
|
|
396
|
-
|
|
397
|
-
### ❤️ Thank You
|
|
398
|
-
|
|
399
|
-
- Brad Zacher @bradzacher
|
|
400
|
-
|
|
401
|
-
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.
|
|
402
|
-
|
|
403
|
-
## 8.38.0 (2025-07-21)
|
|
404
|
-
|
|
405
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
406
|
-
|
|
407
|
-
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.
|
|
408
|
-
|
|
409
|
-
## 8.37.0 (2025-07-14)
|
|
410
|
-
|
|
411
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
412
|
-
|
|
413
|
-
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.
|
|
414
|
-
|
|
415
|
-
## 8.36.0 (2025-07-07)
|
|
416
|
-
|
|
417
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
418
|
-
|
|
419
|
-
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.
|
|
420
|
-
|
|
421
|
-
## 8.35.1 (2025-06-30)
|
|
422
|
-
|
|
423
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
424
|
-
|
|
425
|
-
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.
|
|
426
|
-
|
|
427
|
-
## 8.35.0 (2025-06-23)
|
|
428
|
-
|
|
429
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
430
|
-
|
|
431
|
-
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.
|
|
432
|
-
|
|
433
|
-
## 8.34.1 (2025-06-16)
|
|
434
|
-
|
|
435
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
436
|
-
|
|
437
|
-
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.
|
|
438
|
-
|
|
439
|
-
## 8.34.0 (2025-06-09)
|
|
440
|
-
|
|
441
|
-
This was a version bump only for project-service to align it with other projects, there were no code changes.
|
|
442
|
-
|
|
443
|
-
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.
|
|
444
|
-
|
|
445
|
-
## 8.33.1 (2025-06-02)
|
|
446
|
-
|
|
447
|
-
### 🩹 Fixes
|
|
448
|
-
|
|
449
|
-
- **project-service:** add missing `typescript` peer dependency ([#11265](https://github.com/typescript-eslint/typescript-eslint/pull/11265))
|
|
450
|
-
|
|
451
|
-
### ❤️ Thank You
|
|
452
|
-
|
|
453
|
-
- JounQin
|
|
454
|
-
|
|
455
|
-
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.
|
|
456
|
-
|
|
457
|
-
## 8.33.0 (2025-05-26)
|
|
458
|
-
|
|
459
|
-
### 🚀 Features
|
|
460
|
-
|
|
461
|
-
- create standalone project-service, tsconfig-utils packages ([#11182](https://github.com/typescript-eslint/typescript-eslint/pull/11182))
|
|
462
|
-
|
|
463
|
-
### ❤️ Thank You
|
|
464
|
-
|
|
465
|
-
- Josh Goldberg ✨
|
|
466
|
-
|
|
467
|
-
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.
|