Bump Grpc.Net.Client from 2.56.0 to 2.57.0 (#2912)
* Bump Grpc.Net.Client from 2.52.0 to 2.57.0 Bumps [Grpc.Net.Client](https://github.com/grpc/grpc-dotnet) from 2.52.0 to 2.57.0. - [Release notes](https://github.com/grpc/grpc-dotnet/releases) - [Changelog](https://github.com/grpc/grpc-dotnet/blob/master/doc/release_process.md) - [Commits](https://github.com/grpc/grpc-dotnet/compare/v2.52.0...v2.57.0) --- updated-dependencies: - dependency-name: Grpc.Net.Client dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Generated files * Revert changes in production code * Fix build test application --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Piotr Kiełkowicz <pkiekowicz@splunk.com>
This commit is contained in:
parent
bdb42a2627
commit
afefa2cac8
|
|
@ -60,7 +60,7 @@ public static class LibraryVersion
|
|||
new List<PackageBuildInfo>
|
||||
{
|
||||
new("2.52.0"),
|
||||
new("2.56.0"),
|
||||
new("2.57.0"),
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<PackageVersion Include="GraphQL.MicrosoftDI" Version="7.6.1" />
|
||||
<PackageVersion Include="GraphQL.Server.Transports.AspNetCore" Version="7.6.0" />
|
||||
<PackageVersion Include="GraphQL.Server.Ui.Playground" Version="7.6.0" />
|
||||
<PackageVersion Include="Grpc.Net.Client" Version="2.56.0" />
|
||||
<PackageVersion Include="Grpc.Net.Client" Version="2.57.0" />
|
||||
<PackageVersion Include="Grpc.Net.Client.Web" Version="2.57.0" />
|
||||
<PackageVersion Include="Grpc.Tools" Version="2.51.0" />
|
||||
<PackageVersion Include="MassTransit" Version="8.1.0" />
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ public static class LibraryVersion
|
|||
new object[] { string.Empty }
|
||||
#else
|
||||
new object[] { "2.52.0" },
|
||||
new object[] { "2.56.0" },
|
||||
new object[] { "2.57.0" },
|
||||
#endif
|
||||
};
|
||||
public static readonly IReadOnlyCollection<object[]> MassTransit = new List<object[]>
|
||||
|
|
|
|||
|
|
@ -12,8 +12,8 @@
|
|||
<PackageReference Include="Grpc.Net.Client.Web" Condition="'$(TargetFramework)' == 'net462'" VersionOverride="$(LibraryVersion)" />
|
||||
<PackageReference Include="Grpc.Tools" VersionOverride="2.44.0" />
|
||||
<!-- Workaround! Microsoft.Extensions.Logging.Abstractions v.3.1.0 is minimal version supported by auto instrumentation.
|
||||
Grpc.Net.Client references older version. It prevents to load required version from Additional Dependencies store-->
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" VersionOverride="3.1.0" />
|
||||
Grpc.Net.Client prior to 2.57.0 references older version. It prevents to load required version from Additional Dependencies store-->
|
||||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" VersionOverride="3.1.0" Condition="'$(LibraryVersion)' != '' and '$(LibraryVersion)'<'2.57.0'" />
|
||||
<PackageReference Include="System.Diagnostics.DiagnosticSource" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue