-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[main] Update dependencies from dotnet/runtime dotnet/efcore #39853
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
Merged
dotnet-maestro
merged 16 commits into
main
from
darc-main-16ab2935-d071-478c-a9e7-5cefbd6e2865
Feb 3, 2022
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a174e73
Update dependencies from https://github.com/dotnet/efcore build 20220…
dotnet-maestro[bot] 10b5c18
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] ac1e2ae
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] 802420f
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] 99db95b
Update dependencies from https://github.com/dotnet/efcore build 20220…
dotnet-maestro[bot] ded2faa
Update migration test to account for inheritdoc
captainsafia 2659c50
Update using for X509Certificates
captainsafia a445f6d
Update dependencies from https://github.com/dotnet/efcore build 20220…
dotnet-maestro[bot] 673f063
Update using for X509Certificates
captainsafia 62fd0bf
Undo usings fix
captainsafia 3a8641c
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] 11e6ad0
Update dependencies from https://github.com/dotnet/runtime build 2022…
dotnet-maestro[bot] e0ac343
Update dependencies from https://github.com/dotnet/efcore build 20220…
dotnet-maestro[bot] cb5ed1b
Update dependencies from https://github.com/dotnet/efcore build 20220…
dotnet-maestro[bot] 0d109c3
Update SDK
BrennanConroy 26ac552
Merge branch 'main' into darc-main-16ab2935-d071-478c-a9e7-5cefbd6e2865
BrennanConroy 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
src/Components/Authorization/src/CascadingAuthenticationState.razor
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -272,11 +272,13 @@ public void AssertEmptyMigration(string migration) | |
| Assert.NotNull(file); | ||
| var contents = File.ReadAllText(file); | ||
|
|
||
| var emptyMigration = @"protected override void Up(MigrationBuilder migrationBuilder) | ||
| var emptyMigration = @"/// <inheritdoc /> | ||
| protected override void Up(MigrationBuilder migrationBuilder) | ||
| { | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just curious: Why are there blank lines between these braces❔ We don't do that in regular code. |
||
| } | ||
|
|
||
| /// <inheritdoc /> | ||
| protected override void Down(MigrationBuilder migrationBuilder) | ||
| { | ||
|
|
||
|
|
||
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.
@pranavkm Here's the issue I mentioned
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.
#39950
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.
This is fixed now