@aws-cdk/integ-runner 2.192.2 → 2.193.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/THIRD_PARTY_LICENSES +514 -129
- package/lib/index.js +2 -2
- package/lib/recommended-feature-flags.json +3 -1
- package/lib/runner/runner-base.d.ts +2 -0
- package/lib/workers/extract/index.js +134473 -197389
- package/package.json +14 -14
package/lib/index.js
CHANGED
|
@@ -3158,8 +3158,8 @@ var require_graceful_fs = __commonJS({
|
|
|
3158
3158
|
var gracefulQueue;
|
|
3159
3159
|
var previousSymbol;
|
|
3160
3160
|
if (typeof Symbol === "function" && typeof Symbol.for === "function") {
|
|
3161
|
-
gracefulQueue = Symbol.for("graceful-fs.queue");
|
|
3162
|
-
previousSymbol = Symbol.for("graceful-fs.previous");
|
|
3161
|
+
gracefulQueue = /* @__PURE__ */ Symbol.for("graceful-fs.queue");
|
|
3162
|
+
previousSymbol = /* @__PURE__ */ Symbol.for("graceful-fs.previous");
|
|
3163
3163
|
} else {
|
|
3164
3164
|
gracefulQueue = "___graceful-fs.queue";
|
|
3165
3165
|
previousSymbol = "___graceful-fs.previous";
|
|
@@ -78,5 +78,7 @@
|
|
|
78
78
|
"@aws-cdk/s3-notifications:addS3TrustKeyPolicyForSnsSubscriptions": true,
|
|
79
79
|
"@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway": true,
|
|
80
80
|
"@aws-cdk/aws-s3:publicAccessBlockedByDefault": true,
|
|
81
|
-
"@aws-cdk/aws-lambda:useCdkManagedLogGroup": true
|
|
81
|
+
"@aws-cdk/aws-lambda:useCdkManagedLogGroup": true,
|
|
82
|
+
"@aws-cdk/aws-elasticloadbalancingv2:networkLoadBalancerWithSecurityGroupByDefault": true,
|
|
83
|
+
"@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId": true
|
|
82
84
|
}
|
|
@@ -307,4 +307,6 @@ export declare function currentlyRecommendedAwsCdkLibFlags(): {
|
|
|
307
307
|
"@aws-cdk/aws-ec2:requirePrivateSubnetsForEgressOnlyInternetGateway": boolean;
|
|
308
308
|
"@aws-cdk/aws-s3:publicAccessBlockedByDefault": boolean;
|
|
309
309
|
"@aws-cdk/aws-lambda:useCdkManagedLogGroup": boolean;
|
|
310
|
+
"@aws-cdk/aws-elasticloadbalancingv2:networkLoadBalancerWithSecurityGroupByDefault": boolean;
|
|
311
|
+
"@aws-cdk/aws-ecs-patterns:uniqueTargetGroupId": boolean;
|
|
310
312
|
};
|