aws-cdk 1.164.0 → 1.167.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.
@@ -51,7 +51,10 @@ const {
51
51
  AsyncGeneratorFunction
52
52
  } = data;
53
53
 
54
- const localWeakMapGet = LocalWeakMap.prototype.get;
54
+ const {
55
+ get: localWeakMapGet,
56
+ set: localWeakMapSet
57
+ } = LocalWeakMap.prototype;
55
58
 
56
59
  function localUnexpected() {
57
60
  return new VMError('Should not happen');
@@ -282,8 +285,8 @@ if (typeof OriginalCallSite === 'function') {
282
285
  }
283
286
  return value(error, sst);
284
287
  };
285
- wrappedPrepareStackTrace.set(value, newWrapped);
286
- wrappedPrepareStackTrace.set(newWrapped, newWrapped);
288
+ localReflectApply(localWeakMapSet, wrappedPrepareStackTrace, [value, newWrapped]);
289
+ localReflectApply(localWeakMapSet, wrappedPrepareStackTrace, [newWrapped, newWrapped]);
287
290
  currentPrepareStackTrace = newWrapped;
288
291
  }
289
292
  })) throw localUnexpected();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-cdk",
3
3
  "description": "CDK Toolkit, the command line tool for CDK apps",
4
- "version": "1.164.0",
4
+ "version": "1.167.0",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
7
7
  "bin": {
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "license": "Apache-2.0",
59
59
  "devDependencies": {
60
- "@aws-cdk/core": "1.164.0",
60
+ "@aws-cdk/core": "1.167.0",
61
61
  "@octokit/rest": "^18.12.0",
62
62
  "@types/archiver": "^5.3.1",
63
63
  "@types/fs-extra": "^8.1.2",
@@ -67,35 +67,35 @@
67
67
  "@types/mockery": "^1.4.30",
68
68
  "@types/node": "^10.17.60",
69
69
  "@types/promptly": "^3.0.2",
70
- "@types/semver": "^7.3.9",
70
+ "@types/semver": "^7.3.10",
71
71
  "@types/sinon": "^9.0.11",
72
72
  "@types/table": "^6.0.0",
73
73
  "@types/uuid": "^8.3.4",
74
74
  "@types/wrap-ansi": "^3.0.0",
75
75
  "@types/yargs": "^15.0.14",
76
76
  "aws-sdk-mock": "5.6.0",
77
- "@aws-cdk/cdk-build-tools": "1.164.0",
77
+ "@aws-cdk/cdk-build-tools": "1.167.0",
78
78
  "constructs": "^3.3.69",
79
79
  "jest": "^27.5.1",
80
80
  "madge": "^5.0.1",
81
81
  "make-runnable": "^1.3.10",
82
82
  "mockery": "^2.1.0",
83
- "nock": "^13.2.6",
84
- "@aws-cdk/pkglint": "1.164.0",
83
+ "nock": "^13.2.9",
84
+ "@aws-cdk/pkglint": "1.167.0",
85
85
  "sinon": "^9.2.4",
86
86
  "ts-jest": "^27.1.5",
87
87
  "ts-mock-imports": "^1.3.8",
88
88
  "xml-js": "^1.6.11",
89
89
  "axios": "^0.27.2",
90
- "@aws-cdk/cloud-assembly-schema": "1.164.0",
91
- "@aws-cdk/cloudformation-diff": "1.164.0",
92
- "@aws-cdk/cx-api": "1.164.0",
93
- "@aws-cdk/region-info": "1.164.0",
94
- "@jsii/check-node": "1.60.0",
90
+ "@aws-cdk/cloud-assembly-schema": "1.167.0",
91
+ "@aws-cdk/cloudformation-diff": "1.167.0",
92
+ "@aws-cdk/cx-api": "1.167.0",
93
+ "@aws-cdk/region-info": "1.167.0",
94
+ "@jsii/check-node": "1.63.2",
95
95
  "archiver": "^5.3.1",
96
96
  "aws-sdk": "^2.1093.0",
97
97
  "camelcase": "^6.3.0",
98
- "cdk-assets": "1.164.0",
98
+ "cdk-assets": "1.167.0",
99
99
  "chokidar": "^3.5.3",
100
100
  "chalk": "^4",
101
101
  "decamelize": "^5.0.1",