@otalan/cli 1.0.6 → 1.0.8

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,19 @@
2
2
 
3
3
  All notable changes to `@otalan/cli` will be documented in this file.
4
4
 
5
+ ## 1.0.8 - 2026-05-06
6
+
7
+ ### Changed
8
+
9
+ - Print the resolved organization and project before release commands continue.
10
+
11
+ ## 1.0.7 - 2026-05-06
12
+
13
+ ### Changed
14
+
15
+ - Clean public README examples to avoid project-specific app IDs, generated-looking slugs, and local development API URLs.
16
+ - Keep user-facing login guidance pointed at the public Otalan API keys page.
17
+
5
18
  ## 1.0.6 - 2026-05-05
6
19
 
7
20
  ### Changed
package/README.md CHANGED
@@ -206,8 +206,8 @@ Example project config:
206
206
 
207
207
  ```json
208
208
  {
209
- "organizationSlug": "test-org-407b69f7",
210
- "projectSlug": "test-project-ca3bcb8a",
209
+ "organizationSlug": "example-organization",
210
+ "projectSlug": "example-project",
211
211
  "appId": "com.example.app"
212
212
  }
213
213
  ```
@@ -238,12 +238,6 @@ Saves the CI key and API base URL locally.
238
238
  otalan login --api-key otalan_ci_xxx --api-url https://api.otalan.com
239
239
  ```
240
240
 
241
- Local development:
242
-
243
- ```bash
244
- otalan login --api-key otalan_ci_xxx --api-url http://localhost:8787
245
- ```
246
-
247
241
  ### `otalan doctor`
248
242
 
249
243
  Checks API connectivity and prints the organization/project context resolved from the configured CI key.
@@ -268,7 +262,7 @@ If you already ran `otalan login`, the CLI resolves `organizationSlug` and `proj
268
262
 
269
263
  ```bash
270
264
  otalan init \
271
- --app-id app.cryptosan.app
265
+ --app-id com.example.app
272
266
  ```
273
267
 
274
268
  ### `otalan bundle`
@@ -470,6 +464,6 @@ bun pm pack --dry-run
470
464
  - This is a Bun-based CLI published on npm.
471
465
  - Expo / React Native bundling uses `bunx expo ...`.
472
466
  - Default API URL is `https://api.otalan.com`.
473
- - Local development API URL is `http://localhost:8787`.
474
467
  - Publishing, rollback, status, and `bundles` expect a CI key and an active app.
468
+ - Release commands print the organization and project resolved from the CI key before continuing.
475
469
  - Run `bun run build` after changing CLI source if you want `dist/bin.js` updated locally.