cdk-common 2.0.1259 → 2.0.1261

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 (34) hide show
  1. package/.jsii +2 -2
  2. package/lib/main.js +1 -1
  3. package/node_modules/fast-uri/.github/workflows/ci.yml +45 -2
  4. package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +5 -1
  5. package/node_modules/fast-uri/LICENSE +3 -1
  6. package/node_modules/fast-uri/README.md +37 -24
  7. package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
  8. package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
  9. package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
  10. package/node_modules/fast-uri/benchmark/package.json +17 -0
  11. package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
  12. package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
  13. package/node_modules/fast-uri/index.js +95 -58
  14. package/node_modules/fast-uri/lib/schemes.js +160 -81
  15. package/node_modules/fast-uri/lib/utils.js +214 -122
  16. package/node_modules/fast-uri/package.json +7 -6
  17. package/node_modules/fast-uri/test/ajv.test.js +7 -3
  18. package/node_modules/fast-uri/test/equal.test.js +7 -2
  19. package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
  20. package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
  21. package/node_modules/fast-uri/test/parse.test.js +31 -31
  22. package/node_modules/fast-uri/test/resolve.test.js +52 -49
  23. package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
  24. package/node_modules/fast-uri/test/serialize.test.js +55 -47
  25. package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
  26. package/node_modules/fast-uri/test/uri-js.test.js +230 -230
  27. package/node_modules/fast-uri/test/util.test.js +23 -8
  28. package/node_modules/fast-uri/tsconfig.json +9 -0
  29. package/node_modules/fast-uri/types/index.d.ts +7 -0
  30. package/package.json +1 -1
  31. package/node_modules/fast-uri/benchmark.js +0 -105
  32. package/node_modules/fast-uri/lib/scopedChars.js +0 -30
  33. package/node_modules/fast-uri/test/.gitkeep +0 -0
  34. package/node_modules/fast-uri/test/compatibility.test.js +0 -131
