diff --git a/CHANGELOG.md b/CHANGELOG.md index 144339f97..938ea6626 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: @@ -60,8 +60,9 @@ Compare: 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 @@ -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 @@ -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 diff --git a/codex-rs/ext/goal/src/lib.rs b/codex-rs/ext/goal/src/lib.rs index 058f54f17..7bcddc57d 100644 --- a/codex-rs/ext/goal/src/lib.rs +++ b/codex-rs/ext/goal/src/lib.rs @@ -1,3 +1,5 @@ +#![recursion_limit = "256"] + //! Extension crate for the `/goal` feature. mod accounting;