Releases: e2b-dev/code-interpreter
Releases · e2b-dev/code-interpreter
@e2b/code-interpreter@2.5.0
Minor Changes
-
a214875: Update e2b SDK versions
Remove
Sandbox.betaCreate(JS) andSandbox.beta_create(Python). These methods were a beta of thelifecycleconfiguration that has since shipped onSandbox.create. Migrate by callingSandbox.createwith thelifecycleoption:// before await Sandbox.betaCreate({ autoPause: true }) // after await Sandbox.create({ lifecycle: { onTimeout: 'pause' } })
# before Sandbox.beta_create(auto_pause=True) # after Sandbox.create(lifecycle={"on_timeout": "pause"})
@e2b/code-interpreter-python@2.7.0
Minor Changes
-
a214875: Update e2b SDK versions
Remove
Sandbox.betaCreate(JS) andSandbox.beta_create(Python). These methods were a beta of thelifecycleconfiguration that has since shipped onSandbox.create. Migrate by callingSandbox.createwith thelifecycleoption:// before await Sandbox.betaCreate({ autoPause: true }) // after await Sandbox.create({ lifecycle: { onTimeout: 'pause' } })
# before Sandbox.beta_create(auto_pause=True) # after Sandbox.create(lifecycle={"on_timeout": "pause"})
@e2b/code-interpreter-template@0.4.1
Patch Changes
- 5fedbea: Apply cwd to bash kernel contexts (previously ignored, so
pwdreturned/regardless of the requested working directory)
@e2b/code-interpreter-template@0.4.0
Minor Changes
- 34be25b: remove Deno kernel
@e2b/code-interpreter@2.4.2
Patch Changes
- 4db7f15: Raise the minimum supported e2b SDK dependency versions.
@e2b/code-interpreter-python@2.6.2
Patch Changes
- 4db7f15: Raise the minimum supported e2b SDK dependency versions.
@e2b/code-interpreter@2.4.1
@e2b/code-interpreter-template@0.3.4
Patch Changes
- f326249: interrupt kernel execution on client disconnect
@e2b/code-interpreter-python@2.6.1
@e2b/code-interpreter-template@0.3.3
Patch Changes
- 6a3e536: normalize language for setting cwd