cdk-comprehend-s3olap 2.0.50 → 2.0.53

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 (29) hide show
  1. package/.jsii +5 -5
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +10 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/es-2015-01-01.min.json +3 -0
  8. package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.min.json +22 -2
  9. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +3 -0
  10. package/node_modules/aws-sdk/apis/shield-2016-06-02.min.json +40 -0
  11. package/node_modules/aws-sdk/clients/ec2.d.ts +79 -79
  12. package/node_modules/aws-sdk/clients/es.d.ts +7 -3
  13. package/node_modules/aws-sdk/clients/fsx.d.ts +4 -4
  14. package/node_modules/aws-sdk/clients/lookoutvision.d.ts +39 -7
  15. package/node_modules/aws-sdk/clients/opensearch.d.ts +7 -3
  16. package/node_modules/aws-sdk/clients/shield.d.ts +75 -23
  17. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  18. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
  19. package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
  20. package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
  21. package/node_modules/aws-sdk/lib/core.js +1 -1
  22. package/node_modules/aws-sdk/package.json +1 -1
  23. package/node_modules/esbuild/install.js +4 -4
  24. package/node_modules/esbuild/lib/main.d.ts +5 -1
  25. package/node_modules/esbuild/lib/main.js +13 -7
  26. package/node_modules/esbuild/package.json +21 -21
  27. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  28. package/node_modules/esbuild-linux-64/package.json +1 -1
  29. package/package.json +10 -10
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1183.0',
23
+ VERSION: '2.1185.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1183.0",
4
+ "version": "2.1185.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -88,8 +88,8 @@ function validateBinaryVersion(...command) {
88
88
  const stdout = child_process.execFileSync(command.shift(), command, {
89
89
  stdio: "pipe"
90
90
  }).toString().trim();
91
- if (stdout !== "0.14.50") {
92
- throw new Error(`Expected ${JSON.stringify("0.14.50")} but got ${JSON.stringify(stdout)}`);
91
+ if (stdout !== "0.14.51") {
92
+ throw new Error(`Expected ${JSON.stringify("0.14.51")} but got ${JSON.stringify(stdout)}`);
93
93
  }
94
94
  }
