docs(changelog): cut the 1.0.0-rc.10 section - #127
Merged
Conversation
Closes the Unreleased section as rc.10 and records the 31 commits merged since rc.9, grouped as Added / Fixed / Performance alongside the runtime-field Changed, Security and Breaking entries that were already staged. Two things stated rather than smoothed over: the max_buckets entry is marked partial, because exec_terms still has no bucket cap and that is the half that actually matters for memory safety; and the date-parse entry records that an interim scan-based guard regressed long values 16x before the bounded window replaced it, since the shipped number is only meaningful against that. Also restores the blank line before the Security heading, which an earlier conflict resolution removed while merging two entries into one section.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes the
Unreleasedsection as 1.0.0-rc.10 and records the 31 commits merged since rc.9.Grouped as Added / Fixed / Performance, alongside the runtime-field Changed, Security and Breaking entries that were already staged from the console and cluster hardening.
Two things stated rather than smoothed over
The
max_bucketsentry is marked partial. #125 fixed the histogram paths, butexec_termsstill has no bucket cap at all, and that is the half that actually matters for memory safety — measured at cap 37 over 200 distinct terms, the fast path materialised all 200. Writing it as closed would be a claim the code does not support.The date-parse entry records the interim regression. #91 → #96 went through a scan-based guard that made 64 KB values 16x slower than having no guard, before the bounded six-byte window replaced it. The shipped 217.0 → 110.2 ns/op number is only meaningful against that history.
Also restores the blank line before the
### Securityheading, which an earlier conflict resolution removed while merging two entries into one section.Not included
Release mechanics — the version bump in
engine/Cargo.toml, the tag, and the 8-target build matrix — are deliberately not in this PR. This is the changelog only, so it can land independently of the cut.