You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update the AWS .NET SDK dependencies for the OpenTelemetry.Instrumentation.AWS package. This is needed because the version that was previously had a max range cap of 3.6 but the SDK has been on version 3.7 since 2021. Without this change users are getting restore warnings whenever they are using an SDK versions released in the last 2 years.
For background purposes I'm a developer of the AWS .NET SDK.
For significant contributions please make sure you have completed the following items:
Appropriate CHANGELOG.md updated for non-trivial changes
<!-- Accepts any version 6.1 and above. Will resolve to the smallest acceptable stable version.-->
<PackageReferenceInclude="ExamplePackage"Version="6.1" />
<!-- Accepts any version 6.1 and above.
Will resolve to the smallest acceptable stable version.-->
<PackageReference Include="ExamplePackage" Version="6.1" />
The library is currently referencing version 3.5.0.26 of AWSSDK.SQS. If you look at the dependencies for that version it has a dependency on AWSSDK.Core set to >= 3.5.1.24 && < 3.6.0. In more recent versions the service packages like AWSSDK.SQS have a much wider range set for the dependency on AWSSDK.Core. >= 3.7.300 && < 4.0.0.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Update the AWS .NET SDK dependencies for the OpenTelemetry.Instrumentation.AWS package. This is needed because the version that was previously had a max range cap of
3.6but the SDK has been on version3.7since 2021. Without this change users are getting restore warnings whenever they are using an SDK versions released in the last 2 years.For background purposes I'm a developer of the AWS .NET SDK.
For significant contributions please make sure you have completed the following items:
CHANGELOG.mdupdated for non-trivial changes