@mastra/blaxel 0.0.1 → 0.0.2
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 +9 -0
- package/LICENSE.md +15 -0
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @mastra/blaxel
|
|
2
2
|
|
|
3
|
+
## 0.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Adds Blaxel cloud sandbox provider ([#13015](https://github.com/mastra-ai/mastra/pull/13015))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`df170fd`](https://github.com/mastra-ai/mastra/commit/df170fd139b55f845bfd2de8488b16435bd3d0da), [`ae55343`](https://github.com/mastra-ai/mastra/commit/ae5534397fc006fd6eef3e4f80c235bcdc9289ef), [`c290cec`](https://github.com/mastra-ai/mastra/commit/c290cec5bf9107225de42942b56b487107aa9dce), [`f03e794`](https://github.com/mastra-ai/mastra/commit/f03e794630f812b56e95aad54f7b1993dc003add), [`aa4a5ae`](https://github.com/mastra-ai/mastra/commit/aa4a5aedb80d8d6837bab8cbb2e301215d1ba3e9), [`de3f584`](https://github.com/mastra-ai/mastra/commit/de3f58408752a8d80a295275c7f23fc306cf7f4f), [`d3fb010`](https://github.com/mastra-ai/mastra/commit/d3fb010c98f575f1c0614452667396e2653815f6), [`702ee1c`](https://github.com/mastra-ai/mastra/commit/702ee1c41be67cc532b4dbe89bcb62143508f6f0), [`f495051`](https://github.com/mastra-ai/mastra/commit/f495051eb6496a720f637fc85b6d69941c12554c), [`e622f1d`](https://github.com/mastra-ai/mastra/commit/e622f1d3ab346a8e6aca6d1fe2eac99bd961e50b), [`861f111`](https://github.com/mastra-ai/mastra/commit/861f11189211b20ddb70d8df81a6b901fc78d11e), [`00f43e8`](https://github.com/mastra-ai/mastra/commit/00f43e8e97a80c82b27d5bd30494f10a715a1df9), [`1b6f651`](https://github.com/mastra-ai/mastra/commit/1b6f65127d4a0d6c38d0a1055cb84527db529d6b), [`96a1702`](https://github.com/mastra-ai/mastra/commit/96a1702ce362c50dda20c8b4a228b4ad1a36a17a), [`cb9f921`](https://github.com/mastra-ai/mastra/commit/cb9f921320913975657abb1404855d8c510f7ac5), [`114e7c1`](https://github.com/mastra-ai/mastra/commit/114e7c146ac682925f0fb37376c1be70e5d6e6e5), [`1b6f651`](https://github.com/mastra-ai/mastra/commit/1b6f65127d4a0d6c38d0a1055cb84527db529d6b), [`72df4a8`](https://github.com/mastra-ai/mastra/commit/72df4a8f9bf1a20cfd3d9006a4fdb597ad56d10a)]:
|
|
10
|
+
- @mastra/core@1.8.0
|
|
11
|
+
|
|
3
12
|
## 0.0.2-alpha.0
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Apache License 2.0
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Kepler Software, Inc.
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/blaxel",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Blaxel cloud sandbox provider for Mastra workspaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,35 +18,25 @@
|
|
|
18
18
|
},
|
|
19
19
|
"./package.json": "./package.json"
|
|
20
20
|
},
|
|
21
|
-
"scripts": {
|
|
22
|
-
"build": "tsup --silent --config tsup.config.ts",
|
|
23
|
-
"build:lib": "pnpm build",
|
|
24
|
-
"build:watch": "pnpm build --watch",
|
|
25
|
-
"test:unit": "vitest run --exclude '**/*.integration.test.ts'",
|
|
26
|
-
"test:watch": "vitest watch",
|
|
27
|
-
"test": "vitest run ./src/**/*.integration.test.ts",
|
|
28
|
-
"test:cloud": "pnpm test",
|
|
29
|
-
"lint": "eslint ."
|
|
30
|
-
},
|
|
31
21
|
"license": "Apache-2.0",
|
|
32
22
|
"dependencies": {
|
|
33
23
|
"@blaxel/core": "^0.2.64"
|
|
34
24
|
},
|
|
35
25
|
"devDependencies": {
|
|
36
|
-
"@internal/lint": "workspace:*",
|
|
37
|
-
"@internal/types-builder": "workspace:*",
|
|
38
|
-
"@internal/workspace-test-utils": "workspace:*",
|
|
39
|
-
"@mastra/core": "workspace:*",
|
|
40
|
-
"@mastra/gcs": "workspace:*",
|
|
41
|
-
"@mastra/s3": "workspace:*",
|
|
42
26
|
"@types/node": "22.19.7",
|
|
43
|
-
"@vitest/coverage-v8": "
|
|
44
|
-
"@vitest/ui": "
|
|
27
|
+
"@vitest/coverage-v8": "4.0.18",
|
|
28
|
+
"@vitest/ui": "4.0.18",
|
|
45
29
|
"dotenv": "^17.2.3",
|
|
46
30
|
"eslint": "^9.37.0",
|
|
47
31
|
"tsup": "^8.5.1",
|
|
48
|
-
"typescript": "
|
|
49
|
-
"vitest": "
|
|
32
|
+
"typescript": "^5.9.3",
|
|
33
|
+
"vitest": "4.0.18",
|
|
34
|
+
"@internal/lint": "0.0.63",
|
|
35
|
+
"@internal/workspace-test-utils": "0.0.7",
|
|
36
|
+
"@mastra/gcs": "0.1.1",
|
|
37
|
+
"@mastra/core": "1.8.0",
|
|
38
|
+
"@internal/types-builder": "0.0.38",
|
|
39
|
+
"@mastra/s3": "0.2.0"
|
|
50
40
|
},
|
|
51
41
|
"peerDependencies": {
|
|
52
42
|
"@mastra/core": ">=1.3.0-0 <2.0.0-0"
|
|
@@ -66,5 +56,15 @@
|
|
|
66
56
|
},
|
|
67
57
|
"engines": {
|
|
68
58
|
"node": ">=22.13.0"
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "tsup --silent --config tsup.config.ts",
|
|
62
|
+
"build:lib": "pnpm build",
|
|
63
|
+
"build:watch": "pnpm build --watch",
|
|
64
|
+
"test:unit": "vitest run --exclude '**/*.integration.test.ts'",
|
|
65
|
+
"test:watch": "vitest watch",
|
|
66
|
+
"test": "vitest run ./src/**/*.integration.test.ts",
|
|
67
|
+
"test:cloud": "pnpm test",
|
|
68
|
+
"lint": "eslint ."
|
|
69
69
|
}
|
|
70
|
-
}
|
|
70
|
+
}
|