June 2025 Summaries
5 posts from Daytona
Filter
Month:
Year:
Post Summaries
Back to Blog
The upcoming release of Daytona SDK v0.21.0 introduces significant changes aimed at enhancing the user experience by replacing the legacy pre-built image flow with a more robust snapshot-based architecture. This update simplifies sandbox creation, standardizes resource management, and aligns TypeScript and Python implementations for consistent behavior, while also enabling improved caching and a more declarative provisioning process. Users of v0.20.2 or earlier must update their integrations to maintain functionality, particularly if they depend on the declarative image builder, as the new version introduces breaking changes that are only temporarily backward-compatible. Scheduled downtime is expected during the upgrade, and the release includes new features such as a dedicated snapshot service and refined methods for retrieving and managing sandboxes, with deprecated methods and properties being removed for a streamlined API. The transition to v0.21.0 is encouraged to take advantage of these enhancements, and Daytona provides support for migration through various channels.
Jun 11, 2025
2,920 words in the original blog post.
The Daytona's Python SDK now supports `async` functions, giving developers more control over concurrent tasks and API calls. This allows for building fast, responsive applications with less blocking, which is essential in environments where I/O latency is the bottleneck. With the async SDK, agents and apps can run API requests in parallel, avoid freezing or idle time waiting on remote calls, scale better under heavy loads, and handle large task graphs without stalling. The new SDK plugs into the modern Python stack, including use cases with FastAPI, LangChain agents, custom event loops, and high-concurrency task managers. The async SDK is now available and offers more speed, less blocking, and better agents for building responsive systems.
Jun 05, 2025
318 words in the original blog post.
Volumes allow developers to share large files across sandboxes instantly, reducing repetitive downloads and expensive operations. Agents can mount shared file systems using FUSE-based mounts, providing instant access to large datasets, skipping repetitive downloads, sharing data across multiple sandboxes, persisting files beyond a single task or session, and reusing stored data across environments. Volumes work seamlessly with the Daytona SDK, allowing developers to upload data once and mount it anywhere, while also persisting files even after the sandbox is destroyed. This enables seamless collaboration and faster development by providing shared memory for agents, making it easy to share assets across environments.
Jun 04, 2025
336 words in the original blog post.
Dockerfile support has been added to the Daytona platform, allowing agents to use existing Dockerfiles to build and sandbox environments. This feature is particularly useful for task-based isolation, as it enables teams to work across projects with different environments without having to re-specify packages or runtime configuration. With this addition, agents can spin up compatible environments using the same infra their team relies on, eliminating guesswork and ensuring a consistent dev-agent environment mismatch. The updated Daytona SDK now supports building Snapshots directly from a Dockerfile, providing a ready-to-run environment with no human intervention required.
Jun 03, 2025
253 words in the original blog post.
Declarative Image Builder allows agents to build custom Docker images directly through the SDK without requiring manual downloads, setup, or registry interactions. This new feature simplifies image creation by removing complexity and providing a zero-human, zero-DevOps interface for environment creation. It enables true autonomy in agent operations, enabling them to spin up tailored environments on demand without needing to install Docker or touch a registry. The Declarative Image Builder is now live in the Daytona SDK, marking an important step toward agents being able to ship code directly.
Jun 02, 2025
309 words in the original blog post.