-
Notifications
You must be signed in to change notification settings - Fork 48
chore(release): 0.33.1 #1079
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(release): 0.33.1 #1079
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,10 @@ | ||
| ## 0.33.1 (2026-08-26) | ||
|
|
||
| ### Features | ||
| * The resolved symbol table is now forwarded to v0 sessions, enabling downstream session actions to access resolved symbols. (#1077) | ||
|
|
||
| ### Bug Fixes | ||
| * Fixed incorrect host CPU and disk utilization metrics. CPU and disk usage values are now reported correctly. Additionally, host metrics collection is now non-fatal — if the metrics thread cannot be started, the agent will log a warning instead of crashing. (#1036) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The disk part of this entry does not match what
Worse, the commit explicitly split the disk-percentage fix out into its own change ("refactor: move the total-disk-used-percent fix to its own change ... it rescales a published metric by 100x, so it needs its own BREAKING CHANGE entry"). That fix is The disk-rate metrics are not really fixed here either: before this change The CPU claim is accurate and is the substantive fix (each
|
||
| ## 0.33.0 (2026-08-21) | ||
|
|
||
| ### BREAKING CHANGES | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#1077also bumped a hard-pinned runtime dependency, and that is not mentioned in these release notes.08a5878changespyproject.toml:The pin is exact (
==), and per that PR's own comment the coupling is bidirectional:resolved_symtabwas added to the v0 Session'senter_environment/exit_environment/run_task(so these callsTypeErroragainst 0.11.0), andextra_let_bindingswas removed from the same three methods (so anything still passing itTypeErrors against 0.12.0).That matters to two audiences the changelog serves:
0.33.0above already documents asession_runtimeconfig and a Rust runtime adapter, so consumers are actively tracking which OpenJD versions each agent release requires.The wording is also thin for the audience: "the resolved symbol table is now forwarded to v0 sessions, enabling downstream session actions to access resolved symbols" restates the mechanism rather than the effect.
0.33.0's entry for the sibling change (#1063) shows the useful shape — it names the concrete symbols (Job.Name,Param.*,RawParam.*, stepletvalues). This entry is the v0/Python-runtime counterpart of that, which is worth saying, since a reader who applied #1063 has no way to tell from this text that it previously only covered the Rust runtime.Suggested: