@jjrawlins/cdk-ami-builder 0.0.189 → 0.0.190
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 +12 -12
- package/cdkamibuilder/go.mod +1 -1
- package/cdkamibuilder/jsii/jsii.go +2 -2
- package/cdkamibuilder/version +1 -1
- package/lib/ImagePipeline/ImagePipeline.js +1 -1
- package/lib/Lambdas/CheckStateMachineStatus/CheckStateMachineStatus-function.js +1 -1
- package/lib/Lambdas/StartStateMachine/StartStateMachine-function.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/BundleInstanceCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/package.json +6 -6
- package/node_modules/@aws-sdk/client-ecs/README.md +91 -7
- package/node_modules/@aws-sdk/client-ecs/dist-cjs/index.js +530 -33
- package/node_modules/@aws-sdk/client-ecs/dist-cjs/models/errors.js +37 -11
- package/node_modules/@aws-sdk/client-ecs/dist-cjs/schemas/schemas_0.js +508 -100
- package/node_modules/@aws-sdk/client-ecs/dist-es/ECS.js +34 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/CreateDaemonCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteDaemonCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteDaemonTaskDefinitionCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonDeploymentsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonRevisionsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonTaskDefinitionCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListDaemonDeploymentsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListDaemonTaskDefinitionsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListDaemonsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/RegisterDaemonTaskDefinitionCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateDaemonCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/commands/index.js +12 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/models/enums.js +72 -33
- package/node_modules/@aws-sdk/client-ecs/dist-es/models/errors.js +32 -8
- package/node_modules/@aws-sdk/client-ecs/dist-es/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/schemas/schemas_0.js +500 -93
- package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/index.js +5 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonActive.js +40 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonDeploymentStopped.js +54 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonDeploymentSuccessful.js +99 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonTaskDefinitionActive.js +49 -0
- package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonTaskDefinitionDeleted.js +31 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ECS.d.ts +116 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ECSClient.d.ts +14 -2
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateDaemonCommand.d.ts +150 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateTaskSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteDaemonCommand.d.ts +121 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteDaemonTaskDefinitionCommand.d.ts +101 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeContainerInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonCommand.d.ts +148 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonDeploymentsCommand.d.ts +229 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonRevisionsCommand.d.ts +155 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonTaskDefinitionCommand.d.ts +286 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/GetTaskProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListDaemonDeploymentsCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListDaemonTaskDefinitionsCommand.d.ts +129 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListDaemonsCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTaskDefinitionsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTasksCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterDaemonTaskDefinitionCommand.d.ts +277 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RunTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StartTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StopTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerAgentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateDaemonCommand.d.ts +149 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/commands/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/models/enums.d.ts +155 -60
- package/node_modules/@aws-sdk/client-ecs/dist-types/models/errors.d.ts +32 -8
- package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_0.d.ts +2630 -2613
- package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_1.d.ts +1245 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/schemas/schemas_0.d.ts +58 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECS.d.ts +251 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECSClient.d.ts +72 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateDaemonCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateTaskSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteDaemonCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteDaemonTaskDefinitionCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteTaskSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonDeploymentsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonRevisionsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonTaskDefinitionCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeTaskSetsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/GetTaskProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListDaemonDeploymentsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListDaemonTaskDefinitionsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListDaemonsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListTaskDefinitionsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RegisterDaemonTaskDefinitionCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RunTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/StartTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/StopTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateDaemonCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/enums.d.ts +92 -40
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/errors.d.ts +21 -7
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_0.d.ts +338 -324
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_1.d.ts +322 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonActive.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonDeploymentStopped.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonDeploymentSuccessful.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionActive.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonActive.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonDeploymentStopped.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonDeploymentSuccessful.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonTaskDefinitionActive.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ecs/package.json +6 -6
- package/node_modules/@aws-sdk/client-kms/package.json +6 -6
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +39 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +39 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +39 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +39 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +51 -0
- package/node_modules/@aws-sdk/client-s3/package.json +7 -7
- package/node_modules/@aws-sdk/client-secrets-manager/package.json +6 -6
- package/node_modules/@aws-sdk/client-sfn/package.json +6 -6
- package/node_modules/@aws-sdk/client-sns/package.json +6 -6
- package/node_modules/@aws-sdk/client-sqs/package.json +6 -6
- package/node_modules/@aws-sdk/client-ssm/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-login/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
- package/node_modules/@aws-sdk/nested-clients/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/package.json +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/node_modules/@smithy/middleware-retry/package.json +2 -2
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +9 -7
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +9 -7
- package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +71 -1
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +71 -1
- package/node_modules/@smithy/util-retry/package.json +1 -1
- package/node_modules/lodash/README.md +2 -2
- package/node_modules/lodash/_baseOrderBy.js +1 -1
- package/node_modules/lodash/_baseUnset.js +7 -20
- package/node_modules/lodash/_setCacheHas.js +1 -1
- package/node_modules/lodash/compact.js +1 -1
- package/node_modules/lodash/core.js +3 -3
- package/node_modules/lodash/core.min.js +26 -25
- package/node_modules/lodash/fromPairs.js +3 -1
- package/node_modules/lodash/lodash.js +38 -27
- package/node_modules/lodash/lodash.min.js +125 -129
- package/node_modules/lodash/package.json +4 -2
- package/node_modules/lodash/random.js +9 -0
- package/node_modules/lodash/template.js +16 -4
- package/node_modules/lodash/templateSettings.js +4 -0
- package/package.json +12 -12
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lodash",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.18.1",
|
|
4
4
|
"description": "Lodash modular utilities.",
|
|
5
5
|
"keywords": "modules, stdlib, util",
|
|
6
6
|
"homepage": "https://lodash.com/",
|
|
@@ -13,5 +13,7 @@
|
|
|
13
13
|
"John-David Dalton <john.david.dalton@gmail.com>",
|
|
14
14
|
"Mathias Bynens <mathias@qiwi.be>"
|
|
15
15
|
],
|
|
16
|
-
"scripts": {
|
|
16
|
+
"scripts": {
|
|
17
|
+
"test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\""
|
|
18
|
+
}
|
|
17
19
|
}
|
|
@@ -18,6 +18,8 @@ var nativeMin = Math.min,
|
|
|
18
18
|
* **Note:** JavaScript follows the IEEE-754 standard for resolving
|
|
19
19
|
* floating-point values which can produce unexpected results.
|
|
20
20
|
*
|
|
21
|
+
* **Note:** If `lower` is greater than `upper`, the values are swapped.
|
|
22
|
+
*
|
|
21
23
|
* @static
|
|
22
24
|
* @memberOf _
|
|
23
25
|
* @since 0.7.0
|
|
@@ -31,9 +33,16 @@ var nativeMin = Math.min,
|
|
|
31
33
|
* _.random(0, 5);
|
|
32
34
|
* // => an integer between 0 and 5
|
|
33
35
|
*
|
|
36
|
+
* // when lower is greater than upper the values are swapped
|
|
37
|
+
* _.random(5, 0);
|
|
38
|
+
* // => an integer between 0 and 5
|
|
39
|
+
*
|
|
34
40
|
* _.random(5);
|
|
35
41
|
* // => also an integer between 0 and 5
|
|
36
42
|
*
|
|
43
|
+
* _.random(-5);
|
|
44
|
+
* // => an integer between -5 and 0
|
|
45
|
+
*
|
|
37
46
|
* _.random(5, true);
|
|
38
47
|
* // => a floating-point number between 0 and 5
|
|
39
48
|
*
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
var
|
|
1
|
+
var arrayEach = require('./_arrayEach'),
|
|
2
|
+
assignWith = require('./assignWith'),
|
|
2
3
|
attempt = require('./attempt'),
|
|
3
4
|
baseValues = require('./_baseValues'),
|
|
4
5
|
customDefaultsAssignIn = require('./_customDefaultsAssignIn'),
|
|
@@ -11,7 +12,8 @@ var assignInWith = require('./assignInWith'),
|
|
|
11
12
|
toString = require('./toString');
|
|
12
13
|
|
|
13
14
|
/** Error message constants. */
|
|
14
|
-
var INVALID_TEMPL_VAR_ERROR_TEXT = 'Invalid `variable` option passed into `_.template`'
|
|
15
|
+
var INVALID_TEMPL_VAR_ERROR_TEXT = 'Invalid `variable` option passed into `_.template`',
|
|
16
|
+
INVALID_TEMPL_IMPORTS_ERROR_TEXT = 'Invalid `imports` option passed into `_.template`';
|
|
15
17
|
|
|
16
18
|
/** Used to match empty string literals in compiled template source. */
|
|
17
19
|
var reEmptyStringLeading = /\b__p \+= '';/g,
|
|
@@ -55,6 +57,10 @@ var hasOwnProperty = objectProto.hasOwnProperty;
|
|
|
55
57
|
* properties may be accessed as free variables in the template. If a setting
|
|
56
58
|
* object is given, it takes precedence over `_.templateSettings` values.
|
|
57
59
|
*
|
|
60
|
+
* **Security:** `_.template` is insecure and should not be used. It will be
|
|
61
|
+
* removed in Lodash v5. Avoid untrusted input. See
|
|
62
|
+
* [threat model](https://github.com/lodash/lodash/blob/main/threat-model.md).
|
|
63
|
+
*
|
|
58
64
|
* **Note:** In the development build `_.template` utilizes
|
|
59
65
|
* [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)
|
|
60
66
|
* for easier debugging.
|
|
@@ -162,12 +168,18 @@ function template(string, options, guard) {
|
|
|
162
168
|
options = undefined;
|
|
163
169
|
}
|
|
164
170
|
string = toString(string);
|
|
165
|
-
options =
|
|
171
|
+
options = assignWith({}, options, settings, customDefaultsAssignIn);
|
|
166
172
|
|
|
167
|
-
var imports =
|
|
173
|
+
var imports = assignWith({}, options.imports, settings.imports, customDefaultsAssignIn),
|
|
168
174
|
importsKeys = keys(imports),
|
|
169
175
|
importsValues = baseValues(imports, importsKeys);
|
|
170
176
|
|
|
177
|
+
arrayEach(importsKeys, function(key) {
|
|
178
|
+
if (reForbiddenIdentifierChars.test(key)) {
|
|
179
|
+
throw new Error(INVALID_TEMPL_IMPORTS_ERROR_TEXT);
|
|
180
|
+
}
|
|
181
|
+
});
|
|
182
|
+
|
|
171
183
|
var isEscaping,
|
|
172
184
|
isEvaluating,
|
|
173
185
|
index = 0,
|
|
@@ -8,6 +8,10 @@ var escape = require('./escape'),
|
|
|
8
8
|
* embedded Ruby (ERB) as well as ES2015 template strings. Change the
|
|
9
9
|
* following template settings to use alternative delimiters.
|
|
10
10
|
*
|
|
11
|
+
* **Security:** See
|
|
12
|
+
* [threat model](https://github.com/lodash/lodash/blob/main/threat-model.md)
|
|
13
|
+
* — `_.template` is insecure and will be removed in v5.
|
|
14
|
+
*
|
|
11
15
|
* @static
|
|
12
16
|
* @memberOf _
|
|
13
17
|
* @type {Object}
|
package/package.json
CHANGED
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"jsii-pacmak": "^1.127.0",
|
|
70
70
|
"jsii-rosetta": "~5.8.0",
|
|
71
71
|
"projen": "^0.95.6",
|
|
72
|
-
"ts-jest": "^29.4.
|
|
72
|
+
"ts-jest": "^29.4.9",
|
|
73
73
|
"ts-node": "^10.9.2",
|
|
74
74
|
"typescript": "^5.9.3"
|
|
75
75
|
},
|
|
@@ -78,21 +78,21 @@
|
|
|
78
78
|
"constructs": ">=10.0.5 <11.0.0"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"@aws-sdk/client-ec2": "^3.
|
|
82
|
-
"@aws-sdk/client-ecs": "^3.
|
|
83
|
-
"@aws-sdk/client-kms": "^3.
|
|
84
|
-
"@aws-sdk/client-s3": "^3.
|
|
85
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
86
|
-
"@aws-sdk/client-sfn": "^3.
|
|
87
|
-
"@aws-sdk/client-sns": "^3.
|
|
88
|
-
"@aws-sdk/client-sqs": "^3.
|
|
89
|
-
"@aws-sdk/client-ssm": "^3.
|
|
81
|
+
"@aws-sdk/client-ec2": "^3.1022.0",
|
|
82
|
+
"@aws-sdk/client-ecs": "^3.1022.0",
|
|
83
|
+
"@aws-sdk/client-kms": "^3.1022.0",
|
|
84
|
+
"@aws-sdk/client-s3": "^3.1022.0",
|
|
85
|
+
"@aws-sdk/client-secrets-manager": "^3.1022.0",
|
|
86
|
+
"@aws-sdk/client-sfn": "^3.1022.0",
|
|
87
|
+
"@aws-sdk/client-sns": "^3.1022.0",
|
|
88
|
+
"@aws-sdk/client-sqs": "^3.1022.0",
|
|
89
|
+
"@aws-sdk/client-ssm": "^3.1022.0",
|
|
90
90
|
"@types/aws-lambda": "^8.10.161",
|
|
91
91
|
"@types/crypto-js": "^4.2.2",
|
|
92
92
|
"@types/js-yaml": "^4.0.9",
|
|
93
93
|
"crypto-js": "^4.2.0",
|
|
94
94
|
"js-yaml": "^4.1.1",
|
|
95
|
-
"lodash": "^4.
|
|
95
|
+
"lodash": "^4.18.1",
|
|
96
96
|
"lodash.merge": "^4.6.2"
|
|
97
97
|
},
|
|
98
98
|
"bundledDependencies": [
|
|
@@ -136,7 +136,7 @@
|
|
|
136
136
|
"publishConfig": {
|
|
137
137
|
"access": "public"
|
|
138
138
|
},
|
|
139
|
-
"version": "0.0.
|
|
139
|
+
"version": "0.0.190",
|
|
140
140
|
"jest": {
|
|
141
141
|
"coverageProvider": "v8",
|
|
142
142
|
"testMatch": [
|