@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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @vercel/sandbox@0.0.19 build /home/runner/work/sandbox-sdk/sandbox-sdk/packages/sandbox
2
+ > @vercel/sandbox@0.0.20 build /home/runner/work/sandbox-sdk/sandbox-sdk/packages/sandbox
3
3
  > tsc
4
4
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @vercel/sandbox@0.0.19 typecheck /home/runner/work/sandbox-sdk/sandbox-sdk/packages/sandbox
2
+ > @vercel/sandbox@0.0.20 typecheck /home/runner/work/sandbox-sdk/sandbox-sdk/packages/sandbox
3
3
  > tsc --noEmit
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/sandbox
2
2
 
3
+ ## 0.0.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Update max timeouts limit ([#125](https://github.com/vercel/sandbox-sdk/pull/125))
8
+
3
9
  ## 0.0.19
4
10
 
5
11
  ### Patch Changes
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 45 minutes, with a default of 5
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.19";
1
+ export declare const VERSION = "0.0.20";
package/dist/version.js CHANGED
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  // Autogenerated by inject-version.ts
5
- exports.VERSION = "0.0.19";
5
+ exports.VERSION = "0.0.20";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/sandbox",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Autogenerated by inject-version.ts
2
- export const VERSION = "0.0.19";
2
+ export const VERSION = "0.0.20";