@otalan/cli 1.5.0 → 1.5.1
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 +10 -0
- package/README.md +4 -0
- package/dist/bin.js +51 -50
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@otalan/cli` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 1.5.1 - 2026-05-26
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Make `otalan publish` show compact animated progress by default, with green success and red failure states in interactive terminals.
|
|
10
|
+
- Add spacing around compact publish progress and highlight `Live` in green in interactive terminals.
|
|
11
|
+
- Keep CI-friendly static publish progress output in non-TTY environments.
|
|
12
|
+
- Move the previous detailed publish output behind `otalan publish --verbose`.
|
|
13
|
+
- Print `✅ Bundle generated` after `otalan bundle` writes the bundle output.
|
|
14
|
+
|
|
5
15
|
## 1.5.0 - 2026-05-23
|
|
6
16
|
|
|
7
17
|
### Added
|
package/README.md
CHANGED
|
@@ -282,6 +282,8 @@ Saves the project OTA Publish Key and API base URL locally.
|
|
|
282
282
|
|
|
283
283
|
If auth is already saved, `otalan login` shows the current API URL as the prompt default and shows the current OTA Publish Key in masked form. Press Enter to keep either value.
|
|
284
284
|
|
|
285
|
+
During interactive login, typed OTA Publish Key characters are echoed as `*` so the terminal shows input progress without exposing the key.
|
|
286
|
+
|
|
285
287
|
```bash
|
|
286
288
|
otalan login --api-key otalan_ci_xxx --api-url https://api.otalan.com
|
|
287
289
|
```
|
|
@@ -348,6 +350,7 @@ Current behavior:
|
|
|
348
350
|
- Expo does not require a prebuilt `dist/` or `www/` folder
|
|
349
351
|
- Expo stores the generated Otalan satellite manifest in `.otalan/bundle/manifest.json`, including `launchAsset`, `assets`, `runtimeVersion`, `bundleId`, and `expoConfig`
|
|
350
352
|
- both outputs produce a ZIP plus `manifest.json`
|
|
353
|
+
- successful bundle runs end with `✅ Bundle generated`
|
|
351
354
|
- source map files (`*.map`) are omitted from bundle ZIPs by default; the CLI prints the omitted file count when any are skipped
|
|
352
355
|
- native project/source files are rejected before bundle output is written; OTA bundles must only contain generated web/update assets
|
|
353
356
|
- when `otalan.config.json` is available, the CLI prints the linked project and app before packaging
|
|
@@ -429,6 +432,7 @@ Current behavior:
|
|
|
429
432
|
- `--rollout-percent` accepts an integer from `0` to `100`
|
|
430
433
|
- `--optional` marks the update as non-mandatory
|
|
431
434
|
- `--release-notes` attaches release notes to the published bundle
|
|
435
|
+
- default output shows compact publish progress with animated terminal status icons; `--verbose` prints the full project, release, and ingest details
|
|
432
436
|
- Expo publish forwards the full generated Otalan satellite manifest when present
|
|
433
437
|
- Expo publish sends the generated manifest with `runtimeVersion`
|
|
434
438
|
- Expo manifests include the Expo config captured from `bunx expo config --json`; avoid placing secrets in Expo config fields that are not intended to be uploaded
|