@mastra/blaxel 0.2.0-alpha.0 → 0.2.1-alpha.0

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/CHANGELOG.md +37 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # @mastra/blaxel
2
2
 
3
+ ## 0.2.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - dependencies updates: ([#15086](https://github.com/mastra-ai/mastra/pull/15086))
8
+ - Updated dependency [`@blaxel/core@^0.2.78` ↗︎](https://www.npmjs.com/package/@blaxel/core/v/0.2.78) (from `^0.2.74`, in `dependencies`)
9
+ - Updated dependencies [[`665477b`](https://github.com/mastra-ai/mastra/commit/665477bc104fd52cfef8e7610d7664781a70c220), [`4cc2755`](https://github.com/mastra-ai/mastra/commit/4cc2755a7194cb08720ff2ab4dffb4b4a5103dfd)]:
10
+ - @mastra/core@1.23.0-alpha.7
11
+
12
+ ## 0.2.0
13
+
14
+ ### Minor Changes
15
+
16
+ - Added provider-specific `blaxel` getter to access the underlying Blaxel `SandboxInstance` directly. Deprecated the generic `instance` getter in favor of the new `blaxel` getter for better IDE discoverability and consistency with other sandbox providers. ([#14166](https://github.com/mastra-ai/mastra/pull/14166))
17
+
18
+ ```typescript
19
+ // Before
20
+ const blaxelSandbox = sandbox.instance;
21
+
22
+ // After
23
+ const blaxelSandbox = sandbox.blaxel;
24
+ ```
25
+
26
+ ### Patch Changes
27
+
28
+ - Use provider-native string process IDs directly as `ProcessHandle.pid`, removing the previous `parseInt()` workaround. ([#13591](https://github.com/mastra-ai/mastra/pull/13591))
29
+
30
+ ```typescript
31
+ const handle = await sandbox.processes.spawn('node server.js');
32
+ handle.pid; // string — the Blaxel SDK's native process ID
33
+ ```
34
+
35
+ - dependencies updates: ([#13591](https://github.com/mastra-ai/mastra/pull/13591))
36
+ - Updated peerDependency `@mastra/core` to `>=1.12.0-0 <2.0.0-0`
37
+ - Updated dependencies [[`cddf895`](https://github.com/mastra-ai/mastra/commit/cddf895532b8ee7f9fa814136ec672f53d37a9ba), [`9cede11`](https://github.com/mastra-ai/mastra/commit/9cede110abac9d93072e0521bb3c8bcafb9fdadf), [`a59f126`](https://github.com/mastra-ai/mastra/commit/a59f1269104f54726699c5cdb98c72c93606d2df), [`ed8fd75`](https://github.com/mastra-ai/mastra/commit/ed8fd75cbff03bb5e19971ddb30ab7040fc60447), [`c510833`](https://github.com/mastra-ai/mastra/commit/c5108333e8cbc19dafee5f8bfefbcb5ee935335c), [`c4c7dad`](https://github.com/mastra-ai/mastra/commit/c4c7dadfe2e4584f079f6c24bfabdb8c4981827f), [`45c3112`](https://github.com/mastra-ai/mastra/commit/45c31122666a0cc56b94727099fcb1871ed1b3f6), [`7296fcc`](https://github.com/mastra-ai/mastra/commit/7296fcc599c876a68699a71c7054a16d5aaf2337), [`00c27f9`](https://github.com/mastra-ai/mastra/commit/00c27f9080731433230a61be69c44e39a7a7b4c7), [`5e7c287`](https://github.com/mastra-ai/mastra/commit/5e7c28701f2bce795dd5c811e4c3060bf2ea2242), [`7e17d3f`](https://github.com/mastra-ai/mastra/commit/7e17d3f656fdda2aad47c4beb8c491636d70820c), [`ee19c9b`](https://github.com/mastra-ai/mastra/commit/ee19c9ba3ec3ed91feb214ad539bdc766c53bb01)]:
38
+ - @mastra/core@1.12.0
39
+
3
40
  ## 0.2.0-alpha.0
4
41
 
5
42
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/blaxel",
3
- "version": "0.2.0-alpha.0",
3
+ "version": "0.2.1-alpha.0",
4
4
  "description": "Blaxel cloud sandbox provider for Mastra workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,10 +20,10 @@
20
20
  },
21
21
  "license": "Apache-2.0",
22
22
  "dependencies": {
23
- "@blaxel/core": "^0.2.71"
23
+ "@blaxel/core": "^0.2.78"
24
24
  },
25
25
  "devDependencies": {
26
- "@types/node": "22.19.13",
26
+ "@types/node": "22.19.15",
27
27
  "@vitest/coverage-v8": "4.0.18",
28
28
  "@vitest/ui": "4.0.18",
29
29
  "dotenv": "^17.3.1",
@@ -31,12 +31,12 @@
31
31
  "tsup": "^8.5.1",
32
32
  "typescript": "^5.9.3",
33
33
  "vitest": "4.0.18",
34
- "@internal/lint": "0.0.67",
35
- "@internal/workspace-test-utils": "0.0.11",
36
- "@internal/types-builder": "0.0.42",
37
- "@mastra/s3": "0.3.0-alpha.0",
38
- "@mastra/gcs": "0.2.0-alpha.0",
39
- "@mastra/core": "1.12.0-alpha.1"
34
+ "@internal/lint": "0.0.79",
35
+ "@mastra/core": "1.23.0-alpha.7",
36
+ "@internal/workspace-test-utils": "0.0.23",
37
+ "@mastra/gcs": "0.2.0",
38
+ "@mastra/s3": "0.3.0",
39
+ "@internal/types-builder": "0.0.54"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@mastra/core": ">=1.12.0-0 <2.0.0-0"