cdk-comprehend-s3olap 2.0.31 → 2.0.34

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.
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1170.0',
23
+ VERSION: '2.1172.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.1170.0",
4
+ "version": "2.1172.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -85,8 +85,8 @@ function validateBinaryVersion(...command) {
85
85
  const stdout = child_process.execFileSync(command.shift(), command, {
86
86
  stdio: "pipe"
87
87
  }).toString().trim();
88
- if (stdout !== "0.14.48") {
89
- throw new Error(`Expected ${JSON.stringify("0.14.48")} but got ${JSON.stringify(stdout)}`);
88
+ if (stdout !== "0.14.49") {
89
+ throw new Error(`Expected ${JSON.stringify("0.14.49")} but got ${JSON.stringify(stdout)}`);
90
90
  }
91
91
  }
92
92
  function isYarn() {
@@ -137,7 +137,7 @@ function installUsingNPM(pkg, subpath, binPath) {
137
137
  fs2.mkdirSync(installDir);
138
138
  try {
139
139
  fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
140
- child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.48"}`, { cwd: installDir, stdio: "pipe", env });
140
+ child_process.execSync(`npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.14.49"}`, { cwd: installDir, stdio: "pipe", env });
141
141
  const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
142
142
  fs2.renameSync(installedBinPath, binPath);
143
143
  } finally {
@@ -186,7 +186,7 @@ function maybeOptimizePackage(binPath) {
186
186
  }
187
187
  }
188
188
  async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
189
- const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.48"}.tgz`;
189
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.14.49"}.tgz`;
190
190
  console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
191
191
  try {
192
192
  fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
@@ -17,7 +17,7 @@ interface CommonOptions {
17
17
 
18
18
  /** Documentation: https://esbuild.github.io/api/#format */
19
19
  format?: Format;
20
- /** Documentation: https://esbuild.github.io/api/#globalName */
20
+ /** Documentation: https://esbuild.github.io/api/#global-name */
21
21
  globalName?: string;
22
22
  /** Documentation: https://esbuild.github.io/api/#target */
23
23
  target?: string | string[];
@@ -96,7 +96,7 @@ export interface BuildOptions extends CommonOptions {
96
96
  loader?: { [ext: string]: Loader };
97
97
  /** Documentation: https://esbuild.github.io/api/#resolve-extensions */
98
98
  resolveExtensions?: string[];
99
- /** Documentation: https://esbuild.github.io/api/#mainFields */
99
+ /** Documentation: https://esbuild.github.io/api/#main-fields */
100
100
  mainFields?: string[];
101
101
  /** Documentation: https://esbuild.github.io/api/#conditions */
102
102
  conditions?: string[];
@@ -746,8 +746,8 @@ function createChannel(streamIn) {
746
746
  if (isFirstPacket) {
747
747
  isFirstPacket = false;
748
748
  let binaryVersion = String.fromCharCode(...bytes);
749
- if (binaryVersion !== "0.14.48") {
750
- throw new Error(`Cannot start service: Host version "${"0.14.48"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
749
+ if (binaryVersion !== "0.14.49") {
750
+ throw new Error(`Cannot start service: Host version "${"0.14.49"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
751
751
  }
752
752
  return;
753
753
  }
@@ -1863,7 +1863,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
1863
1863
  }
1864
1864
  }
1865
1865
  var _a;
1866
- var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.48";
1866
+ var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.14.49";
1867
1867
  var esbuildCommandAndArgs = () => {
1868
1868
  if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
1869
1869
  throw new Error(`The esbuild JavaScript API cannot be bundled. Please mark the "esbuild" package as external so it's not included in the bundle.
@@ -1927,7 +1927,7 @@ var fsAsync = {
1927
1927
  }
1928
1928
  }
1929
1929
  };
1930
- var version = "0.14.48";
1930
+ var version = "0.14.49";
1931
1931
  var build = (options) => ensureServiceIsRunning().build(options);
1932
1932
  var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
1933
1933
  var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
@@ -2038,7 +2038,7 @@ var ensureServiceIsRunning = () => {
2038
2038
  if (longLivedService)
2039
2039
  return longLivedService;
2040
2040
  let [command, args] = esbuildCommandAndArgs();
2041
- let child = child_process.spawn(command, args.concat(`--service=${"0.14.48"}`, "--ping"), {
2041
+ let child = child_process.spawn(command, args.concat(`--service=${"0.14.49"}`, "--ping"), {
2042
2042
  windowsHide: true,
2043
2043
  stdio: ["pipe", "pipe", "inherit"],
2044
2044
  cwd: defaultWD
@@ -2152,7 +2152,7 @@ var runServiceSync = (callback) => {
2152
2152
  esbuild: node_exports
2153
2153
  });
2154
2154
  callback(service);
2155
- let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.48"}`), {
2155
+ let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.14.49"}`), {
2156
2156
  cwd: defaultWD,
2157
2157
  windowsHide: true,
2158
2158
  input: stdin,
@@ -2168,7 +2168,7 @@ var workerThreadService = null;
2168
2168
  var startWorkerThreadService = (worker_threads2) => {
2169
2169
  let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
2170
2170
  let worker = new worker_threads2.Worker(__filename, {
2171
- workerData: { workerPort, defaultWD, esbuildVersion: "0.14.48" },
2171
+ workerData: { workerPort, defaultWD, esbuildVersion: "0.14.49" },
2172
2172
  transferList: [workerPort],
2173
2173
  execArgv: []
2174
2174
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild",
3
- "version": "0.14.48",
3
+ "version": "0.14.49",
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.48",
19
- "esbuild-android-arm64": "0.14.48",
20
- "esbuild-darwin-64": "0.14.48",
21
- "esbuild-darwin-arm64": "0.14.48",
22
- "esbuild-freebsd-64": "0.14.48",
23
- "esbuild-freebsd-arm64": "0.14.48",
24
- "esbuild-linux-32": "0.14.48",
25
- "esbuild-linux-64": "0.14.48",
26
- "esbuild-linux-arm": "0.14.48",
27
- "esbuild-linux-arm64": "0.14.48",
28
- "esbuild-linux-mips64le": "0.14.48",
29
- "esbuild-linux-ppc64le": "0.14.48",
30
- "esbuild-linux-riscv64": "0.14.48",
31
- "esbuild-linux-s390x": "0.14.48",
32
- "esbuild-netbsd-64": "0.14.48",
33
- "esbuild-openbsd-64": "0.14.48",
34
- "esbuild-sunos-64": "0.14.48",
35
- "esbuild-windows-32": "0.14.48",
36
- "esbuild-windows-64": "0.14.48",
37
- "esbuild-windows-arm64": "0.14.48"
18
+ "esbuild-android-64": "0.14.49",
19
+ "esbuild-android-arm64": "0.14.49",
20
+ "esbuild-darwin-64": "0.14.49",
21
+ "esbuild-darwin-arm64": "0.14.49",
22
+ "esbuild-freebsd-64": "0.14.49",
23
+ "esbuild-freebsd-arm64": "0.14.49",
24
+ "esbuild-linux-32": "0.14.49",
25
+ "esbuild-linux-64": "0.14.49",
26
+ "esbuild-linux-arm": "0.14.49",
27
+ "esbuild-linux-arm64": "0.14.49",
28
+ "esbuild-linux-mips64le": "0.14.49",
29
+ "esbuild-linux-ppc64le": "0.14.49",
30
+ "esbuild-linux-riscv64": "0.14.49",
31
+ "esbuild-linux-s390x": "0.14.49",
32
+ "esbuild-netbsd-64": "0.14.49",
33
+ "esbuild-openbsd-64": "0.14.49",
34
+ "esbuild-sunos-64": "0.14.49",
35
+ "esbuild-windows-32": "0.14.49",
36
+ "esbuild-windows-64": "0.14.49",
37
+ "esbuild-windows-arm64": "0.14.49"
38
38
  },
39
39
  "license": "MIT"
40
40
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild-linux-64",
3
- "version": "0.14.48",
3
+ "version": "0.14.49",
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
@@ -40,13 +40,13 @@
40
40
  "organization": false
41
41
  },
42
42
  "devDependencies": {
43
- "@types/jest": "^26.0.24",
43
+ "@types/jest": "^27",
44
44
  "@types/node": "^14",
45
45
  "@typescript-eslint/eslint-plugin": "^5",
46
46
  "@typescript-eslint/parser": "^5",
47
- "aws-cdk-lib": "^2.31.0",
47
+ "aws-cdk-lib": "^2.31.1",
48
48
  "constructs": "^10.0.5",
49
- "esbuild": "^0.14.48",
49
+ "esbuild": "^0.14.49",
50
50
  "eslint": "^8",
51
51
  "eslint-import-resolver-node": "^0.3.6",
52
52
  "eslint-import-resolver-typescript": "^2.7.1",
@@ -59,7 +59,7 @@
59
59
  "jsii-pacmak": "^1.61.0",
60
60
  "json-schema": "^0.4.0",
61
61
  "npm-check-updates": "^12",
62
- "projen": "^0.58.21",
62
+ "projen": "^0.58.27",
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.31.0",
73
- "aws-sdk": "^2.1170.0",
72
+ "aws-cdk-lib": "^2.31.1",
73
+ "aws-sdk": "^2.1172.0",
74
74
  "constructs": "^10.0.5",
75
- "esbuild": "^0.14.48"
75
+ "esbuild": "^0.14.49"
76
76
  },
77
77
  "bundledDependencies": [
78
78
  "aws-sdk",
@@ -92,11 +92,11 @@
92
92
  ],
93
93
  "main": "lib/index.js",
94
94
  "license": "Apache-2.0",
95
- "version": "2.0.31",
95
+ "version": "2.0.34",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",
99
- "<rootDir>/(test|src)/**/?(*.)+(spec|test).ts?(x)"
99
+ "<rootDir>/(test|src)/**/*(*.)@(spec|test).ts?(x)"
100
100
  ],
101
101
  "clearMocks": true,
102
102
  "collectCoverage": true,