Skip to content

chore(deps): bump e2b from 2.38.0 to 2.39.0 in the production-dependencies group - #129

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-3615147aa8
Closed

chore(deps): bump e2b from 2.38.0 to 2.39.0 in the production-dependencies group#129
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-3615147aa8

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 1 update: e2b.

Updates e2b from 2.38.0 to 2.39.0

Changelog

Sourced from e2b's changelog.

2.39.0

Minor Changes

  • 07eb9be: Allow a network rule's transform to be a callback, so a workload identity token from the iam option can be injected into egress requests without the SDK ever seeing its value. The callback receives placeholder strings that the egress proxy resolves per request — iam.tokens.aws is ${e2b.identity.tokens.aws} on the wire — and referencing a token that is not registered in iam.tokens fails with InvalidArgumentError / InvalidArgumentException instead of silently sending a placeholder no token will ever replace.

    updateNetwork / update_network accepts the same callbacks, but its payload carries no iam config, so token names cannot be checked there and every name resolves to its placeholder.

    Token names are validated where they are registered and again before they are interpolated: a name cannot be empty or contain {, } or control characters, since the proxy reads a placeholder up to its first } and a brace in the name would resolve a different token than the one referenced.

    import { Sandbox, Secret } from 'e2b'
    const sandbox = await Sandbox.create({
    iam: {
    tokens: {
    aws: Secret.iamToken({
    audience: 'sts.amazonaws.com',
    tokenType: 'JWT-SVID',
    }),
    },
    },
    network: {
    allowOut: ({ rules }) => [...rules.keys()],
    rules: {
    'api.internal.example.com': [
    {
    transform: ({ iam }) => ({
    headers: { Authorization: Bearer ${iam.tokens.aws} },
    }),
    },
    ],
    },
    },
    })

    from e2b import Sandbox, Secret
    sandbox = Sandbox.create(
    iam={
    "tokens": {
    "aws": Secret.iam_token(audience="sts.amazonaws.com", token_type="JWT-SVID"),
    },
    },
    network={
    "allow_out": lambda ctx: list(ctx.rules.keys()),
    "rules": {
    "api.internal.example.com": [

... (truncated)

Commits
  • ce634ab [skip ci] Release new versions
  • 07eb9be feat(sdk): resolve iam token placeholders in network transform callbacks (#1616)
  • 64b25bb feat(sdk): add iam workload identity option and Secret.iamToken helper (#1606)
  • 6acbeb3 [skip ci] Release new versions
  • cab27aa fix(sdk): clean up sandbox when MCP gateway startup fails (#1548)
  • e611141 [skip ci] Release new versions
  • d5a382e chore(js-sdk): bump undici to ^7.29.0 and optional undici8 to 8.10.0 (#1645)
  • 2d2823c [skip ci] Release new versions
  • 88f41f3 fix(python-sdk): port current JS stripAnsi regex to strip_ansi_escape_codes (...
  • 86f7b8e fix(js-sdk): export the Git argument and status types (#1642)
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 1 update: [e2b](https://github.com/e2b-dev/e2b/tree/HEAD/packages/js-sdk).


Updates `e2b` from 2.38.0 to 2.39.0
- [Release notes](https://github.com/e2b-dev/e2b/releases)
- [Changelog](https://github.com/e2b-dev/E2B/blob/main/packages/js-sdk/CHANGELOG.md)
- [Commits](https://github.com/e2b-dev/e2b/commits/e2b@2.39.0/packages/js-sdk)

---
updated-dependencies:
- dependency-name: e2b
  dependency-version: 2.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 17, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor Author

Looks like e2b is updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 24, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-3615147aa8 branch August 24, 2026 04:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants