@serve.zone/appstore 0.2.0 → 0.2.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.
@@ -26,12 +26,6 @@
26
26
  "description": "Use external TLS termination through Onebox or dcrouter.",
27
27
  "required": true
28
28
  },
29
- {
30
- "key": "SERVEZONE_ADMINACCOUNT",
31
- "value": "",
32
- "description": "Initial admin account in username:password format. Only used when Cloudly has no human users yet.",
33
- "required": true
34
- },
35
29
  {
36
30
  "key": "MONGODB_URL",
37
31
  "value": "${MONGODB_URI}",
@@ -97,5 +91,5 @@
97
91
  "mongodb": true,
98
92
  "s3": true
99
93
  },
100
- "minOneboxVersion": "1.24.2"
94
+ "minOneboxVersion": "2.2.0"
101
95
  }
package/changelog.md CHANGED
@@ -3,6 +3,11 @@
3
3
  ## Pending
4
4
 
5
5
 
6
+ ## 2026-05-26 - 0.2.1
7
+
8
+ - remove the manual Cloudly admin bootstrap template variable (cloudly)
9
+ - Requires Onebox 2.2.0 or newer so Cloudly can report initial admin credentials through hosted-app lifecycle.
10
+
6
11
  ## 2026-05-25 - 0.2.0
7
12
 
8
13
  ### Features
@@ -11,4 +16,3 @@
11
16
  - Adds the `@serve.zone/appstore` package with a TypeScript resolver client
12
17
  - Renames the top-level index to `appstore.json`
13
18
  - Supports linked `servezone.appstore.json` manifests and Docker digest-tracked app upgrades
14
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/appstore",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "description": "serve.zone App Store metadata, parser, and resolver client.",
6
6
  "type": "module",
@@ -16,7 +16,7 @@
16
16
  "@git.zone/tsbuild": "^4.4.2",
17
17
  "@git.zone/tsdoc": "^2.0.6",
18
18
  "@git.zone/tstest": "^3.6.6",
19
- "@types/node": "^25.8.0"
19
+ "@types/node": "^25.9.0"
20
20
  },
21
21
  "files": [
22
22
  "apps/**/*",
package/readme.md CHANGED
@@ -51,7 +51,7 @@ Some templates ask Onebox to provision local platform services and inject connec
51
51
 
52
52
  | App ID | Requirements | Notes |
53
53
  | --- | --- | --- |
54
- | `cloudly` | MongoDB, S3 | Requires Onebox `1.24.2` or newer. Uses provisioned MongoDB and MinIO/S3 values for Cloudly state and registry storage. |
54
+ | `cloudly` | MongoDB, S3 | Requires Onebox `2.2.0` or newer. Uses provisioned MongoDB and MinIO/S3 values for Cloudly state and registry storage, and reports initial admin credentials through hosted-app lifecycle. |
55
55
  | `ghost` | MariaDB | Uses MySQL-style `database__connection__*` environment variables. |
56
56
  | `gitea` | MariaDB | Uses Gitea database environment variables with `${MARIADB_*}` placeholders. |
57
57
  | `nextcloud` | MariaDB, Redis | Uses MySQL-compatible database variables. Redis is declared as a platform requirement. |