@vercel/sandbox 0.0.19 → 0.0.20
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-typecheck.log +1 -1
- package/CHANGELOG.md +6 -0
- package/README.md +3 -3
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/src/version.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -134,7 +134,7 @@ const sandbox = await Sandbox.create({
|
|
|
134
134
|
type: "git",
|
|
135
135
|
},
|
|
136
136
|
resources: { vcpus: 4 },
|
|
137
|
-
// Defaults to 5 minutes. The maximum is 45 minutes.
|
|
137
|
+
// Defaults to 5 minutes. The maximum is 5 hours for Pro/Enterprise, and 45 minutes for Hobby.
|
|
138
138
|
timeout: ms("5m"),
|
|
139
139
|
ports: [3000],
|
|
140
140
|
runtime: "node22",
|
|
@@ -144,8 +144,8 @@ const sandbox = await Sandbox.create({
|
|
|
144
144
|
## Limitations
|
|
145
145
|
|
|
146
146
|
- Max resources: 8 vCPUs. You will get 2048 MB of memory per vCPU.
|
|
147
|
-
- Sandboxes have a maximum runtime duration of
|
|
148
|
-
minutes. This can be configured using the `timeout` option of `Sandbox.create()`.
|
|
147
|
+
- Sandboxes have a maximum runtime duration of 5 hours for Pro/Enterprise and 45 minutes for Hobby,
|
|
148
|
+
with a default of 5 minutes. This can be configured using the `timeout` option of `Sandbox.create()`.
|
|
149
149
|
|
|
150
150
|
## System
|
|
151
151
|
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "0.0.
|
|
1
|
+
export declare const VERSION = "0.0.20";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Autogenerated by inject-version.ts
|
|
2
|
-
export const VERSION = "0.0.
|
|
2
|
+
export const VERSION = "0.0.20";
|