chore: 🚢 release v1.9.0#612
Merged
Merged
Conversation
PasteurBot
requested review from
apaleyes,
dionhaefner,
jpbrodrick89 and
xalelax
as code owners
May 27, 2026 12:53
Codecov Report✅ All modified and coverable lines are covered by tests.
Additional details and impacted files@@ Coverage Diff @@
## main #612 +/- ##
==========================================
- Coverage 77.16% 67.22% -9.94%
==========================================
Files 32 32
Lines 4519 4519
Branches 743 743
==========================================
- Hits 3487 3038 -449
- Misses 727 1237 +510
+ Partials 305 244 -61 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
dionhaefner
approved these changes
May 27, 2026
dionhaefner
enabled auto-merge (squash)
May 27, 2026 18:40
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This PR contains the generated changelog for the release v1.9.0.
To specify additional release notes, please edit this comment after the following line.
Highlights
Environment variables in
tesseract_config.yamlYou can now set environment variables directly in
tesseract_config.yamlvia a newenv:section, without resorting tocustom_build_steps:These values are baked into the Docker image at build time. You can still override them at runtime with
tesseract serve --envortesseract run --env. (#591)Timeout parameter for the Python API
Tesseract.from_image()andTesseract.from_url()now accept an optionaltimeoutparameter to guard against hanging HTTP requests (e.g. when a container runs out of memory):The default remains no timeout, so existing code is unaffected. (#597)
Tesseract.container_info()A new
container_info()method on theTesseractclass exposes the underlying Docker container object during a serve session. This is useful for resource monitoring, executing commands inside the container, or retrieving container logs outside of the SDK:(#601)
Other changes
tesseract servenow supports a--skip-health-checkflag (also available asskip_health_checkinTesseract.from_image()). Use this for Tesseracts with slow startup, e.g. due to JIT compilation or large model loading. The caller is responsible for polling/healthmanually. (feat: addtesseract serve --skip-health-checkargument #596)field_order), allowing downstream clients to restore the correct order even after round-tripping through systems that scramble JSON keys. (feat: Explicitly export IO schema field order #595)clickis now an explicit dependency, fixing potential import errors with newer versions oftyper. (fix: addclickto base install dependencies #610)