From 34ca3ecf6e084a7f2022299dcda4ade1f7a3c63c Mon Sep 17 00:00:00 2001 From: "erode-release[bot]" <264616670+erode-release[bot]@users.noreply.github.com> Date: Wed, 6 May 2026 07:59:26 +0000 Subject: [PATCH 1/2] chore(release): release 0.9.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7e08ec6..ee2bfff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.2" + ".": "0.9.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index abd2c6a..847caa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.9.3](https://github.com/erode-app/erode/compare/0.9.2...0.9.3) (2026-05-06) + + +### Bug Fixes + +* **core:** tune provider generation and drift coverage ([#170](https://github.com/erode-app/erode/issues/170)) ([6d37ad3](https://github.com/erode-app/erode/commit/6d37ad38d9df001509f1f626b0a6f34e1ff9c01a)) + + +### Build System + +* **deps-dev:** bump @commitlint/config-conventional from 20.5.0 to 20.5.3 ([#165](https://github.com/erode-app/erode/issues/165)) ([0857f24](https://github.com/erode-app/erode/commit/0857f2423c6a7c405d14447281303cf0ec339de7)) +* **deps-dev:** bump eslint from 10.2.1 to 10.3.0 ([#167](https://github.com/erode-app/erode/issues/167)) ([8175c0f](https://github.com/erode-app/erode/commit/8175c0f8d2169167e6945d4ef86a9dbc8fc6cc8c)) +* **deps:** bump @anthropic-ai/sdk from 0.91.1 to 0.92.0 ([#164](https://github.com/erode-app/erode/issues/164)) ([b903b1e](https://github.com/erode-app/erode/commit/b903b1ece5f633d492ad87d2a533110ab459bb41)) +* **deps:** bump @google/genai from 1.50.1 to 1.51.0 ([#168](https://github.com/erode-app/erode/issues/168)) ([18d8a4e](https://github.com/erode-app/erode/commit/18d8a4eff7f7be2762f291cc5874058a58770159)) +* **deps:** bump likec4 from 1.54.0 to 1.56.0 ([#166](https://github.com/erode-app/erode/issues/166)) ([33e5433](https://github.com/erode-app/erode/commit/33e5433d935d1dfc69e280ae9444612b01794c28)) + ## [0.9.2](https://github.com/erode-app/erode/compare/0.9.1...0.9.2) (2026-04-30) diff --git a/package-lock.json b/package-lock.json index 50f7a4d..533fd0f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "erode-monorepo", - "version": "0.9.2", + "version": "0.9.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "erode-monorepo", - "version": "0.9.2", + "version": "0.9.3", "license": "MIT", "workspaces": [ "packages/*" diff --git a/package.json b/package.json index 501cdbd..2b70f59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "erode-monorepo", - "version": "0.9.2", + "version": "0.9.3", "private": true, "license": "MIT", "workspaces": [ From 10565f72545246a40255c33c55065b67440969cf Mon Sep 17 00:00:00 2001 From: Anders Hassis Date: Wed, 6 May 2026 10:25:00 +0200 Subject: [PATCH 2/2] docs(release): expand 0.9.3 notes --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 847caa7..f94f211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,23 @@ * **core:** tune provider generation and drift coverage ([#170](https://github.com/erode-app/erode/issues/170)) ([6d37ad3](https://github.com/erode-app/erode/commit/6d37ad38d9df001509f1f626b0a6f34e1ff9c01a)) +### Notes + +* Provider calls now use shared generation profiles instead of raw stage-level token + counts. Each provider maps the same intent to its own output budget and reasoning + settings. +* OpenAI now uses the Responses API with `gpt-5-mini` and `gpt-5` as the default + fast and advanced models. Anthropic defaults were updated to `claude-haiku-4-5` + and `claude-sonnet-4-6`. +* Gemini and OpenAI now tune reasoning by phase. Extraction stays cheap, model + updates get more room, and drift analysis keeps the stronger model without + spending extra reasoning by default. +* Drift analysis now has to account for every added dependency and includes code + evidence in the dependency section. This makes missed relationships and new + component links easier to spot in review. +* Provider truncation errors now name the output budget that ran out, so failures are + easier to diagnose and retry with a smaller change. + ### Build System