Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 2 updates - #134

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

chore(deps): bump the production-dependencies group across 1 directory with 2 updates#134
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-4da5ed8d1e

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 2 updates in the / directory: e2b and next.

Updates e2b from 2.38.0 to 2.44.1

Changelog

Sourced from e2b's changelog.

2.44.1

Patch Changes

  • d000bbd: Fix Volume.exists() to return false for missing paths again — getInfo() now throws VolumePathNotFoundError (which no longer subclasses the deprecated NotFoundError), so the 404 catch is updated accordingly.

2.44.0

Minor Changes

  • 5759f17: Add an E2B client that binds a connection config once and exposes the resource surfaces off it, so a single process can talk to several API keys, domains or deployments. The classes it exposes are per-client subclasses of the real Sandbox/Volume/Template/Secret classes, so they behave exactly like the top-level ones — per-call options still win over the client's options, which win over the environment variables. The named top-level exports are unchanged and keep reading the environment.

    Nothing existing changes: Template is now the TemplateBase class made callable as a factory, so Template(...), the statics and instanceof keep working, and the default export is still Sandbox.

    import { E2B } from 'e2b'
    const { Sandbox, Volume, Template, Secret } = new E2B({
    apiKey: 'e2b_***',
    domain: 'e2b.dev',
    })
    const sandbox = await Sandbox.create()
    const volume = await Volume.create('my-volume')
    const exists = await Template.exists('my-template')
    await Template.build(Template().fromPythonImage('3'), 'my-env')
    await Secret.create('openai-api-key', 'sk-***')

    from e2b import E2B
    client = E2B(api_key="e2b_***", domain="e2b.dev")
    Sandbox, Volume, Template = client.Sandbox, client.Volume, client.Template
    Secret = client.Secret
    sandbox = Sandbox.create()
    volume = Volume.create("my-volume")
    exists = Template.exists("my-template")
    secret = Secret.create("openai-api-key", "sk-***")
    Async variants are exposed too.
    AsyncSandbox = client.AsyncSandbox
    async_sandbox = await AsyncSandbox.create()

2.43.0

Minor Changes

... (truncated)

Commits
  • 5995e0a [skip ci] Release new versions
  • d000bbd test: mock all volume tests and remove ENABLE_VOLUME_TESTS skip flag (#1734)
  • 33195ae [skip ci] Release new versions
  • 5759f17 feat(sdk): add E2B client for multiple bound connection configs (#1720)
  • 2e26b82 [skip ci] Release new versions
  • f89f8c3 Add secrets management to JS and Python SDKs (#1728)
  • d79c6cd refactor(js-sdk): drop unused stackTrace params from error constructors (#1732)
  • 05aa03c Add typed not-found errors for volumes (#1730)
  • 61503f7 fix(js-sdk): guard runtime-probed iam token names in network transforms (#1715)
  • 2be6c12 refactor(sdk): resolve template config through a bound-opts class hook (#1721)
  • Additional commits viewable in compare view

Updates next from 16.3.0 to 16.3.1

Release notes

Sourced from next's releases.

v16.3.1

What's Changed

Full Changelog: vercel/next.js@v16.3.0...v16.3.1

v16.3.1-canary.26

Misc Changes

  • docs: document deploymentId build ID override and Pages Router skew in 16.2: #97645
  • Upgrade React from eb8feb71-20260814 to eafeac09-20260819: #97636
  • Turbopack: rename to use turbopack: no side effects: #94427
  • refactor: move useDynamic{Route,Search}Params to reduce snapshot churn: #97360
  • [PPF] unstable_navigation(): #96908
  • [PPF] Scaffold unstable_navigation(): #97236
  • docs: Explicit cache output description: #97548
  • Improve Cache Components sync IO migration guidance: #97572
  • [test] Use a non-native stub for the server externals list test: #97614
  • Avoid GitHub API rate limits for create-next-app examples: #97612
  • [test] Cover the prerender worker-thread backend with an addon we control: #97543
  • [test] Convert the prerender-native-module suite to local fixture packages: #97542
  • [test] Replace the turbopack-reports sqlite3 dependency with a local addon fixture: #97541
  • [test] Drop the dead sqlite3 build approval from the sharp-basic suite: #97540
  • [ci] Authenticate Turborepo remote caching with OIDC instead of a static PAT: #97590
  • Remove HmrTarget: #97253
  • Keep HMR instructions typed until serialization: #96569
  • Serialize frozen collections by value only: #96686

Credits

... (truncated)

Commits
  • 3d32eb8 v16.3.1
  • 2b4b1ec [backport] Revert i18n localization change for dynamic Pages API routes (#949...
  • 228df5f [backport] Retain fewer stale cache versions and use a TTL, plus the mtime fa...
  • 16eab3a [backport] Fix: Optimistic routing bugs leading to repeated prefetch loops (#...
  • 75548c9 [backport] Fix Nav Inspector request loop on repeat captures (#97326)
  • f6bd714 [backport] [test] Compile the middleware redirect routes up front in dev (#97...
  • 43c1c60 [16.3] [ci] Use OIDC tokens to read private preview builds (#97258)
  • 9dbb357 [backport] Encode the cache item name built by unstable_cache (#97313)
  • 323a17c [backport] Discard only cache entries that predate a tag revalidation, and re...
  • 6d67f46 [backport] Keep the dev validation worker alive across HMR updates (#97315)
  • Additional commits viewable in compare view

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

…y with 2 updates

Bumps the production-dependencies group with 2 updates in the / directory: [e2b](https://github.com/e2b-dev/e2b/tree/HEAD/packages/js-sdk) and [next](https://github.com/vercel/next.js).


Updates `e2b` from 2.38.0 to 2.44.1
- [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.44.1/packages/js-sdk)

Updates `next` from 16.3.0 to 16.3.1
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](vercel/next.js@v16.3.0...v16.3.1)

---
updated-dependencies:
- dependency-name: e2b
  dependency-version: 2.44.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: next
  dependency-version: 16.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 24, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 31, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-4da5ed8d1e branch August 31, 2026 04:35
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