Update CHANGELOG for 1.4.0-beta.1 release (#3711)

This commit is contained in:
Utkarsh Umesan Pillai 2022-09-29 17:30:59 -07:00 committed by GitHub
parent c40effd449
commit 6b7cc222dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 72 additions and 0 deletions

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* Updated to System.Diagnostics.DiagnosticSource version `7.0.0-rc.1.22426.10`.
([#3698](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3698))

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* Changed the behavior of `ConsoleExporter`, the exporter will stop outputting
the data if it is disposed.
([#3578](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3578))

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* Changed error handling, `InMemoryExporter` will now throw
`ObjectDisposedException` if `Export` is invoked after the exporter is
disposed.

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* Added overloads which accept a name to the `TracerProviderBuilder`
`AddJaegerExporter` extension to allow for more fine-grained options
management

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* `OtlpExporterOptions` can now be bound to `IConfiguation` and
`HttpClientFactory` may be used to manage the `HttpClient` instance used when
`HttpProtobuf` is configured

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* Added overloads which accept a name to the `MeterProviderBuilder`
`AddOtlpExporter` extension to allow for more fine-grained options management
([#3648](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3648))

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* Bug fix for Prometheus Exporter reporting StatusCode 204
instead of 200, when no metrics are collected
([#3643](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3643))

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* Bug fix for Prometheus Exporter reporting StatusCode 204
instead of 200, when no metrics are collected
([#3643](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3643))

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.0.0-rc9.7
Released 2022-Sep-29
## 1.0.0-rc9.6
Released 2022-Aug-18

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* Added overloads which accept a name to the `TracerProviderBuilder`
`AddZipkinExporter` extension to allow for more fine-grained options
management

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.0.0-rc9.7
Released 2022-Sep-29
* Dependency injection support when configuring
`TracerProvider` has been moved into the SDK.
([#3533](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3533))

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
## 1.4.0-alpha.2
Released 2022-Aug-18

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.0.0-rc9.7
Released 2022-Sep-29
* Performance improvement (Reduced memory allocation) - Updated DiagnosticSource
event subscription to specific set of events.
([#3519](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3519))

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.0.0-rc9.7
Released 2022-Sep-29
* Added overloads which accept a name to the `TracerProviderBuilder`
`AddGrpcClientInstrumentation` extension to allow for more fine-grained
options management

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.0.0-rc9.7
Released 2022-Sep-29
* Dropped `netstandard2.0` target and added `net6.0`. .NET 5 reached EOL
in May 2022 and .NET Core 3.1 reaches EOL in December 2022. End of support
dates for .NET are published

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.0.0-rc9.7
Released 2022-Sep-29
## 1.0.0-rc9.6
Released 2022-Aug-18

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.0.0-rc9.7
Released 2022-Sep-29
## 1.0.0-rc9.6
Released 2022-Aug-18

View File

@ -2,6 +2,10 @@
## Unreleased
## 1.4.0-beta.1
Released 2022-Sep-29
* Use binary search for histograms with 50 or more supplied boundaries.
([#3252](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3252))