dependabot-nuget 0.268.0 → 0.270.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -52,10 +52,13 @@ public partial class UpdateWorkerTests
52
52
  );
53
53
  }
54
54
 
55
- [Fact]
56
- public async Task UpdateVersionChildElement_InProjectFile_ForPackageReferenceInclude()
55
+ [Theory]
56
+ [InlineData("true")]
57
+ [InlineData(null)]
58
+ public async Task UpdateVersionChildElement_InProjectFile_ForPackageReferenceIncludeTheory(string variableValue)
57
59
  {
58
60
  // update Some.Package from 9.0.1 to 13.0.1
61
+ using var env = new TemporaryEnvironment([("UseNewNugetPackageResolver", variableValue)]);
59
62
  await TestUpdateForProject("Some.Package", "9.0.1", "13.0.1",
60
63
  packages:
61
64
  [
@@ -91,6 +94,43 @@ public partial class UpdateWorkerTests
91
94
  );
92
95
  }
93
96
 
97
+ [Fact]
98
+ public async Task CallingResolveDependencyConflictsNew()
99
+ {
100
+ // update Microsoft.CodeAnalysis.Common from 4.9.2 to 4.10.0
101
+ using var env = new TemporaryEnvironment([("UseNewNugetPackageResolver", "true")]);
102
+ await TestUpdateForProject("Microsoft.CodeAnalysis.Common", "4.9.2", "4.10.0",
103
+ // initial
104
+ projectContents: $"""
105
+ <Project Sdk="Microsoft.NET.Sdk">
106
+ <PropertyGroup>
107
+ <TargetFramework>net8.0</TargetFramework>
108
+ </PropertyGroup>
109
+ <ItemGroup>
110
+ <PackageReference Include="Microsoft.CodeAnalysis.Compilers" Version="4.9.2" />
111
+ <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" />
112
+ <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
113
+ <PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="4.9.2" />
114
+ </ItemGroup>
115
+ </Project>
116
+ """,
117
+ // expected
118
+ expectedProjectContents: $"""
119
+ <Project Sdk="Microsoft.NET.Sdk">
120
+ <PropertyGroup>
121
+ <TargetFramework>net8.0</TargetFramework>
122
+ </PropertyGroup>
123
+ <ItemGroup>
124
+ <PackageReference Include="Microsoft.CodeAnalysis.Compilers" Version="4.10.0" />
125
+ <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.10.0" />
126
+ <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.10.0" />
127
+ <PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="4.10.0" />
128
+ </ItemGroup>
129
+ </Project>
130
+ """
131
+ );
132
+ }
133
+
94
134
  [Fact]
95
135
  public async Task UpdateVersions_InProjectFile_ForDuplicatePackageReferenceInclude()
96
136
  {
@@ -489,9 +529,12 @@ public partial class UpdateWorkerTests
489
529
  );
490
530
  }
491
531
 
492
- [Fact]
493
- public async Task AddPackageReference_InProjectFile_ForTransientDependency()
532
+ [Theory]
533
+ [InlineData(null)]
534
+ [InlineData("true")]
535
+ public async Task AddPackageReference_InProjectFile_ForTransientDependency(string variableValue)
494
536
  {
537
+ using var env = new TemporaryEnvironment([("UseNewNugetPackageResolver", variableValue)]);
495
538
  // add transient package Some.Transient.Dependency from 5.0.1 to 5.0.2
496
539
  await TestUpdateForProject("Some.Transient.Dependency", "5.0.1", "5.0.2", isTransitive: true,
497
540
  packages:
@@ -2862,9 +2905,13 @@ public partial class UpdateWorkerTests
2862
2905
  );
2863
2906
  }
2864
2907
 
2865
- [Fact]
2866
- public async Task NoChange_IfThereAreIncoherentVersions()
2908
+ [Theory]
2909
+ [InlineData("true")]
2910
+ [InlineData(null)]
2911
+ public async Task NoChange_IfThereAreIncoherentVersions(string variableValue)
2867
2912
  {
2913
+ using var env = new TemporaryEnvironment([("UseNewNugetPackageResolver", variableValue)]);
2914
+
2868
2915
  // trying to update `Transitive.Dependency` to 1.1.0 would normally pull `Some.Package` from 1.0.0 to 1.1.0,
2869
2916
  // but the TFM doesn't allow it
2870
2917
  await TestNoChangeforProject("Transitive.Dependency", "1.0.0", "1.1.0",
@@ -2948,9 +2995,13 @@ public partial class UpdateWorkerTests
2948
2995
  );
2949
2996
  }
2950
2997
 
2951
- [Fact]
2952
- public async Task UnresolvablePropertyDoesNotStopOtherUpdates()
2998
+ [Theory]
2999
+ [InlineData("true")]
3000
+ [InlineData(null)]
3001
+ public async Task UnresolvablePropertyDoesNotStopOtherUpdates(string variableValue)
2953
3002
  {
3003
+ using var env = new TemporaryEnvironment([("UseNewNugetPackageResolver", variableValue)]);
3004
+
2954
3005
  // the property `$(SomeUnresolvableProperty)` cannot be resolved
2955
3006
  await TestUpdateForProject("Some.Package", "7.0.1", "13.0.1",
2956
3007
  packages:
@@ -2984,9 +3035,13 @@ public partial class UpdateWorkerTests
2984
3035
  );
2985
3036
  }
2986
3037
 
2987
- [Fact]
2988
- public async Task UpdatingPackageAlsoUpdatesAnythingWithADependencyOnTheUpdatedPackage()
3038
+ [Theory]
3039
+ [InlineData("true")]
3040
+ [InlineData(null)]
3041
+ public async Task UpdatingPackageAlsoUpdatesAnythingWithADependencyOnTheUpdatedPackage(string variableValue)
2989
3042
  {
3043
+ using var env = new TemporaryEnvironment([("UseNewNugetPackageResolver", variableValue)]);
3044
+
2990
3045
  // updating Some.Package from 3.3.30 requires that Some.Package.Extensions also be updated
2991
3046
  await TestUpdateForProject("Some.Package", "3.3.30", "3.4.3",
2992
3047
  packages: