Skip to content

Releases: e2b-dev/code-interpreter

@e2b/code-interpreter@2.5.0

22 May 20:07
a214875

Choose a tag to compare

Minor Changes

  • a214875: Update e2b SDK versions

    Remove Sandbox.betaCreate (JS) and Sandbox.beta_create (Python). These methods were a beta of the lifecycle configuration that has since shipped on Sandbox.create. Migrate by calling Sandbox.create with the lifecycle option:

    // 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

22 May 20:07
a214875

Choose a tag to compare

Minor Changes

  • a214875: Update e2b SDK versions

    Remove Sandbox.betaCreate (JS) and Sandbox.beta_create (Python). These methods were a beta of the lifecycle configuration that has since shipped on Sandbox.create. Migrate by calling Sandbox.create with the lifecycle option:

    // 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

14 May 18:39
5fedbea

Choose a tag to compare

Patch Changes

  • 5fedbea: Apply cwd to bash kernel contexts (previously ignored, so pwd returned / regardless of the requested working directory)

@e2b/code-interpreter-template@0.4.0

14 May 12:35
34be25b

Choose a tag to compare

Minor Changes

@e2b/code-interpreter@2.4.2

30 Apr 18:28
4db7f15

Choose a tag to compare

Patch Changes

  • 4db7f15: Raise the minimum supported e2b SDK dependency versions.

@e2b/code-interpreter-python@2.6.2

30 Apr 18:28
4db7f15

Choose a tag to compare

Patch Changes

  • 4db7f15: Raise the minimum supported e2b SDK dependency versions.

@e2b/code-interpreter@2.4.1

28 Apr 02:13
81a811c

Choose a tag to compare

Patch Changes

  • 6d54054: Add autocomplete support for javascript, typescript, r, java, and bash languages in runCode/run_code and createCodeContext/create_code_context
  • a16388c: Raise the minimum supported e2b SDK dependency versions.

@e2b/code-interpreter-template@0.3.4

28 Apr 02:13
81a811c

Choose a tag to compare

Patch Changes

  • f326249: interrupt kernel execution on client disconnect

@e2b/code-interpreter-python@2.6.1

28 Apr 02:13
81a811c

Choose a tag to compare

Patch Changes

  • 6d54054: Add autocomplete support for javascript, typescript, r, java, and bash languages in runCode/run_code and createCodeContext/create_code_context
  • a16388c: Raise the minimum supported e2b SDK dependency versions.

@e2b/code-interpreter-template@0.3.3

31 Mar 20:25
6a3e536

Choose a tag to compare

Patch Changes

  • 6a3e536: normalize language for setting cwd