@capgo/cli 4.10.14 → 4.10.16

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/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [4.10.16](https://github.com/Cap-go/CLI/compare/v4.10.15...v4.10.16) (2024-06-13)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * issue auto delete failed ([62fef1d](https://github.com/Cap-go/CLI/commit/62fef1dd5816c9c9781002d68f9566bbcace8e0f))
11
+
12
+ ### [4.10.15](https://github.com/Cap-go/CLI/compare/v4.10.14...v4.10.15) (2024-06-12)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * remove crc32 from presigned ([fb1c6b6](https://github.com/Cap-go/CLI/commit/fb1c6b62571c47f204f05b4dbf5d903fc2fc9d65))
18
+
5
19
  ### [4.10.14](https://github.com/Cap-go/CLI/compare/v4.10.13...v4.10.14) (2024-06-09)
6
20
 
7
21
 
package/dist/index.js CHANGED
@@ -110508,7 +110508,7 @@ async function getUserId(options) {
110508
110508
  // package.json
110509
110509
  var package_default = {
110510
110510
  name: "@capgo/cli",
110511
- version: "4.10.14",
110511
+ version: "4.10.16",
110512
110512
  description: "A CLI to upload to capgo servers",
110513
110513
  author: "github.com/riderx",
110514
110514
  license: "Apache 2.0",
@@ -111564,8 +111564,7 @@ The app size is ${mbSize} Mb, this may take a while to download for users
111564
111564
  body: zipped,
111565
111565
  headers: !localS3 ? {
111566
111566
  "Content-Type": "application/octet-stream",
111567
- "Cache-Control": "public, max-age=456789, immutable",
111568
- "x-amz-meta-crc32": checksum
111567
+ "Cache-Control": "public, max-age=456789, immutable"
111569
111568
  } : void 0
111570
111569
  });
111571
111570
  }
@@ -111577,7 +111576,6 @@ The app size is ${mbSize} Mb, this may take a while to download for users
111577
111576
  if (errorUpload instanceof HTTPError) {
111578
111577
  const body = await errorUpload.response.text();
111579
111578
  f2.error(`Response: ${formatError(body)}`);
111580
- program.error("");
111581
111579
  }
111582
111580
  await deletedFailedVersion(supabase, appid, bundle2);
111583
111581
  program.error("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/cli",
3
- "version": "4.10.14",
3
+ "version": "4.10.16",
4
4
  "description": "A CLI to upload to capgo servers",
5
5
  "author": "github.com/riderx",
6
6
  "license": "Apache 2.0",
@@ -403,7 +403,6 @@ It will be also visible in your dashboard\n`)
403
403
  ? {
404
404
  'Content-Type': 'application/octet-stream',
405
405
  'Cache-Control': 'public, max-age=456789, immutable',
406
- 'x-amz-meta-crc32': checksum,
407
406
  }
408
407
  : undefined),
409
408
  })
@@ -417,7 +416,6 @@ It will be also visible in your dashboard\n`)
417
416
  if (errorUpload instanceof HTTPError) {
418
417
  const body = await errorUpload.response.text()
419
418
  p.log.error(`Response: ${formatError(body)}`)
420
- program.error('')
421
419
  }
422
420
  // call delete version on path /delete_failed_version to delete the version
423
421
  await deletedFailedVersion(supabase, appid, bundle)