-
Notifications
You must be signed in to change notification settings - Fork 6.5k
whitelist command prefix integration in core and tui #7033
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
Open
zhao-oai
wants to merge
25
commits into
main
Choose a base branch
from
pr7033
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+680
−112
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
c83c02a
Add approval allow-prefix flow in core and tui
zhao-oai e02bec1
Add explicit prefix-approval decision and wire it through execpolicy/…
zhao-oai e5dfe47
update doc
zhao-oai 9d53ba3
mutating in memory policy instead of reloading
zhao-oai e3666a8
using RW locks
zhao-oai 43639ac
clippy
zhao-oai 0a271ec
refactor: adding allow_prefix into ApprovedAllowPrefix
zhao-oai a6ee828
fmt
zhao-oai 02727ec
do not send allow_prefix if execpolicy is disabled
zhao-oai 2653050
moving args around
zhao-oai 4500d81
cleanup exec_policy getters
zhao-oai 3ff387b
undo diff
zhao-oai 0127034
fixing rw lock bug causing tui to hang
zhao-oai e3bbfcb
updating phrasing
zhao-oai 81397ce
integration test
zhao-oai 0771081
.
zhao-oai feac0f2
fix compile
zhao-oai 110c86f
fix flaky test
zhao-oai e84a31d
fix compile error
zhao-oai df02863
running test with single thread
zhao-oai 64fee01
fixup allow_prefix_if_applicable
zhao-oai 7dfb715
fix formatting
zhao-oai 215c57e
fix approvals test
zhao-oai dcf5e1e
only cloning when needed
zhao-oai a394661
docs
zhao-oai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, this feels slightly undesirable since
SessionConfigurationis already generally wrapped in a mutex, but maybe this is OK, I'm not sure yet...