Skip to content

Commit 8a1f2c8

Browse files
authored
Release 1.9.0 (#3751)
1 parent bea461f commit 8a1f2c8

File tree

4 files changed

+22
-8
lines changed

4 files changed

+22
-8
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,21 @@ 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.8.0..HEAD)
8+
## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v1.9.0..HEAD)
9+
10+
### Added
11+
12+
### Changed
13+
14+
#### Dependency updates
15+
16+
### Deprecated
17+
18+
### Removed
19+
20+
### Fixed
21+
22+
## [1.9.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.9.0)
923

1024
### Added
1125

docs/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ to .NET applications without having to modify their source code.
1212
> [!WARNING]
1313
> The following documentation refers to the in-development version
1414
of OpenTelemetry .NET Automatic Instrumentation. Docs for the latest version
15-
([1.8.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
15+
([1.9.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
1616
can be found in [opentelemetry.io](https://opentelemetry.io/docs/zero-code/net/)
17-
or [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.8.0/docs/README.md).
17+
or [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.9.0/docs/README.md).
1818

1919
---
2020

@@ -185,7 +185,7 @@ Example usage:
185185

186186
```sh
187187
# Download the bash script
188-
curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.8.0/otel-dotnet-auto-install.sh -O
188+
curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.9.0/otel-dotnet-auto-install.sh -O
189189

190190
# Install core files
191191
sh ./otel-dotnet-auto-install.sh
@@ -224,7 +224,7 @@ uses environment variables as parameters:
224224
| `TMPDIR` | (deprecated) prefer `DOWNLOAD_DIR` | No | `$(mktemp -d)` |
225225
| `DOWNLOAD_DIR` | Folder to download the archive to. Will use local archive if it already exists | No | `$TMPDIR` or `$(mktemp -d)` |
226226
| `LOCAL_PATH` | Full path the archive to use for installation. (ideal for air-gapped scenarios) | No | *Calculated* |
227-
| `VERSION` | Version to download | No | `1.8.0` |
227+
| `VERSION` | Version to download | No | `1.9.0` |
228228

229229
[instrument.sh](../instrument.sh) script
230230
uses environment variables as parameters:
@@ -244,7 +244,7 @@ Example usage (run as administrator):
244244

245245
```powershell
246246
# Download the module
247-
$module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.8.0/OpenTelemetry.DotNet.Auto.psm1"
247+
$module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.9.0/OpenTelemetry.DotNet.Auto.psm1"
248248
$download_path = Join-Path $env:temp "OpenTelemetry.DotNet.Auto.psm1"
249249
Invoke-WebRequest -Uri $module_url -OutFile $download_path -UseBasicParsing
250250

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.8.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.9.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
@@ -42,7 +42,7 @@ you to either add the missing instrumentation package or to skip the
4242
instrumentation of the corresponding package:
4343

4444
```terminal
45-
~packages/opentelemetry.autoinstrumentation.buildtasks/1.8.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.
45+
~packages/opentelemetry.autoinstrumentation.buildtasks/1.9.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.
4646
```
4747

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

0 commit comments

Comments
 (0)