@mastra/daytona 0.9.0 → 0.9.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @mastra/daytona
2
2
 
3
+ ## 0.9.1-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed Daytona computer use to remain disabled unless `computerUse` is explicitly enabled, preventing unexpected computer tools from being added after upgrading. ([#22478](https://github.com/mastra-ai/mastra/pull/22478))
8
+
9
+ - Updated dependencies [[`078affd`](https://github.com/mastra-ai/mastra/commit/078affdaea57ac5e95a77e9e7b197d1878190684), [`9e3403e`](https://github.com/mastra-ai/mastra/commit/9e3403e9868240cb18841898e84cf008ebd7a87e), [`791bf5e`](https://github.com/mastra-ai/mastra/commit/791bf5e81cd27e2e1cff66122f1380ab8a3dda41)]:
10
+ - @mastra/core@1.63.1-alpha.1
11
+
3
12
  ## 0.9.0
4
13
 
5
14
  ### Minor Changes
package/LICENSE.md CHANGED
@@ -1,10 +1,12 @@
1
1
  Portions of this software are licensed as follows:
2
2
 
3
- - All content that resides under any directory named "ee/" within this
3
+ - All content that resides under any directory named `ee/` within this
4
4
  repository, including but not limited to:
5
- - `packages/core/src/auth/ee/`
6
- - `packages/server/src/server/auth/ee/`
7
- is licensed under the license defined in `ee/LICENSE`.
5
+ - `@mastra/core/auth/ee`
6
+ - `@mastra/core/agent-builder/ee`
7
+ - `@mastra/editor/ee`
8
+
9
+ is licensed under the license defined in [`ee/LICENSE`](https://github.com/mastra-ai/mastra/blob/main/ee/LICENSE).
8
10
 
9
11
  - All third-party components incorporated into the Mastra Software are
10
12
  licensed under the original license provided by the owner of the
package/dist/index.cjs CHANGED
@@ -747,10 +747,10 @@ var DaytonaSandbox = class DaytonaSandbox extends _mastra_core_workspace.MastraS
747
747
  ...options.target !== void 0 && { target: options.target }
748
748
  };
749
749
  this._constructorOptions = { ...options };
750
- const computerUseOption = options.computerUse ?? true;
750
+ const computerUseOption = options.computerUse;
751
751
  this.computerUseAutoStart = typeof computerUseOption === "object" ? computerUseOption.autoStart ?? true : true;
752
752
  this.noVncPort = typeof computerUseOption === "object" ? computerUseOption.noVncPort ?? DEFAULT_NOVNC_PORT : DEFAULT_NOVNC_PORT;
753
- if (computerUseOption !== false) this.computer = this.createComputer();
753
+ if (computerUseOption === true || typeof computerUseOption === "object") this.computer = this.createComputer();
754
754
  }
755
755
  generateId() {
756
756
  return `daytona-sandbox-${Date.now().toString(36)}-${Math.random().toString(36).slice(2, 8)}`;