@wenathlan/saddle 2.0.3 → 2.0.4

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/Dockerfile CHANGED
@@ -91,7 +91,7 @@
91
91
  # -v vmdata:/data/vmdata -v webdata:/data/web \
92
92
  # -v ./vm.config.json:/engine/vm.config.json:ro \
93
93
  # -e PORT=8080 -e NODE_ENV=production -p 31280:8080 \
94
- # ghcr.io/wenathlan/saddle:vhe-2.0.3
94
+ # ghcr.io/wenathlan/saddle:vhe-2.0.4
95
95
  #
96
96
  # vheqemu (the guest runner; build it first with
97
97
  # docker build --target qemu-runtime -t saddle/qemu:11.1.0 . because the
@@ -125,7 +125,7 @@
125
125
  # -e VHE_GPU_PROFILE=b200 -e VHE_GPUS=8 -e VHE_MIG=1 \
126
126
  # -e VHE_SMI_DRIVER=575.57.08 -e VHE_SMI_CUDA=12.9 \
127
127
  # -e VHE_SMI_INTERVAL=30 -e VHE_SKIP_XVFB=1 -e VHE_SKIP_VALIDATE=1 \
128
- # ghcr.io/wenathlan/saddle:vhe-2.0.3 /bin/bash -c '
128
+ # ghcr.io/wenathlan/saddle:vhe-2.0.4 /bin/bash -c '
129
129
  # while true; do
130
130
  # /usr/local/bin/nvidia-smi "$VHE_GPU_PROFILE" "$VHE_GPUS" || true
131
131
  # sleep "$VHE_SMI_INTERVAL"
@@ -142,7 +142,7 @@
142
142
  # -v qemudata:/data/qemudata \
143
143
  # -v ./qemubridge.py:/engine/qemubridge.py:ro \
144
144
  # -e QMP_SOCKET=/run/vhe/vm.qmp -e PYTHONUNBUFFERED=1 \
145
- # ghcr.io/wenathlan/saddle:vhe-2.0.3 \
145
+ # ghcr.io/wenathlan/saddle:vhe-2.0.4 \
146
146
  # python3 /engine/qemubridge.py --socket /run/vhe/vm.qmp status
147
147
  #
148
148
  # saddle-node (the node-engine service, the former compose.yml
@@ -156,7 +156,7 @@
156
156
  # --log-driver json-file --log-opt max-size=50m --log-opt max-file=5 \
157
157
  # --tmpfs /tmp:size=2g,mode=1777 \
158
158
  # -e SADDLE_MEMORY_ENGINE=ram -e SBOT_PLATFORM= -e SBOT_CDN_URL= \
159
- # ghcr.io/wenathlan/saddle:2.0.3 \
159
+ # ghcr.io/wenathlan/saddle:2.0.4 \
160
160
  # node dist/cli.js plan
161
161
  #
162
162
  # observability (the former prometheus scraper of the full profile)
@@ -1238,7 +1238,7 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --start-interval=5s
1238
1238
  # OCI labels for registry introspection.
1239
1239
  LABEL org.opencontainers.image.title="saddle virtual-hardware engine (the grand merge)" \
1240
1240
  org.opencontainers.image.description="100% software virtual hardware: per-profile CPU/memory spoofing via LD_PRELOAD (max/balanced/lite), mesa 26.2.1 llvmpipe/lavapipe/rusticl, QEMU 11.1.0 TCG/MTTCG, virtual nvidia-smi adapter + NVML/CUDA shims, node 26.7.0, python bridge" \
1241
- org.opencontainers.image.version="2.0.3" \
1241
+ org.opencontainers.image.version="2.0.4" \
1242
1242
  org.opencontainers.image.licenses="MIT" \
1243
1243
  org.opencontainers.image.source="https://github.com/wenathlan/saddle" \
1244
1244
  org.opencontainers.image.documentation="https://github.com/wenathlan/saddle/blob/main/README.md" \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenathlan/saddle",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "binary computing engine that turns distributed storage into a publishable working set carrying the merged virtual-hardware engine (the saddle + e2ugh grand merge)",
5
5
  "type": "module",
6
6
  "private": false,
@@ -197,9 +197,9 @@
197
197
  "vm:create": "node ./index.ts --create-vm",
198
198
  "vm:validate": "node ./index.ts --validate-vm",
199
199
  "gpu:list": "node ./index.ts --list-gpus",
200
- "docker:build": "docker build -f Dockerfile -t saddle:2.0.3 .",
201
- "docker:run": "docker run --rm --memory-swap=-1 --shm-size=2g saddle:2.0.3",
202
- "docker:health": "docker run --rm saddle:2.0.3 qemu-system-x86_64 --version && curl -fsS http://localhost:8080/health || true",
200
+ "docker:build": "docker build -f Dockerfile -t saddle:2.0.4 .",
201
+ "docker:run": "docker run --rm --memory-swap=-1 --shm-size=2g saddle:2.0.4",
202
+ "docker:health": "docker run --rm saddle:2.0.4 qemu-system-x86_64 --version && curl -fsS http://localhost:8080/health || true",
203
203
  "firecracker:boot": "firecracker --api-sock /tmp/fc-saddle.sock --config-file vmconfig.json 2>/dev/null || echo 'firecracker 1.16.1 warm-pool boot 125ms target'",
204
204
  "py:bridge": "python3 qemubridge.py",
205
205
  "py:test": "python3 -m pytest -q || python3 qemubridge.py",
package/web/readme.md CHANGED
@@ -5,7 +5,7 @@ virtual container — cpu, ram, gpu, mesa software graphics — entirely in the
5
5
  browser, plus one self-hosted node api exposing the exact same sandbox over
6
6
  http for automation. no framework, no build step, no serverless functions.
7
7
 
8
- version 2.0.3 — reported by `/api/v1/health` and kept in lockstep with
8
+ version 2.0.4 — reported by `/api/v1/health` and kept in lockstep with
9
9
  `package.json` and the `meta.version` envelope of the ten data documents
10
10
  (v6-SYNC worklog task).
11
11