@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.
Files changed (173) hide show
  1. package/.jsii +12 -12
  2. package/cdkamibuilder/go.mod +1 -1
  3. package/cdkamibuilder/jsii/jsii.go +2 -2
  4. package/cdkamibuilder/version +1 -1
  5. package/lib/ImagePipeline/ImagePipeline.js +1 -1
  6. package/lib/Lambdas/CheckStateMachineStatus/CheckStateMachineStatus-function.js +1 -1
  7. package/lib/Lambdas/StartStateMachine/StartStateMachine-function.js +1 -1
  8. package/node_modules/@aws-sdk/client-ec2/dist-types/commands/BundleInstanceCommand.d.ts +4 -2
  9. package/node_modules/@aws-sdk/client-ec2/package.json +6 -6
  10. package/node_modules/@aws-sdk/client-ecs/README.md +91 -7
  11. package/node_modules/@aws-sdk/client-ecs/dist-cjs/index.js +530 -33
  12. package/node_modules/@aws-sdk/client-ecs/dist-cjs/models/errors.js +37 -11
  13. package/node_modules/@aws-sdk/client-ecs/dist-cjs/schemas/schemas_0.js +508 -100
  14. package/node_modules/@aws-sdk/client-ecs/dist-es/ECS.js +34 -0
  15. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/CreateDaemonCommand.js +16 -0
  16. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteDaemonCommand.js +16 -0
  17. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DeleteDaemonTaskDefinitionCommand.js +16 -0
  18. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonCommand.js +16 -0
  19. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonDeploymentsCommand.js +16 -0
  20. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonRevisionsCommand.js +16 -0
  21. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/DescribeDaemonTaskDefinitionCommand.js +16 -0
  22. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListDaemonDeploymentsCommand.js +16 -0
  23. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListDaemonTaskDefinitionsCommand.js +16 -0
  24. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/ListDaemonsCommand.js +16 -0
  25. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/RegisterDaemonTaskDefinitionCommand.js +16 -0
  26. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/UpdateDaemonCommand.js +16 -0
  27. package/node_modules/@aws-sdk/client-ecs/dist-es/commands/index.js +12 -0
  28. package/node_modules/@aws-sdk/client-ecs/dist-es/index.js +1 -0
  29. package/node_modules/@aws-sdk/client-ecs/dist-es/models/enums.js +72 -33
  30. package/node_modules/@aws-sdk/client-ecs/dist-es/models/errors.js +32 -8
  31. package/node_modules/@aws-sdk/client-ecs/dist-es/models/models_1.js +1 -0
  32. package/node_modules/@aws-sdk/client-ecs/dist-es/schemas/schemas_0.js +500 -93
  33. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/index.js +5 -0
  34. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonActive.js +40 -0
  35. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonDeploymentStopped.js +54 -0
  36. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonDeploymentSuccessful.js +99 -0
  37. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonTaskDefinitionActive.js +49 -0
  38. package/node_modules/@aws-sdk/client-ecs/dist-es/waiters/waitForDaemonTaskDefinitionDeleted.js +31 -0
  39. package/node_modules/@aws-sdk/client-ecs/dist-types/ECS.d.ts +116 -0
  40. package/node_modules/@aws-sdk/client-ecs/dist-types/ECSClient.d.ts +14 -2
  41. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateDaemonCommand.d.ts +150 -0
  42. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/CreateTaskSetCommand.d.ts +1 -1
  43. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteDaemonCommand.d.ts +121 -0
  44. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteDaemonTaskDefinitionCommand.d.ts +101 -0
  45. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskDefinitionsCommand.d.ts +1 -0
  46. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeleteTaskSetCommand.d.ts +1 -1
  47. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterContainerInstanceCommand.d.ts +1 -1
  48. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DeregisterTaskDefinitionCommand.d.ts +1 -0
  49. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeContainerInstancesCommand.d.ts +1 -1
  50. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonCommand.d.ts +148 -0
  51. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonDeploymentsCommand.d.ts +229 -0
  52. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonRevisionsCommand.d.ts +155 -0
  53. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeDaemonTaskDefinitionCommand.d.ts +286 -0
  54. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskDefinitionCommand.d.ts +1 -0
  55. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTaskSetsCommand.d.ts +1 -1
  56. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/DescribeTasksCommand.d.ts +1 -1
  57. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/GetTaskProtectionCommand.d.ts +1 -1
  58. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListDaemonDeploymentsCommand.d.ts +145 -0
  59. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListDaemonTaskDefinitionsCommand.d.ts +129 -0
  60. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListDaemonsCommand.d.ts +133 -0
  61. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTaskDefinitionsCommand.d.ts +2 -1
  62. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/ListTasksCommand.d.ts +1 -0
  63. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterContainerInstanceCommand.d.ts +1 -1
  64. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterDaemonTaskDefinitionCommand.d.ts +277 -0
  65. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RegisterTaskDefinitionCommand.d.ts +2 -1
  66. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/RunTaskCommand.d.ts +1 -1
  67. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StartTaskCommand.d.ts +1 -1
  68. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/StopTaskCommand.d.ts +1 -1
  69. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  70. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerAgentCommand.d.ts +1 -1
  71. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateContainerInstancesStateCommand.d.ts +1 -1
  72. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateDaemonCommand.d.ts +149 -0
  73. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskProtectionCommand.d.ts +1 -1
  74. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/UpdateTaskSetCommand.d.ts +1 -1
  75. package/node_modules/@aws-sdk/client-ecs/dist-types/commands/index.d.ts +12 -0
  76. package/node_modules/@aws-sdk/client-ecs/dist-types/index.d.ts +1 -0
  77. package/node_modules/@aws-sdk/client-ecs/dist-types/models/enums.d.ts +155 -60
  78. package/node_modules/@aws-sdk/client-ecs/dist-types/models/errors.d.ts +32 -8
  79. package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_0.d.ts +2630 -2613
  80. package/node_modules/@aws-sdk/client-ecs/dist-types/models/models_1.d.ts +1245 -0
  81. package/node_modules/@aws-sdk/client-ecs/dist-types/schemas/schemas_0.d.ts +58 -0
  82. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECS.d.ts +251 -0
  83. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/ECSClient.d.ts +72 -0
  84. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateDaemonCommand.d.ts +47 -0
  85. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/CreateTaskSetCommand.d.ts +1 -1
  86. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteDaemonCommand.d.ts +47 -0
  87. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteDaemonTaskDefinitionCommand.d.ts +51 -0
  88. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DeleteTaskSetCommand.d.ts +1 -1
  89. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonCommand.d.ts +50 -0
  90. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonDeploymentsCommand.d.ts +51 -0
  91. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonRevisionsCommand.d.ts +51 -0
  92. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeDaemonTaskDefinitionCommand.d.ts +51 -0
  93. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeTaskSetsCommand.d.ts +1 -1
  94. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/DescribeTasksCommand.d.ts +1 -1
  95. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/GetTaskProtectionCommand.d.ts +1 -1
  96. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListDaemonDeploymentsCommand.d.ts +51 -0
  97. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListDaemonTaskDefinitionsCommand.d.ts +51 -0
  98. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListDaemonsCommand.d.ts +47 -0
  99. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/ListTaskDefinitionsCommand.d.ts +2 -4
  100. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RegisterDaemonTaskDefinitionCommand.d.ts +51 -0
  101. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RegisterTaskDefinitionCommand.d.ts +1 -1
  102. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/RunTaskCommand.d.ts +1 -1
  103. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/StartTaskCommand.d.ts +1 -1
  104. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/StopTaskCommand.d.ts +1 -1
  105. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  106. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateDaemonCommand.d.ts +47 -0
  107. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskProtectionCommand.d.ts +1 -1
  108. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/UpdateTaskSetCommand.d.ts +1 -1
  109. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/commands/index.d.ts +12 -0
  110. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/index.d.ts +1 -0
  111. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/enums.d.ts +92 -40
  112. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/errors.d.ts +21 -7
  113. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_0.d.ts +338 -324
  114. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/models/models_1.d.ts +322 -0
  115. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
  116. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/index.d.ts +5 -0
  117. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonActive.d.ts +11 -0
  118. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonDeploymentStopped.d.ts +11 -0
  119. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonDeploymentSuccessful.d.ts +11 -0
  120. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionActive.d.ts +11 -0
  121. package/node_modules/@aws-sdk/client-ecs/dist-types/ts3.4/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +11 -0
  122. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/index.d.ts +5 -0
  123. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonActive.d.ts +14 -0
  124. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonDeploymentStopped.d.ts +14 -0
  125. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonDeploymentSuccessful.d.ts +14 -0
  126. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonTaskDefinitionActive.d.ts +14 -0
  127. package/node_modules/@aws-sdk/client-ecs/dist-types/waiters/waitForDaemonTaskDefinitionDeleted.d.ts +14 -0
  128. package/node_modules/@aws-sdk/client-ecs/package.json +6 -6
  129. package/node_modules/@aws-sdk/client-kms/package.json +6 -6
  130. package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +1 -0
  131. package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +1 -0
  132. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +4 -0
  133. package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +39 -8
  134. package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +39 -8
  135. package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +39 -8
  136. package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +39 -8
  137. package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +51 -0
  138. package/node_modules/@aws-sdk/client-s3/package.json +7 -7
  139. package/node_modules/@aws-sdk/client-secrets-manager/package.json +6 -6
  140. package/node_modules/@aws-sdk/client-sfn/package.json +6 -6
  141. package/node_modules/@aws-sdk/client-sns/package.json +6 -6
  142. package/node_modules/@aws-sdk/client-sqs/package.json +6 -6
  143. package/node_modules/@aws-sdk/client-ssm/package.json +6 -6
  144. package/node_modules/@aws-sdk/credential-provider-ini/package.json +5 -5
  145. package/node_modules/@aws-sdk/credential-provider-login/package.json +2 -2
  146. package/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
  147. package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
  148. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
  149. package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
  150. package/node_modules/@aws-sdk/nested-clients/package.json +5 -5
  151. package/node_modules/@aws-sdk/token-providers/package.json +2 -2
  152. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  153. package/node_modules/@smithy/middleware-retry/package.json +2 -2
  154. package/node_modules/@smithy/util-retry/dist-cjs/index.js +9 -7
  155. package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +9 -7
  156. package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +71 -1
  157. package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +71 -1
  158. package/node_modules/@smithy/util-retry/package.json +1 -1
  159. package/node_modules/lodash/README.md +2 -2
  160. package/node_modules/lodash/_baseOrderBy.js +1 -1
  161. package/node_modules/lodash/_baseUnset.js +7 -20
  162. package/node_modules/lodash/_setCacheHas.js +1 -1
  163. package/node_modules/lodash/compact.js +1 -1
  164. package/node_modules/lodash/core.js +3 -3
  165. package/node_modules/lodash/core.min.js +26 -25
  166. package/node_modules/lodash/fromPairs.js +3 -1
  167. package/node_modules/lodash/lodash.js +38 -27
  168. package/node_modules/lodash/lodash.min.js +125 -129
  169. package/node_modules/lodash/package.json +4 -2
  170. package/node_modules/lodash/random.js +9 -0
  171. package/node_modules/lodash/template.js +16 -4
  172. package/node_modules/lodash/templateSettings.js +4 -0
  173. package/package.json +12 -12
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lodash",
3
- "version": "4.17.23",
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": { "test": "echo \"See https://travis-ci.org/lodash-archive/lodash-cli for testing details.\"" }
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 assignInWith = require('./assignInWith'),
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 = assignInWith({}, options, settings, customDefaultsAssignIn);
171
+ options = assignWith({}, options, settings, customDefaultsAssignIn);
166
172
 
167
- var imports = assignInWith({}, options.imports, settings.imports, customDefaultsAssignIn),
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.6",
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.1020.0",
82
- "@aws-sdk/client-ecs": "^3.1020.0",
83
- "@aws-sdk/client-kms": "^3.1020.0",
84
- "@aws-sdk/client-s3": "^3.1020.0",
85
- "@aws-sdk/client-secrets-manager": "^3.1020.0",
86
- "@aws-sdk/client-sfn": "^3.1020.0",
87
- "@aws-sdk/client-sns": "^3.1020.0",
88
- "@aws-sdk/client-sqs": "^3.1020.0",
89
- "@aws-sdk/client-ssm": "^3.1020.0",
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.17.23",
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.189",
139
+ "version": "0.0.190",
140
140
  "jest": {
141
141
  "coverageProvider": "v8",
142
142
  "testMatch": [