Skip to content

Commit 4f0fe4c

Browse files
authored
Release 1.10.0 (#4000)
1 parent 4422ba9 commit 4f0fe4c

File tree

6 files changed

+30
-16
lines changed

6 files changed

+30
-16
lines changed

CHANGELOG.md

+16-3
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,29 @@ 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.10.0-beta.1..HEAD)
8+
## [Unreleased](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/compare/v1.10.0..HEAD)
99

1010
### Added
1111

1212
### Changed
1313

1414
#### Dependency updates
1515

16+
### Deprecated
17+
18+
### Removed
19+
20+
### Fixed
21+
22+
## [1.10.0](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.10.0)
23+
24+
This release include all changes from [1.10.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/tag/v1.10.0-beta.1)
25+
release.
26+
27+
### Changed
28+
29+
#### Dependency updates
30+
1631
- Updated [Core components](https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/VERSIONING.md#core-components):
1732
[`1.11.1`](https://github.com/open-telemetry/opentelemetry-dotnet/releases/tag/core-1.11.1).
1833
- Following packages updated
@@ -56,8 +71,6 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h
5671
- `System.Text.Json` update from `9.0.0` to `9.0.1`,
5772
- `System.Threading.Tasks.Extensions"` update from `4.5.4` to `4.6.0`.
5873

59-
### Deprecated
60-
6174
### Removed
6275

6376
#### Dependency removals

docs/README.md

+6-5
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.10.0-beta.1](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/latest))
15+
([1.10.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.10.0-beta.1/docs/README.md).
17+
or [here](https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.10.0/docs/README.md).
1818

1919
---
2020

@@ -180,7 +180,7 @@ Example usage:
180180

181181
```sh
182182
# Download the bash script
183-
curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.10.0-beta.1/otel-dotnet-auto-install.sh -O
183+
curl -sSfL https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.10.0/otel-dotnet-auto-install.sh -O
184184

185185
# Install core files
186186
sh ./otel-dotnet-auto-install.sh
@@ -200,6 +200,7 @@ NOTE: for air-gapped environments you can provide either the installation archiv
200200
```sh
201201
LOCAL_PATH=<PATH_TO_ARCHIVE> sh ./otel-dotnet-auto-install.sh
202202
```
203+
203204
or the folder with the archives, this has the added benefit that the install script will determine
204205
the correct archive to choose.
205206

@@ -219,7 +220,7 @@ uses environment variables as parameters:
219220
| `TMPDIR` | (deprecated) prefer `DOWNLOAD_DIR` | No | `$(mktemp -d)` |
220221
| `DOWNLOAD_DIR` | Folder to download the archive to. Will use local archive if it already exists | No | `$TMPDIR` or `$(mktemp -d)` |
221222
| `LOCAL_PATH` | Full path the archive to use for installation. (ideal for air-gapped scenarios) | No | *Calculated* |
222-
| `VERSION` | Version to download | No | `1.10.0-beta.1` |
223+
| `VERSION` | Version to download | No | `1.10.0` |
223224

224225
[instrument.sh](../instrument.sh) script
225226
uses environment variables as parameters:
@@ -239,7 +240,7 @@ Example usage (run as administrator):
239240

240241
```powershell
241242
# Download the module
242-
$module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.10.0-beta.1/OpenTelemetry.DotNet.Auto.psm1"
243+
$module_url = "https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v1.10.0/OpenTelemetry.DotNet.Auto.psm1"
243244
$download_path = Join-Path $env:temp "OpenTelemetry.DotNet.Auto.psm1"
244245
Invoke-WebRequest -Uri $module_url -OutFile $download_path -UseBasicParsing
245246

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

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ OpenTelemetry.AutoInstrumentation.Instrumentations.Kafka.Integrations.ConsumerDi
2626
OpenTelemetry.AutoInstrumentation.Instrumentations.Kafka.Integrations.ProducerDeliveryHandlerActionIntegration
2727
OpenTelemetry.AutoInstrumentation.Instrumentations.Kafka.Integrations.ProducerProduceAsyncIntegration
2828
OpenTelemetry.AutoInstrumentation.Instrumentations.Kafka.Integrations.ProducerProduceSyncIntegration
29+
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.Bridge.Integrations.AppenderCollectionIntegration
30+
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.TraceContextInjection.Integrations.AppenderAttachedImplIntegration
31+
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecute
32+
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecuteAsync
2933
OpenTelemetry.AutoInstrumentation.Instrumentations.NServiceBus.EndpointConfigurationIntegration
3034
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMq6.Integrations.AsyncDefaultBasicConsumerIntegration
3135
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMq6.Integrations.DefaultBasicConsumerIntegration
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
1-
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.Bridge.Integrations.AppenderCollectionIntegration
2-
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.TraceContextInjection.Integrations.AppenderAttachedImplIntegration
3-
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecute
4-
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecuteAsync

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

+4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ OpenTelemetry.AutoInstrumentation.Instrumentations.Kafka.Integrations.ConsumerDi
2525
OpenTelemetry.AutoInstrumentation.Instrumentations.Kafka.Integrations.ProducerDeliveryHandlerActionIntegration
2626
OpenTelemetry.AutoInstrumentation.Instrumentations.Kafka.Integrations.ProducerProduceAsyncIntegration
2727
OpenTelemetry.AutoInstrumentation.Instrumentations.Kafka.Integrations.ProducerProduceSyncIntegration
28+
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.Bridge.Integrations.AppenderCollectionIntegration
29+
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.TraceContextInjection.Integrations.AppenderAttachedImplIntegration
2830
OpenTelemetry.AutoInstrumentation.Instrumentations.Logger.LoggingBuilderIntegration
31+
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecute
32+
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecuteAsync
2933
OpenTelemetry.AutoInstrumentation.Instrumentations.NServiceBus.EndpointConfigurationIntegration
3034
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMq6.Integrations.AsyncDefaultBasicConsumerIntegration
3135
OpenTelemetry.AutoInstrumentation.Instrumentations.RabbitMq6.Integrations.DefaultBasicConsumerIntegration
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
1-
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.Bridge.Integrations.AppenderCollectionIntegration
2-
OpenTelemetry.AutoInstrumentation.Instrumentations.Log4Net.TraceContextInjection.Integrations.AppenderAttachedImplIntegration
3-
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecute
4-
OpenTelemetry.AutoInstrumentation.Instrumentations.MongoDB.Integrations.MongoClientIntegrationExecuteAsync

0 commit comments

Comments
 (0)