Release code-interpreter 0.4.4#63
Merged
Merged
Conversation
Bump code-interpreter and executor to 0.4.4 (FastAPI/Starlette upgrade, configurable executor Docker network, dependency bumps since 0.4.3). Also publish a versioned image tag from docker-build-push.yml so consumers can pin a specific release instead of tracking :latest. The build runs via workflow_dispatch on main, where type=semver yields no tag, so the version is read from pyproject.toml and emitted via type=raw alongside :latest. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Danelegend
approved these changes
Jun 23, 2026
jmelahman
added a commit
that referenced
this pull request
Jul 9, 2026
Keep code-interpreter in sync with the executor version bump: update code-interpreter/pyproject.toml, its uv.lock, and the Helm chart version from 0.4.4 to 0.4.5. Matches the release convention from #63. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
jmelahman
added a commit
that referenced
this pull request
Jul 9, 2026
* Add reportlab and svglib PDF-generation libraries Add two PDF-generation libraries to the executor bundle: - reportlab (>=5.0.0, BSD): the standard library for programmatic PDF generation. Pillow is already bundled, so this adds only 1 package. - svglib (>=2.0.2, LGPL-3.0): converts SVG into ReportLab drawings, giving a clean path from matplotlib SVG output to PDF. Adds 4 small pure-Python deps (cssselect2, tinycss2, webencodings + itself). Skipped xhtml2pdf (HTML->PDF): it pulls ~20 packages including a PDF-signing/crypto stack (pyHanko, oscrypto, asn1crypto) and pins reportlab<5, which is at odds with the "lightweight" goal. svglib's LGPL-3.0 license matches the existing fpdf2 dependency, so it introduces no new licensing posture. Bump executor 0.4.4 -> 0.4.5. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * Bump code-interpreter and Helm chart to 0.4.5 Keep code-interpreter in sync with the executor version bump: update code-interpreter/pyproject.toml, its uv.lock, and the Helm chart version from 0.4.4 to 0.4.5. Matches the release convention from #63. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Bumps
code-interpreterandexecutorfrom0.4.3→0.4.4and updates the publish workflow to emit a versioned image tag.Version bump
code-interpreter/pyproject.toml+executor/pyproject.toml:0.4.3→0.4.4uv.lockrefreshed for both (version-only change)Changes included in 0.4.4 since the
0.4.3tag:PYTHON_EXECUTOR_DOCKER_NETWORK(feat: make executor Docker network configurable via PYTHON_EXECUTOR_DOCKER_NETWORK #51)Publish versioned tags
docker-build-push.ymlhistorically only published:latest, because the build runs viaworkflow_dispatchonmainwheretype=semverresolves to nothing. This adds a step that readsversionfrompyproject.tomland emits it viatype=raw, so each build now pushes bothonyxdotapp/code-interpreter:<version>/onyxdotapp/python-executor-sci:<version>and:latest. The existingtype=semverline is kept so thev*tag path still works.Release steps (manual, after merge)
main.code-interpreter-0.4.4.workflow_dispatch) onmain→ publishes:0.4.4+:latestfor both images.Once
:0.4.4is published, the companion Onyx PR pins the deployment to it.🤖 Generated with Claude Code