Releases: rtk-ai/rtk
Releases · rtk-ai/rtk
dev-0.43.0-rc.287
Merge pull request #2554 from rtk-ai/fix/global-never-worse-guard fix(core): never-worse output guard
dev-0.43.0-rc.286
Merge pull request #2550 from rtk-ai/fix/grep-context-flags fix(grep): correctly handle all flag shapes and never exceed raw output
dev-0.43.0-rc.285
Merge pull request #1334 from wlami/feat/pulumi-add-cli-filters feat(pulumi): add CLI filters for preview/up/destroy/refresh/stack
dev-0.43.0-rc.284
Merge pull request #2502 from Tailoo/fix/2501-dotnet-test-failure-dedup fix(dotnet): stop duplicating failures on failing test runs (#2501)
dev-0.43.0-rc.283
Merge pull request #2294 from jsiu93/fix/vitest-reporter-passthrough fix(vitest): preserve explicit reporters
dev-0.43.0-rc.282
Merge pull request #2514 from rtk-ai/fix/oc-classification-resync fix(tests): resync & list oc as passthrough for test
dev-0.43.0-rc.280
refactor(grep): extract error-exit decision into pure unit-tested fn Address KuSh review on #2465: - Move the `exit_code >= 2` decision into a pure `is_grep_error_exit` function and unit-test it directly (0/1 = normal, >=2 = error), instead of faking the rg binary in an integration test. - Drop the GREP_ERROR_EXIT const; the doc comment on the function conveys the grep/rg exit convention. - Remove tests/grep_error_test.rs (faked binary) in favour of the unit test. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
dev-0.43.0-rc.279
Merge pull request #2416 from BrokkAi/fix/hook-uv-run-pytest fix(hook): rewrite pytest under uv run
dev-0.43.0-rc.278
fix(grep): use portable --null in system grep fallback (BSD/macOS) The system-grep fallback (used when ripgrep is not installed) passed -rnHZ, relying on -Z for the NUL filename separator the match parser requires. -Z only means --null on GNU grep; on BSD/macOS grep it is an alias for --decompress (zgrep mode), so output is plain file:line:content with no NUL. parse_match_line() then matches zero filenames and every result collapses into "N matches in 0 files" with all lines hidden behind [+N more]. Use the long option --null instead, which both GNU and BSD grep define as "print a zero-byte after the file name". Related to #2310 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
dev-0.43.0-rc.277
Merge pull request #2394 from hgunduzoglu/fix/diff-modified-lines-fal…