Skip to content

Latest commit

 

History

History
113 lines (69 loc) · 18.7 KB

File metadata and controls

113 lines (69 loc) · 18.7 KB

@mastra/agentcore

0.3.0

Minor Changes

Patch Changes

0.3.0-alpha.0

Minor Changes

Patch Changes

0.2.4

Patch Changes

0.2.4-alpha.0

Patch Changes

  • Security remediation for the 2026-06-17 "easy-day-js" supply-chain incident. Patch bump to publish clean versions and move the latest dist-tag forward, superseding the compromised versions that declared the malicious easy-day-js dependency. (#18056)

  • Updated dependencies [77a2351]:

    • @mastra/core@1.43.1-alpha.0

0.2.1

Patch Changes

0.2.1-alpha.0

Patch Changes

0.2.0

Minor Changes

  • Added AWS Bedrock AgentCore Runtime sandbox support. (#16642)

    You can now run Workspace commands in AWS Bedrock AgentCore Runtime through a sandbox provider.

    import { AgentCoreRuntimeSandbox } from '@mastra/agentcore';
    
    const sandbox = new AgentCoreRuntimeSandbox({
      region: 'us-west-2',
      agentRuntimeArn: process.env.AGENTCORE_RUNTIME_ARN!,
    });
    
    const result = await sandbox.executeCommand('node', ['--version']);

Patch Changes

0.2.0-alpha.0

Minor Changes

  • Added AWS Bedrock AgentCore Runtime sandbox support. (#16642)

    You can now run Workspace commands in AWS Bedrock AgentCore Runtime through a sandbox provider.

    import { AgentCoreRuntimeSandbox } from '@mastra/agentcore';
    
    const sandbox = new AgentCoreRuntimeSandbox({
      region: 'us-west-2',
      agentRuntimeArn: process.env.AGENTCORE_RUNTIME_ARN!,
    });
    
    const result = await sandbox.executeCommand('node', ['--version']);

Patch Changes