Go SDK Release Notes
Latest
0.10.1 (2026-09-10)
- It’s now possible to opt into a more performant Sandbox backend by setting a
MODAL_SANDBOX_V2=1environment variable or asandbox_v2 = trueprofile configuration in.modal.toml. Sandboxes will then use the new backend without any code changes. This will become the default behavior in an upcoming release; setting the flag lets you opt in early. - The client now releases the connection to a Sandbox host when the connection is idle and automatically reconnects on subsequent operations, so it is no longer necessary to call
Sandbox.Detach()for resource cleanup.
0.10.0 (2026-08-27)
- Added
Function.LogsandFunctionCall.LogsAPIs for fetching current and historical logs generated by that object. TheLogsnamespace exposes three methods: useFetchfor time-based queries,Tailfor returning the most recent entries, orStreamfor yielding entries as they arrive. Sandbox.Filesystem.CopyFromLocal/WriteBytes/WriteTextnow stream data to the Sandbox instead of issuing a request per chunk, making large writes ~2.5× faster.Function.UpdateAutoscalernow returns a struct containing the current autoscaler settings immediately after applying the change.- Breaking: Unexported
AuthTokenManager,NewAuthTokenManager,TokenAndExpiry, andValidateExecArgswhich were not meant to be part of the public API. - Breaking:
FunctionUpdateAutoscalerParams.ScaledownWindowis now typed as a*time.Durationinstead of as a*uint32.
0.9
0.9.0 (2026-07-09)
Functions.FromNameandCls.FromNamenow accept an optionalVersionparameter to look up a version-pinned Function or Cls.Secrets.FromMapis now lazy, so the returnedSecrethas an emptySecretIDuntil it is first used. Latency forSandbox.ExperimentalCreateandSandbox.Execis improved by sending the secrets directly to the Sandbox and avoiding the secret creation limits.Function.WithOptionsandCls.WithOptionsnow accept aRoutingRegionoption to override the region the Function’s or Cls’s inputs and outputs are routed through.- Added
Sandbox.Filesystem.Watchto watch a path in the Sandbox for filesystem changes. It yieldsFileWatchEventobjects and supportsRecursive, an event-typeFilter, and aTimeoutbound. - Breaking:
Sandbox.ReloadVolumesnow blocks until the Volumes have been reloaded, bounded by a new timeout (55 seconds by default) that is configurable viaSandboxReloadVolumesParams.Timeout. If the reload does not complete within that window, aTimeoutErroris raised. - Breaking: Renamed the
VolumeMountOptionstype toVolumeMountOptionsParams. UpdateWithMountOptions(&VolumeMountOptions{...})call sites accordingly. - Breaking: Changed
OutboundCIDRAllowlistandOutboundDomainAllowlistinSandboxCreateParamsfrom[]stringto*Allowlist. A non-nil*Allowlistenables allowlist mode (even with emptyEntries, which blocks all traffic of that type);nilmeans open access. MigrateOutboundCIDRAllowlist: []string{"10.0.0.0/8"}toOutboundCIDRAllowlist: &Allowlist{Entries: []string{"10.0.0.0/8"}}.
0.8
0.8.2 (2026-06-29)
- Added
Sandbox.UpdateNetworkPolicyto update the outbound network policy of a running Sandbox. BothOutboundCIDRAllowlistandOutboundDomainAllowlistmust be provided.
0.8.1 (2026-06-25)
Sandbox.CreateConnectTokennow accepts an optionalPortparameter on its params struct, controlling which container port requests are routed to when using the token. Defaults to 8080.
0.8.0 (2026-06-10)
This release primarily contains a number of breaking changes as we continue working towards 1.0.
- Added support for named Images, akin to a Modal-native Image registry, decoupling Image builds from App deployment or Sandbox creation, via
Image.PublishandImage.FromName. - Added support for restricting the domains that processes inside of a Sandbox can connect to, via
OutboundDomainAllowlistinSandboxCreateParams. - Added support for dynamic configuration of Functions:
Function.WithOptions,Function.WithConcurrency,Function.WithBatching, andFunction.Instance. - Improved reliability when uploading or downloading large data payloads for Function calls.
- Fixed a bug where adding Dockerfile commands to an Image loaded with
Image.FromIDcould fail to use the resolved Image as the base. Sandbox.Execnow rejects a relativeWorkdirclient-side withInvalidError.Sandbox.CreateandSandbox.Execnow return anInvalidErrorif anySecretsentry is nil.- Breaking: The Go SDK now reads the Image Builder Version from your Modal workspace settings, like the Python SDK. Previously, the Go SDK was hardcoded to use version
2024.10. If your workspace configuration uses a different version, your Images will rebuild once (then be cached as usual), so beware that the first run after upgrading may take longer than usual. Note that version2025.06has a number of improvements that are specifically oriented towards Sandbox workflows. - Breaking:
Sandbox.SnapshotFilesystemno longer takes a positionaltimeoutargument. The timeout now lives on the params struct asTimeout time.Duration, bringing the method to parity withSandbox.SnapshotDirectory. Migratesb.SnapshotFilesystem(ctx, 30*time.Second, params)tosb.SnapshotFilesystem(ctx, &SandboxSnapshotFilesystemParams{Timeout: 30*time.Second, ...}). - Breaking:
Sandbox.SnapshotFilesystemandSandbox.SnapshotDirectorynow accept an explicitTTLfield (atime.Duration) on their params structs, controlling how long the resulting Image is retained. Both methods default to 30 days. This is a change of default forSnapshotFilesystem, which previously kept Images indefinitely. PassTTL: modal.NoExpiryTTLto opt out of expiry. - Breaking:
Sandbox.SnapshotDirectorynow also has aTimeoutfield on its params struct with a default of 55s, which brings it to parity with filesystem snapshots. If the snapshot does not return within that window, aTimeoutErroris raised. The timeout can be set arbitrarily high to preserve the old behavior of not timing out. - Breaking:
Sandbox.Filesystemis now a field rather than a method. Migratesb.Filesystem().ReadText(...)tosb.Filesystem.ReadText(...). - Breaking:
Sandbox.FromIDno longer checks if the sandbox ID exists. You can runPollto get the status of your sandbox. - Breaking: Removed the deprecated low-level file-handle API:
Sandbox.OpenandSandboxFile. Use the Sandbox Filesystem API instead:sandbox.Filesystem. - Breaking: Removed the deprecated
Volume.ReadOnlyandVolume.IsReadOnly. UseWithMountOptions(&VolumeMountOptions{ReadOnly: &t})instead. - Breaking: All public methods now end with a
*XxxParamspointer argument, enabling forward-compatibility for future options without additional signature churn. Passnilto accept defaults. Affected methods:FunctionCall.FromID→FromID(ctx, id, *FunctionCallFromIDParams)Image.FromID→FromID(ctx, id, *ImageFromIDParams)Image.FromRegistry→FromRegistry(tag, *ImageFromRegistryParams), the*Secretfield remains insideImageFromRegistryParams(signature unchanged)Image.FromAwsEcr→FromAwsEcr(tag, secret, *ImageFromAwsEcrParams)— the*Secretargument is now a positional parameter preceding the params structImage.FromGcpArtifactRegistry→FromGcpArtifactRegistry(tag, secret, *ImageFromGcpArtifactRegistryParams)— the*Secretargument is now a positional parameter preceding the params structImage.Build→Build(ctx, app, *ImageBuildParams)Function.GetCurrentStats→GetCurrentStats(ctx, *FunctionGetCurrentStatsParams)ContainerProcess.Wait→Wait(ctx, *ContainerProcessWaitParams)Sandbox.FromID→FromID(ctx, id, *SandboxFromIDParams)Sandbox.Wait→Wait(ctx, *SandboxWaitParams)Sandbox.WaitUntilReady→WaitUntilReady(ctx, timeout, *SandboxWaitUntilReadyParams)Sandbox.Tunnels→Tunnels(ctx, timeout, *SandboxTunnelsParams)Sandbox.MountImage→MountImage(ctx, path, image, *SandboxMountImageParams)Sandbox.UnmountImage→UnmountImage(ctx, path, *SandboxUnmountImageParams)Sandbox.SnapshotDirectory→SnapshotDirectory(ctx, path, *SandboxSnapshotDirectoryParams)Sandbox.SnapshotFilesystem→SnapshotFilesystem(ctx, *SandboxSnapshotFilesystemParams)Sandbox.Poll→Poll(ctx, *SandboxPollParams)Sandbox.SetTags→SetTags(ctx, tags, *SandboxSetTagsParams)Sandbox.GetTags→GetTags(ctx, *SandboxGetTagsParams)
0.7
0.7.6 (2026-05-21)
- Added the Sandbox Filesystem API, available via
sandbox.Filesystem(). The filesystem API contains methods:fs.WriteText: Write UTF-8 to a file in the Sandbox.fs.WriteBytes: Write binary content to a file in the Sandbox.fs.ReadText: Read a file from the Sandbox and return its contents as a UTF-8 string.fs.ReadBytes: Read a file from the Sandbox and return its contents as bytes.fs.MakeDirectory: Create a new directory in the Sandbox.fs.ListFiles: List files and directories in a Sandbox directory.fs.Stat: Return metadata for a single file, directory, or symlink in the Sandbox.fs.CopyFromLocal: Copy a local file into the Sandbox.fs.CopyToLocal: Copy a file from the Sandbox to a local path.fs.Remove: Remove a file or directory in the Sandbox.
- Added
Volume.WithMountOptionsto configure mount-time options (ReadOnlyandSubPath) when attaching a Volume to a Function or Sandbox. TheSubPathoption mounts a subdirectory of the Volume instead of its root. CallingWithMountOptionsmultiple times on the same Volume stacks: fields left unset preserve their previous value. - Deprecated
Volume.ReadOnlyin favor ofWithMountOptions(&VolumeMountOptions{ReadOnly: &t}). The old method still works but will be removed in a future release. - Deprecated
Volume.IsReadOnly; track configured mount options at the call site that configured them instead.
0.7.5 (2026-05-19)
- We’ve improved the reliability of the
Sandbox.SnapshotFilesystemoperation, especially for large snapshots, and we now support setting aTimeoutlonger than 55s when necessary. - Added
Sandbox.UnmountImageto remove an image mount from a path in the Sandbox filesystem and reveal the underlying directory again. Sandboxes.Createnow accepts aTagsparameter to attach key-value tags to the Sandbox at creation time.Sandboxes.Createnow accepts anInboundCIDRAllowlistparameter to restrict which source IPs can connect inbound to a sandbox’s tunnels and connection tokens.- Renamed
CIDRAllowlisttoOutboundCIDRAllowlistto distinguish from the corresponding inbound allowlist. - The Go SDK can now respond more gracefully to server throttling (e.g., rate limiting) by backing off and automatically retrying.
0.7.4 (2026-04-03)
Sandboxes.Createnow accepts anIncludeOidcIdentityTokenparameter. When enabled, aMODAL_IDENTITY_TOKENenvironment variable is injected into the sandbox, enabling OIDC-based authentication (e.g., for AWS federation).- We’re introducing a concept of “readiness probes” for
Sandbox. This feature lets you configure a readiness check on a TCP port, withNewTCPProbe, or by executing a process, withNewExecProbe. Callingsb.WaitUntilReady()will block until the Probe succeeds.
0.7.3 (2026-03-12)
- Migrated the SDK from
github.com/modal-labs/libmodaltogithub.com/modal-labs/modal-client.
0.7.2 (2026-02-26)
- Updated
Sandboxmethods to wait for newly created sandboxes to be ready and not error immediately when it’s not available yet.
0.7.1 (2026-02-23)
- No changes affecting the Go SDK.
0.7.0 (2026-02-23)
- Added
Sandbox.MountImage, which mounts an Image to a path in the Sandbox’s filesystem. - Added
Sandbox.SnapshotDirectory, which snapshots a directory in the running sandbox and creates a new Image from it. - Upgraded
Sandbox.Exec, bringing improved performance and reliability. - Added a
Sandbox.Detachto disconnect your client from the sandbox and clean up any resources associated with the connection. We strongly recommend callingDetachafter you are done interacting with the sandbox.Detachdoes not close streams fromSandbox.Stdout. These streams should be closed using theirClosemethod. Sandbox.Terminatedetaches by default. To interact with a running sandbox, useSandboxes.FromIDto create a new Sandbox object.Sandbox.Terminatenow accepts aWaitparameter to wait for the sandbox to terminate and return the exit code.
Breaking changes:
- Changed
Sandbox.Terminate, which now returns(int, error). Theintis the return code when&SandboxTerminateParams{Wait: true}is passed in. - Added a
Sandbox.Detachto disconnect your client from the sandbox and clean up any resources associated with the connection. We strongly recommend callingDetachafter you are done interacting with the sandbox.
0.6
0.6.3 (2026-02-18)
- Fixed a bug where deleting a Volume, Queue, or Secret with
AllowMissing: truecould still raise aNOT_FOUNDerror. - Improved handling of degraded HTTP/2 connections, which addresses intermittent RST_STREAM errors.
0.6.2 (2026-02-09)
- No changes affecting the Go SDK.
0.6.1 (2026-01-30)
- Added custom domains to
Sandboxes.Create. Note that Sandbox custom domains work differently from Function custom domains and must currently be set up manually by Modal; please get in touch if this feature interests you.
0.6.0 (2025-12-10)
- Added
enable_dockerexperimental option toSandbox.Create.
0.5
0.5.6 (2025-12-02)
- Added
Sandbox.CreateConnectToken.
0.5.5 (2025-11-25)
- Enabled goroutine leak detection for all tests by default.
- Fixed a few remaining goroutine leaks.
- Test clean-ups: ensure we always terminate Sandboxes, close ephemeral objects, etc.
- Added debug logging to
CloudBucketMountcreation, bringing it in line with the JS SDK. - Aligned the way the Go SDK handles empty/missing fields in gRPC messages, so the behavior is identical to the Python SDK.
0.5.4 (2025-11-10)
- Enabled goleak for goroutine leak detection in tests.
- Fixed all detected goroutine leaks in Sandboxes and Images.
- Added deletion methods for
VolumeandSecretobjects and updated the deletion methods onQueueobjects to support idempotent deletion via theAllowMissingparameter.
0.5.3 (2025-11-08)
- Fixed a bug where
Sandbox.Execwould leak goroutines.
0.5.2 (2025-11-04)
- Allow adding custom gRPC interceptors when creating a Modal client, to allow instrumentation, custom telemetry, etc.
0.5.1 (2025-11-03)
- All Go SDK functions that take a Context will respect the timeout of the context.
- Improved the error message when calling a webhook Function as a normal Function.
- Allow customizing the config file path via
MODAL_CONFIG_PATHenvironment variable (defaults to~/.modal.toml). - Added support for passing
MODAL_LOGLEVEL=debugenvironment variable to also log debug logs, incl. all gRPC calls, etc.
0.5.0 (2025-10-28)
The first beta release of the Modal SDK for Go (graduating from alpha). See the Migration Guide for a detailed list of breaking changes.
- The SDK now exposes a central
Clientobject as the main entry point for interacting with Modal resources. - The interface for working with Modal object instances (Functions, Sandboxes, Images, etc.) is largely the same as before, with some naming changes.
- Calling deployed Functions and classes now uses a new protocol for payload serialization which requires the deployed apps to use the Modal Python SDK 1.2 or newer.
- Internally removed the global client (and config/profile data in global scope), moving all that to the Client type.
- Consistent parameter naming across the Go and JS SDKs: all
Optionsstructs renamed toParams. - Changed how we do context passing, so contexts now only affect the current operation and are not used for lifecycle management of the created resources.
- All
Paramsstructs are now passed as pointers for consistency and to support optional parameters. - Field names follow Go casing conventions (e.g.,
Id→ID,Url→URL,TokenId→TokenID). - Added explicit unit suffixes to all parameters that represent memory amounts (in MiB, suffixed with
MiB).
Additional new features:
- Added support for setting CPU and memory limits when creating Sandboxes and Cls instances.
0.0
0.0.25 (2025-10-08)
- Internal updates for how authentication tokens are handled for input plane clients.
0.0.24 (2025-09-19)
- Added an
Envparameter to several methods, as a convenience for passing environment variables into Sandboxes, etc. - Added
Sandbox.GetTags().
0.0.23 (2025-09-15)
- Added support for PTYs in Sandboxes.
0.0.22 (2025-09-11)
- Added
ImageDockerfileCommands().
0.0.21 (2025-09-08)
- Added support for setting idle timeout when creating Sandboxes.
0.0.20 (2025-09-02)
- Added
ImageDelete(). - Changed
NewImageFromId()to return aNotFoundErrorif the Image does not exist. Note that the signature ofNewImageFromId()has changed.
0.0.19 (2025-08-26)
- No changes affecting the Go SDK.
0.0.18 (2025-08-26)
- Added
Image.Build. - Added
NewImageFromId. - Operations on an ephemeral Queue after having called
CloseEphemeral()will now explicitly fail. - Added support for instantiating a Cls with custom options, using
Cls.WithOptions()/.WithConcurrency()/.WithBatching(). - Added support for Named Sandboxes (example in
examples/sandbox-named/main.go). - Added support for
VolumeEphemeral().
0.0.17 (2025-08-22)
- Added support for more parameters to
Sandbox.Create():BlockNetwork: Whether to block all network access from the Sandbox.CIDRAllowlist: List of CIDRs the Sandbox is allowed to access.GPU: GPU reservation for the Sandbox (e.g. “A100”, “T4:2”, “A100-80GB:4”).Cloud: Cloud provider to run the Sandbox on.Regions: Region(s) to run the Sandbox on.Verbose: Enable verbose logging.Proxy: Connect a Modal Proxy to a Sandbox.Workdir: Set the working directory.
- Added support for mounting
CloudBucketMounts to Sandboxes. - Added top-level Image objects that are lazy. The Images are built when creating a Sandbox.
NewImageFromRegistryNewImageFromAwsEcrNewImageFromGcpArtifactRegistry
- Added
SecretFromMap()to create a Secret from key-value pairs (likefrom_dict()in Python). - Added
Namefield toApps,Sandboxes,Secrets,Volumes, andQueues. - Added support for
Function.GetCurrentStats(). - Added support for
Function.UpdateAutoscaler(). - Added support for
Function.GetWebURL(). - Added support for
Volume.ReadOnly(). - Added support for setting tags on Sandboxes, and for listing Sandboxes (by tag).
0.0.16 (2025-08-07)
- Added support for getting Sandboxes from an ID.
0.0.15 (2025-07-23)
- Added support for snapshotting the filesystem of a Sandbox.
- Added support for polling Sandboxes to check if they are still running, or get the exit code.
- Added support to execute commands in Sandboxes with Secrets.
- Added support for creating Sandboxes with Secrets.
0.0.14 (2025-07-07)
- Added support for setting up Tunnels to expose live TCP ports for Sandboxes.
0.0.13 (2025-07-03)
- Fixed calls of Cls with experimental
input_plane_regionoption. - Removed
Function.InputPlaneURLfrom being exposed as public API.
0.0.12 (2025-07-02)
- Added support for passing a Secret to
ImageFromRegistry()to pull images from private registries. - Added support for creating Images from Google Artifact Registry with
ImageFromGcpArtifactRegistry(). - Added experimental support for calling remote Functions deployed with the
input_plane_regionoption in Python.
0.0.11 (2025-06-30)
- Added
InitializeClient()to initialize the client at runtime with credentials. - The client library no longer panics at startup if no token ID / Secret is provided. Instead, it will return an error when trying to use the client.
0.0.10 (2025-06-28)
- Added
WorkdirandTimeoutoptions toExecOptionsfor Sandbox processes.
0.0.9 (2025-06-27)
- Added support for Sandbox filesystem.
0.0.8 (2025-06-18)
- Added support for creating Images from AWS ECR with
App.ImageFromAwsEcr(). - Added support for accessing Modal Secrets with
modal.SecretFromName().
0.0.7 (2025-06-09)
- Added support for the
Queueobject to manage distributed FIFO queues. - Added
InvalidError,QueueEmptyError, andQueueFullErrorto support Queues. - Options in the Go SDK now take pointer types, and can be
nilfor default values.
0.0.6 (2025-05-30)
- Added support for spawning Functions with
Function.Spawn().
0.0.5 (2025-05-03)
- Added feature for looking up and calling remote classes via the
Clsobject. - Removed the initial
ctx context.Contextargument fromFunction.Remote().
0.0.4 (2025-05-02)
- Support calling remote Functions with arguments greater than 2 MiB in byte payload size.
0.0.3 (2025-04-29)
- First public release
- Basic
Function,Sandbox,Image, andContainerProcesssupport