cdk-common 2.0.194 → 2.0.197
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/.jsii +9 -9
- package/API.md +5 -5
- package/lib/main.js +1 -1
- package/lib/managed-policies.d.ts +1 -1
- package/lib/managed-policies.js +2 -2
- package/node_modules/@aws-cdk/assert/package.json +8 -8
- package/node_modules/@aws-cdk/cfnspec/CHANGELOG.md +213 -0
- package/node_modules/@aws-cdk/cfnspec/build-tools/create-missing-libraries.js +5 -2
- package/node_modules/@aws-cdk/cfnspec/cfn.version +1 -1
- package/node_modules/@aws-cdk/cfnspec/package.json +3 -3
- package/node_modules/@aws-cdk/cfnspec/spec/specification.json +1835 -58
- package/node_modules/@aws-cdk/cfnspec/tsconfig.tsbuildinfo +1 -1
- package/node_modules/@aws-cdk/cloudformation-diff/package.json +4 -4
- package/node_modules/@types/concat-stream/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/concat-stream/node_modules/@types/node/http.d.ts +10 -0
- package/node_modules/@types/concat-stream/node_modules/@types/node/https.d.ts +10 -0
- package/node_modules/@types/concat-stream/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/concat-stream/node_modules/@types/node/perf_hooks.d.ts +6 -0
- package/node_modules/@types/form-data/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/form-data/node_modules/@types/node/http.d.ts +10 -0
- package/node_modules/@types/form-data/node_modules/@types/node/https.d.ts +10 -0
- package/node_modules/@types/form-data/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/form-data/node_modules/@types/node/perf_hooks.d.ts +6 -0
- package/package.json +2 -2
|
@@ -791,7 +791,7 @@
|
|
|
791
791
|
"affectsGlobalScope": false
|
|
792
792
|
},
|
|
793
793
|
"./build-tools/create-missing-libraries.ts": {
|
|
794
|
-
"version": "
|
|
794
|
+
"version": "fde25f7960269f0ecd3942a9b308ae3261f5bee77712b34f831e1637588ab2ef",
|
|
795
795
|
"signature": "6f1c2a556d1d2d8c71593583b8ef8417639193f852d07a6a08e99fe3d1ee5785",
|
|
796
796
|
"affectsGlobalScope": false
|
|
797
797
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-cdk/cloudformation-diff",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.31.0",
|
|
4
4
|
"description": "Utilities to diff CDK stacks against CloudFormation templates",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@aws-cdk/cfnspec": "2.
|
|
26
|
+
"@aws-cdk/cfnspec": "2.31.0",
|
|
27
27
|
"@types/node": "^10.17.60",
|
|
28
28
|
"chalk": "^4",
|
|
29
29
|
"diff": "^5.1.0",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"table": "^6.8.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@aws-cdk/cdk-build-tools": "2.
|
|
36
|
-
"@aws-cdk/pkglint": "2.
|
|
35
|
+
"@aws-cdk/cdk-build-tools": "2.31.0",
|
|
36
|
+
"@aws-cdk/pkglint": "2.31.0",
|
|
37
37
|
"@types/jest": "^27.5.2",
|
|
38
38
|
"@types/string-width": "^4.0.1",
|
|
39
39
|
"fast-check": "^2.25.0",
|
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 06 Jul 2022 04:02:23 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
|
|
14
14
|
|
|
@@ -249,6 +249,16 @@ declare module 'http' {
|
|
|
249
249
|
* @since v14.11.0
|
|
250
250
|
*/
|
|
251
251
|
requestTimeout: number;
|
|
252
|
+
/**
|
|
253
|
+
* Closes all connections connected to this server.
|
|
254
|
+
* @since v18.2.0
|
|
255
|
+
*/
|
|
256
|
+
closeAllConnections(): void;
|
|
257
|
+
/**
|
|
258
|
+
* Closes all connections connected to this server which are not sending a request or waiting for a response.
|
|
259
|
+
* @since v18.2.0
|
|
260
|
+
*/
|
|
261
|
+
closeIdleConnections(): void;
|
|
252
262
|
addListener(event: string, listener: (...args: any[]) => void): this;
|
|
253
263
|
addListener(event: 'close', listener: () => void): this;
|
|
254
264
|
addListener(event: 'connection', listener: (socket: Socket) => void): this;
|
|
@@ -34,6 +34,16 @@ declare module 'https' {
|
|
|
34
34
|
class Server extends tls.Server {
|
|
35
35
|
constructor(requestListener?: http.RequestListener);
|
|
36
36
|
constructor(options: ServerOptions, requestListener?: http.RequestListener);
|
|
37
|
+
/**
|
|
38
|
+
* Closes all connections connected to this server.
|
|
39
|
+
* @since v18.2.0
|
|
40
|
+
*/
|
|
41
|
+
closeAllConnections(): void;
|
|
42
|
+
/**
|
|
43
|
+
* Closes all connections connected to this server which are not sending a request or waiting for a response.
|
|
44
|
+
* @since v18.2.0
|
|
45
|
+
*/
|
|
46
|
+
closeIdleConnections(): void;
|
|
37
47
|
addListener(event: string, listener: (...args: any[]) => void): this;
|
|
38
48
|
addListener(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this;
|
|
39
49
|
addListener(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void): this;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.3",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
},
|
|
221
221
|
"scripts": {},
|
|
222
222
|
"dependencies": {},
|
|
223
|
-
"typesPublisherContentHash": "
|
|
223
|
+
"typesPublisherContentHash": "f88edb516946d349187ba7de857caf040f59be37853483f48af1af856105ff55",
|
|
224
224
|
"typeScriptVersion": "4.0"
|
|
225
225
|
}
|
|
@@ -507,6 +507,12 @@ declare module 'perf_hooks' {
|
|
|
507
507
|
* @since v15.9.0, v14.18.0
|
|
508
508
|
*/
|
|
509
509
|
recordDelta(): void;
|
|
510
|
+
/**
|
|
511
|
+
* Adds the values from other to this histogram.
|
|
512
|
+
* @since v17.4.0, v16.14.0
|
|
513
|
+
* @param other Recordable Histogram to combine with
|
|
514
|
+
*/
|
|
515
|
+
add(other: RecordableHistogram): void;
|
|
510
516
|
}
|
|
511
517
|
/**
|
|
512
518
|
* _This property is an extension by Node.js. It is not available in Web browsers._
|
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 06 Jul 2022 04:02:23 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
|
|
14
14
|
|
|
@@ -249,6 +249,16 @@ declare module 'http' {
|
|
|
249
249
|
* @since v14.11.0
|
|
250
250
|
*/
|
|
251
251
|
requestTimeout: number;
|
|
252
|
+
/**
|
|
253
|
+
* Closes all connections connected to this server.
|
|
254
|
+
* @since v18.2.0
|
|
255
|
+
*/
|
|
256
|
+
closeAllConnections(): void;
|
|
257
|
+
/**
|
|
258
|
+
* Closes all connections connected to this server which are not sending a request or waiting for a response.
|
|
259
|
+
* @since v18.2.0
|
|
260
|
+
*/
|
|
261
|
+
closeIdleConnections(): void;
|
|
252
262
|
addListener(event: string, listener: (...args: any[]) => void): this;
|
|
253
263
|
addListener(event: 'close', listener: () => void): this;
|
|
254
264
|
addListener(event: 'connection', listener: (socket: Socket) => void): this;
|
|
@@ -34,6 +34,16 @@ declare module 'https' {
|
|
|
34
34
|
class Server extends tls.Server {
|
|
35
35
|
constructor(requestListener?: http.RequestListener);
|
|
36
36
|
constructor(options: ServerOptions, requestListener?: http.RequestListener);
|
|
37
|
+
/**
|
|
38
|
+
* Closes all connections connected to this server.
|
|
39
|
+
* @since v18.2.0
|
|
40
|
+
*/
|
|
41
|
+
closeAllConnections(): void;
|
|
42
|
+
/**
|
|
43
|
+
* Closes all connections connected to this server which are not sending a request or waiting for a response.
|
|
44
|
+
* @since v18.2.0
|
|
45
|
+
*/
|
|
46
|
+
closeIdleConnections(): void;
|
|
37
47
|
addListener(event: string, listener: (...args: any[]) => void): this;
|
|
38
48
|
addListener(event: 'keylog', listener: (line: Buffer, tlsSocket: tls.TLSSocket) => void): this;
|
|
39
49
|
addListener(event: 'newSession', listener: (sessionId: Buffer, sessionData: Buffer, callback: (err: Error, resp: Buffer) => void) => void): this;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.3",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
},
|
|
221
221
|
"scripts": {},
|
|
222
222
|
"dependencies": {},
|
|
223
|
-
"typesPublisherContentHash": "
|
|
223
|
+
"typesPublisherContentHash": "f88edb516946d349187ba7de857caf040f59be37853483f48af1af856105ff55",
|
|
224
224
|
"typeScriptVersion": "4.0"
|
|
225
225
|
}
|
|
@@ -507,6 +507,12 @@ declare module 'perf_hooks' {
|
|
|
507
507
|
* @since v15.9.0, v14.18.0
|
|
508
508
|
*/
|
|
509
509
|
recordDelta(): void;
|
|
510
|
+
/**
|
|
511
|
+
* Adds the values from other to this histogram.
|
|
512
|
+
* @since v17.4.0, v16.14.0
|
|
513
|
+
* @param other Recordable Histogram to combine with
|
|
514
|
+
*/
|
|
515
|
+
add(other: RecordableHistogram): void;
|
|
510
516
|
}
|
|
511
517
|
/**
|
|
512
518
|
* _This property is an extension by Node.js. It is not available in Web browsers._
|
package/package.json
CHANGED
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"constructs": "^10.0.5"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@aws-cdk/assert": "^2.
|
|
69
|
+
"@aws-cdk/assert": "^2.31.0",
|
|
70
70
|
"case": "^1.6.3",
|
|
71
71
|
"sync-request": "^6.1.0"
|
|
72
72
|
},
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
],
|
|
85
85
|
"main": "lib/index.js",
|
|
86
86
|
"license": "Apache-2.0",
|
|
87
|
-
"version": "2.0.
|
|
87
|
+
"version": "2.0.197",
|
|
88
88
|
"jest": {
|
|
89
89
|
"testMatch": [
|
|
90
90
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|