Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
20 changes: 17 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Known evidence gaps:

## [Unreleased]

## [0.1.90] - 2026-08-11
## [0.1.90] - 2026-08-12

Tag: `rust-v0.1.90`
npm: <https://www.npmjs.com/package/@hasna/codewith/v/0.1.90>
Expand All @@ -60,8 +60,9 @@ Compare: <https://github.com/hasna/codewith/compare/rust-v0.1.88...rust-v0.1.90>
This release publishes the complete `0.1.89` candidate after correcting the
hosted idle-schedule regression fixture that stopped the earlier release. It
completes the post-`0.1.88` workflow execution and scheduling repairs, adds
verifiable Instructions provenance for background-agent launches, and restores
the Blacksmith remote test route.
verifiable Instructions provenance for background-agent launches, restores the
Blacksmith remote test route, and includes the goal, loop, and skill-loading
repairs that landed on current main before publication.

### Added

Expand All @@ -73,6 +74,8 @@ the Blacksmith remote test route.
(#545)
- Test infrastructure now includes a supported Blacksmith Testbox workflow and
skill for remote Codewith validation. (#497)
- Goal plans can explicitly clear inherited per-goal and plan-wide token
budgets while preserving omitted budget fields. (#555)

### Fixed

Expand All @@ -97,6 +100,17 @@ the Blacksmith remote test route.
- The hosted idle-admission regression fixture now claims owner-scoped due
occurrences, so the release gate exercises the intended busy-retry behavior
without failing before product admission logic. (#550)
- Delegated goal-plan work now resumes correctly after inherited budgets are
cleared. (#556)
- Native loops can persist without an expiry while an omitted expiry still
receives the existing seven-day default. (#558)
- Skill discovery treats unreadable directories as non-fatal and continues
loading from the remaining configured roots. (#569)

### Tests

- The app-server busy-deferral regression now covers the configured ten-minute
recurrence interval.

## [0.1.89] - 2026-08-11

Expand Down
2 changes: 2 additions & 0 deletions codex-rs/ext/goal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![recursion_limit = "256"]

//! Extension crate for the `/goal` feature.

mod accounting;
Expand Down
Loading