Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
3882e5d to
6180dfc
Compare
622ff85 to
3e7cda1
Compare
de9ad0c to
106c634
Compare
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.
v0.13.0 - 2026-04-11
Features
Added
Multi-target file mappings in
repoverlay.cclA source file can now map to multiple target paths using duplicate keys in the
mappingssection:mappings = .editorconfig = .editorconfig .editorconfig = packages/frontend/.editorconfigThis copies the source file to every listed target. Single-value mappings continue to work as before. All targets are tracked in the overlay state file, so
removecleans up every copy.Fixes
Fixed
Log warnings when .ccl state files fail to parse instead of silently skipping
Previously, corrupted or unparseable .ccl state files were silently ignored. Now repoverlay logs a warning message identifying the problematic file before skipping it, making it easier to diagnose configuration issues.
Command:
libraryFixed
Surface file read errors in show_file_diff instead of silently treating as empty
Previously, if reading either the existing or overlay file failed in show_file_diff, the error was silently swallowed and the file was treated as empty. Now the function logs a warning and prints a user-visible warning message identifying the problematic file before returning early.
Validate overlay names reject path separators in release builds
OverlayNamepreviously only checked for forward slashes viadebug_assert, meaning invalid names with path separators (including backslashes) could slip through in release builds. AddedOverlayName::try_newwhich returns an error for names containing/or\, and updated all user-input paths to use it.