aws-cdk 2.1133.0 → 2.1134.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/README.md +2 -0
- package/THIRD_PARTY_LICENSES +254 -22
- package/build-info.json +2 -2
- package/db.json.gz +0 -0
- package/lib/cli/cdk-toolkit.d.ts +20 -5
- package/lib/cli/cdk-toolkit.js +174 -119
- package/lib/cli/cli-config.js +8 -1
- package/lib/cli/cli-type-registry.json +4 -0
- package/lib/cli/cli.js +4 -2
- package/lib/cli/convert-to-user-input.js +3 -1
- package/lib/cli/display-version.d.ts +28 -2
- package/lib/cli/display-version.js +25 -15
- package/lib/cli/io-host/cli-io-host.d.ts +24 -13
- package/lib/cli/io-host/cli-io-host.js +15 -10
- package/lib/cli/parse-command-line-arguments.js +8 -2
- package/lib/cli/user-input.d.ts +6 -0
- package/lib/cli/user-input.js +1 -1
- package/lib/cli/util/npm.d.ts +23 -4
- package/lib/cli/util/npm.js +106 -29
- package/lib/commands/doctor.d.ts +10 -1
- package/lib/commands/doctor.js +3 -3
- package/lib/commands/lsp.js +4 -4
- package/lib/commands/migrate.js +3 -3
- package/lib/cxapp/cloud-executable.d.ts +8 -0
- package/lib/cxapp/cloud-executable.js +16 -1
- package/lib/index.js +17898 -9072
- package/lib/index_bg.wasm +0 -0
- package/lib/init-templates/.init-version.json +1 -1
- package/lib/private/explorer.d.ts +1 -0
- package/lib/private/explorer.js +8 -0
- package/lib/private/tools.d.ts +1 -0
- package/lib/private/tools.js +21 -0
- package/package.json +19 -16
package/README.md
CHANGED
|
@@ -1858,6 +1858,7 @@ in `build` will be executed by the "watch" process before deployment.
|
|
|
1858
1858
|
|
|
1859
1859
|
The following environment variables affect aws-cdk:
|
|
1860
1860
|
|
|
1861
|
+
- `COLUMNS`: When the CLI cannot detect the terminal width (for example, when output is piped or running in CI), this standard variable is used as the rendering width for `cdk diff` tables. If unset, tables render at their natural width.
|
|
1861
1862
|
- `CDK_DISABLE_VERSION_CHECK`: If set, disable automatic check for newer versions.
|
|
1862
1863
|
- `CDK_NEW_BOOTSTRAP`: use the modern bootstrapping stack.
|
|
1863
1864
|
- `CDK_ROLE_SESSION_NAME`: customize the session name used when the CLI assumes a role (for example `cdk-hnb659fds-deploy-role`). When unset, the CLI defaults to `aws-cdk-<username>`. Useful for attributing deployments in CloudTrail when running from a CI/CD pipeline.
|
|
@@ -1881,6 +1882,7 @@ When `--profile` is specified, the region configured in that profile is used (st
|
|
|
1881
1882
|
The CLI will attempt to detect whether it is being run in CI by looking for the presence of an
|
|
1882
1883
|
environment variable `CI=true`. This can be forced by passing the `--ci` flag. By default the CLI
|
|
1883
1884
|
sends most of its logs to `stderr`, but when `ci=true` it will send the logs to `stdout` instead.
|
|
1885
|
+
When terminal width cannot be detected, `cdk diff` tables render unbounded; set [`COLUMNS`](#environment) to constrain their width.
|
|
1884
1886
|
|
|
1885
1887
|
### Changing the default TypeScript transpiler
|
|
1886
1888
|
|
package/THIRD_PARTY_LICENSES
CHANGED
|
@@ -1028,6 +1028,212 @@ The aws-cdk package includes the following third-party software/licensing:
|
|
|
1028
1028
|
limitations under the License.
|
|
1029
1029
|
|
|
1030
1030
|
|
|
1031
|
+
----------------
|
|
1032
|
+
|
|
1033
|
+
** @aws-sdk/client-cloudtrail@3.1075.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudtrail/v/3.1075.0 | Apache-2.0
|
|
1034
|
+
Apache License
|
|
1035
|
+
Version 2.0, January 2004
|
|
1036
|
+
http://www.apache.org/licenses/
|
|
1037
|
+
|
|
1038
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
1039
|
+
|
|
1040
|
+
1. Definitions.
|
|
1041
|
+
|
|
1042
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
1043
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
1044
|
+
|
|
1045
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
1046
|
+
the copyright owner that is granting the License.
|
|
1047
|
+
|
|
1048
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
1049
|
+
other entities that control, are controlled by, or are under common
|
|
1050
|
+
control with that entity. For the purposes of this definition,
|
|
1051
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
1052
|
+
direction or management of such entity, whether by contract or
|
|
1053
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
1054
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
1055
|
+
|
|
1056
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
1057
|
+
exercising permissions granted by this License.
|
|
1058
|
+
|
|
1059
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
1060
|
+
including but not limited to software source code, documentation
|
|
1061
|
+
source, and configuration files.
|
|
1062
|
+
|
|
1063
|
+
"Object" form shall mean any form resulting from mechanical
|
|
1064
|
+
transformation or translation of a Source form, including but
|
|
1065
|
+
not limited to compiled object code, generated documentation,
|
|
1066
|
+
and conversions to other media types.
|
|
1067
|
+
|
|
1068
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
1069
|
+
Object form, made available under the License, as indicated by a
|
|
1070
|
+
copyright notice that is included in or attached to the work
|
|
1071
|
+
(an example is provided in the Appendix below).
|
|
1072
|
+
|
|
1073
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
1074
|
+
form, that is based on (or derived from) the Work and for which the
|
|
1075
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
1076
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
1077
|
+
of this License, Derivative Works shall not include works that remain
|
|
1078
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
1079
|
+
the Work and Derivative Works thereof.
|
|
1080
|
+
|
|
1081
|
+
"Contribution" shall mean any work of authorship, including
|
|
1082
|
+
the original version of the Work and any modifications or additions
|
|
1083
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
1084
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
1085
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
1086
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
1087
|
+
means any form of electronic, verbal, or written communication sent
|
|
1088
|
+
to the Licensor or its representatives, including but not limited to
|
|
1089
|
+
communication on electronic mailing lists, source code control systems,
|
|
1090
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
1091
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
1092
|
+
excluding communication that is conspicuously marked or otherwise
|
|
1093
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
1094
|
+
|
|
1095
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
1096
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
1097
|
+
subsequently incorporated within the Work.
|
|
1098
|
+
|
|
1099
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
1100
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1101
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1102
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
1103
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
1104
|
+
Work and such Derivative Works in Source or Object form.
|
|
1105
|
+
|
|
1106
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
1107
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1108
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1109
|
+
(except as stated in this section) patent license to make, have made,
|
|
1110
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
1111
|
+
where such license applies only to those patent claims licensable
|
|
1112
|
+
by such Contributor that are necessarily infringed by their
|
|
1113
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
1114
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
1115
|
+
institute patent litigation against any entity (including a
|
|
1116
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
1117
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
1118
|
+
or contributory patent infringement, then any patent licenses
|
|
1119
|
+
granted to You under this License for that Work shall terminate
|
|
1120
|
+
as of the date such litigation is filed.
|
|
1121
|
+
|
|
1122
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
1123
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
1124
|
+
modifications, and in Source or Object form, provided that You
|
|
1125
|
+
meet the following conditions:
|
|
1126
|
+
|
|
1127
|
+
(a) You must give any other recipients of the Work or
|
|
1128
|
+
Derivative Works a copy of this License; and
|
|
1129
|
+
|
|
1130
|
+
(b) You must cause any modified files to carry prominent notices
|
|
1131
|
+
stating that You changed the files; and
|
|
1132
|
+
|
|
1133
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
1134
|
+
that You distribute, all copyright, patent, trademark, and
|
|
1135
|
+
attribution notices from the Source form of the Work,
|
|
1136
|
+
excluding those notices that do not pertain to any part of
|
|
1137
|
+
the Derivative Works; and
|
|
1138
|
+
|
|
1139
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
1140
|
+
distribution, then any Derivative Works that You distribute must
|
|
1141
|
+
include a readable copy of the attribution notices contained
|
|
1142
|
+
within such NOTICE file, excluding those notices that do not
|
|
1143
|
+
pertain to any part of the Derivative Works, in at least one
|
|
1144
|
+
of the following places: within a NOTICE text file distributed
|
|
1145
|
+
as part of the Derivative Works; within the Source form or
|
|
1146
|
+
documentation, if provided along with the Derivative Works; or,
|
|
1147
|
+
within a display generated by the Derivative Works, if and
|
|
1148
|
+
wherever such third-party notices normally appear. The contents
|
|
1149
|
+
of the NOTICE file are for informational purposes only and
|
|
1150
|
+
do not modify the License. You may add Your own attribution
|
|
1151
|
+
notices within Derivative Works that You distribute, alongside
|
|
1152
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
1153
|
+
that such additional attribution notices cannot be construed
|
|
1154
|
+
as modifying the License.
|
|
1155
|
+
|
|
1156
|
+
You may add Your own copyright statement to Your modifications and
|
|
1157
|
+
may provide additional or different license terms and conditions
|
|
1158
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
1159
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
1160
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
1161
|
+
the conditions stated in this License.
|
|
1162
|
+
|
|
1163
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
1164
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
1165
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
1166
|
+
this License, without any additional terms or conditions.
|
|
1167
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
1168
|
+
the terms of any separate license agreement you may have executed
|
|
1169
|
+
with Licensor regarding such Contributions.
|
|
1170
|
+
|
|
1171
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
1172
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
1173
|
+
except as required for reasonable and customary use in describing the
|
|
1174
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
1175
|
+
|
|
1176
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
1177
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
1178
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
1179
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
1180
|
+
implied, including, without limitation, any warranties or conditions
|
|
1181
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
1182
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
1183
|
+
appropriateness of using or redistributing the Work and assume any
|
|
1184
|
+
risks associated with Your exercise of permissions under this License.
|
|
1185
|
+
|
|
1186
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
1187
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
1188
|
+
unless required by applicable law (such as deliberate and grossly
|
|
1189
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
1190
|
+
liable to You for damages, including any direct, indirect, special,
|
|
1191
|
+
incidental, or consequential damages of any character arising as a
|
|
1192
|
+
result of this License or out of the use or inability to use the
|
|
1193
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
1194
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
1195
|
+
other commercial damages or losses), even if such Contributor
|
|
1196
|
+
has been advised of the possibility of such damages.
|
|
1197
|
+
|
|
1198
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
1199
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
1200
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
1201
|
+
or other liability obligations and/or rights consistent with this
|
|
1202
|
+
License. However, in accepting such obligations, You may act only
|
|
1203
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
1204
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
1205
|
+
defend, and hold each Contributor harmless for any liability
|
|
1206
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
1207
|
+
of your accepting any such warranty or additional liability.
|
|
1208
|
+
|
|
1209
|
+
END OF TERMS AND CONDITIONS
|
|
1210
|
+
|
|
1211
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
1212
|
+
|
|
1213
|
+
To apply the Apache License to your work, attach the following
|
|
1214
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
1215
|
+
replaced with your own identifying information. (Don't include
|
|
1216
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
1217
|
+
comment syntax for the file format. We also recommend that a
|
|
1218
|
+
file or class name and description of purpose be included on the
|
|
1219
|
+
same "printed page" as the copyright notice for easier
|
|
1220
|
+
identification within third-party archives.
|
|
1221
|
+
|
|
1222
|
+
Copyright 2018-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
1223
|
+
|
|
1224
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1225
|
+
you may not use this file except in compliance with the License.
|
|
1226
|
+
You may obtain a copy of the License at
|
|
1227
|
+
|
|
1228
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1229
|
+
|
|
1230
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1231
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1232
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1233
|
+
See the License for the specific language governing permissions and
|
|
1234
|
+
limitations under the License.
|
|
1235
|
+
|
|
1236
|
+
|
|
1031
1237
|
----------------
|
|
1032
1238
|
|
|
1033
1239
|
** @aws-sdk/client-cloudwatch-logs@3.1078.0 - https://www.npmjs.com/package/@aws-sdk/client-cloudwatch-logs/v/3.1078.0 | Apache-2.0
|
|
@@ -4120,7 +4326,7 @@ The aws-cdk package includes the following third-party software/licensing:
|
|
|
4120
4326
|
|
|
4121
4327
|
----------------
|
|
4122
4328
|
|
|
4123
|
-
** @aws-sdk/core@3.
|
|
4329
|
+
** @aws-sdk/core@3.976.0 - https://www.npmjs.com/package/@aws-sdk/core/v/3.976.0 | Apache-2.0
|
|
4124
4330
|
Apache License
|
|
4125
4331
|
Version 2.0, January 2004
|
|
4126
4332
|
http://www.apache.org/licenses/
|
|
@@ -4325,7 +4531,7 @@ Apache License
|
|
|
4325
4531
|
|
|
4326
4532
|
----------------
|
|
4327
4533
|
|
|
4328
|
-
** @aws-sdk/credential-provider-cognito-identity@3.972.
|
|
4534
|
+
** @aws-sdk/credential-provider-cognito-identity@3.972.59 - https://www.npmjs.com/package/@aws-sdk/credential-provider-cognito-identity/v/3.972.59 | Apache-2.0
|
|
4329
4535
|
Apache License
|
|
4330
4536
|
Version 2.0, January 2004
|
|
4331
4537
|
http://www.apache.org/licenses/
|
|
@@ -4531,7 +4737,7 @@ Apache License
|
|
|
4531
4737
|
|
|
4532
4738
|
----------------
|
|
4533
4739
|
|
|
4534
|
-
** @aws-sdk/credential-provider-env@3.972.
|
|
4740
|
+
** @aws-sdk/credential-provider-env@3.972.60 - https://www.npmjs.com/package/@aws-sdk/credential-provider-env/v/3.972.60 | Apache-2.0
|
|
4535
4741
|
Apache License
|
|
4536
4742
|
Version 2.0, January 2004
|
|
4537
4743
|
http://www.apache.org/licenses/
|
|
@@ -4736,11 +4942,11 @@ Apache License
|
|
|
4736
4942
|
|
|
4737
4943
|
----------------
|
|
4738
4944
|
|
|
4739
|
-
** @aws-sdk/credential-provider-http@3.972.
|
|
4945
|
+
** @aws-sdk/credential-provider-http@3.972.62 - https://www.npmjs.com/package/@aws-sdk/credential-provider-http/v/3.972.62 | Apache-2.0
|
|
4740
4946
|
|
|
4741
4947
|
----------------
|
|
4742
4948
|
|
|
4743
|
-
** @aws-sdk/credential-provider-ini@3.
|
|
4949
|
+
** @aws-sdk/credential-provider-ini@3.973.5 - https://www.npmjs.com/package/@aws-sdk/credential-provider-ini/v/3.973.5 | Apache-2.0
|
|
4744
4950
|
Apache License
|
|
4745
4951
|
Version 2.0, January 2004
|
|
4746
4952
|
http://www.apache.org/licenses/
|
|
@@ -4945,11 +5151,11 @@ Apache License
|
|
|
4945
5151
|
|
|
4946
5152
|
----------------
|
|
4947
5153
|
|
|
4948
|
-
** @aws-sdk/credential-provider-login@3.972.
|
|
5154
|
+
** @aws-sdk/credential-provider-login@3.972.67 - https://www.npmjs.com/package/@aws-sdk/credential-provider-login/v/3.972.67 | Apache-2.0
|
|
4949
5155
|
|
|
4950
5156
|
----------------
|
|
4951
5157
|
|
|
4952
|
-
** @aws-sdk/credential-provider-node@3.972.
|
|
5158
|
+
** @aws-sdk/credential-provider-node@3.972.71 - https://www.npmjs.com/package/@aws-sdk/credential-provider-node/v/3.972.71 | Apache-2.0
|
|
4953
5159
|
Apache License
|
|
4954
5160
|
Version 2.0, January 2004
|
|
4955
5161
|
http://www.apache.org/licenses/
|
|
@@ -5154,7 +5360,7 @@ Apache License
|
|
|
5154
5360
|
|
|
5155
5361
|
----------------
|
|
5156
5362
|
|
|
5157
|
-
** @aws-sdk/credential-provider-process@3.972.
|
|
5363
|
+
** @aws-sdk/credential-provider-process@3.972.60 - https://www.npmjs.com/package/@aws-sdk/credential-provider-process/v/3.972.60 | Apache-2.0
|
|
5158
5364
|
Apache License
|
|
5159
5365
|
Version 2.0, January 2004
|
|
5160
5366
|
http://www.apache.org/licenses/
|
|
@@ -5359,7 +5565,7 @@ Apache License
|
|
|
5359
5565
|
|
|
5360
5566
|
----------------
|
|
5361
5567
|
|
|
5362
|
-
** @aws-sdk/credential-provider-sso@3.
|
|
5568
|
+
** @aws-sdk/credential-provider-sso@3.973.4 - https://www.npmjs.com/package/@aws-sdk/credential-provider-sso/v/3.973.4 | Apache-2.0
|
|
5363
5569
|
Apache License
|
|
5364
5570
|
Version 2.0, January 2004
|
|
5365
5571
|
http://www.apache.org/licenses/
|
|
@@ -5564,7 +5770,7 @@ Apache License
|
|
|
5564
5770
|
|
|
5565
5771
|
----------------
|
|
5566
5772
|
|
|
5567
|
-
** @aws-sdk/credential-provider-web-identity@3.972.
|
|
5773
|
+
** @aws-sdk/credential-provider-web-identity@3.972.66 - https://www.npmjs.com/package/@aws-sdk/credential-provider-web-identity/v/3.972.66 | Apache-2.0
|
|
5568
5774
|
Apache License
|
|
5569
5775
|
Version 2.0, January 2004
|
|
5570
5776
|
http://www.apache.org/licenses/
|
|
@@ -5769,7 +5975,7 @@ Apache License
|
|
|
5769
5975
|
|
|
5770
5976
|
----------------
|
|
5771
5977
|
|
|
5772
|
-
** @aws-sdk/credential-providers@3.
|
|
5978
|
+
** @aws-sdk/credential-providers@3.1094.0 - https://www.npmjs.com/package/@aws-sdk/credential-providers/v/3.1094.0 | Apache-2.0
|
|
5773
5979
|
Apache License
|
|
5774
5980
|
Version 2.0, January 2004
|
|
5775
5981
|
http://www.apache.org/licenses/
|
|
@@ -7001,11 +7207,11 @@ Apache License
|
|
|
7001
7207
|
|
|
7002
7208
|
----------------
|
|
7003
7209
|
|
|
7004
|
-
** @aws-sdk/nested-clients@3.997.
|
|
7210
|
+
** @aws-sdk/nested-clients@3.997.34 - https://www.npmjs.com/package/@aws-sdk/nested-clients/v/3.997.34 | Apache-2.0
|
|
7005
7211
|
|
|
7006
7212
|
----------------
|
|
7007
7213
|
|
|
7008
|
-
** @aws-sdk/signature-v4-multi-region@3.996.
|
|
7214
|
+
** @aws-sdk/signature-v4-multi-region@3.996.41 - https://www.npmjs.com/package/@aws-sdk/signature-v4-multi-region/v/3.996.41 | Apache-2.0
|
|
7009
7215
|
Apache License
|
|
7010
7216
|
Version 2.0, January 2004
|
|
7011
7217
|
http://www.apache.org/licenses/
|
|
@@ -7211,7 +7417,7 @@ Apache License
|
|
|
7211
7417
|
|
|
7212
7418
|
----------------
|
|
7213
7419
|
|
|
7214
|
-
** @aws-sdk/token-providers@3.
|
|
7420
|
+
** @aws-sdk/token-providers@3.1092.0 - https://www.npmjs.com/package/@aws-sdk/token-providers/v/3.1092.0 | Apache-2.0
|
|
7215
7421
|
Apache License
|
|
7216
7422
|
Version 2.0, January 2004
|
|
7217
7423
|
http://www.apache.org/licenses/
|
|
@@ -7416,7 +7622,7 @@ Apache License
|
|
|
7416
7622
|
|
|
7417
7623
|
----------------
|
|
7418
7624
|
|
|
7419
|
-
** @aws-sdk/xml-builder@3.972.
|
|
7625
|
+
** @aws-sdk/xml-builder@3.972.36 - https://www.npmjs.com/package/@aws-sdk/xml-builder/v/3.972.36 | Apache-2.0
|
|
7420
7626
|
Apache License
|
|
7421
7627
|
Version 2.0, January 2004
|
|
7422
7628
|
http://www.apache.org/licenses/
|
|
@@ -7621,7 +7827,7 @@ Apache License
|
|
|
7621
7827
|
|
|
7622
7828
|
----------------
|
|
7623
7829
|
|
|
7624
|
-
** @aws/lambda-invoke-store@0.
|
|
7830
|
+
** @aws/lambda-invoke-store@0.3.0 - https://www.npmjs.com/package/@aws/lambda-invoke-store/v/0.3.0 | Apache-2.0
|
|
7625
7831
|
|
|
7626
7832
|
Apache License
|
|
7627
7833
|
Version 2.0, January 2004
|
|
@@ -8155,7 +8361,7 @@ Apache License
|
|
|
8155
8361
|
|
|
8156
8362
|
----------------
|
|
8157
8363
|
|
|
8158
|
-
** @smithy/core@3.29.
|
|
8364
|
+
** @smithy/core@3.29.8 - https://www.npmjs.com/package/@smithy/core/v/3.29.8 | Apache-2.0
|
|
8159
8365
|
Apache License
|
|
8160
8366
|
Version 2.0, January 2004
|
|
8161
8367
|
http://www.apache.org/licenses/
|
|
@@ -8361,7 +8567,7 @@ Apache License
|
|
|
8361
8567
|
|
|
8362
8568
|
----------------
|
|
8363
8569
|
|
|
8364
|
-
** @smithy/credential-provider-imds@4.4.
|
|
8570
|
+
** @smithy/credential-provider-imds@4.4.13 - https://www.npmjs.com/package/@smithy/credential-provider-imds/v/4.4.13 | Apache-2.0
|
|
8365
8571
|
Apache License
|
|
8366
8572
|
Version 2.0, January 2004
|
|
8367
8573
|
http://www.apache.org/licenses/
|
|
@@ -8976,7 +9182,7 @@ Apache License
|
|
|
8976
9182
|
|
|
8977
9183
|
----------------
|
|
8978
9184
|
|
|
8979
|
-
** @smithy/node-http-handler@4.9.
|
|
9185
|
+
** @smithy/node-http-handler@4.9.10 - https://www.npmjs.com/package/@smithy/node-http-handler/v/4.9.10 | Apache-2.0
|
|
8980
9186
|
Apache License
|
|
8981
9187
|
Version 2.0, January 2004
|
|
8982
9188
|
http://www.apache.org/licenses/
|
|
@@ -9591,7 +9797,7 @@ Apache License
|
|
|
9591
9797
|
|
|
9592
9798
|
----------------
|
|
9593
9799
|
|
|
9594
|
-
** @smithy/signature-v4@5.6.
|
|
9800
|
+
** @smithy/signature-v4@5.6.9 - https://www.npmjs.com/package/@smithy/signature-v4/v/5.6.9 | Apache-2.0
|
|
9595
9801
|
Apache License
|
|
9596
9802
|
Version 2.0, January 2004
|
|
9597
9803
|
http://www.apache.org/licenses/
|
|
@@ -10002,7 +10208,7 @@ Apache License
|
|
|
10002
10208
|
|
|
10003
10209
|
----------------
|
|
10004
10210
|
|
|
10005
|
-
** @smithy/types@4.
|
|
10211
|
+
** @smithy/types@4.16.1 - https://www.npmjs.com/package/@smithy/types/v/4.16.1 | Apache-2.0
|
|
10006
10212
|
Apache License
|
|
10007
10213
|
Version 2.0, January 2004
|
|
10008
10214
|
http://www.apache.org/licenses/
|
|
@@ -10730,7 +10936,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
10730
10936
|
|
|
10731
10937
|
----------------
|
|
10732
10938
|
|
|
10733
|
-
** cdk-from-cfn@0.
|
|
10939
|
+
** cdk-from-cfn@0.317.0 - https://www.npmjs.com/package/cdk-from-cfn/v/0.317.0 | MIT OR Apache-2.0
|
|
10734
10940
|
|
|
10735
10941
|
----------------
|
|
10736
10942
|
|
|
@@ -11979,6 +12185,32 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
11979
12185
|
THE SOFTWARE.
|
|
11980
12186
|
|
|
11981
12187
|
|
|
12188
|
+
----------------
|
|
12189
|
+
|
|
12190
|
+
** picomatch@4.0.5 - https://www.npmjs.com/package/picomatch/v/4.0.5 | MIT
|
|
12191
|
+
The MIT License (MIT)
|
|
12192
|
+
|
|
12193
|
+
Copyright (c) 2017-present, Jon Schlinkert.
|
|
12194
|
+
|
|
12195
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12196
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12197
|
+
in the Software without restriction, including without limitation the rights
|
|
12198
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
12199
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12200
|
+
furnished to do so, subject to the following conditions:
|
|
12201
|
+
|
|
12202
|
+
The above copyright notice and this permission notice shall be included in
|
|
12203
|
+
all copies or substantial portions of the Software.
|
|
12204
|
+
|
|
12205
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
12206
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
12207
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
12208
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
12209
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
12210
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
12211
|
+
THE SOFTWARE.
|
|
12212
|
+
|
|
12213
|
+
|
|
11982
12214
|
----------------
|
|
11983
12215
|
|
|
11984
12216
|
** promptly@3.2.0 - https://www.npmjs.com/package/promptly/v/3.2.0 | MIT
|
package/build-info.json
CHANGED
package/db.json.gz
CHANGED
|
Binary file
|
package/lib/cli/cdk-toolkit.d.ts
CHANGED
|
@@ -114,7 +114,15 @@ export declare class CdkToolkit {
|
|
|
114
114
|
/**
|
|
115
115
|
* Validate synthesized templates against policy rules
|
|
116
116
|
*/
|
|
117
|
-
validate(options:
|
|
117
|
+
validate(options: CliValidateOptions): Promise<number | void>;
|
|
118
|
+
/**
|
|
119
|
+
* Continuously validate the project, re-synthesizing and re-validating on
|
|
120
|
+
* every file change. Never deploys.
|
|
121
|
+
*
|
|
122
|
+
* The files to observe are configured with the "watch" key of `cdk.json`,
|
|
123
|
+
* exactly like `cdk deploy --watch`.
|
|
124
|
+
*/
|
|
125
|
+
private validateWatch;
|
|
118
126
|
/**
|
|
119
127
|
* Diagnose errors
|
|
120
128
|
*/
|
|
@@ -175,10 +183,6 @@ export declare class CdkToolkit {
|
|
|
175
183
|
* Validate that if a user specified a stack name there exists at least 1 stack selected
|
|
176
184
|
*/
|
|
177
185
|
private validateStacksSelected;
|
|
178
|
-
/**
|
|
179
|
-
* Select a single stack by its name
|
|
180
|
-
*/
|
|
181
|
-
private selectSingleStackByName;
|
|
182
186
|
assembly(cacheCloudAssembly?: boolean): Promise<CloudAssembly>;
|
|
183
187
|
private patternsArrayForWatch;
|
|
184
188
|
private invokeDeployFromWatch;
|
|
@@ -307,6 +311,17 @@ interface CfnDeployOptions {
|
|
|
307
311
|
*/
|
|
308
312
|
readonly rollback?: boolean;
|
|
309
313
|
}
|
|
314
|
+
/**
|
|
315
|
+
* Options for the validate command
|
|
316
|
+
*/
|
|
317
|
+
export interface CliValidateOptions extends ValidateOptions {
|
|
318
|
+
/**
|
|
319
|
+
* Continuously observe the project files, and re-validate automatically when changes are detected
|
|
320
|
+
*
|
|
321
|
+
* @default false
|
|
322
|
+
*/
|
|
323
|
+
readonly watch?: boolean;
|
|
324
|
+
}
|
|
310
325
|
interface WatchOptions extends Omit<CfnDeployOptions, 'execute'> {
|
|
311
326
|
/**
|
|
312
327
|
* Only select the given stack
|