Unreleased in changelog changed to actual version (#1198)

* Unreleased in changelog changed to actual version
This commit is contained in:
Cijo Thomas 2020-08-28 13:09:23 -07:00 committed by GitHub
parent 465fc09320
commit 0582ff1fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 64 additions and 0 deletions

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* `Link` and `TelemetrySpan` are using `SpanAttributes` instead of
`ActivityTagsCollection` or `Dictionary`
([#1120](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1120))

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Changed `UseConsoleExporter` to `AddConsoleExporter`, improved readability
([#1051](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1051))

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Changed `JaegerExporter` to use `BatchExportActivityProcessor` by default
([#1125](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1125))
* Span links will now be sent as `FOLLOWS_FROM` reference type. Previously they

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Allow configurable gRPC channel options
([#1033](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1033))
* Renamed extension method from `UseOtlpExporter` to `AddOtlpExporter`

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
## 0.4.0-beta.2
Released 2020-07-24

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Renamed extension method from `UseZPagesExporter` to `AddZPagesExporter`
([#1066](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1066))
* Changed `ZPagesExporter` to use `ZPagesProcessor` by default

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Renamed extension method from `UseZipkinExporter` to `AddZipkinExporter`
([#1066](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1066))
* Changed `ZipkinExporter` to use `BatchExportActivityProcessor` by default

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Renamed all extension methods from AddOpenTelemetry to AddOpenTelemetryTracerProvider
## 0.4.0-beta.2

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Added Filter public API on AspNetInstrumentationOptions to allow
filtering of instrumentation based on HttpContext.

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Added Filter public API on AspNetCoreInstrumentationOptions to allow
filtering of instrumentation based on HttpContext.

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* NuGet package renamed to OpenTelemetry.Instrumentation.GrpcNetClient to
more clearly indicate that this package is specifically for gRPC client
instrumentation. The package was previously named

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Rename FilterFunc to Filter.
* HttpClient/HttpWebRequest instrumentation will now add the raw Request,

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* .NET Core SqlClient instrumentation will now add the raw Command object to the
Activity it creates
([#1099](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1099))

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
## 0.4.0-beta.2
Released 2020-07-24

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Renamed `ITextPropagator` to `IPropagator`
([#1190](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1190))

View File

@ -2,6 +2,10 @@
## Unreleased
## 0.5.0-beta.1
Released 2020-08-28
* Changed `ActivityProcessor` to implement `IDisposable`
([#975](https://github.com/open-telemetry/opentelemetry-dotnet/pull/975))
* Samplers now get the actual TraceId of the Activity to be created.