@runuai/host 0.9.45 → 0.9.46
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/lib/release-trust.ts +21 -4
- package/package.json +3 -3
package/lib/release-trust.ts
CHANGED
|
@@ -17,12 +17,29 @@ export const STABLE_RELEASE_MANIFEST_URL =
|
|
|
17
17
|
* Provisioning a key is necessary but not sufficient to advertise or serve
|
|
18
18
|
* the one-line installer. The release coordinator flips this only in the same
|
|
19
19
|
* reviewed change that publishes the complete, version-matched four-platform
|
|
20
|
-
* release.
|
|
21
|
-
*
|
|
20
|
+
* release. Flipped 2026-08-19 in the change that provisioned
|
|
21
|
+
* `uai-release-2026-a` and wired auto-release to sign and publish the
|
|
22
|
+
* four-platform feed on every host version bump.
|
|
22
23
|
*/
|
|
23
|
-
export const HOST_INSTALLER_RELEASE_PROMOTED =
|
|
24
|
+
export const HOST_INSTALLER_RELEASE_PROMOTED = true;
|
|
24
25
|
|
|
26
|
+
/**
|
|
27
|
+
* `uai-release-2026-a`: minted by the operator 2026-08-19 (Ed25519; private
|
|
28
|
+
* key lives in Infisical and reaches CI as UAI_RELEASE_SIGNING_KEY). Rotation
|
|
29
|
+
* is additive: pin the successor key beside this one, publish releases signed
|
|
30
|
+
* by it, and retire this entry only after every supported host updated past
|
|
31
|
+
* a release that pins both.
|
|
32
|
+
*/
|
|
25
33
|
export const PINNED_RELEASE_MANIFEST_KEYS: ReadonlyMap<
|
|
26
34
|
string,
|
|
27
35
|
PinnedReleaseManifestKey
|
|
28
|
-
> = new Map(
|
|
36
|
+
> = new Map([
|
|
37
|
+
[
|
|
38
|
+
"uai-release-2026-a",
|
|
39
|
+
{
|
|
40
|
+
publicKey: `-----BEGIN PUBLIC KEY-----
|
|
41
|
+
MCowBQYDK2VwAyEAeCBzaLTNYNGkI59T+vNu2M/DMTeTsmfABDtwN9IDejY=
|
|
42
|
+
-----END PUBLIC KEY-----`,
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
]);
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runuai/host",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "Uai host — runs ephemeral AI
|
|
3
|
+
"version": "0.9.46",
|
|
4
|
+
"description": "Uai host — runs ephemeral AI tasks in containers on a machine you control.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"author": "
|
|
6
|
+
"author": "Uai Tech <team@runuai.com>",
|
|
7
7
|
"homepage": "https://github.com/runuai/uai#readme",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|