@otalan/cli 1.5.1 → 1.5.2

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,15 @@
2
2
 
3
3
  All notable changes to `@otalan/cli` will be documented in this file.
4
4
 
5
+ ## 1.5.2 - 2026-05-28
6
+
7
+ ### Changed
8
+
9
+ - Keep `otalan bundle` output compact by default with publish-style `Bundling` progress and `✅ Bundle created`; detailed bundle context, source-map counts, and JSON output now require `--verbose` or `-v`.
10
+ - Add `-v` as a short alias for verbose publish and bundle output.
11
+ - Print `Bundle selected:` before the rollback bundle summary and `✅ Rollback done` after it.
12
+ - Exit `otalan rollback` without prompting when no bundles are available for the selected tuple.
13
+
5
14
  ## 1.5.1 - 2026-05-26
6
15
 
7
16
  ### Changed
package/README.md CHANGED
@@ -350,10 +350,10 @@ Current behavior:
350
350
  - Expo does not require a prebuilt `dist/` or `www/` folder
351
351
  - Expo stores the generated Otalan satellite manifest in `.otalan/bundle/manifest.json`, including `launchAsset`, `assets`, `runtimeVersion`, `bundleId`, and `expoConfig`
352
352
  - both outputs produce a ZIP plus `manifest.json`
353
- - successful bundle runs end with `✅ Bundle generated`
354
- - source map files (`*.map`) are omitted from bundle ZIPs by default; the CLI prints the omitted file count when any are skipped
353
+ - default output shows compact bundle progress with publish-style status icons and ends with `✅ Bundle created`
354
+ - `--verbose` or `-v` prints the linked project/app, Capacitor build reminder, source-map omitted count, bundle ID source, and JSON bundle result
355
+ - source map files (`*.map`) are omitted from bundle ZIPs by default
355
356
  - native project/source files are rejected before bundle output is written; OTA bundles must only contain generated web/update assets
356
- - when `otalan.config.json` is available, the CLI prints the linked project and app before packaging
357
357
  - when `otalan login` and `otalan init` are configured, the CLI checks that the selected `bundleId` is not already published for the selected platform, runtimeVersion, and channel before writing bundle output
358
358
  - `--platform` is required so the CLI exports the selected platform and resolves the correct runtime version
359
359
 
@@ -432,7 +432,7 @@ Current behavior:
432
432
  - `--rollout-percent` accepts an integer from `0` to `100`
433
433
  - `--optional` marks the update as non-mandatory
434
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
435
+ - default output shows compact publish progress with animated terminal status icons; `--verbose` or `-v` prints the full project, release, and ingest details
436
436
  - Expo publish forwards the full generated Otalan satellite manifest when present
437
437
  - Expo publish sends the generated manifest with `runtimeVersion`
438
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
@@ -523,6 +523,8 @@ Reactivates an older bundle for the same tuple.
523
523
  otalan rollback --bundle-id 1.0.0-web.1 --platform ios --channel production
524
524
  ```
525
525
 
526
+ When no bundles exist for the selected platform, channel, and runtimeVersion, `otalan rollback` exits without prompting for a target bundle. Successful rollbacks print `Bundle selected:`, the selected bundle summary, and then `✅ Rollback done`.
527
+
526
528
  ### `otalan pause`
527
529
 
528
530
  Pauses delivery of the currently active bundle for the selected release tuple.