[eas-cli] filter observe:routes results by route names#3744
Merged
douglowder merged 4 commits intoMay 19, 2026
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3744 +/- ##
==========================================
+ Coverage 56.64% 56.99% +0.36%
==========================================
Files 906 902 -4
Lines 39041 38874 -167
Branches 8154 8127 -27
==========================================
+ Hits 22110 22154 +44
+ Misses 15454 15263 -191
+ Partials 1477 1457 -20 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Wire the new routeNames filter on AppObserveNavigationRoutesFilter (synced from the server in 7270e89) through fetchObserveNavigationRoutesAsync and expose it on observe:routes as a repeatable --route-name flag so users can limit the table to one or more specific routes. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
595aee6 to
2eac784
Compare
kadikraman
approved these changes
May 19, 2026
|
✅ Thank you for adding the changelog entry! |
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.

Why
The
eas observe:routescommand lacked the ability to filter navigation route results by specific route names. Users had no way to narrow down the routes data to only the routes they cared about.How
A new
--route-nameflag (repeatable) was added to the command. When one or more values are provided, they are collected into arouteNamesarray and forwarded to thefetchObserveNavigationRoutesAsyncfunction, which passes them along in the GraphQL filter. An empty array is treated the same as omitting the flag — norouteNameskey is sent in the filter.Example:
Test Plan