vercel-vm-factory 0.19.8 → 0.20.8

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.
Files changed (2) hide show
  1. package/config.mjs +3 -3
  2. package/package.json +1 -1
package/config.mjs CHANGED
@@ -1,9 +1,9 @@
1
1
  export const defaultWsShellImage = "ghcr.io/v1xingyue/ws-shell:v1.8.alpine";
2
2
 
3
3
  export const vmImages = {
4
- alpine: "alpine:3.23",
5
- ubuntu: "ubuntu:24.04",
6
- debian: "debian:13-slim",
4
+ alpine: "alpine:3.23.5",
5
+ ubuntu: "ubuntu:26.10",
6
+ debian: "debian:13.5",
7
7
  };
8
8
 
9
9
  export const shells = ["/bin/bash", "/bin/zsh", "/bin/sh"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel-vm-factory",
3
- "version": "0.19.8",
3
+ "version": "0.20.8",
4
4
  "description": "Create Vercel Container deployments for ws-shell from selectable VM images.",
5
5
  "license": "MIT",
6
6
  "type": "module",