-
Notifications
You must be signed in to change notification settings - Fork 10k
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
HybridCache: reflect API merge into runtime #56945
Closed
Closed
Conversation
This file contains 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
mgravell
added
the
feature-caching
Includes: StackExchangeRedis and SqlServer distributed caches
label
Jul 23, 2024
dotnet-issue-labeler
bot
added
the
needs-area-label
Used by the dotnet-issue-labeler to label those issues which couldn't be triaged automatically
label
Jul 23, 2024
3 tasks
mitchdenny
approved these changes
Jul 23, 2024
captainsafia
approved these changes
Jul 23, 2024
mkArtakMSFT
added
area-networking
Includes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractions
and removed
needs-area-label
Used by the dotnet-issue-labeler to label those issues which couldn't be triaged automatically
labels
Jul 23, 2024
mgravell
changed the base branch from
main
to
darc-main-f3720e04-8b5a-4698-a34f-0dcd1f62ebd0
July 24, 2024 16:09
mgravell
requested review from
wtgodbe,
a team,
BrennanConroy,
JamesNK,
javiercn and
mkArtakMSFT
as code owners
July 24, 2024 16:09
mgravell
changed the base branch from
darc-main-f3720e04-8b5a-4698-a34f-0dcd1f62ebd0
to
main
July 24, 2024 16:09
wow, changing the base into darc was horrifying, just horrifying; note to self: don't do that again; EOD here, but I'll see if I can manually cherry-pick a new branch into darc tomorrow |
@akoeplinger thanks; the build fix was fallout from this change - confirmed: your fix was the correct one |
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area-networking
Includes servers, yarp, json patch, bedrock, websockets, http client factory, and http abstractions
feature-caching
Includes: StackExchangeRedis and SqlServer distributed caches
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.
HybridCache: reflect API merge into runtime
In runtime 103103, the proposed HybridCache API was moved from a placeholder in aspnetcore into runtime (which owns the Microsoft.Extensions.Caching.Abstractions library). This means that the original API in aspnetcore is now duplicated and redundant. Additionally, runtime requested some minor last-minute API changes (mainly: prefer
cancellationToken
overtoken
naming, and preferIEnumerable<string>
overIReadOnlyCollection<string>
for tags parameter)This PR reflects this merge - removing the duplicated APIs, and fixing the changes impacted by the API delta.
Since 103103 was merged immediately before the preview 7 snap, this will need applying both in
main
andrelease/9.0-preview7
after the runtime deps are updated (this is themain
version). Until runtime is built and the deps are updated, aspnetcore may be unbuildable.Cross-reference: #56945 (
release/9.0-preview7
)