Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
<PackageVersion Include="Confluent.Kafka" Version="[2.4.0,)" />
<PackageVersion Include="Grpc.Core.Api" Version="[2.46.6,)" />
<PackageVersion Include="InfluxDB.Client" Version="[4.18.0,)" />
<PackageVersion Include="Microsoft.ServiceFabric.Actors" Version="[7.1.2448,)" />
<PackageVersion Include="Microsoft.ServiceFabric.Services.Remoting" Version="[7.1.2448,)" />
<PackageVersion Include="Microsoft.ServiceFabric.Actors" Version="[8.4.268,)" />
<PackageVersion Include="Microsoft.ServiceFabric.Services.Remoting" Version="[8.4.268,)" />
<PackageVersion Include="Quartz" Version="[3.6.3,)" />
<PackageVersion Include="StackExchange.Redis" Version="[2.6.122,)" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

* Raised the minimum required version of `Microsoft.ServiceFabric.Actors` and
`Microsoft.ServiceFabric.Services.Remoting` from `7.1.2448` to `8.4.268`, as the
`7.1` Service Fabric runtime is going out of support.
([#4510](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/4510))

* Updated OpenTelemetry core component version(s) to `1.16.0`.
([#4487](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/4487))

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<!--
Service Fabric runtime assembly. ServiceFabric.Mocks and the Microsoft.ServiceFabric.*
packages are built against different System.Fabric versions, so an explicit redirect is
required for the mock state providers/managers to type-load correctly on .NET Framework.
Only relevant for the net462 target; binding redirects are ignored on .NET Core/5+.
-->
<dependentAssembly>
<assemblyIdentity name="System.Fabric" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>