-
-
Notifications
You must be signed in to change notification settings - Fork 0
#13 feat: add partial matching for nested routes #14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Add Match enum (Exact, Partial) for path matching strategy - Add partial prop to NavLink component - Update nav_link() function to require explicit Match parameter - Zero-allocation path segment comparison using iterators - Breaking change: nav_link() now requires Match as third parameter - Update examples, documentation, and README - Bump version to 0.4.0
Rust Diff AnalysisTip PR size is within limits. Good job keeping changes focused! Limits — configured thresholds for this repository
Understanding the metrics:
Summary — breakdown of changes by category
Production Changes — 6 units modified
Test Changes — 24 units modified
Analysis ScopeAnalyzed: 4 Rust files Skipped files:
|
Cargo Quality AnalysisTip All quality checks passed. Code meets all standards! Results — issues found by each analyzer
Analyzers — what each check does
Raw Output — detailed analysis log |
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
|
@rultor release |
@RAprogramm OK, I will release it now. Please check the progress here. |
@RAprogramm Oops, I failed. You can see the full log here (spent 1min). |
|
@rultor release, tag= |
@RAprogramm OK, I will release it now. Please check the progress here. |
@RAprogramm Oops, I failed. You can see the full log here (spent 1min). |
|
@rultor release, tag= |
@RAprogramm OK, I will release it now. Please check the progress here. |
@RAprogramm Oops, I failed. You can see the full log here (spent 1min). |
Summary
Matchenum withExactandPartialvariants for path matching strategypartialprop toNavLinkcomponent for prefix-based matchingnav_link()function to require explicitMatchparameterBreaking Changes
nav_link()now requiresMatchas third parameter:Usage
Test plan
MatchenumCloses #13