Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[api+sdk] Groundwork for cross-cutting builder extensions #5265

Merged
merged 9 commits into from
Feb 7, 2024
Prev Previous commit
Next Next commit
CHANGELOG patches.
  • Loading branch information
CodeBlanch committed Jan 31, 2024
commit 0b9627816e0614d24fd799bf0977e4503e1c92cb
4 changes: 4 additions & 0 deletions src/OpenTelemetry.Api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

* Added `IOpenTelemetryBuilder` interface to support authoring extensions which
can configure multiple OpenTelemetry signals (tracing, metrics, and/or logs).
([#XXXX](https://github.com/open-telemetry/opentelemetry-dotnet/pull/XXXX))

## 1.7.0

Released 2023-Dec-08
Expand Down
6 changes: 6 additions & 0 deletions src/OpenTelemetry.Extensions.Hosting/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

* **Breaking change for users of experimental APIs (pre-release builds only):**
Removed `WithLogging` experimental APIs on `OpenTelemetryBuilder`. These have
been replaced by new extension methods in the SDK targeting
`IOpenTelemetryBuilder`.
([#XXXX](https://github.com/open-telemetry/opentelemetry-dotnet/pull/XXXX))

## 1.7.0

Released 2023-Dec-08
Expand Down
5 changes: 5 additions & 0 deletions src/OpenTelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
export.
[#5255](https://github.com/open-telemetry/opentelemetry-dotnet/pull/5255)

* Added `OpenTelemetryBuilderSdkExtensions` class which contains extension
methods (`ConfigureResource`, `WithMetrics`, `WithTracing`, and experimental
`WithLogging`) for the `IOpenTelemetryBuilder` interface.
([#XXXX](https://github.com/open-telemetry/opentelemetry-dotnet/pull/XXXX))

Check failure on line 26 in src/OpenTelemetry/CHANGELOG.md

View workflow job for this annotation

GitHub Actions / lint-md / run-markdownlint

Trailing spaces

src/OpenTelemetry/CHANGELOG.md:26:1 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md009.md
## 1.7.0

Released 2023-Dec-08
Expand Down
Loading