@timurproko/a1 0.1.8-dev.444 → 0.1.8-dev.447
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/dist/foundation/release/update.js +1 -1
- package/dist/foundation/startup/startup-descriptor.js +2 -2
- package/dist/integrations/pi/startup-public.js +86 -13
- package/dist/integrations/pi/startup-public.manifest.json +121 -61
- package/dist/native/darwin-arm64/manifest.json +1 -1
- package/dist/native/linux-x64/manifest.json +1 -1
- package/dist/native/win32-x64/manifest.json +2 -2
- package/dist/native/win32-x64/process-guardian.exe +0 -0
- package/docs/ci-release-runbook.md +5 -5
- package/docs/validation.md +1 -1
- package/package.json +1 -1
|
@@ -523,7 +523,7 @@ export async function runSelfUpdate(options) {
|
|
|
523
523
|
await transactionStore.clearCompleted().catch(() => undefined);
|
|
524
524
|
options.onPhaseTiming?.({ phase: "transaction-complete", durationMs: Math.max(0, now() - transactionStartedAt) });
|
|
525
525
|
progress.finish();
|
|
526
|
-
output.stdout(`${PRODUCT_TEXT.commandName} updated successfully
|
|
526
|
+
output.stdout(`${PRODUCT_TEXT.commandName} updated successfully to ${targetVersion}\n`);
|
|
527
527
|
return 0;
|
|
528
528
|
}
|
|
529
529
|
catch (error) {
|
|
@@ -10,7 +10,7 @@ export const STARTUP_DESCRIPTOR = Object.freeze({
|
|
|
10
10
|
],
|
|
11
11
|
"generatedArtifact": {
|
|
12
12
|
"path": "dist/integrations/pi/startup-public.js",
|
|
13
|
-
"sha256": "
|
|
13
|
+
"sha256": "98c412f7a4340a4fa4057df12f8a7f8ba25caa10dfa882de5d4c68786d20489e"
|
|
14
14
|
},
|
|
15
15
|
"dependencyLayerIdentity": {
|
|
16
16
|
"source": "A1_RELEASE_LAYERS",
|
|
@@ -19,7 +19,7 @@ export const STARTUP_DESCRIPTOR = Object.freeze({
|
|
|
19
19
|
"compileCacheNamespace": {
|
|
20
20
|
"strategy": "node-abi-version-and-ordered-layer-sha256-v1"
|
|
21
21
|
},
|
|
22
|
-
"identity": "
|
|
22
|
+
"identity": "12c7247858e9048b2439225f7f4f6a83811309abee82cefe2fe6a6c8e6bd9df1"
|
|
23
23
|
});
|
|
24
24
|
|
|
25
25
|
export function loadDeclaredStartupGraph() {
|