@otalan/cli 1.3.4 → 1.4.0
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 +6 -0
- package/README.md +1 -1
- package/dist/bin.js +31 -31
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@otalan/cli` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.4.0 - 2026-05-22
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Send direct object-storage uploads with the API-provided `uploadHeaders`, including explicit `Content-Length`.
|
|
10
|
+
|
|
5
11
|
## 1.3.4 - 2026-05-21
|
|
6
12
|
|
|
7
13
|
### Changed
|
package/README.md
CHANGED
|
@@ -453,7 +453,7 @@ otalan publish --channel production --optional
|
|
|
453
453
|
This uses the direct-upload release flow:
|
|
454
454
|
|
|
455
455
|
1. `POST /v1/releases/create` with JSON metadata for the release and local ZIP, including `expoManifest` for Expo bundles
|
|
456
|
-
2. `PUT` the ZIP bytes directly to the returned opaque `uploadUrl` with the exact returned `Content-
|
|
456
|
+
2. `PUT` the ZIP bytes directly to the returned opaque `uploadUrl` with the exact returned `uploadHeaders`, including `Content-Length`
|
|
457
457
|
3. `POST /v1/releases/ingests/:id/complete`
|
|
458
458
|
4. poll `GET /v1/releases/ingests/:id` until the ingest reaches `ready` or `failed`
|
|
459
459
|
|