Skip to content

Commit

Permalink
Update change logs
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlanabrennan committed Nov 19, 2021
1 parent 74c02cb commit 50fc91c
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 47 deletions.
36 changes: 20 additions & 16 deletions src/OpenTelemetry.Exporter.Console/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

- Fixed `ConsoleExporterOptions.MetricExportIntervalMilliseconds` to be 60000
milliseconds.
([#2641](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2641))

## 1.2.0-beta1

Released 2021-Oct-08
Expand All @@ -18,22 +22,22 @@ Released 2021-Sep-13

Released 2021-Aug-24

* Add Histogram Metrics support.
* Changed default temporality to be cumulative.
- Add Histogram Metrics support.
- Changed default temporality to be cumulative.

## 1.2.0-alpha1

Released 2021-Jul-23

* Removes .NET Framework 4.5.2, .NET 4.6 support. The minimum .NET Framework
- Removes .NET Framework 4.5.2, .NET 4.6 support. The minimum .NET Framework
version supported is .NET 4.6.1. ([#2138](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2138))
* Add Metrics support.([#2174](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2174))
- Add Metrics support.([#2174](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2174))

## 1.1.0

Released 2021-Jul-12

* Supports OpenTelemetry.Extensions.Hosting based configuration for
- Supports OpenTelemetry.Extensions.Hosting based configuration for
of `ConsoleExporterOptions`.

## 1.1.0-rc1
Expand All @@ -56,12 +60,12 @@ Released 2021-Apr-23

Released 2021-Mar-19

* Removed code that prints Baggage information
- Removed code that prints Baggage information
([#1825](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1825))
* LogRecordExporter exports Message, Scope, StateValues from LogRecord.
- LogRecordExporter exports Message, Scope, StateValues from LogRecord.
([#1871](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1871)
[#1895](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1895))
* Added Resource support.
- Added Resource support.
([#1913](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1913))

## 1.0.1
Expand All @@ -76,23 +80,23 @@ Released 2021-Feb-09

Released 2021-Feb-04

* Moved `ConsoleActivityExporter` and `ConsoleLogRecordExporter` classes to
- Moved `ConsoleActivityExporter` and `ConsoleLogRecordExporter` classes to
`OpenTelemetry.Exporter` namespace.
([#1770](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1770))

## 1.0.0-rc2

Released 2021-Jan-29

* `AddConsoleExporter` extension method for logs moved from
- `AddConsoleExporter` extension method for logs moved from
`OpenTelemetry.Trace` namespace to `OpenTelemetry.Logs` namespace.
([#1576](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1576))

* Added `ConsoleActivityExporter` and `ConsoleLogExporter`. Refactored
- Added `ConsoleActivityExporter` and `ConsoleLogExporter`. Refactored
`ConsoleExporter` to get rid of type specific check in the class
([#1593](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1593))

* Replaced Debug.WriteLine with Trace.WriteLine to display the logs to the Debug
- Replaced Debug.WriteLine with Trace.WriteLine to display the logs to the Debug
window with Release configuration
([#1719](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1719))

Expand All @@ -104,10 +108,10 @@ Released 2020-Nov-17

Released 2020-Nov-5

* Add extension method to add `ConsoleExporter` for logs
- Add extension method to add `ConsoleExporter` for logs
([#1452](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1452))

* Generalized `ConsoleExporter` to add support for logs
- Generalized `ConsoleExporter` to add support for logs
([#1438](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1438))

## 0.7.0-beta.1
Expand All @@ -122,7 +126,7 @@ Released 2020-Sep-15

Released 2020-08-28

* Changed `UseConsoleExporter` to `AddConsoleExporter`, improved readability
- Changed `UseConsoleExporter` to `AddConsoleExporter`, improved readability
([#1051](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1051))

## 0.4.0-beta.2
Expand All @@ -133,4 +137,4 @@ Released 2020-07-24

Released 2020-07-23

* Initial release
- Initial release
66 changes: 35 additions & 31 deletions src/OpenTelemetry.Exporter.OpenTelemetryProtocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@

## Unreleased

* Changed `OtlpExporterOptions` constructor to throw
- Changed `OtlpExporterOptions` constructor to throw
`FormatException` if it fails to parse any of the supported environment
variables.

- Fixed `OtlpExporterOptions.MetricExportIntervalMilliseconds` to be 60000
milliseconds.
([#2641](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2641))

## 1.2.0-beta1

Released 2021-Oct-08

* `MeterProviderBuilder` extension methods now support `OtlpExporterOptions`
- `MeterProviderBuilder` extension methods now support `OtlpExporterOptions`
bound to `IConfiguration` when using OpenTelemetry.Extensions.Hosting
([#2413](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2413))
* Extended `OtlpExporterOptions` by `Protocol` property. The property can be
- Extended `OtlpExporterOptions` by `Protocol` property. The property can be
overridden by `OTEL_EXPORTER_OTLP_PROTOCOL` environmental variable (grpc or http/protobuf).
Implemented OTLP over HTTP binary protobuf trace exporter.
([#2292](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2292))
Expand All @@ -26,7 +30,7 @@ Released 2021-Sep-23

Released 2021-Sep-13

* `OtlpExporterOptions.BatchExportProcessorOptions` is initialized with
- `OtlpExporterOptions.BatchExportProcessorOptions` is initialized with
`BatchExportActivityProcessorOptions` which supports field value overriding
using `OTEL_BSP_SCHEDULE_DELAY`, `OTEL_BSP_EXPORT_TIMEOUT`,
`OTEL_BSP_MAX_QUEUE_SIZE`, `OTEL_BSP_MAX_EXPORT_BATCH_SIZE`
Expand All @@ -38,22 +42,22 @@ Released 2021-Sep-13

Released 2021-Aug-24

* The `OtlpExporterOptions` defaults can be overridden using
- The `OtlpExporterOptions` defaults can be overridden using
`OTEL_EXPORTER_OTLP_ENDPOINT`, `OTEL_EXPORTER_OTLP_HEADERS` and `OTEL_EXPORTER_OTLP_TIMEOUT`
environmental variables as defined in the
[specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md).
([#2188](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2188))

* Changed default temporality for Metrics to be cumulative.
- Changed default temporality for Metrics to be cumulative.

## 1.2.0-alpha1

Released 2021-Jul-23

* Removes .NET Framework 4.5.2, .NET 4.6 support. The minimum .NET Framework
- Removes .NET Framework 4.5.2, .NET 4.6 support. The minimum .NET Framework
version supported is .NET 4.6.1. ([#2138](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2138))

* Add Metrics support.([#2174](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2174))
- Add Metrics support.([#2174](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2174))

## 1.1.0

Expand All @@ -75,18 +79,18 @@ Released 2021-May-11

Released 2021-Apr-23

* Resolves `System.TypeInitializationException` exception when using the
- Resolves `System.TypeInitializationException` exception when using the
exporter with an application that references Google.Protobuf 3.15. The OTLP
exporter now depends on Google.Protobuf 3.15.5 enabling the use of the new
`UnsafeByteOperations.UnsafeWrap` to avoid unnecessary allocations.
([#1873](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1873))

* Null values in string arrays are preserved according to
- Null values in string arrays are preserved according to
[spec](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/common/common.md).
([#1919](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1919)) and
([#1945](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1945)).

* When using OpenTelemetry.Extensions.Hosting you can now bind
- When using OpenTelemetry.Extensions.Hosting you can now bind
`OtlpExporterOptions` to `IConfiguration` using the `Configure` extension (ex:
`services.Configure<OtlpExporterOptions>(this.Configuration.GetSection("Otlp"));`).
([#1942](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1942))
Expand All @@ -103,39 +107,39 @@ Released 2021-Feb-10

Released 2021-Feb-09

* Add back support for secure gRPC connections over https.
- Add back support for secure gRPC connections over https.
([#1804](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1804))

## 1.0.0-rc3

Released 2021-Feb-04

* Moved `OtlpTraceExporter` and `OtlpExporterOptions` classes to
- Moved `OtlpTraceExporter` and `OtlpExporterOptions` classes to
`OpenTelemetry.Exporter` namespace.
([#1770](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1770))
* Changed default port for OTLP Exporter from 55680 to 4317
* Default ServiceName, if not found in Resource, is obtained from SDK using
- Changed default port for OTLP Exporter from 55680 to 4317
- Default ServiceName, if not found in Resource, is obtained from SDK using
GetDefaultResource().
* Modified the data type of Headers option to string; Added a new option called
- Modified the data type of Headers option to string; Added a new option called
TimeoutMilliseconds for computing the `deadline` to be used by gRPC client for
`Export`
([#1781](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1781))
* Removes Grpc specific options from OTLPExporterOptions, which removes support
- Removes Grpc specific options from OTLPExporterOptions, which removes support
for secure connections. See [1778](https://github.com/open-telemetry/opentelemetry-dotnet/issues/1778)
for details.
* Endpoint is made Uri for all target frameworks.
- Endpoint is made Uri for all target frameworks.

## 1.0.0-rc2

Released 2021-Jan-29

* Changed `OltpTraceExporter` class and constructor from internal to public.
- Changed `OltpTraceExporter` class and constructor from internal to public.
([#1612](https://github.com/open-telemetry/opentelemetry-dotnet/issues/1612))

* In `OtlpExporterOptions.cs`: Exporter options now include a switch for Batch
- In `OtlpExporterOptions.cs`: Exporter options now include a switch for Batch
vs Simple exporter, and settings for batch exporting properties.

* Introduce a `netstandard2.1` build enabling the exporter to use the [gRPC for
- Introduce a `netstandard2.1` build enabling the exporter to use the [gRPC for
.NET](https://github.com/grpc/grpc-dotnet) library instead of the [gRPC for
C#](https://github.com/grpc/grpc/tree/master/src/csharp) library for .NET Core
3.0+ applications. This required some breaking changes to the
Expand All @@ -146,12 +150,12 @@ Released 2021-Jan-29

Released 2020-Nov-17

* Code generated from proto files has been marked internal. This includes
- Code generated from proto files has been marked internal. This includes
everything under the `OpenTelemetry.Proto` namespace.
([#1524](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1524))
* The `OtlpExporter` class has been made internal.
- The `OtlpExporter` class has been made internal.
([#1528](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1528))
* Removed `ServiceName` from options available on the `AddOtlpExporter`
- Removed `ServiceName` from options available on the `AddOtlpExporter`
extension. It is not required by the
[specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md#configuration-options).
([#1557](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1557))
Expand All @@ -160,11 +164,11 @@ Released 2020-Nov-17

Released 2020-Nov-5

* `peer.service` tag is now added to outgoing spans (went not already specified)
- `peer.service` tag is now added to outgoing spans (went not already specified)
following the [Zipkin remote endpoint
rules](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk_exporters/zipkin.md#remote-endpoint)
([#1392](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1392))
* Added `ServiceName` to options available on the `AddOtlpExporter` extension
- Added `ServiceName` to options available on the `AddOtlpExporter` extension
([#1420](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1420))

## 0.7.0-beta.1
Expand All @@ -179,21 +183,21 @@ Released 2020-Sep-15

Released 2020-08-28

* Allow configurable gRPC channel options
- Allow configurable gRPC channel options
([#1033](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1033))
* Renamed extension method from `UseOtlpExporter` to `AddOtlpExporter`
- Renamed extension method from `UseOtlpExporter` to `AddOtlpExporter`
([#1066](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1066))
* Changed `OtlpExporter` to use `BatchExportActivityProcessor` by default
- Changed `OtlpExporter` to use `BatchExportActivityProcessor` by default
([#1104](https://github.com/open-telemetry/opentelemetry-dotnet/pull/1104))

## 0.4.0-beta.2

Released 2020-07-24

* First beta release
- First beta release

## 0.3.0-beta

Released 2020-07-23

* Initial release
- Initial release

0 comments on commit 50fc91c

Please sign in to comment.