-
Notifications
You must be signed in to change notification settings - Fork 773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[otlp] Remove the direct dependency on Microsoft.Extensions.Configuration.Binder #5951
[otlp] Remove the direct dependency on Microsoft.Extensions.Configuration.Binder #5951
Conversation
…nder from Otlp project.
@@ -7,6 +7,9 @@ Notes](../../RELEASENOTES.md). | |||
|
|||
## Unreleased | |||
|
|||
* Removed the direct dependency on `Microsoft.Extensions.Configuration.Binder`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Define needed 😄 Agree it is kind of silly to mention. Checked with @alanwest he was good with it NOT being mentioned so I removed.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5951 +/- ##
==========================================
+ Coverage 83.38% 86.38% +3.00%
==========================================
Files 297 262 -35
Lines 12531 11804 -727
==========================================
- Hits 10449 10197 -252
+ Misses 2082 1607 -475
Flags with carried forward coverage won't be shown. Click here to find out more. |
Changes
Microsoft.Extensions.Configuration.Binder
from the OtlpExporter project.Details
The SDK depends on
Microsoft.Extensions.Logging.Configuration
which brings inMicrosoft.Extensions.Configuration.Binder
. The1.9.0
version of SDK brought in8.0.0
versions of those packages. It seems OtlpExporter needed 8.0.1 to make AoT work correctly. Now that SDK is bringing in9.0.0
versions of packages this redirect is no longer required.Merge requirement checklist