Skip to content
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

[Exporter.Stackdriver] Update dependencies #794

Merged
merged 10 commits into from
Nov 30, 2022
3 changes: 3 additions & 0 deletions src/OpenTelemetry.Exporter.Stackdriver/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

* Fix the issue of incorrect handling of null attributes.
([#566](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/566))
* Support for Google Cloud Dependencies up to 3.x.x
and OTel SDK package to 1.3.1
([#794](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/794))

## 1.0.0-beta.3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<MinVerTagPrefix>Exporter.Stackdriver-</MinVerTagPrefix>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Cloud.Monitoring.V3" Version="2.6.0" />
<PackageReference Include="Google.Cloud.Trace.V2" Version="2.3.0" />
<PackageReference Include="OpenTelemetry" Version="1.2.0" />
<PackageReference Include="Google.Cloud.Monitoring.V3" Version="[2.6.0,4.0)" />
<PackageReference Include="Google.Cloud.Trace.V2" Version="[2.3.0,4.0)" />
<PackageReference Include="OpenTelemetry" Version="$(OpenTelemetryCoreLatestVersion)" />
</ItemGroup>

<ItemGroup>
Expand Down