Skip to content

chore: 🚢 release v1.5.0#507

Merged
xalelax merged 9 commits into
mainfrom
bot/release/v1.5.0
Mar 5, 2026
Merged

chore: 🚢 release v1.5.0#507
xalelax merged 9 commits into
mainfrom
bot/release/v1.5.0

Conversation

@PasteurBot

@PasteurBot PasteurBot commented Mar 4, 2026

Copy link
Copy Markdown
Contributor

This PR contains the generated changelog for the release v1.5.0.

⚠️ Merging this PR will immediately trigger a new release. ⚠️

To specify additional release notes, please edit this comment after the following line.


Action required: migrate away from Tesseract(url)

The Tesseract(url) constructor is now deprecated and will be removed in a future release. Calling it now raises an explicit deprecation warning. Update your code:

# Before
t = Tesseract("http://localhost:8080")

# After
t = Tesseract.from_url("http://localhost:8080")

Highlights

Profiling and tracing

We've added two new tesseract run flags for debugging without modifying your code:

tesseract run --tracing ...    # structured logs of function inputs/outputs
tesseract run --profiling ...  # cProfile report after execution

Live log streaming

Logs from inside a running Tesseract are now streamed in real time instead of buffered until completion, useful for long-running jobs.

CLI: works automatically with tesseract run.

Python API (from_image and from_tesseract_api only — not available with from_url):

t = Tesseract.from_image("my-image", stream_logs=True)                   # streams to stderr
t = Tesseract.from_image("my-image", stream_logs=lambda msg: save(msg))  # custom handler

Things to look out for

See the changelog below for the full list of changes.

@codecov

codecov Bot commented Mar 4, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 68.14%. Comparing base (33f01a2) to head (f32f272).

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #507      +/-   ##
==========================================
- Coverage   68.19%   68.14%   -0.05%     
==========================================
  Files          31       31              
  Lines        4094     4094              
  Branches      652      652              
==========================================
- Hits         2792     2790       -2     
- Misses       1077     1079       +2     
  Partials      225      225              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@xalelax xalelax self-assigned this Mar 5, 2026
@xalelax
xalelax merged commit 1fd863a into main Mar 5, 2026
32 checks passed
@xalelax
xalelax deleted the bot/release/v1.5.0 branch March 5, 2026 14:35
@pasteurlabs pasteurlabs locked and limited conversation to collaborators Mar 5, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants