Skip to content

Commit

Permalink
[release] Core stable release 1.10.0 updates (#5970)
Browse files Browse the repository at this point in the history
  • Loading branch information
opentelemetrybot authored Nov 12, 2024
1 parent 626b30e commit 60a6839
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<OTelLatestStableVer>1.9.0</OTelLatestStableVer>
<OTelLatestStableVer>1.10.0</OTelLatestStableVer>

<!--
This is typically the latest annual release of .NET. Use this wherever
Expand Down
9 changes: 9 additions & 0 deletions src/OpenTelemetry.Exporter.Prometheus.AspNetCore/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Notes](../../RELEASENOTES.md).
* Added meter-level tags to Prometheus exporter
([#5837](https://github.com/open-telemetry/opentelemetry-dotnet/pull/5837))

* Updated OpenTelemetry core component version(s) to `1.10.0`.
([#5970](https://github.com/open-telemetry/opentelemetry-dotnet/pull/5970))

## 1.9.0-beta.2

Released 2024-Jun-24
Expand Down Expand Up @@ -133,12 +136,15 @@ 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))

* Added overloads which accept a name to the `MeterProviderBuilder`
`AddPrometheusExporter` extension to allow for more fine-grained options
management
([#3648](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3648))

* Added support for OpenMetrics UNIT metadata
([#3651](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3651))

* Added `"# EOF\n"` ending following the [OpenMetrics
specification](https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md)
([#3654](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3654))
Expand All @@ -153,6 +159,7 @@ Released 2022-Aug-18
([#3430](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3430)
[#3503](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3503)
[#3507](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3507))

* Added `IEndpointRouteBuilder` extension methods to help with Prometheus
middleware configuration on ASP.NET Core
([#3295](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3295))
Expand All @@ -172,8 +179,10 @@ Released 2022-Apr-15
* Added `IApplicationBuilder` extension methods to help with Prometheus
middleware configuration on ASP.NET Core
([#3029](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3029))

* Changed Prometheus exporter to return 204 No Content and log a warning event
if there are no metrics to collect.

* Removes .NET Framework 4.6.1. The minimum .NET Framework
version supported is .NET 4.6.2. ([#3190](https://github.com/open-telemetry/opentelemetry-dotnet/issues/3190))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Notes](../../RELEASENOTES.md).
* Added meter-level tags to Prometheus exporter
([#5837](https://github.com/open-telemetry/opentelemetry-dotnet/pull/5837))

* Updated OpenTelemetry core component version(s) to `1.10.0`.
([#5970](https://github.com/open-telemetry/opentelemetry-dotnet/pull/5970))

## 1.9.0-beta.2

Released 2024-Jun-24
Expand Down Expand Up @@ -130,12 +133,15 @@ 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))

* Added overloads which accept a name to the `MeterProviderBuilder`
`AddPrometheusHttpListener` extension to allow for more fine-grained options
management
([#3648](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3648))

* Added support for OpenMetrics UNIT metadata
([#3651](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3651))

* Added `"# EOF\n"` ending following the [OpenMetrics
specification](https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md)
([#3654](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3654))
Expand All @@ -150,6 +156,7 @@ Released 2022-Aug-18
([#3430](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3430)
[#3503](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3503)
[#3507](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3507))

* Fixed bug
[#2840](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2840) by
allowing `+` and `*` to be used in the URI prefixes (e.g. `"http://*:9184"`).
Expand All @@ -170,8 +177,10 @@ Released 2022-Apr-15
* Added `IApplicationBuilder` extension methods to help with Prometheus
middleware configuration on ASP.NET Core
([#3029](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3029))

* Changed Prometheus exporter to return 204 No Content and log a warning event
if there are no metrics to collect.

* Removes .NET Framework 4.6.1. The minimum .NET Framework
version supported is .NET 4.6.2. ([#3190](https://github.com/open-telemetry/opentelemetry-dotnet/issues/3190))

Expand Down
4 changes: 4 additions & 0 deletions src/OpenTelemetry.Shims.OpenTracing/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Notes](../../RELEASENOTES.md).
converted to strings on the `ISpan` started from the builder.
([#5797](https://github.com/open-telemetry/opentelemetry-dotnet/pull/5797))

* Updated OpenTelemetry core component version(s) to `1.10.0`.
([#5970](https://github.com/open-telemetry/opentelemetry-dotnet/pull/5970))

## 1.9.0-beta.2

Released 2024-Jun-24
Expand Down Expand Up @@ -42,6 +45,7 @@ Released 2023-Sep-05
* Fix: Do not raise `ArgumentException` if `Activity` behind the shim span
has an invalid context.
([#2787](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2787))

* Obsolete `TracerShim(Tracer, TextMapPropagator)` constructor.
Provide `TracerShim(TracerProvider)`
and `TracerShim(TracerProvider, TextMapPropagator)` constructors.
Expand Down

0 comments on commit 60a6839

Please sign in to comment.