95
95
  function isYarn() {
@@ -141,7 +141,7 @@ function installUsingNPM(pkg, subpath, binPath) {
141
141
  try {
142
142
  fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
143
143
  child_process.execSync(
144
- `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.50"}`,
144
+ `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.51"}`,
145
145
  { cwd: installDir, stdio: "pipe", env }
146
146
  );
147
147
  const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
@@ -192,7 +192,7 @@ function maybeOptimizePackage(binPath) {
192
192
  }
193
193
  }
194
194
  async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
195
- const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.50"}.tgz`;
195
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.51"}.tgz`;
196
196
  console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
197
197
  try {
198
198
  fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
@@ -52,11 +52,15 @@ interface CommonOptions {
52
52
  ignoreAnnotations?: boolean;
53
53
 
54
54
  /** Documentation: https://esbuild.github.io/api/#jsx */
55
- jsx?: 'transform' | 'preserve';
55
+ jsx?: 'transform' | 'preserve' | 'automatic';
56
56
  /** Documentation: https://esbuild.github.io/api/#jsx-factory */
57
57
  jsxFactory?: string;
58
58
  /** Documentation: https://esbuild.github.io/api/#jsx-fragment */
59
59
  jsxFragment?: string;
60
+ /** Documentation: https://esbuild.github.io/api/#jsx-import-source */
61
+ jsxImportSource?: string;
62
+ /** Documentation: https://esbuild.github.io/api/#jsx-development */
63
+ jsxDev?: boolean;
60
64
 
61
65
  /** Documentation: https://esbuild.github.io/api/#define */
62
66
  define?: { [key: string]: string };
@@ -304,6 +304,8 @@ function pushCommonFlags(flags, options, keys) {
304
304
  let jsx = getFlag(options, keys, "jsx", mustBeString);
305
305
  let jsxFactory = getFlag(options, keys, "jsxFactory", mustBeString);
306
306
  let jsxFragment = getFlag(options, keys, "jsxFragment", mustBeString);
307
+ let jsxImportSource = getFlag(options, keys, "jsxImportSource", mustBeString);
308
+ let jsxDev = getFlag(options, keys, "jsxDev", mustBeBoolean);
307
309
  let define = getFlag(options, keys, "define", mustBeObject);
308
310
  let logOverride = getFlag(options, keys, "logOverride", mustBeObject);
309
311
  let supported = getFlag(options, keys, "supported", mustBeObject);
@@ -357,6 +359,10 @@ function pushCommonFlags(flags, options, keys) {
357
359
  flags.push(`--jsx-factory=${jsxFactory}`);
358
360
  if (jsxFragment)
359
361
  flags.push(`--jsx-fragment=${jsxFragment}`);
362
+ if (jsxImportSource)
363
+ flags.push(`--jsx-import-source=${jsxImportSource}`);
364
+ if (jsxDev)
365
+ flags.push(`--jsx-dev`);
360
366
  if (define) {
361
367
  for (let key in define) {
362
368
  if (key.indexOf("=") >= 0)
@@ -749,8 +755,8 @@ function createChannel(streamIn) {
749
755
  if (isFirstPacket) {
750
756
  isFirstPacket = false;
751
757
  let binaryVersion = String.fromCharCode(...bytes);
752
- if (binaryVersion !== "0.14.50") {
753
- throw new Error(`Cannot start service: Host version "${"0.14.50"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
758
+ if (binaryVersion !== "0.14.51") {
759
+ throw new Error(`Cannot start service: Host version "${"0.14.51"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
754
760
  }
755
761
  return;
756
762
  }
@@ -1873,7 +1879,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
1873
1879
  }
1874
1880
  }
1875
1881
  var _a;
1876
- var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.50";
1882
+ var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.51";
1877
1883
  var esbuildCommandAndArgs = () => {
1878
1884
  if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
1879
1885
  throw new Error(
@@ -1939,7 +1945,7 @@ var fsAsync = {
1939
1945
  }
1940
1946
  }
1941
1947
  };
1942
- var version = "0.14.50";
1948
+ var version = "0.14.51";
1943
1949
  var build = (options) => ensureServiceIsRunning().build(options);
1944
1950
  var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
1945
1951
  var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
@@ -2050,7 +2056,7 @@ var ensureServiceIsRunning = () => {
2050
2056
  if (longLivedService)
2051
2057
  return longLivedService;
2052
2058
  let [command, args] = esbuildCommandAndArgs();
2053
- let child = child_process.spawn(command, args.concat(`--service=${"0.14.50"}`, "--ping"), {
2059
+ let child = child_process.spawn(command, args.concat(`--service=${"0.14.51"}`, "--ping"), {
2054
2060
  windowsHide: true,
2055
2061
  stdio: ["pipe", "pipe", "inherit"],
2056
2062
  cwd: defaultWD
@@ -2164,7 +2170,7 @@ var runServiceSync = (callback) => {
2164
2170
  esbuild: node_exports
2165
2171
  });
2166
2172
  callback(service);
2167
- let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.50"}`), {
2173
+ let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.51"}`), {
2168
2174
  cwd: defaultWD,
2169
2175
  windowsHide: true,
2170
2176
  input: stdin,
@@ -2180,7 +2186,7 @@ var workerThreadService = null;
2180
2186
  var startWorkerThreadService = (worker_threads2) => {
2181
2187
  let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
2182
2188
  let worker = new worker_threads2.Worker(__filename, {
2183
- workerData: { workerPort, defaultWD, esbuildVersion: "0.14.50" },
2189
+ workerData: { workerPort, defaultWD, esbuildVersion: "0.14.51" },
2184
2190
  transferList: [workerPort],
2185
2191
  execArgv: []
2186
2192
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild",
3
- "version": "0.14.50",
3
+ "version": "0.14.51",
4
4
  "description": "An extremely fast JavaScript and CSS bundler and minifier.",
5
5
  "repository": "https://github.com/evanw/esbuild",
6
6
  "scripts": {
@@ -15,26 +15,26 @@
15
15
  "esbuild": "bin/esbuild"
16
16
  },
17
17
  "optionalDependencies": {
18
- "esbuild-android-64": "0.14.50",
19
- "esbuild-android-arm64": "0.14.50",
20
- "esbuild-darwin-64": "0.14.50",
21
- "esbuild-darwin-arm64": "0.14.50",
22
- "esbuild-freebsd-64": "0.14.50",
23
- "esbuild-freebsd-arm64": "0.14.50",
24
- "esbuild-linux-32": "0.14.50",
25
- "esbuild-linux-64": "0.14.50",
26
- "esbuild-linux-arm": "0.14.50",
27
- "esbuild-linux-arm64": "0.14.50",
28
- "esbuild-linux-mips64le": "0.14.50",
29
- "esbuild-linux-ppc64le": "0.14.50",
30
- "esbuild-linux-riscv64": "0.14.50",
31
- "esbuild-linux-s390x": "0.14.50",
32
- "esbuild-netbsd-64": "0.14.50",
33
- "esbuild-openbsd-64": "0.14.50",
34
- "esbuild-sunos-64": "0.14.50",
35
- "esbuild-windows-32": "0.14.50",
36
- "esbuild-windows-64": "0.14.50",
37
- "esbuild-windows-arm64": "0.14.50"
18
+ "esbuild-android-64": "0.14.51",
19
+ "esbuild-android-arm64": "0.14.51",
20
+ "esbuild-darwin-64": "0.14.51",
21
+ "esbuild-darwin-arm64": "0.14.51",
22
+ "esbuild-freebsd-64": "0.14.51",
23
+ "esbuild-freebsd-arm64": "0.14.51",
24
+ "esbuild-linux-32": "0.14.51",
25
+ "esbuild-linux-64": "0.14.51",
26
+ "esbuild-linux-arm": "0.14.51",
27
+ "esbuild-linux-arm64": "0.14.51",
28
+ "esbuild-linux-mips64le": "0.14.51",
29
+ "esbuild-linux-ppc64le": "0.14.51",
30
+ "esbuild-linux-riscv64": "0.14.51",
31
+ "esbuild-linux-s390x": "0.14.51",
32
+ "esbuild-netbsd-64": "0.14.51",
33
+ "esbuild-openbsd-64": "0.14.51",
34
+ "esbuild-sunos-64": "0.14.51",
35
+ "esbuild-windows-32": "0.14.51",
36
+ "esbuild-windows-64": "0.14.51",
37
+ "esbuild-windows-arm64": "0.14.51"
38
38
  },
39
39
  "license": "MIT"
40
40
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild-linux-64",
3
- "version": "0.14.50",
3
+ "version": "0.14.51",
4
4
  "description": "The Linux 64-bit binary for esbuild, a JavaScript bundler.",
5
5
  "repository": "https://github.com/evanw/esbuild",
6
6
  "license": "MIT",
package/package.json CHANGED
@@ -44,22 +44,22 @@
44
44
  "@types/node": "^14",
45
45
  "@typescript-eslint/eslint-plugin": "^5",
46
46
  "@typescript-eslint/parser": "^5",
47
- "aws-cdk-lib": "^2.33.0",
47
+ "aws-cdk-lib": "^2.34.2",
48
48
  "constructs": "^10.0.5",
49
- "esbuild": "^0.14.50",
49
+ "esbuild": "^0.14.51",
50
50
  "eslint": "^8",
51
51
  "eslint-import-resolver-node": "^0.3.6",
52
52
  "eslint-import-resolver-typescript": "^2.7.1",
53
53
  "eslint-plugin-import": "^2.26.0",
54
54
  "jest": "^27",
55
55
  "jest-junit": "^13",
56
- "jsii": "^1.63.1",
57
- "jsii-diff": "^1.63.1",
56
+ "jsii": "^1.63.2",
57
+ "jsii-diff": "^1.63.2",
58
58
  "jsii-docgen": "^1.8.110",
59
- "jsii-pacmak": "^1.63.1",
59
+ "jsii-pacmak": "^1.63.2",
60
60
  "json-schema": "^0.4.0",
61
61
  "npm-check-updates": "^15",
62
- "projen": "^0.60.5",
62
+ "projen": "^0.60.9",
63
63
  "standard-version": "^9",
64
64
  "ts-jest": "^27",
65
65
  "typescript": "^4.7.4"
@@ -69,10 +69,10 @@
69
69
  "constructs": "^10.0.5"
70
70
  },
71
71
  "dependencies": {
72
- "aws-cdk-lib": "^2.33.0",
73
- "aws-sdk": "^2.1183.0",
72
+ "aws-cdk-lib": "^2.34.2",
73
+ "aws-sdk": "^2.1185.0",
74
74
  "constructs": "^10.0.5",
75
- "esbuild": "^0.14.50"
75
+ "esbuild": "^0.14.51"
76
76
  },
77
77
  "bundledDependencies": [
78
78
  "aws-sdk",
@@ -92,7 +92,7 @@
92
92
  ],
93
93
  "main": "lib/index.js",
94
94
  "license": "Apache-2.0",
95
- "version": "2.0.50",
95
+ "version": "2.0.53",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",