@mastra/e2b 0.3.0-alpha.0 → 0.3.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.
- package/CHANGELOG.md +21 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @mastra/e2b
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Added Azure Blob sandbox mount support via blobfuse2 in @mastra/e2b and @mastra/daytona. `sandbox.mount(azureBlobFilesystem, '/data')` now works for Azure containers, matching the existing s3fs (S3) and gcsfuse (GCS) integration. Supports authentication via accountKey, sasToken, connectionString, or managed identity/default credentials, and preserves AzureBlobFilesystem prefixes when mounting. ([#15874](https://github.com/mastra-ai/mastra/pull/15874))
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { E2BSandbox } from '@mastra/e2b';
|
|
11
|
+
import { AzureBlobFilesystem } from '@mastra/azure/blob';
|
|
12
|
+
|
|
13
|
+
const azureFs = new AzureBlobFilesystem({ container: 'my-data', connectionString: '...' });
|
|
14
|
+
const sandbox = new E2BSandbox();
|
|
15
|
+
await sandbox.mount(azureFs, '/data');
|
|
16
|
+
// Sandbox processes can now read/write /data/* directly against the Azure container.
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`6db978c`](https://github.com/mastra-ai/mastra/commit/6db978c42e94e75540a504f7230086f0b5cd35f9), [`512a013`](https://github.com/mastra-ai/mastra/commit/512a013f285aa9c0aa8f08a35b2ce09f9938b017), [`e9becde`](https://github.com/mastra-ai/mastra/commit/e9becdeed9176b9f8392e557bde12b933f99cf7a), [`703a443`](https://github.com/mastra-ai/mastra/commit/703a44390c587d9c0b8ae94ec4edd8afb2a74044), [`808df1b`](https://github.com/mastra-ai/mastra/commit/808df1b39358b5f10b7317107e42b1fda7c87185)]:
|
|
22
|
+
- @mastra/core@1.29.1
|
|
23
|
+
|
|
3
24
|
## 0.3.0-alpha.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/e2b",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "E2B cloud sandbox provider for Mastra workspaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"tsup": "^8.5.1",
|
|
32
32
|
"typescript": "^6.0.3",
|
|
33
33
|
"vitest": "4.1.5",
|
|
34
|
-
"@internal/lint": "0.0.
|
|
35
|
-
"@internal/types-builder": "0.0.
|
|
36
|
-
"@internal/workspace-test-utils": "0.0.
|
|
34
|
+
"@internal/lint": "0.0.88",
|
|
35
|
+
"@internal/types-builder": "0.0.63",
|
|
36
|
+
"@internal/workspace-test-utils": "0.0.32",
|
|
37
37
|
"@mastra/s3": "0.5.0",
|
|
38
38
|
"@mastra/gcs": "0.2.1",
|
|
39
|
-
"@mastra/core": "1.29.1
|
|
39
|
+
"@mastra/core": "1.29.1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@mastra/core": ">=1.12.0-0 <2.0.0-0"
|