@@ -0,0 +1,501 @@
1
+ [
2
+ [
3
+ "//www.g.com/error\n/bleh/bleh",
4
+ {
5
+ "host": "www.g.com",
6
+ "path": "/error%0A/bleh/bleh",
7
+ "reference": "relative"
8
+ }
9
+ ],
10
+ [
11
+ "https://fastify.org",
12
+ {
13
+ "scheme": "https",
14
+ "host": "fastify.org",
15
+ "path": "",
16
+ "reference": "absolute"
17
+ }
18
+ ],
19
+ [
20
+ "/definitions/Record%3Cstring%2CPerson%3E",
21
+ {
22
+ "path": "/definitions/Record%3Cstring%2CPerson%3E",
23
+ "reference": "relative"
24
+ }
25
+ ],
26
+ [
27
+ "//10.10.10.10",
28
+ {
29
+ "host": "10.10.10.10",
30
+ "path": "",
31
+ "reference": "relative"
32
+ }
33
+ ],
34
+ [
35
+ "//10.10.000.10",
36
+ {
37
+ "host": "10.10.0.10",
38
+ "path": "",
39
+ "reference": "relative"
40
+ }
41
+ ],
42
+ [
43
+ "//[2001:db8::7%en0]",
44
+ {
45
+ "host": "2001:db8::7%en0",
46
+ "path": "",
47
+ "reference": "relative"
48
+ }
49
+ ],
50
+ [
51
+ "//[2001:dbZ::1]:80",
52
+ {
53
+ "host": "[2001:dbz::1]",
54
+ "port": 80,
55
+ "path": "",
56
+ "reference": "relative"
57
+ }
58
+ ],
59
+ [
60
+ "//[2001:db8::1]:80",
61
+ {
62
+ "host": "2001:db8::1",
63
+ "port": 80,
64
+ "path": "",
65
+ "reference": "relative"
66
+ }
67
+ ],
68
+ [
69
+ "//[2001:db8::001]:80",
70
+ {
71
+ "host": "2001:db8::1",
72
+ "port": 80,
73
+ "path": "",
74
+ "reference": "relative"
75
+ }
76
+ ],
77
+ [
78
+ "uri://user:pass@example.com:123/one/two.three?q1=a1&q2=a2#body",
79
+ {
80
+ "scheme": "uri",
81
+ "userinfo": "user:pass",
82
+ "host": "example.com",
83
+ "port": 123,
84
+ "path": "/one/two.three",
85
+ "query": "q1=a1&q2=a2",
86
+ "fragment": "body",
87
+ "reference": "uri"
88
+ }
89
+ ],
90
+ [
91
+ "http://user:pass@example.com:123/one/space in.url?q1=a1&q2=a2#body",
92
+ {
93
+ "scheme": "http",
94
+ "userinfo": "user:pass",
95
+ "host": "example.com",
96
+ "port": 123,
97
+ "path": "/one/space%20in.url",
98
+ "query": "q1=a1&q2=a2",
99
+ "fragment": "body",
100
+ "reference": "uri"
101
+ }
102
+ ],
103
+ [
104
+ "http://User:Pass@example.com:123/one/space in.url?q1=a1&q2=a2#body",
105
+ {
106
+ "scheme": "http",
107
+ "userinfo": "User:Pass",
108
+ "host": "example.com",
109
+ "port": 123,
110
+ "path": "/one/space%20in.url",
111
+ "query": "q1=a1&q2=a2",
112
+ "fragment": "body",
113
+ "reference": "uri"
114
+ }
115
+ ],
116
+ [
117
+ "http://A%3AB@example.com:123/one/space",
118
+ {
119
+ "scheme": "http",
120
+ "userinfo": "A%3AB",
121
+ "host": "example.com",
122
+ "port": 123,
123
+ "path": "/one/space",
124
+ "reference": "absolute"
125
+ }
126
+ ],
127
+ [
128
+ "//[::ffff:129.144.52.38]",
129
+ {
130
+ "host": "::ffff:129.144.52.38",
131
+ "path": "",
132
+ "reference": "relative"
133
+ }
134
+ ],
135
+ [
136
+ "uri://10.10.10.10.example.com/en/process",
137
+ {
138
+ "scheme": "uri",
139
+ "host": "10.10.10.10.example.com",
140
+ "path": "/en/process",
141
+ "reference": "absolute"
142
+ }
143
+ ],
144
+ [
145
+ "//[2606:2800:220:1:248:1893:25c8:1946]/test",
146
+ {
147
+ "host": "2606:2800:220:1:248:1893:25c8:1946",
148
+ "path": "/test",
149
+ "reference": "relative"
150
+ }
151
+ ],
152
+ [
153
+ "ws://example.com/chat",
154
+ {
155
+ "scheme": "ws",
156
+ "host": "example.com",
157
+ "reference": "absolute",
158
+ "secure": false,
159
+ "resourceName": "/chat"
160
+ }
161
+ ],
162
+ [
163
+ "ws://example.com/foo?bar=baz",
164
+ {
165
+ "scheme": "ws",
166
+ "host": "example.com",
167
+ "reference": "absolute",
168
+ "secure": false,
169
+ "resourceName": "/foo?bar=baz"
170
+ }
171
+ ],
172
+ [
173
+ "wss://example.com/?bar=baz",
174
+ {
175
+ "scheme": "wss",
176
+ "host": "example.com",
177
+ "reference": "absolute",
178
+ "secure": true,
179
+ "resourceName": "/?bar=baz"
180
+ }
181
+ ],
182
+ [
183
+ "wss://example.com/chat",
184
+ {
185
+ "scheme": "wss",
186
+ "host": "example.com",
187
+ "reference": "absolute",
188
+ "secure": true,
189
+ "resourceName": "/chat"
190
+ }
191
+ ],
192
+ [
193
+ "wss://example.com/foo?bar=baz",
194
+ {
195
+ "scheme": "wss",
196
+ "host": "example.com",
197
+ "reference": "absolute",
198
+ "secure": true,
199
+ "resourceName": "/foo?bar=baz"
200
+ }
201
+ ],
202
+ [
203
+ "wss://example.com/?bar=baz",
204
+ {
205
+ "scheme": "wss",
206
+ "host": "example.com",
207
+ "reference": "absolute",
208
+ "secure": true,
209
+ "resourceName": "/?bar=baz"
210
+ }
211
+ ],
212
+ [
213
+ "urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6",
214
+ {
215
+ "scheme": "urn",
216
+ "reference": "absolute",
217
+ "nid": "uuid",
218
+ "uuid": "f81d4fae-7dec-11d0-a765-00a0c91e6bf6"
219
+ }
220
+ ],
221
+ [
222
+ "urn:uuid:notauuid-7dec-11d0-a765-00a0c91e6bf6",
223
+ {
224
+ "scheme": "urn",
225
+ "reference": "absolute",
226
+ "nid": "uuid",
227
+ "uuid": "notauuid-7dec-11d0-a765-00a0c91e6bf6",
228
+ "error": "UUID is not valid."
229
+ }
230
+ ],
231
+ [
232
+ "urn:example:%D0%B0123,z456",
233
+ {
234
+ "scheme": "urn",
235
+ "reference": "absolute",
236
+ "nid": "example",
237
+ "nss": "%D0%B0123,z456"
238
+ }
239
+ ],
240
+ [
241
+ "//[2606:2800:220:1:248:1893:25c8:1946:43209]",
242
+ {
243
+ "host": "[2606:2800:220:1:248:1893:25c8:1946:43209]",
244
+ "path": "",
245
+ "reference": "relative"
246
+ }
247
+ ],
248
+ [
249
+ "http://foo.bar",
250
+ {
251
+ "scheme": "http",
252
+ "host": "foo.bar",
253
+ "path": "",
254
+ "reference": "absolute"
255
+ }
256
+ ],
257
+ [
258
+ "http://",
259
+ {
260
+ "scheme": "http",
261
+ "host": "",
262
+ "path": "",
263
+ "reference": "absolute",
264
+ "error": "HTTP URIs must have a host."
265
+ }
266
+ ],
267
+ [
268
+ "#/$defs/stringMap",
269
+ {
270
+ "path": "",
271
+ "fragment": "/$defs/stringMap",
272
+ "reference": "same-document"
273
+ }
274
+ ],
275
+ [
276
+ "#/$defs/string%20Map",
277
+ {
278
+ "path": "",
279
+ "fragment": "/$defs/string%20Map",
280
+ "reference": "same-document"
281
+ }
282
+ ],
283
+ [
284
+ "#/$defs/string Map",
285
+ {
286
+ "path": "",
287
+ "fragment": "/$defs/string%20Map",
288
+ "reference": "same-document"
289
+ }
290
+ ],
291
+ [
292
+ "//?json=%7B%22foo%22%3A%22bar%22%7D",
293
+ {
294
+ "host": "",
295
+ "path": "",
296
+ "query": "json=%7B%22foo%22%3A%22bar%22%7D",
297
+ "reference": "relative"
298
+ }
299
+ ],
300
+ [
301
+ "mailto:chris@example.com",
302
+ {
303
+ "scheme": "mailto",
304
+ "reference": "absolute",
305
+ "to": [
306
+ "chris@example.com"
307
+ ]
308
+ }
309
+ ],
310
+ [
311
+ "mailto:infobot@example.com?subject=current-issue",
312
+ {
313
+ "scheme": "mailto",
314
+ "reference": "absolute",
315
+ "to": [
316
+ "infobot@example.com"
317
+ ],
318
+ "subject": "current-issue"
319
+ }
320
+ ],
321
+ [
322
+ "mailto:infobot@example.com?body=send%20current-issue",
323
+ {
324
+ "scheme": "mailto",
325
+ "reference": "absolute",
326
+ "to": [
327
+ "infobot@example.com"
328
+ ],
329
+ "body": "send current-issue"
330
+ }
331
+ ],
332
+ [
333
+ "mailto:infobot@example.com?body=send%20current-issue%0D%0Asend%20index",
334
+ {
335
+ "scheme": "mailto",
336
+ "reference": "absolute",
337
+ "to": [
338
+ "infobot@example.com"
339
+ ],
340
+ "body": "send current-issue\r\nsend index"
341
+ }
342
+ ],
343
+ [
344
+ "mailto:list@example.org?In-Reply-To=%3C3469A91.D10AF4C@example.com%3E",
345
+ {
346
+ "scheme": "mailto",
347
+ "reference": "absolute",
348
+ "to": [
349
+ "list@example.org"
350
+ ],
351
+ "headers": {
352
+ "In-Reply-To": "<3469A91.D10AF4C@example.com>"
353
+ }
354
+ }
355
+ ],
356
+ [
357
+ "mailto:majordomo@example.com?body=subscribe%20bamboo-l",
358
+ {
359
+ "scheme": "mailto",
360
+ "reference": "absolute",
361
+ "to": [
362
+ "majordomo@example.com"
363
+ ],
364
+ "body": "subscribe bamboo-l"
365
+ }
366
+ ],
367
+ [
368
+ "mailto:joe@example.com?cc=bob@example.com&body=hello",
369
+ {
370
+ "scheme": "mailto",
371
+ "reference": "absolute",
372
+ "to": [
373
+ "joe@example.com"
374
+ ],
375
+ "body": "hello",
376
+ "headers": {
377
+ "cc": "bob@example.com"
378
+ }
379
+ }
380
+ ],
381
+ [
382
+ "mailto:gorby%25kremvax@example.com",
383
+ {
384
+ "scheme": "mailto",
385
+ "reference": "absolute",
386
+ "to": [
387
+ "gorby%kremvax@example.com"
388
+ ]
389
+ }
390
+ ],
391
+ [
392
+ "mailto:unlikely%3Faddress@example.com?blat=foop",
393
+ {
394
+ "scheme": "mailto",
395
+ "reference": "absolute",
396
+ "to": [
397
+ "unlikely?address@example.com"
398
+ ],
399
+ "headers": {
400
+ "blat": "foop"
401
+ }
402
+ }
403
+ ],
404
+ [
405
+ "mailto:Mike%26family@example.org",
406
+ {
407
+ "scheme": "mailto",
408
+ "reference": "absolute",
409
+ "to": [
410
+ "Mike&family@example.org"
411
+ ]
412
+ }
413
+ ],
414
+ [
415
+ "mailto:%22not%40me%22@example.org",
416
+ {
417
+ "scheme": "mailto",
418
+ "reference": "absolute",
419
+ "to": [
420
+ "\"not@me\"@example.org"
421
+ ]
422
+ }
423
+ ],
424
+ [
425
+ "mailto:%22oh%5C%5Cno%22@example.org",
426
+ {
427
+ "scheme": "mailto",
428
+ "reference": "absolute",
429
+ "to": [
430
+ "\"oh\\\\no\"@example.org"
431
+ ]
432
+ }
433
+ ],
434
+ [
435
+ "mailto:%22%5C%5C%5C%22it's%5C%20ugly%5C%5C%5C%22%22@example.org",
436
+ {
437
+ "scheme": "mailto",
438
+ "reference": "absolute",
439
+ "to": [
440
+ "\"\\\\\\\"it's\\ ugly\\\\\\\"\"@example.org"
441
+ ]
442
+ }
443
+ ],
444
+ [
445
+ "mailto:user@example.org?subject=caf%C3%A9",
446
+ {
447
+ "scheme": "mailto",
448
+ "reference": "absolute",
449
+ "to": [
450
+ "user@example.org"
451
+ ],
452
+ "subject": "café"
453
+ }
454
+ ],
455
+ [
456
+ "mailto:user@example.org?subject=%3D%3Futf-8%3FQ%3Fcaf%3DC3%3DA9%3F%3D",
457
+ {
458
+ "scheme": "mailto",
459
+ "reference": "absolute",
460
+ "to": [
461
+ "user@example.org"
462
+ ],
463
+ "subject": "=?utf-8?Q?caf=C3=A9?="
464
+ }
465
+ ],
466
+ [
467
+ "mailto:user@example.org?subject=%3D%3Fiso-8859-1%3FQ%3Fcaf%3DE9%3F%3D",
468
+ {
469
+ "scheme": "mailto",
470
+ "reference": "absolute",
471
+ "to": [
472
+ "user@example.org"
473
+ ],
474
+ "subject": "=?iso-8859-1?Q?caf=E9?="
475
+ }
476
+ ],
477
+ [
478
+ "mailto:user@example.org?subject=caf%C3%A9&body=caf%C3%A9",
479
+ {
480
+ "scheme": "mailto",
481
+ "reference": "absolute",
482
+ "to": [
483
+ "user@example.org"
484
+ ],
485
+ "subject": "café",
486
+ "body": "café"
487
+ }
488
+ ],
489
+ [
490
+ "mailto:user@%E7%B4%8D%E8%B1%86.example.org?subject=Test&body=NATTO",
491
+ {
492
+ "scheme": "mailto",
493
+ "reference": "absolute",
494
+ "to": [
495
+ "user@xn--99zt52a.example.org"
496
+ ],
497
+ "subject": "Test",
498
+ "body": "NATTO"
499
+ }
500
+ ]
501
+ ]
@@ -0,0 +1,120 @@
1
+ [
2
+ [
3
+ {
4
+ "host": "10.10.10.10.example.com"
5
+ },
6
+ "//10.10.10.10.example.com"
7
+ ],
8
+ [
9
+ {
10
+ "host": "2001:db8::7"
11
+ },
12
+ "//[2001:db8::7]"
13
+ ],
14
+ [
15
+ {
16
+ "host": "::ffff:129.144.52.38"
17
+ },
18
+ "//[::ffff:129.144.52.38]"
19
+ ],
20
+ [
21
+ {
22
+ "host": "2606:2800:220:1:248:1893:25c8:1946"
23
+ },
24
+ "//[2606:2800:220:1:248:1893:25c8:1946]"
25
+ ],
26
+ [
27
+ {
28
+ "host": "10.10.10.10.example.com"
29
+ },
30
+ "//10.10.10.10.example.com"
31
+ ],
32
+ [
33
+ {
34
+ "host": "10.10.10.10"
35
+ },
36
+ "//10.10.10.10"
37
+ ],
38
+ [
39
+ {
40
+ "path": "?query"
41
+ },
42
+ "%3Fquery"
43
+ ],
44
+ [
45
+ {
46
+ "path": "foo:bar"
47
+ },
48
+ "foo%3Abar"
49
+ ],
50
+ [
51
+ {
52
+ "path": "//path"
53
+ },
54
+ "/%2Fpath"
55
+ ],
56
+ [
57
+ {
58
+ "scheme": "uri",
59
+ "host": "example.com",
60
+ "port": "9000"
61
+ },
62
+ "uri://example.com:9000"
63
+ ],
64
+ [
65
+ {
66
+ "scheme": "uri",
67
+ "userinfo": "foo:bar",
68
+ "host": "example.com",
69
+ "port": 1,
70
+ "path": "path",
71
+ "query": "query",
72
+ "fragment": "fragment"
73
+ },
74
+ "uri://foo:bar@example.com:1/path?query#fragment"
75
+ ],
76
+ [
77
+ {
78
+ "scheme": "",
79
+ "userinfo": "",
80
+ "host": "",
81
+ "port": 0,
82
+ "path": "",
83
+ "query": "",
84
+ "fragment": ""
85
+ },
86
+ "//@:0?#"
87
+ ],
88
+ [
89
+ {},
90
+ ""
91
+ ],
92
+ [
93
+ {
94
+ "host": "fe80::a%en1"
95
+ },
96
+ "//[fe80::a%25en1]"
97
+ ],
98
+ [
99
+ {
100
+ "host": "fe80::a%25en1"
101
+ },
102
+ "//[fe80::a%25en1]"
103
+ ],
104
+ [
105
+ {
106
+ "scheme": "wss",
107
+ "host": "example.com",
108
+ "path": "/foo",
109
+ "query": "bar"
110
+ },
111
+ "wss://example.com/foo?bar"
112
+ ],
113
+ [
114
+ {
115
+ "scheme": "scheme",
116
+ "path": "with:colon"
117
+ },
118
+ "scheme:with:colon"
119
+ ]
120
+ ]