Skip to content

Commit 659510b

Browse files
authored
Merge pull request #9443 from NuGet/main
[ReleasePre][2023.03.28]FI of main into dev
2 parents 6e8f5ea + f183304 commit 659510b

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
blank_issues_enabled: true
22
contact_links:
3+
- name: NuGet.org Account Sign In Issue
4+
url: https://www.nuget.org/policies/Contact
5+
about: If you cannot sign in to NuGet.org, please read our support page or [email protected] instead of creating an issue (to avoid private information in public GitHub issues).
36
- name: NuGet Client Issue Tracker
47
url: https://github.com/NuGet/Home/issues/new/choose
58
about: Please file issues about the NuGet Client here.

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)