project: Fix search filter patterns on remote projects (#34748)
we were join(",") and split(",") to serialize the patterns. This doesn't work when pattern includes a "," example: *.{ts,tsx} (very common pattern used by agent) help needed: how will this work on version mismatch? Release Notes: - Fixed search filter patterns on remote projects.
This commit is contained in:
parent
500ceaabcd
commit
6122f46095
2 changed files with 39 additions and 16 deletions
|
@ -288,10 +288,12 @@ message SearchQuery {
|
|||
bool regex = 3;
|
||||
bool whole_word = 4;
|
||||
bool case_sensitive = 5;
|
||||
string files_to_include = 6;
|
||||
string files_to_exclude = 7;
|
||||
repeated string files_to_include = 10;
|
||||
repeated string files_to_exclude = 11;
|
||||
bool match_full_paths = 9;
|
||||
bool include_ignored = 8;
|
||||
string files_to_include_legacy = 6;
|
||||
string files_to_exclude_legacy = 7;
|
||||
}
|
||||
|
||||
message FindSearchCandidates {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue