Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/bump-e2b-deps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@e2b/code-interpreter": patch
"e2b-code-interpreter": patch
Comment thread
mishushakov marked this conversation as resolved.
Outdated
---

Raise the minimum supported e2b SDK dependency versions.

Check failure on line 6 in .changeset/bump-e2b-deps.md

View check run for this annotation

Claude / Claude Code Review

Changeset uses wrong Python package name

The Python package key in this changeset is wrong: changesets identifies the Python workspace by `name` in `python/package.json` (`@e2b/code-interpreter-python`), not by the PyPI distribution name. As a result, the release will silently skip the Python patch bump and only bump `@e2b/code-interpreter` (JS), defeating the stated goal of releasing both. PR #261 (commit 81a811c, just two commits ago) fixed this exact same mistake in two earlier changesets — please change line 3 to `"@e2b/code-interp
Comment thread
mishushakov marked this conversation as resolved.
2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@
"defaults"
],
"dependencies": {
"e2b": "^2.19.2"
"e2b": "^2.19.4"
}
}
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions python/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ python = "^3.10"

httpx = ">=0.20.0, <1.0.0"
attrs = ">=21.3.0"
e2b = "^2.20.2"
e2b = "^2.20.3"

[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
Expand Down
Loading