@vercel/sandbox 1.1.6 → 1.1.7

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@1.1.6 build /home/runner/work/sandbox-sdk/sandbox-sdk/packages/vercel-sandbox
2
+ > @vercel/sandbox@1.1.7 build /home/runner/work/sandbox-sdk/sandbox-sdk/packages/vercel-sandbox
3
3
  > tsc
4
4
 
@@ -1,24 +1,24 @@
1
1
 
2
- > @vercel/sandbox@1.1.6 test /home/runner/work/sandbox-sdk/sandbox-sdk/packages/vercel-sandbox
2
+ > @vercel/sandbox@1.1.7 test /home/runner/work/sandbox-sdk/sandbox-sdk/packages/vercel-sandbox
3
3
  > vitest run
4
4
 
5
5
 
6
6
   RUN  v3.2.1 /home/runner/work/sandbox-sdk/sandbox-sdk/packages/vercel-sandbox
7
7
 
8
- ✓ src/utils/dev-credentials.test.ts (7 tests) 555ms
8
+ ✓ src/utils/dev-credentials.test.ts (7 tests) 550ms
9
9
  ✓ signInAndGetToken > times out after provided timeout  539ms
10
- ✓ src/api-client/api-client.test.ts (7 tests) 27ms
11
- ✓ src/auth/infer-scope.test.ts (9 tests) 79ms
12
- ✓ src/utils/jwt-expiry.test.ts (10 tests) 47ms
10
+ ✓ src/api-client/api-client.test.ts (7 tests) 106ms
11
+ ✓ src/auth/infer-scope.test.ts (9 tests) 45ms
12
+ ✓ src/utils/jwt-expiry.test.ts (10 tests) 45ms
13
13
  ↓ src/sandbox.test.ts (4 tests | 4 skipped)
14
- ✓ src/utils/normalizePath.test.ts (6 tests) 19ms
14
+ ✓ src/utils/normalizePath.test.ts (6 tests) 28ms
15
15
  ↓ src/command.test.ts (5 tests | 5 skipped)
16
- ✓ src/auth/linked-project.test.ts (6 tests) 60ms
16
+ ✓ src/auth/linked-project.test.ts (6 tests) 53ms
17
17
  ✓ src/utils/get-credentials.test.ts (2 tests) 30ms
18
- ✓ src/utils/types.test.js (1 test) 7ms
18
+ ✓ src/utils/types.test.js (1 test) 12ms
19
19
 
20
20
   Test Files  8 passed | 2 skipped (10)
21
21
   Tests  48 passed | 9 skipped (57)
22
-  Start at  20:03:33
23
-  Duration  11.41s (transform 834ms, setup 305ms, collect 2.88s, tests 824ms, environment 7ms, prepare 2.77s)
22
+  Start at  11:47:33
23
+  Duration  12.79s (transform 953ms, setup 317ms, collect 3.53s, tests 868ms, environment 3ms, prepare 3.13s)
24
24
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @vercel/sandbox@1.1.6 typecheck /home/runner/work/sandbox-sdk/sandbox-sdk/packages/vercel-sandbox
2
+ > @vercel/sandbox@1.1.7 typecheck /home/runner/work/sandbox-sdk/sandbox-sdk/packages/vercel-sandbox
3
3
  > tsc --noEmit
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/sandbox
2
2
 
3
+ ## 1.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Change default runtime to node24 ([#212](https://github.com/vercel/sandbox-sdk/pull/212))
8
+
3
9
  ## 1.1.6
4
10
 
5
11
  ### Patch Changes
package/dist/sandbox.d.ts CHANGED
@@ -54,7 +54,7 @@ export interface BaseCreateSandboxParams {
54
54
  };
55
55
  /**
56
56
  * The runtime of the sandbox, currently only `node24`, `node22` and `python3.13` are supported.
57
- * If not specified, the default runtime `node22` will be used.
57
+ * If not specified, the default runtime `node24` will be used.
58
58
  */
59
59
  runtime?: RUNTIMES | (string & {});
60
60
  /**
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const VERSION = "1.1.6";
1
+ export declare const VERSION = "1.1.7";
package/dist/version.js CHANGED
@@ -2,5 +2,5 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  // Autogenerated by inject-version.ts
5
- exports.VERSION = "1.1.6";
5
+ exports.VERSION = "1.1.7";
6
6
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/sandbox",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/sandbox.ts CHANGED
@@ -54,7 +54,7 @@ export interface BaseCreateSandboxParams {
54
54
 
55
55
  /**
56
56
  * The runtime of the sandbox, currently only `node24`, `node22` and `python3.13` are supported.
57
- * If not specified, the default runtime `node22` will be used.
57
+ * If not specified, the default runtime `node24` will be used.
58
58
  */
59
59
  runtime?: RUNTIMES | (string & {});
60
60
 
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Autogenerated by inject-version.ts
2
- export const VERSION = "1.1.6";
2
+ export const VERSION = "1.1.7";