-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
[main] Update dependencies from dotnet/runtime #33821
[main] Update dependencies from dotnet/runtime #33821
Conversation
…0525.1 Microsoft.Extensions.Caching.Memory , Microsoft.Extensions.Configuration , Microsoft.Extensions.Configuration.Abstractions , Microsoft.Extensions.Configuration.EnvironmentVariables , Microsoft.Extensions.Configuration.Json , Microsoft.Extensions.DependencyInjection , Microsoft.Extensions.DependencyModel , Microsoft.Extensions.HostFactoryResolver.Sources , Microsoft.Extensions.Logging , System.Text.Json From Version 9.0.0-preview.5.24262.2 -> To Version 9.0.0-preview.5.24275.1
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.
Auto-approving dependency update.
The FrameworkReference in efcore is already set to honor these, but versions were never set.
893276d
to
09d85a0
Compare
@@ -1698,7 +1698,7 @@ public virtual Task TrimStart_with_char_argument_in_predicate(bool async) | |||
public virtual Task TrimStart_with_char_array_argument_in_predicate(bool async) | |||
=> AssertQuery( | |||
async, | |||
ss => ss.Set<Customer>().Where(c => c.ContactTitle.TrimStart('O', 'w') == "ner")); | |||
ss => ss.Set<Customer>().Where(c => c.ContactTitle.TrimStart(new [] {'O', 'w'}) == "ner")); |
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.
@AndriySvyryd Is this break going to hit our customers? Should it not be fixed in the runtime/BCL?
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.
Yes, dotnet/roslyn#73743
@@ -119,7 +119,7 @@ stages: | |||
- script: "echo ##vso[build.addbuildtag]CodeQL3000" | |||
displayName: 'Set CI CodeQL3000 tag' | |||
condition: ne(variables.CODEQL_DIST,'') | |||
- script: eng\common\cibuild.cmd -configuration $(_BuildConfig) -prepareMachine $(_InternalBuildArgs) | |||
- script: eng\common\cibuild.cmd -configuration $(_BuildConfig) -prepareMachine /bl:artifacts\log\$(_BuildConfig)\Build.binlog $(_InternalBuildArgs) |
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.
Curious, why was this necessary? AFAIK this should already be the default when calling into the cibuild.cmd/sh script.
This pull request updates the following dependencies
From https://github.com/dotnet/runtime