@@ -23,7 +23,7 @@ const trackMap = {
23
23
modules : {
24
24
assert : {
25
25
strict : {
26
- [ READ ] : { supported : "9.9.0" } ,
26
+ [ READ ] : { supported : "9.9.0" , backported : [ "8.13.0" ] } ,
27
27
doesNotReject : { [ READ ] : { supported : "10.0.0" } } ,
28
28
rejects : { [ READ ] : { supported : "10.0.0" } } ,
29
29
} ,
@@ -51,9 +51,11 @@ const trackMap = {
51
51
ChildProcess : { [ READ ] : { supported : "2.2.0" } } ,
52
52
} ,
53
53
console : {
54
- clear : { [ READ ] : { supported : "8.3.0" } } ,
55
- count : { [ READ ] : { supported : "8.3.0" } } ,
56
- countReset : { [ READ ] : { supported : "8.3.0" } } ,
54
+ clear : { [ READ ] : { supported : "8.3.0" , backported : [ "6.13.0" ] } } ,
55
+ count : { [ READ ] : { supported : "8.3.0" , backported : [ "6.13.0" ] } } ,
56
+ countReset : {
57
+ [ READ ] : { supported : "8.3.0" , backported : [ "6.13.0" ] } ,
58
+ } ,
57
59
debug : { [ READ ] : { supported : "8.0.0" } } ,
58
60
dirxml : { [ READ ] : { supported : "8.0.0" } } ,
59
61
group : { [ READ ] : { supported : "8.5.0" } } ,
@@ -74,6 +76,7 @@ const trackMap = {
74
76
exportPublicKey : { [ READ ] : { supported : "9.0.0" } } ,
75
77
verifySpkac : { [ READ ] : { supported : "9.0.0" } } ,
76
78
} ,
79
+ ECDH : { [ READ ] : { supported : "8.8.0" , backported : [ "6.13.0" ] } } ,
77
80
KeyObject : { [ READ ] : { supported : "11.6.0" } } ,
78
81
createPrivateKey : { [ READ ] : { supported : "11.6.0" } } ,
79
82
createPublicKey : { [ READ ] : { supported : "11.6.0" } } ,
@@ -86,8 +89,12 @@ const trackMap = {
86
89
getFips : { [ READ ] : { supported : "10.0.0" } } ,
87
90
privateEncrypt : { [ READ ] : { supported : "1.1.0" } } ,
88
91
publicDecrypt : { [ READ ] : { supported : "1.1.0" } } ,
89
- randomFillSync : { [ READ ] : { supported : "7.10.0" } } ,
90
- randomFill : { [ READ ] : { supported : "7.10.0" } } ,
92
+ randomFillSync : {
93
+ [ READ ] : { supported : "7.10.0" , backported : [ "6.13.0" ] } ,
94
+ } ,
95
+ randomFill : {
96
+ [ READ ] : { supported : "7.10.0" , backported : [ "6.13.0" ] } ,
97
+ } ,
91
98
scrypt : { [ READ ] : { supported : "10.5.0" } } ,
92
99
scryptSync : { [ READ ] : { supported : "10.5.0" } } ,
93
100
setFips : { [ READ ] : { supported : "10.0.0" } } ,
@@ -99,14 +106,20 @@ const trackMap = {
99
106
Resolver : { [ READ ] : { supported : "8.3.0" } } ,
100
107
resolvePtr : { [ READ ] : { supported : "6.0.0" } } ,
101
108
promises : {
102
- [ READ ] : { supported : "11.14.0" , experimental : "10.6.0" } ,
109
+ [ READ ] : {
110
+ supported : "11.14.0" ,
111
+ backported : [ "10.17.0" ] ,
112
+ experimental : "10.6.0" ,
113
+ } ,
103
114
} ,
104
115
} ,
105
116
events : {
106
117
EventEmitter : {
107
- once : { [ READ ] : { supported : "11.13.0" } } ,
118
+ once : {
119
+ [ READ ] : { supported : "11.13.0" , backported : [ "10.16.0" ] } ,
120
+ } ,
108
121
} ,
109
- once : { [ READ ] : { supported : "11.13.0" } } ,
122
+ once : { [ READ ] : { supported : "11.13.0" , backported : [ "10.16.0" ] } } ,
110
123
} ,
111
124
fs : {
112
125
Dirent : { [ READ ] : { supported : "10.10.0" } } ,
@@ -121,25 +134,43 @@ const trackMap = {
121
134
native : { [ READ ] : { supported : "9.2.0" } } ,
122
135
} ,
123
136
promises : {
124
- [ READ ] : { supported : "11.14.0" , experimental : "10.1.0" } ,
137
+ [ READ ] : {
138
+ supported : "11.14.0" ,
139
+ backported : [ "10.17.0" ] ,
140
+ experimental : "10.1.0" ,
141
+ } ,
125
142
} ,
126
143
writev : { [ READ ] : { supported : "12.9.0" } } ,
127
144
writevSync : { [ READ ] : { supported : "12.9.0" } } ,
128
145
} ,
129
146
http2 : {
130
- [ READ ] : { supported : "10.10.0" , experimental : "8.4.0" } ,
147
+ [ READ ] : {
148
+ supported : "10.10.0" ,
149
+ backported : [ "8.13.0" ] ,
150
+ experimental : "8.4.0" ,
151
+ } ,
131
152
} ,
132
153
inspector : {
133
154
[ READ ] : { supported : null , experimental : "8.0.0" } ,
134
155
} ,
135
156
module : {
136
157
Module : {
137
- builtinModules : { [ READ ] : { supported : "9.3.0" } } ,
158
+ builtinModules : {
159
+ [ READ ] : {
160
+ supported : "9.3.0" ,
161
+ backported : [ "6.13.0" , "8.10.0" ] ,
162
+ } ,
163
+ } ,
138
164
createRequireFromPath : { [ READ ] : { supported : "10.12.0" } } ,
139
165
createRequire : { [ READ ] : { supported : "12.2.0" } } ,
140
166
syncBuiltinESMExports : { [ READ ] : { supported : "12.12.0" } } ,
141
167
} ,
142
- builtinModules : { [ READ ] : { supported : "9.3.0" } } ,
168
+ builtinModules : {
169
+ [ READ ] : {
170
+ supported : "9.3.0" ,
171
+ backported : [ "6.13.0" , "8.10.0" ] ,
172
+ } ,
173
+ } ,
143
174
createRequireFromPath : { [ READ ] : { supported : "10.12.0" } } ,
144
175
createRequire : { [ READ ] : { supported : "12.2.0" } } ,
145
176
syncBuiltinESMExports : { [ READ ] : { supported : "12.12.0" } } ,
@@ -175,7 +206,12 @@ const trackMap = {
175
206
hrtime : {
176
207
bigint : { [ READ ] : { supported : "10.7.0" } } ,
177
208
} ,
178
- ppid : { [ READ ] : { supported : "9.2.0" } } ,
209
+ ppid : {
210
+ [ READ ] : {
211
+ supported : "9.2.0" ,
212
+ backported : [ "6.13.0" , "8.10.0" ] ,
213
+ } ,
214
+ } ,
179
215
release : { [ READ ] : { supported : "3.0.0" } } ,
180
216
report : { [ READ ] : { supported : null , experimental : "11.8.0" } } ,
181
217
resourceUsage : { [ READ ] : { supported : "12.6.0" } } ,
@@ -195,7 +231,9 @@ const trackMap = {
195
231
} ,
196
232
stream : {
197
233
Readable : {
198
- from : { [ READ ] : { supported : "12.3.0" } } ,
234
+ from : {
235
+ [ READ ] : { supported : "12.3.0" , backported : [ "10.17.0" ] } ,
236
+ } ,
199
237
} ,
200
238
finished : { [ READ ] : { supported : "10.0.0" } } ,
201
239
pipeline : { [ READ ] : { supported : "10.0.0" } } ,
@@ -204,24 +242,32 @@ const trackMap = {
204
242
[ READ ] : { supported : "10.0.0" } ,
205
243
} ,
206
244
url : {
207
- URL : { [ READ ] : { supported : "7.0.0" } } ,
208
- URLSearchParams : { [ READ ] : { supported : "7.5.0" } } ,
245
+ URL : { [ READ ] : { supported : "7.0.0" , backported : [ "6.13.0" ] } } ,
246
+ URLSearchParams : {
247
+ [ READ ] : { supported : "7.5.0" , backported : [ "6.13.0" ] } ,
248
+ } ,
209
249
domainToASCII : { [ READ ] : { supported : "7.4.0" } } ,
210
250
domainToUnicode : { [ READ ] : { supported : "7.4.0" } } ,
211
251
} ,
212
252
util : {
213
253
callbackify : { [ READ ] : { supported : "8.2.0" } } ,
214
254
formatWithOptions : { [ READ ] : { supported : "10.0.0" } } ,
215
- getSystemErrorName : { [ READ ] : { supported : "9.7.0" } } ,
255
+ getSystemErrorName : {
256
+ [ READ ] : { supported : "9.7.0" , backported : [ "8.12.0" ] } ,
257
+ } ,
216
258
inspect : {
217
259
custom : { [ READ ] : { supported : "6.6.0" } } ,
218
260
defaultOptions : { [ READ ] : { supported : "6.4.0" } } ,
219
261
replDefaults : { [ READ ] : { supported : "11.12.0" } } ,
220
262
} ,
221
263
isDeepStrictEqual : { [ READ ] : { supported : "9.0.0" } } ,
222
264
promisify : { [ READ ] : { supported : "8.0.0" } } ,
223
- TextDecoder : { [ READ ] : { supported : "8.3.0" } } ,
224
- TextEncoder : { [ READ ] : { supported : "8.3.0" } } ,
265
+ TextDecoder : {
266
+ [ READ ] : { supported : "8.9.0" , experimental : "8.3.0" } ,
267
+ } ,
268
+ TextEncoder : {
269
+ [ READ ] : { supported : "8.9.0" , experimental : "8.3.0" } ,
270
+ } ,
225
271
types : {
226
272
[ READ ] : { supported : "10.0.0" } ,
227
273
isBoxedPrimitive : { [ READ ] : { supported : "10.11.0" } } ,
0 commit comments