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: 20 additions & 0 deletions .config/nextest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,23 @@ threads-required = 'num-cpus'
[[profile.ci.overrides]]
filter = 'package(uffs-client) & test(shmem::)'
threads-required = 'num-cpus'

# The `tests_perf` suite asserts WALL-CLOCK budgets (e.g. tree metrics
# under 100 ms for 100 K files). Run under the normal fan-out — 2 400+
# tests saturating every core — those numbers measure scheduler
# contention, not the code: the same test that takes ~88 ms alone was
# observed at 118 ms and 436 ms while the rest of the suite ran, i.e. a
# false failure on an unchanged code path (verified by measuring the
# identical test before and after the polars 0.54→0.55 bump: 86-93 ms vs
# 88 ms).
#
# Give them the whole machine so the measurement means something. The
# budgets themselves are deliberately UNCHANGED — the fix is to measure
# honestly, never to widen the threshold until it stops failing.
[[profile.default.overrides]]
filter = 'package(uffs-mft) & test(tests_perf::)'
threads-required = 'num-cpus'

[[profile.ci.overrides]]
filter = 'package(uffs-mft) & test(tests_perf::)'
threads-required = 'num-cpus'
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.31] - 2026-08-11

### Added

- fetch: extract public uffs-fetch transport lib; dep refresh + rmcp 3 (#583)
- self-upgrading MCP supervisor, permanent daemon residency, and a repo health pass (#588)

## [0.6.30] - 2026-07-23

### Added
Expand Down Expand Up @@ -2733,7 +2740,8 @@ thin clients over a unified `uffsd` process.
### Fixed
- Various MFT parsing edge cases

[Unreleased]: https://github.com/skyllc-ai/UltraFastFileSearch/compare/v0.6.30...HEAD
[Unreleased]: https://github.com/skyllc-ai/UltraFastFileSearch/compare/v0.6.31...HEAD
[0.6.31]: https://github.com/skyllc-ai/UltraFastFileSearch/compare/v0.6.30...v0.6.31
[0.6.30]: https://github.com/skyllc-ai/UltraFastFileSearch/compare/v0.6.29...v0.6.30
[0.6.29]: https://github.com/skyllc-ai/UltraFastFileSearch/compare/v0.6.28...v0.6.29
[0.6.28]: https://github.com/skyllc-ai/UltraFastFileSearch/compare/v0.6.27...v0.6.28
Expand Down
Loading
Loading