Skip to content

Commit 10b2464

Browse files
authored
Release 1.6.0 (#3387)
1 parent ea32d33 commit 10b2464

File tree

4 files changed

+26
-17
lines changed

4 files changed

+26
-17
lines changed

CHANGELOG.md

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,26 @@ All notable changes to this component are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v1.5.0..HEAD)
8+
## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v1.6.0..HEAD)
9+
10+
### Added
11+
12+
### Changed
13+
14+
#### Dependency updates
15+
16+
### Deprecated
17+
18+
### Removed
19+
20+
### Fixed
21+
22+
## [1.6.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.6.0)
923

1024
- [Core components](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/VERSIONING.md#core-components):
1125
[`1.8.1`](https://github.com/open-telemetry/opentelemetry-dotnet/releases/tag/core-1.8.1)
1226
- `System.Diagnostics.DiagnosticSource`: [`8.0.0`](https://www.nuget.org/packages/System.Diagnostics.DiagnosticSource/8.0.0)
1327

14-
### Added
15-
1628
### Changed
1729

1830
- To prevent sensitive information from leaking through query strings, the
@@ -32,15 +44,12 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h
3244
- `Microsoft.Extensions.Configuration.Binder` from `8.0.0` to `8.0.1`,
3345
- `OpenTelemetry.Instrumentation.AspNetCore` from `1.8.0` to `1.8.1`.
3446
- .NET Framework only, following packages updated
35-
- `OpenTelemetry.Instrumentation.AspNet` from `1.8.0` to `1.8.0-beta.2`.
36-
37-
### Deprecated
38-
39-
### Removed
47+
- `OpenTelemetry.Instrumentation.AspNet` from `1.8.0-beta.1` to `1.8.0-beta.2`.
4048

4149
### Fixed
4250

4351
- Stop creating `receive` consumer spans for consume attempts that returned no message.
52+
For details, see [#3367](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/3367)
4453

4554
## [1.5.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.5.0)
4655

@@ -101,8 +110,8 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h
101110
runtime store libraries, impacting applications with mismatched dependency
102111
versions. This fix enhances stability by addressing the underlying
103112
compatibility concerns. For details see:
104-
([#3075](https://github.com/open-telemetry/opentelemetry-dotnet/pull/3075),
105-
[#3075](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/3168))
113+
([#3075](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/3075),
114+
[#3168](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/3168))
106115

107116
## [1.4.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.4.0)
108117

docs/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ to .NET applications without having to modify their source code.
1313
> [!WARNING]
1414
> The following documentation refers to the in-development version
1515
of OpenTelemetry .NET Automatic Instrumentation. Docs for the latest version
16-
([1.5.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
16+
([1.6.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
1717
can be found in [opentelemetry.io](https://github.com/open-telemetry/opentelemetry.io/tree/main/content/en/docs/languages/net/automatic)
18-
or [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.5.0/docs/README.md).
18+
or [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.6.0/docs/README.md).
1919

2020
---
2121

@@ -169,7 +169,7 @@ Example usage:
169169

170170
```sh
171171
# Download the bash script
172-
curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.5.0/otel-dotnet-auto-install.sh -O
172+
curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.6.0/otel-dotnet-auto-install.sh -O
173173

174174
# Install core files
175175
sh ./otel-dotnet-auto-install.sh
@@ -193,7 +193,7 @@ uses environment variables as parameters:
193193
| `OS_TYPE` | Possible values: `linux-glibc`, `linux-musl`, `macos`, `windows` | No | *Calculated* |
194194
| `ARCHITECTURE` | Possible values for Linux: `x64`, `arm64` | No | *Calculated* |
195195
| `TMPDIR` | Temporary directory used when downloading the files | No | `$(mktemp -d)` |
196-
| `VERSION` | Version to download | No | `1.5.0` |
196+
| `VERSION` | Version to download | No | `1.6.0` |
197197

198198
[instrument.sh](../instrument.sh) script
199199
uses environment variables as parameters:
@@ -213,7 +213,7 @@ Example usage (run as administrator):
213213

214214
```powershell
215215
# Download the module
216-
$module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.5.0/OpenTelemetry.DotNet.Auto.psm1"
216+
$module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.6.0/OpenTelemetry.DotNet.Auto.psm1"
217217
$download_path = Join-Path $env:temp "OpenTelemetry.DotNet.Auto.psm1"
218218
Invoke-WebRequest -Uri $module_url -OutFile $download_path -UseBasicParsing
219219

docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ When adding the NuGet packages to your project you get an error message similar
6262
to:
6363

6464
```txt
65-
Could not install package 'OpenTelemetry.AutoInstrumentation.Runtime.Native 1.5.0'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.7.2', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
65+
Could not install package 'OpenTelemetry.AutoInstrumentation.Runtime.Native 1.6.0'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.7.2', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
6666
```
6767

6868
#### Solution

docs/using-the-nuget-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ you to either add the missing instrumentation package or to skip the
4040
instrumentation of the corresponding package:
4141

4242
```terminal
43-
~packages/opentelemetry.autoinstrumentation.buildtasks/1.5.0/build/OpenTelemetry.AutoInstrumentation.BuildTasks.targets(29,5): error : OpenTelemetry.AutoInstrumentation: add a reference to the instrumentation package 'MongoDB.Driver.Core.Extensions.DiagnosticSources' version 1.4.0 or add 'MongoDB.Driver.Core' to the property 'SkippedInstrumentations' to suppress this error.
43+
~packages/opentelemetry.autoinstrumentation.buildtasks/1.6.0/build/OpenTelemetry.AutoInstrumentation.BuildTasks.targets(29,5): error : OpenTelemetry.AutoInstrumentation: add a reference to the instrumentation package 'MongoDB.Driver.Core.Extensions.DiagnosticSources' version 1.4.0 or add 'MongoDB.Driver.Core' to the property 'SkippedInstrumentations' to suppress this error.
4444
```
4545

4646
To resolve the error either add the recommended instrumentation package or skip

0 commit comments

Comments
 (0)