@capgo/cli 4.10.14 → 4.10.15
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 +7 -0
- package/dist/index.js +2 -3
- package/package.json +1 -1
- package/src/bundle/upload.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.15](https://github.com/Cap-go/CLI/compare/v4.10.14...v4.10.15) (2024-06-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* remove crc32 from presigned ([fb1c6b6](https://github.com/Cap-go/CLI/commit/fb1c6b62571c47f204f05b4dbf5d903fc2fc9d65))
|
|
11
|
+
|
|
5
12
|
### [4.10.14](https://github.com/Cap-go/CLI/compare/v4.10.13...v4.10.14) (2024-06-09)
|
|
6
13
|
|
|
7
14
|
|
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.
|
|
110511
|
+
version: "4.10.15",
|
|
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
|
}
|
package/package.json
CHANGED
package/src/bundle/upload.ts
CHANGED