cdk-comprehend-s3olap 2.0.87 → 2.0.88

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.1209.0',
23
+ VERSION: '2.1210.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.1209.0",
4
+ "version": "2.1210.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -163,7 +163,7 @@ by esbuild to install the correct binary executable for your current platform.`)
163
163
  "node_modules",
164
164
  ".cache",
165
165
  "esbuild",
166
- `pnpapi-${pkg}-${"0.15.6"}-${path.basename(subpath)}`
166
+ `pnpapi-${pkg}-${"0.15.7"}-${path.basename(subpath)}`
167
167
  );
168
168
  if (!fs.existsSync(binTargetPath)) {
169
169
  fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
@@ -89,8 +89,8 @@ function validateBinaryVersion(...command) {
89
89
  const stdout = child_process.execFileSync(command.shift(), command, {
90
90
  stdio: "pipe"
91
91
  }).toString().trim();
92
- if (stdout !== "0.15.6") {
93
- throw new Error(`Expected ${JSON.stringify("0.15.6")} but got ${JSON.stringify(stdout)}`);
92
+ if (stdout !== "0.15.7") {
93
+ throw new Error(`Expected ${JSON.stringify("0.15.7")} but got ${JSON.stringify(stdout)}`);
94
94
  }
95
95
  }
96
96
  function isYarn() {
@@ -142,7 +142,7 @@ function installUsingNPM(pkg, subpath, binPath) {
142
142
  try {
143
143
  fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
144
144
  child_process.execSync(
145
- `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.6"}`,
145
+ `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${"0.15.7"}`,
146
146
  { cwd: installDir, stdio: "pipe", env }
147
147
  );
148
148
  const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
@@ -193,7 +193,7 @@ function maybeOptimizePackage(binPath) {
193
193
  }
194
194
  }
195
195
  async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
196
- const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.6"}.tgz`;
196
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg}-${"0.15.7"}.tgz`;
197
197
  console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
198
198
  try {
199
199
  fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
@@ -237,7 +237,7 @@ this. If that fails, you need to remove the "--no-optional" flag to use esbuild.
237
237
  }
238
238
  checkAndPreparePackage().then(() => {
239
239
  if (isToPathJS) {
240
- validateBinaryVersion("node", toPath);
240
+ validateBinaryVersion(process.execPath, toPath);
241
241
  } else {
242
242
  validateBinaryVersion(toPath);
243
243
  }
@@ -758,8 +758,8 @@ function createChannel(streamIn) {
758
758
  if (isFirstPacket) {
759
759
  isFirstPacket = false;
760
760
  let binaryVersion = String.fromCharCode(...bytes);
761
- if (binaryVersion !== "0.15.6") {
762
- throw new Error(`Cannot start service: Host version "${"0.15.6"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
761
+ if (binaryVersion !== "0.15.7") {
762
+ throw new Error(`Cannot start service: Host version "${"0.15.7"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
763
763
  }
764
764
  return;
765
765
  }
@@ -1861,7 +1861,7 @@ by esbuild to install the correct binary executable for your current platform.`)
1861
1861
  "node_modules",
1862
1862
  ".cache",
1863
1863
  "esbuild",
1864
- `pnpapi-${pkg}-${"0.15.6"}-${path.basename(subpath)}`
1864
+ `pnpapi-${pkg}-${"0.15.7"}-${path.basename(subpath)}`
1865
1865
  );
1866
1866
  if (!fs.existsSync(binTargetPath)) {
1867
1867
  fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
@@ -1892,7 +1892,7 @@ if (process.env.ESBUILD_WORKER_THREADS !== "0") {
1892
1892
  }
1893
1893
  }
1894
1894
  var _a;
1895
- var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.6";
1895
+ var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.7";
1896
1896
  var esbuildCommandAndArgs = () => {
1897
1897
  if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
1898
1898
  throw new Error(
@@ -1903,12 +1903,13 @@ More information: The file containing the code for esbuild's JavaScript API (${_
1903
1903
  }
1904
1904
  if (false) {
1905
1905
  return ["node", [path2.join(__dirname, "..", "bin", "esbuild")]];
1906
- }
1907
- const { binPath, isWASM } = generateBinPath();
1908
- if (isWASM) {
1909
- return ["node", [binPath]];
1910
1906
  } else {
1911
- return [binPath, []];
1907
+ const { binPath, isWASM } = generateBinPath();
1908
+ if (isWASM) {
1909
+ return ["node", [binPath]];
1910
+ } else {
1911
+ return [binPath, []];
1912
+ }
1912
1913
  }
1913
1914
  };
1914
1915
  var isTTY = () => tty.isatty(2);
@@ -1958,7 +1959,7 @@ var fsAsync = {
1958
1959
  }
1959
1960
  }
1960
1961
  };
1961
- var version = "0.15.6";
1962
+ var version = "0.15.7";
1962
1963
  var build = (options) => ensureServiceIsRunning().build(options);
1963
1964
  var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
1964
1965
  var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
@@ -2069,7 +2070,7 @@ var ensureServiceIsRunning = () => {
2069
2070
  if (longLivedService)
2070
2071
  return longLivedService;
2071
2072
  let [command, args] = esbuildCommandAndArgs();
2072
- let child = child_process.spawn(command, args.concat(`--service=${"0.15.6"}`, "--ping"), {
2073
+ let child = child_process.spawn(command, args.concat(`--service=${"0.15.7"}`, "--ping"), {
2073
2074
  windowsHide: true,
2074
2075
  stdio: ["pipe", "pipe", "inherit"],
2075
2076
  cwd: defaultWD
@@ -2183,7 +2184,7 @@ var runServiceSync = (callback) => {
2183
2184
  esbuild: node_exports
2184
2185
  });
2185
2186
  callback(service);
2186
- let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.6"}`), {
2187
+ let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.7"}`), {
2187
2188
  cwd: defaultWD,
2188
2189
  windowsHide: true,
2189
2190
  input: stdin,
@@ -2199,7 +2200,7 @@ var workerThreadService = null;
2199
2200
  var startWorkerThreadService = (worker_threads2) => {
2200
2201
  let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
2201
2202
  let worker = new worker_threads2.Worker(__filename, {
2202
- workerData: { workerPort, defaultWD, esbuildVersion: "0.15.6" },
2203
+ workerData: { workerPort, defaultWD, esbuildVersion: "0.15.7" },
2203
2204
  transferList: [workerPort],
2204
2205
  execArgv: []
2205
2206
  });
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild",
3
- "version": "0.15.6",
3
+ "version": "0.15.7",
4
4
  "description": "An extremely fast JavaScript and CSS bundler and minifier.",
5
5
  "repository": "https://github.com/evanw/esbuild",
6
6
  "scripts": {
@@ -15,27 +15,27 @@
15
15
  "esbuild": "bin/esbuild"
16
16
  },
17
17
  "optionalDependencies": {
18
- "@esbuild/linux-loong64": "0.15.6",
19
- "esbuild-android-64": "0.15.6",
20
- "esbuild-android-arm64": "0.15.6",
21
- "esbuild-darwin-64": "0.15.6",
22
- "esbuild-darwin-arm64": "0.15.6",
23
- "esbuild-freebsd-64": "0.15.6",
24
- "esbuild-freebsd-arm64": "0.15.6",
25
- "esbuild-linux-32": "0.15.6",
26
- "esbuild-linux-64": "0.15.6",
27
- "esbuild-linux-arm": "0.15.6",
28
- "esbuild-linux-arm64": "0.15.6",
29
- "esbuild-linux-mips64le": "0.15.6",
30
- "esbuild-linux-ppc64le": "0.15.6",
31
- "esbuild-linux-riscv64": "0.15.6",
32
- "esbuild-linux-s390x": "0.15.6",
33
- "esbuild-netbsd-64": "0.15.6",
34
- "esbuild-openbsd-64": "0.15.6",
35
- "esbuild-sunos-64": "0.15.6",
36
- "esbuild-windows-32": "0.15.6",
37
- "esbuild-windows-64": "0.15.6",
38
- "esbuild-windows-arm64": "0.15.6"
18
+ "@esbuild/linux-loong64": "0.15.7",
19
+ "esbuild-android-64": "0.15.7",
20
+ "esbuild-android-arm64": "0.15.7",
21
+ "esbuild-darwin-64": "0.15.7",
22
+ "esbuild-darwin-arm64": "0.15.7",
23
+ "esbuild-freebsd-64": "0.15.7",
24
+ "esbuild-freebsd-arm64": "0.15.7",
25
+ "esbuild-linux-32": "0.15.7",
26
+ "esbuild-linux-64": "0.15.7",
27
+ "esbuild-linux-arm": "0.15.7",
28
+ "esbuild-linux-arm64": "0.15.7",
29
+ "esbuild-linux-mips64le": "0.15.7",
30
+ "esbuild-linux-ppc64le": "0.15.7",
31
+ "esbuild-linux-riscv64": "0.15.7",
32
+ "esbuild-linux-s390x": "0.15.7",
33
+ "esbuild-netbsd-64": "0.15.7",
34
+ "esbuild-openbsd-64": "0.15.7",
35
+ "esbuild-sunos-64": "0.15.7",
36
+ "esbuild-windows-32": "0.15.7",
37
+ "esbuild-windows-64": "0.15.7",
38
+ "esbuild-windows-arm64": "0.15.7"
39
39
  },
40
40
  "license": "MIT"
41
41
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esbuild-linux-64",
3
- "version": "0.15.6",
3
+ "version": "0.15.7",
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
@@ -46,7 +46,7 @@
46
46
  "@typescript-eslint/parser": "^5",
47
47
  "aws-cdk-lib": "^2.40.0",
48
48
  "constructs": "^10.0.5",
49
- "esbuild": "^0.15.6",
49
+ "esbuild": "^0.15.7",
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.67.0",
60
60
  "json-schema": "^0.4.0",
61
61
  "npm-check-updates": "^15",
62
- "projen": "^0.61.41",
62
+ "projen": "^0.61.45",
63
63
  "standard-version": "^9",
64
64
  "ts-jest": "^27",
65
65
  "typescript": "^4.8.2"
@@ -70,9 +70,9 @@
70
70
  },
71
71
  "dependencies": {
72
72
  "aws-cdk-lib": "^2.40.0",
73
- "aws-sdk": "^2.1209.0",
73
+ "aws-sdk": "^2.1210.0",
74
74
  "constructs": "^10.0.5",
75
- "esbuild": "^0.15.6"
75
+ "esbuild": "^0.15.7"
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.87",
95
+ "version": "2.0.88",
96
96
  "jest": {
97
97
  "testMatch": [
98
98
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",
@@ -163,8 +163,9 @@
163
163
  }
164
164
  },
165
165
  "resolutions": {
166
- "@types/prettier": "2.6.0",
167
- "got": "12.3.0"
166
+ "@types/responselike": "1.0.0",
167
+ "got": "12.3.0",
168
+ "@types/prettier": "2.6.0"
168
169
  },
169
170
  "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
170
171
  }