Skip to content

Commit 84aa007

Browse files
Updated MaxSupportedMinClientVersion to latest (#10647)
1 parent d858166 commit 84aa007

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/NuGetGallery/GalleryConstants.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using NuGet.Versioning;
@@ -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("6.9.1.0");
27+
internal static readonly NuGetVersion MaxSupportedMinClientVersion = new NuGetVersion("7.0.1.1");
2828

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

tests/NuGetGallery.Facts/Controllers/ApiControllerFacts.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
@@ -871,7 +871,7 @@ public async Task WillRejectMalformedZipWithEntryDoubleSlashInPath(string zipPat
871871
public async Task CreatePackageReturns400IfMinClientVersionIsTooHigh()
872872
{
873873
// Arrange
874-
const string HighClientVersion = "7.0.0.0";
874+
const string HighClientVersion = "9.0.0.0";
875875
var nuGetPackage = TestPackage.CreateTestPackageStream("theId", "1.0.42", minClientVersion: HighClientVersion);
876876

877877
var user = new User() { EmailAddress = "[email protected]" };
@@ -3205,4 +3205,4 @@ public SymbolsTestException(string message) : base(message)
32053205
}
32063206

32073207
}
3208-
}
3208+
}

0 commit comments

Comments
 (0)