Skip to content

Commit 9296b0a

Browse files
authored
Release v1.13.0-beta.1 (#4436)
1 parent 92cc7c8 commit 9296b0a

File tree

2 files changed

+20
-11
lines changed

2 files changed

+20
-11
lines changed

CHANGELOG.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,23 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h
99

1010
### Added
1111

12+
### Changed
13+
14+
#### Dependency updates
15+
16+
### Deprecated
17+
18+
### Removed
19+
20+
### Fixed
21+
22+
## [1.13.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.13.0-beta.1)
23+
24+
### Added
25+
1226
- Extend support for [RabbitMQ.Client](https://www.nuget.org/packages/RabbitMQ.Client/)
1327
traces instrumentation for versions `5.*`.
28+
- Experimental support for [span-based sampling](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/issues/4227).
1429

1530
### Changed
1631

@@ -37,12 +52,6 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h
3752
- `System.Text.Encodings.Web` update from `9.0.2` to `9.0.8`.
3853
- `System.Text.Json` update from `9.0.2` to `9.0.8`.
3954

40-
### Deprecated
41-
42-
### Removed
43-
44-
### Fixed
45-
4655
## [1.12.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.12.0)
4756

4857
### Added

docs/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ to .NET applications without having to modify their source code.
1616
> [!WARNING]
1717
> The following documentation refers to the in-development version
1818
of OpenTelemetry .NET Automatic Instrumentation. Docs for the latest version
19-
([1.12.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
19+
([1.13.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
2020
can be found in [opentelemetry.io](https://opentelemetry.io/docs/zero-code/net/)
21-
or [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.12.0/docs/README.md).
21+
or [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.13.0-beta.1/docs/README.md).
2222

2323
---
2424

@@ -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.12.0/otel-dotnet-auto-install.sh -O
188+
curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.13.0-beta.1/otel-dotnet-auto-install.sh -O
189189

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

230230
[instrument.sh](../instrument.sh) script
231231
uses environment variables as parameters:
@@ -253,7 +253,7 @@ Example usage (run as administrator):
253253
#Requires -PSEdition Desktop
254254
255255
# Download the module
256-
$module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.12.0/OpenTelemetry.DotNet.Auto.psm1"
256+
$module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.13.0-beta.1/OpenTelemetry.DotNet.Auto.psm1"
257257
$download_path = Join-Path $env:temp "OpenTelemetry.DotNet.Auto.psm1"
258258
Invoke-WebRequest -Uri $module_url -OutFile $download_path -UseBasicParsing
259259

0 commit comments

Comments
 (0)