rightsize 0.7.0 → 0.7.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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Platform } from "./platform.js";
|
|
2
|
-
export declare const MSB_VERSION = "0.6.
|
|
2
|
+
export declare const MSB_VERSION = "0.6.9";
|
|
3
3
|
/** Test seam: the full resolution logic parameterized over the release base URL, cache dir, and environment. */
|
|
4
4
|
export declare function ensureInstalledAt(baseUrl: string, cacheDir: string, env: Record<string, string | undefined>): Promise<string>;
|
|
5
5
|
/** Resolves (downloading and verifying if needed) a runnable `msb` binary path, using the real GitHub release base, `RIGHTSIZE_CACHE_DIR`, and `process.env`. */
|
|
@@ -7,7 +7,7 @@ import { createHash } from "node:crypto";
|
|
|
7
7
|
import { ProvisionError } from "../core/errors.js";
|
|
8
8
|
import { cacheDir as defaultCacheDir } from "../core/cache-dir.js";
|
|
9
9
|
import { PlatformInfo } from "./platform.js";
|
|
10
|
-
export const MSB_VERSION = "0.6.
|
|
10
|
+
export const MSB_VERSION = "0.6.9";
|
|
11
11
|
const DEFAULT_BASE = `https://github.com/superradcompany/microsandbox/releases/download/v${MSB_VERSION}`;
|
|
12
12
|
const CONNECT_READ_TIMEOUT_MS = 300_000;
|
|
13
13
|
const STALE_LOCK_AGE_MS = 5 * 60 * 1000;
|
package/package.json
CHANGED