Skip to content

Commit e4de27f

Browse files
authored
Release 1.13.0 (#4647)
1 parent 0b952f1 commit e4de27f

File tree

7 files changed

+53
-37
lines changed

7 files changed

+53
-37
lines changed

CHANGELOG.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@ 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.12.0..HEAD)
8+
## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v1.13.0..HEAD)
9+
10+
### Added
11+
12+
### Changed
13+
14+
#### Dependency updates
15+
16+
### Deprecated
17+
18+
### Removed
19+
20+
### Fixed
21+
22+
## [1.13.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.13.0)
23+
24+
This release include all changes from [1.13.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.13.0-beta.1)
25+
release.
926

1027
### Added
1128

@@ -87,8 +104,6 @@ included for all supported .NET Framework versions. OpenTelemetry .NET
87104
AutoInstrumentation detects the .NET Framework version at install time
88105
and runtime, then loads the correct version of dependency assemblies.
89106

90-
### Deprecated
91-
92107
### Removed
93108

94109
- Dropped support for `OTEL_DOTNET_AUTO_SQLCLIENT_SET_DBSTATEMENT_FOR_TEXT`

docker/centos-stream9.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/centos/centos:stream9@sha256:e15ceb6e8744ccb658c6d8cb81cf2853398ca3a611f41f0b8e2fce655361190d
1+
FROM quay.io/centos/centos:stream9@sha256:8f23193019c25232ea9a657fcaf0cca2570e1bdb3be54d7bd56fbb05f3eeaa02
22

33
# Install dotnet sdk
44
RUN dnf install -y \

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.13.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
19+
([1.13.0](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.13.0-beta.1/docs/README.md).
21+
or [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.13.0/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.13.0-beta.1/otel-dotnet-auto-install.sh -O
188+
curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.13.0/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.13.0-beta.1` |
228+
| `VERSION` | Version to download | No | `1.13.0` |
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.13.0-beta.1/OpenTelemetry.DotNet.Auto.psm1"
256+
$module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.13.0/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

src/OpenTelemetry.AutoInstrumentation/.publicApi/net462/PublicAPI.Shipped.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,21 @@ OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.Bridge.Integrations.A
3030
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.TraceContextInjection.Integrations.AppenderAttachedImplIntegration
3131
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecute
3232
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecuteAsync
33+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration0
34+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration1
35+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration2
36+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration3
37+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration4
38+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration5
39+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration6
40+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration7
41+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration8
42+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration9
3343
OpenTelemetry.AutoInstrumentation.Instrumentations.NServiceBus.EndpointConfigurationIntegration
44+
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.AsyncDefaultBasicConsumerIntegration
45+
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.DefaultBasicConsumerIntegration
46+
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.ModelBaseBasicGetIntegration
47+
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.ModelBasicPublishIntegration
3448
OpenTelemetry.AutoInstrumentation.Instrumentations.Wcf.Client.WcfClientIntegration
3549
OpenTelemetry.AutoInstrumentation.Instrumentations.Wcf.Service.ServiceHostIntegration
3650
override OpenTelemetry.AutoInstrumentation.CallTarget.CallTargetReturn<T>.ToString() -> string!
Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1 @@
1-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration0
2-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration1
3-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration2
4-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration3
5-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration4
6-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration5
7-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration6
8-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration7
9-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration8
10-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration9
11-
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.AsyncDefaultBasicConsumerIntegration
12-
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.DefaultBasicConsumerIntegration
13-
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.ModelBaseBasicGetIntegration
14-
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.ModelBasicPublishIntegration
1+

src/OpenTelemetry.AutoInstrumentation/.publicApi/net8.0/PublicAPI.Shipped.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,23 @@ OpenTelemetry.AutoInstrumentation.Instrumentations.Kafka.Integrations.ProducerPr
2828
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.Bridge.Integrations.AppenderCollectionIntegration
2929
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.TraceContextInjection.Integrations.AppenderAttachedImplIntegration
3030
OpenTelemetry.AutoInstrumentation.Instrumentations.Logger.LoggingBuilderIntegration
31+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration0
32+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration1
33+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration2
34+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration3
35+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration4
36+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration5
37+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration6
38+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration7
39+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration8
40+
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration9
3141
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecute
3242
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecuteAsync
3343
OpenTelemetry.AutoInstrumentation.Instrumentations.NServiceBus.EndpointConfigurationIntegration
44+
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.AsyncDefaultBasicConsumerIntegration
45+
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.DefaultBasicConsumerIntegration
46+
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.ModelBaseBasicGetIntegration
47+
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.ModelBasicPublishIntegration
3448
OpenTelemetry.AutoInstrumentation.Instrumentations.StackExchangeRedis.StackExchangeRedisIntegration
3549
OpenTelemetry.AutoInstrumentation.Instrumentations.StackExchangeRedis.StackExchangeRedisIntegrationAsync
3650
OpenTelemetry.AutoInstrumentation.Instrumentations.Wcf.Client.WcfClientIntegration
Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +0,0 @@
1-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration0
2-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration1
3-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration2
4-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration3
5-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration4
6-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration5
7-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration6
8-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration7
9-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration8
10-
OpenTelemetry.AutoInstrumentation.Instrumentations.NoCode.NoCodeIntegration9
11-
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.AsyncDefaultBasicConsumerIntegration
12-
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.DefaultBasicConsumerIntegration
13-
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.ModelBaseBasicGetIntegration
14-
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMqLegacy.Integrations.ModelBasicPublishIntegration

0 commit comments

Comments
 (0)