Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into remove-redundant-if…
Browse files Browse the repository at this point in the history
…-in-WriteUnicodeNoEscape
  • Loading branch information
SimonCropp committed Jan 24, 2025
2 parents 3d11061 + 2828321 commit f5ead0b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@ Notes](../../RELEASENOTES.md).

## Unreleased

* Fixed a bug in .NET Framework gRPC export client where the default success
export response was incorrectly marked as false, now changed to true, ensuring
exports are correctly marked as successful.
([#6099](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6099))

## 1.11.1

Released 2025-Jan-22

* Fixed an issue where the OTLP gRPC exporter did not export logs, metrics, or
traces in .NET Framework projects.
([#6067](https://github.com/open-telemetry/opentelemetry-dotnet/issues/6067))
([#6083](https://github.com/open-telemetry/opentelemetry-dotnet/pull/6083))

## 1.11.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace OpenTelemetry.Exporter.OpenTelemetryProtocol.Implementation.ExportClie
internal sealed class GrpcExportClient : IExportClient
{
private static readonly ExportClientGrpcResponse SuccessExportResponse = new(
success: false,
success: true,
deadlineUtc: default,
exception: null,
status: null,
Expand Down

0 comments on commit f5ead0b

Please sign in to comment.