-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[POC] Add OTEL_DOTNET_TRACER_INSTRUMENTATIONS and bump dependencies (#…
…204) - Require explicit enabling of the SDK integrations via the new OTEL_DOTNET_TRACER_INSTRUMENTATIONS env var - Update dependencies - Remove handling of OTEL_EXPORTER_JAEGER_AGENT_HOST and OTEL_EXPORTER_JAEGER_AGENT_PORT env vars - Drop support for .NET which are no longer supported by the SDK (net452 and net46) - Little build and CI improvements
- Loading branch information
Showing
32 changed files
with
143 additions
and
313 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,104 +1,31 @@ | ||
version: 2 | ||
updates: | ||
# Dependency notifications for vendored libraries | ||
- package-ecosystem: "nuget" | ||
directory: "/honeypot" | ||
schedule: | ||
interval: "daily" | ||
|
||
- package-ecosystem: github-actions | ||
directory: / | ||
labels: | ||
- "dependencies" | ||
- "area:vendors" | ||
ignore: | ||
- dependency-name: "MessagePack" # Locked at a version that supports our net452 build target | ||
open-pull-requests-limit: 0 # disable version updates | ||
# Src libraries | ||
- package-ecosystem: "nuget" | ||
directory: "/src/Datadog.Trace" | ||
- dependencies | ||
- actions | ||
schedule: | ||
interval: "daily" | ||
labels: | ||
- "dependencies" | ||
- "area:tracer" | ||
ignore: | ||
### Start Datadog.Trace.csproj ignored dependencies | ||
# DiagnosticSource is kept at the lowest supported version for widest compatibility | ||
- dependency-name: "System.Diagnostics.DiagnosticSource" | ||
|
||
# AspNetCore reference libraries are kept at the lowest supported version for compatibility on netstandard2.0 | ||
- dependency-name: "Microsoft.AspNetCore.Hosting.Abstractions" | ||
- dependency-name: "Microsoft.AspNetCore.Mvc.Abstractions" | ||
- dependency-name: "Microsoft.AspNetCore.Routing" | ||
day: sunday | ||
interval: weekly | ||
|
||
# DuckTyping libraries are kept at the lowest supported version for compatibility on netstandard2.0 | ||
- dependency-name: "System.Reflection.Emit" | ||
- dependency-name: "System.Reflection.Emit.Lightweight" | ||
### End Datadog.Trace.csproj ignored dependencies | ||
open-pull-requests-limit: 0 # disable version updates | ||
- package-ecosystem: "nuget" | ||
directory: "/src/Datadog.Trace.ClrProfiler.Managed" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: nuget | ||
directory: /build/nuke | ||
labels: | ||
- "dependencies" | ||
- "area:integrations" | ||
ignore: | ||
### Start Datadog.Trace.csproj ignored dependencies | ||
# DiagnosticSource is kept at the lowest supported version for widest compatibility | ||
- dependency-name: "System.Diagnostics.DiagnosticSource" | ||
|
||
# AspNetCore reference libraries are kept at the lowest supported version for compatibility on netstandard2.0 | ||
- dependency-name: "Microsoft.AspNetCore.Hosting.Abstractions" | ||
- dependency-name: "Microsoft.AspNetCore.Mvc.Abstractions" | ||
- dependency-name: "Microsoft.AspNetCore.Routing" | ||
|
||
# DuckTyping libraries are kept at the lowest supported version for compatibility on netstandard2.0 | ||
- dependency-name: "System.Reflection.Emit" | ||
- dependency-name: "System.Reflection.Emit.Lightweight" | ||
### End Datadog.Trace.csproj ignored dependencies | ||
# Lock Microsoft.Build.Framework for widest compatibility when instrumenting builds | ||
- dependency-name: "Microsoft.Build.Framework" | ||
open-pull-requests-limit: 0 # disable version updates | ||
- package-ecosystem: "nuget" | ||
directory: "/src/Datadog.Trace.OpenTracing" | ||
- dependencies | ||
schedule: | ||
interval: "daily" | ||
labels: | ||
- "dependencies" | ||
- "area:opentracing" | ||
ignore: | ||
### Start Datadog.Trace.csproj ignored dependencies | ||
# DiagnosticSource is kept at the lowest supported version for widest compatibility | ||
- dependency-name: "System.Diagnostics.DiagnosticSource" | ||
|
||
# AspNetCore reference libraries are kept at the lowest supported version for compatibility on netstandard2.0 | ||
- dependency-name: "Microsoft.AspNetCore.Hosting.Abstractions" | ||
- dependency-name: "Microsoft.AspNetCore.Mvc.Abstractions" | ||
- dependency-name: "Microsoft.AspNetCore.Routing" | ||
day: sunday | ||
interval: weekly | ||
|
||
# DuckTyping libraries are kept at the lowest supported version for compatibility on netstandard2.0 | ||
- dependency-name: "System.Reflection.Emit" | ||
- dependency-name: "System.Reflection.Emit.Lightweight" | ||
### End Datadog.Trace.csproj ignored dependencies | ||
open-pull-requests-limit: 0 # disable version updates | ||
- package-ecosystem: "nuget" | ||
directory: "/src/Datadog.Trace.BenchmarkDotNet" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: nuget | ||
directory: /src/OpenTelemetry.AutoInstrumentation.ClrProfiler.Managed | ||
labels: | ||
- "dependencies" | ||
- "area:benchmarks" | ||
- dependencies | ||
ignore: | ||
### Start Datadog.Trace.csproj ignored dependencies | ||
# DiagnosticSource is kept at the lowest supported version for widest compatibility | ||
- dependency-name: "System.Diagnostics.DiagnosticSource" | ||
|
||
# AspNetCore reference libraries are kept at the lowest supported version for compatibility on netstandard2.0 | ||
- dependency-name: "Microsoft.AspNetCore.Hosting.Abstractions" | ||
- dependency-name: "Microsoft.AspNetCore.Mvc.Abstractions" | ||
- dependency-name: "Microsoft.AspNetCore.Routing" | ||
|
||
# DuckTyping libraries are kept at the lowest supported version for compatibility on netstandard2.0 | ||
# these libraries are kept at the lowest supported version for compatibility on netstandard2.0 | ||
- dependency-name: "System.Reflection.Emit" | ||
- dependency-name: "System.Reflection.Emit.Lightweight" | ||
### End Datadog.Trace.csproj ignored dependencies | ||
open-pull-requests-limit: 0 # disable version updates | ||
schedule: | ||
day: sunday | ||
interval: weekly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.