MudAutocomplete: Remove SearchFuncWithCancel, Add CancellationToken to SearchFunc#8490
Merged
henon merged 16 commits intoMudBlazor:devfrom Mar 27, 2024
jperson2000:feature/mudautocomplete-searchfunc-cancellationtoken
Merged
MudAutocomplete: Remove SearchFuncWithCancel, Add CancellationToken to SearchFunc#8490henon merged 16 commits intoMudBlazor:devfrom jperson2000:feature/mudautocomplete-searchfunc-cancellationtoken
henon merged 16 commits intoMudBlazor:devfrom
jperson2000:feature/mudautocomplete-searchfunc-cancellationtoken
Conversation
added 3 commits
March 26, 2024 12:35
…oken to SearchFunc
…oken to SearchFunc
…https://github.com/jperson2000/MudBlazor into feature/mudautocomplete-searchfunc-cancellationtoken
6 tasks
added 2 commits
March 26, 2024 12:44
…oken to SearchFunc
…https://github.com/jperson2000/MudBlazor into feature/mudautocomplete-searchfunc-cancellationtoken
Closed
Contributor
|
There are conflicts. Please merge dev to resolve them. Added to v7.0.0 Migration Guide #8447 |
henon
approved these changes
Mar 27, 2024
Member
|
LGTM, just need to rebase and fix conflicts like henon said. |
added 9 commits
March 27, 2024 09:04
…oken to SearchFunc
…https://github.com/jperson2000/MudBlazor into feature/mudautocomplete-searchfunc-cancellationtoken
…oken to SearchFunc
…https://github.com/jperson2000/MudBlazor into feature/mudautocomplete-searchfunc-cancellationtoken
…oken to SearchFunc
…https://github.com/jperson2000/MudBlazor into feature/mudautocomplete-searchfunc-cancellationtoken
…oken to SearchFunc
Contributor
Author
|
Alright, thanks again for all the reviews and feedback! I've rebased onto |
Contributor
|
Next time please just merge |
Contributor
|
And thanks for the contribution @jperson2000 ! |
biegehydra
pushed a commit
to biegehydra/MudBlazor
that referenced
this pull request
Apr 26, 2024
…o SearchFunc (MudBlazor#8490) Co-authored-by: Jon Person <[email protected]>
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.
This breaking change removes the
SearchFuncWithCancelmethod and moves theCancellationTokenfunctionality to theSearchFuncmethod.Description
Recent changes to the MudTable
ServerDatamethod (PR 8407) led to a desire to use the same single-method pattern for other cancelable methods. This update:SearchFuncWithCancelmethodCancellationTokenparameter to theSearchFuncmethodCancellationTokenparameter.How Has This Been Tested?
Existing tests for
MudAutocompletewere modified to include theCancellationTokenparameter.Types of changes
Checklist:
dev).Notes for Reviewers
This should probably get a
v7tag and be released with similar breaking changes toMudTablein the works for #8447