Skip to content

Commit 3382ee7

Browse files
authored
MaxSupportedMinClientVersion update. (#9406)
1 parent e494ba3 commit 3382ee7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/NuGetGallery/GalleryConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static class GalleryConstants
2424
public const int GravatarCacheDurationSeconds = 300;
2525

2626
public const int MaxFileLengthBytes = 1024 * 1024; // 1MB for License, Icon, readme file
27-
internal static readonly NuGetVersion MaxSupportedMinClientVersion = new NuGetVersion("5.9.0.0");
27+
internal static readonly NuGetVersion MaxSupportedMinClientVersion = new NuGetVersion("6.5.0.0");
2828

2929
public const string RecentSortOrder = "package-created";
3030

tests/NuGetGallery.Facts/Controllers/ApiControllerFacts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ public async Task WillRejectBrokenZipFiles()
834834
public async Task CreatePackageReturns400IfMinClientVersionIsTooHigh()
835835
{
836836
// Arrange
837-
const string HighClientVersion = "6.0.0.0";
837+
const string HighClientVersion = "7.0.0.0";
838838
var nuGetPackage = TestPackage.CreateTestPackageStream("theId", "1.0.42", minClientVersion: HighClientVersion);
839839

840840
var user = new User() { EmailAddress = "[email protected]" };

0 commit comments

Comments
 (0)