Skip to content

Releases: rtk-ai/rtk

dev-0.43.0-rc.287

25 Jun 07:08
af81b08

Choose a tag to compare

dev-0.43.0-rc.287 Pre-release
Pre-release
Merge pull request #2554 from rtk-ai/fix/global-never-worse-guard

fix(core): never-worse output guard

dev-0.43.0-rc.286

23 Jun 20:01
ee9e2f8

Choose a tag to compare

dev-0.43.0-rc.286 Pre-release
Pre-release
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

23 Jun 19:44
ced70c6

Choose a tag to compare

dev-0.43.0-rc.285 Pre-release
Pre-release
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

22 Jun 13:56
6946bf9

Choose a tag to compare

dev-0.43.0-rc.284 Pre-release
Pre-release
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

20 Jun 15:24
e3f60e9

Choose a tag to compare

dev-0.43.0-rc.283 Pre-release
Pre-release
Merge pull request #2294 from jsiu93/fix/vitest-reporter-passthrough

fix(vitest): preserve explicit reporters

dev-0.43.0-rc.282

19 Jun 15:31
444f1c0

Choose a tag to compare

dev-0.43.0-rc.282 Pre-release
Pre-release
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

18 Jun 15:12

Choose a tag to compare

dev-0.43.0-rc.280 Pre-release
Pre-release
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

18 Jun 14:19
c8722bd

Choose a tag to compare

dev-0.43.0-rc.279 Pre-release
Pre-release
Merge pull request #2416 from BrokkAi/fix/hook-uv-run-pytest

fix(hook): rewrite pytest under uv run

dev-0.43.0-rc.278

16 Jun 21:48

Choose a tag to compare

dev-0.43.0-rc.278 Pre-release
Pre-release
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

16 Jun 18:36
3a73bcd

Choose a tag to compare

dev-0.43.0-rc.277 Pre-release
Pre-release
Merge pull request #2394 from hgunduzoglu/fix/diff-modified-lines-fal…