@otalan/cli 1.0.0 → 1.0.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 +23 -0
- package/package.json +2 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@otalan/cli` will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## 1.0.1 - 2026-05-04
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Include `CHANGELOG.md` in the published package.
|
|
10
|
+
|
|
11
|
+
## 1.0.0 - 2026-05-04
|
|
12
|
+
|
|
13
|
+
Initial public release of the Otalan CLI.
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- Capacitor OTA bundle packaging from built web assets.
|
|
18
|
+
- Expo / React Native OTA bundle packaging through `expo export`.
|
|
19
|
+
- Release publishing with rollout metadata and server-side validation polling.
|
|
20
|
+
- Bundle listing, active bundle status, and rollback commands.
|
|
21
|
+
- CI key login, project initialization, and API connectivity doctor checks.
|
|
22
|
+
- Native version and Expo runtime version resolution helpers.
|
|
23
|
+
- Public npm package metadata, license notices, and Bun-based CLI entrypoint.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@otalan/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Otalan CLI for bundling and publishing OTA updates.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"files": [
|
|
35
35
|
"dist/bin.js",
|
|
36
36
|
"README.md",
|
|
37
|
+
"CHANGELOG.md",
|
|
37
38
|
"LICENSE",
|
|
38
39
|
"NOTICE",
|
|
39
40
|
"third-party-licenses.txt"
|