author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
455,742
13.07.2021 04:41:22
-10,800
7557469186f07c1a15fff57e5efd3816e622a776
Strip html comments from markdown
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Services/MarkdownService.cs", "new_path": "src/NuGetGallery/Services/MarkdownService.cs", "diff": "@@ -23,6 +23,7 @@ public class MarkdownService : IMarkdownService\nprivate static readonly TimeSpan RegexTimeout = TimeSpan.FromMinutes(1);\npri...
C#
Apache License 2.0
nuget/nugetgallery
Strip html comments from markdown (#8667)
455,741
13.07.2021 15:22:37
25,200
84984d93c2b125a30ef3ff5177e7ad4b104c4406
modify pettry link
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Helpers/HtmlExtensions.cs", "new_path": "src/NuGetGallery/Helpers/HtmlExtensions.cs", "diff": "@@ -103,7 +103,7 @@ void appendUrl(StringBuilder builder, string inputText)\n// Format links to NuGet packages\nMatch packageMatch = RegexEx.MatchWi...
C#
Apache License 2.0
nuget/nugetgallery
modify pettry link (#8658)
455,744
16.07.2021 15:52:02
25,200
81d402ea89a4e8d49aa5061513d15561c2e78276
First round of implementation.
[ { "change_type": "MODIFY", "old_path": "src/AccountDeleter/Configuration/GalleryConfiguration.cs", "new_path": "src/AccountDeleter/Configuration/GalleryConfiguration.cs", "diff": "@@ -37,6 +37,7 @@ public string SiteRoot\npublic string AzureStorage_Revalidation_ConnectionString { get => throw new No...
C#
Apache License 2.0
nuget/nugetgallery
First round of implementation.
455,744
16.07.2021 17:41:13
25,200
bf65d6a73e692eaf0a41dd3d1aab162fb8563f66
Does not immediately crash.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/NuGetGallery.csproj", "new_path": "src/NuGetGallery/NuGetGallery.csproj", "diff": "<Compile Include=\"ExtensionMethods.cs\" />\n<Compile Include=\"Extensions\\CakeBuildManagerExtensions.cs\" />\n<Compile Include=\"Extensions\\ImageExtensions.c...
C#
Apache License 2.0
nuget/nugetgallery
Does not immediately crash.
455,737
22.07.2021 22:38:40
0
7e887121c941ad5042bce952fbcb8d206c519818
Adding stubbed definition for missing DI objects For AccountDeleter.
[ { "change_type": "MODIFY", "old_path": "src/AccountDeleter/AccountDeleter.csproj", "new_path": "src/AccountDeleter/AccountDeleter.csproj", "diff": "<Compile Include=\"Configuration\\GalleryConfiguration.cs\" />\n<Compile Include=\"Configuration\\MailTemplateConfiguration.cs\" />\n<Compile Include=\"...
C#
Apache License 2.0
nuget/nugetgallery
Adding stubbed definition for missing DI objects For AccountDeleter. (#8677)
455,744
26.07.2021 23:05:05
25,200
fd56b01de7293e3ab145a7fce2494cf8f0f8754e
Config option for admin panel.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Web.config", "new_path": "src/NuGetGallery/Web.config", "diff": "<add key=\"Gallery.AzureStorageReadAccessGeoRedundant\" value=\"false\"/>\n<!-- If the storage account has to fall-back to a secondary (when Read Access Geo Redundant is enabled ...
C#
Apache License 2.0
nuget/nugetgallery
Config option for admin panel.
455,744
27.07.2021 13:17:45
25,200
6e28f2456486a2ef041e801d2008f98fb29fd02d
Running tests with admin enabled.
[ { "change_type": "MODIFY", "old_path": "tests/NuGetGallery.Facts/Helpers/ObfuscationHelperFacts.cs", "new_path": "tests/NuGetGallery.Facts/Helpers/ObfuscationHelperFacts.cs", "diff": "@@ -22,7 +22,7 @@ public TheObfuscateCurrentRequestUrlFacts()\n{\n_currentRoutes = new RouteCollection();\nRoutes.Re...
C#
Apache License 2.0
nuget/nugetgallery
Running tests with admin enabled.
455,744
27.07.2021 17:40:22
25,200
57680b888240fb27e6267fa1971a0c02f6c667f8
Admin panel enabled checks for package details page admin actions. Admin panel enabled check in Site.master.cs in admin area.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/App_Start/Routes.cs", "new_path": "src/NuGetGallery/App_Start/Routes.cs", "diff": "@@ -271,6 +271,8 @@ public static void RegisterUIRoutes(RouteCollection routes, bool adminPanelEnabl\nnew { controller = \"Packages\", action = \"SetLicenseRepo...
C#
Apache License 2.0
nuget/nugetgallery
Admin panel enabled checks for package details page admin actions. Admin panel enabled check in Site.master.cs in admin area.
455,744
27.07.2021 18:43:11
25,200
ddc6b73282c72ccd9c4a137bc7d338f03d69236a
Not showing admin links on package details page v2 as well.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/DisplayPackageV2.cshtml", "new_path": "src/NuGetGallery/Views/Packages/DisplayPackageV2.cshtml", "diff": "</li>\n}\n- @if (Model.Available && User.IsAdministrator())\n+ @if (AdminHelper.IsAdminPanelEnabled && Model.Available && ...
C#
Apache License 2.0
nuget/nugetgallery
Not showing admin links on package details page v2 as well.
455,744
27.07.2021 19:58:20
25,200
2514f96f44ca719b96d1b39615f7edb4a4c296f8
Added AdminAction attribute that additionally checks for admin panel enabled state. Profile page adjustments for disabled admin panel.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Controllers/AccountsController.cs", "new_path": "src/NuGetGallery/Controllers/AccountsController.cs", "diff": "@@ -338,7 +338,7 @@ public virtual ActionResult DeleteRequest(string accountName = null)\n}\n[HttpGet]\n- [UIAuthorize(Roles = \"Adm...
C#
Apache License 2.0
nuget/nugetgallery
Added AdminAction attribute that additionally checks for admin panel enabled state. Profile page adjustments for disabled admin panel.
455,744
28.07.2021 18:07:10
25,200
0ab8f9035aa4e66840f7c96a3da81b72e1393f66
.Admin helper will throw if admin panel is disabled.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/UrlHelperExtensions.cs", "new_path": "src/NuGetGallery/UrlHelperExtensions.cs", "diff": "@@ -1387,7 +1387,11 @@ public static string About(this UrlHelper url, bool relativeUrl = true)\npublic static string Admin(this UrlHelper url, bool relati...
C#
Apache License 2.0
nuget/nugetgallery
.Admin helper will throw if admin panel is disabled.
455,745
05.08.2021 00:56:39
-3,600
50cb0e2426a19e21d37935b06178c7c6e990e35e
Render a canonical tag on each page Fixes
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/UrlHelperExtensions.cs", "new_path": "src/NuGetGallery/UrlHelperExtensions.cs", "diff": "@@ -68,6 +68,18 @@ internal static string GetSiteRoot(bool useHttps)\nreturn _configuration.GetSiteRoot(useHttps);\n}\n+ public static string GetCanonical...
C#
Apache License 2.0
nuget/nugetgallery
Render a canonical tag on each page (#8584) Fixes #8559
455,747
06.08.2021 10:54:06
25,200
8a49379a76e707666eb0d52f5d620936acee8cc1
Update server common libraries to use managed identities with service bus
[ { "change_type": "MODIFY", "old_path": "src/DatabaseMigrationTools/DatabaseMigrationTools.csproj", "new_path": "src/DatabaseMigrationTools/DatabaseMigrationTools.csproj", "diff": "<PrivateAssets>all</PrivateAssets>\n</PackageReference>\n<PackageReference Include=\"NuGet.Services.Validation\">\n- <Ve...
C#
Apache License 2.0
nuget/nugetgallery
Update server common libraries to use managed identities with service bus (#8739)
455,747
06.08.2021 15:21:02
25,200
1039cd81ae954e3093b8cb7ff584c1cfb66563d6
Update the NuGet jobs common libraries for gallery jobs
[ { "change_type": "MODIFY", "old_path": "src/AccountDeleter/AccountDeleter.csproj", "new_path": "src/AccountDeleter/AccountDeleter.csproj", "diff": "<PrivateAssets>all</PrivateAssets>\n</PackageReference>\n<PackageReference Include=\"NuGet.Services.Validation.Common.Job\">\n- <Version>4.3.0-dev-36128...
C#
Apache License 2.0
nuget/nugetgallery
Update the NuGet jobs common libraries for gallery jobs (#8740)
455,736
11.08.2021 10:38:15
25,200
3759c27dd8ed605c76be4534ef84997822e96cea
Add bulk revalidate buttons to Validation admin panel * Fix bug causing only first package to revalidate to work * Redirect back to admin panel when revalidating there * Add revalidate pending packages and symbols to admin panel * Add unit tests for new service method Fix
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -45,6 +45,9 @@ body h3 {\ntext-overflow: ellipsis;\nwhite-space: nowrap;\n}\n+.form-inline-empty {\n+ display: inline-block;\n+}\n.footer {\nback...
C#
Apache License 2.0
nuget/nugetgallery
Add bulk revalidate buttons to Validation admin panel (#8738) * Fix bug causing only first package to revalidate to work * Redirect back to admin panel when revalidating there * Add revalidate pending packages and symbols to admin panel * Add unit tests for new service method Fix https://github.com/NuGet/NuGetGallery/issues/8702
455,754
17.08.2021 21:02:38
-36,000
f260900017d9cfca5b0ff6df15b351a0501a59d2
Add role="presentation" attribute to reserved checkmarks to satisfy a11y compliance
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "new_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "diff": "<img class=\"reserved-indicator\"\nsrc=\"~/Content/gallery/img/reserved-indicator.svg\"\n@ViewHelpers.ImageFallback(Url.Absolu...
C#
Apache License 2.0
nuget/nugetgallery
Add role="presentation" attribute to reserved checkmarks to satisfy a11y compliance (#8746)
455,754
27.08.2021 14:01:35
-36,000
b99a267481e6889e50a95a9b47d4074300e2cbf5
convert role attributes to alt attributes for reserved checkmarks
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "new_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "diff": "<img class=\"reserved-indicator\"\nsrc=\"~/Content/gallery/img/reserved-indicator.svg\"\n@ViewHelpers.ImageFallback(Url.Absolu...
C#
Apache License 2.0
nuget/nugetgallery
convert role attributes to alt attributes for reserved checkmarks (#8759)
455,736
27.08.2021 11:02:07
25,200
c98395ffeebee7c9ef94bbdaf917d54ed1cbb59c
Audit add and remove ownership request action Progress on
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Core/Auditing/AuditedPackageRegistrationAction.cs", "new_path": "src/NuGetGallery.Core/Auditing/AuditedPackageRegistrationAction.cs", "diff": "@@ -9,6 +9,8 @@ public enum AuditedPackageRegistrationAction\nRemoveOwner,\nMarkVerified,\nMarkUnver...
C#
Apache License 2.0
nuget/nugetgallery
Audit add and remove ownership request action (#8764) Progress on https://github.com/NuGet/Engineering/issues/3994
455,781
03.09.2021 15:34:26
25,200
a2c88e3b2b4af827ceb9b401a87a9b4107b4dd1a
[HotFix] Update test to use Newtonsoft.Json instead of jQuery.
[ { "change_type": "MODIFY", "old_path": "tests/NuGetGallery.FunctionalTests/ODataFeeds/V2FeedTests.cs", "new_path": "tests/NuGetGallery.FunctionalTests/ODataFeeds/V2FeedTests.cs", "diff": "@@ -52,13 +52,13 @@ public async Task ApiV2MetadataTest()\n}\n[Fact]\n- [Description(\"Verify the webresponse fr...
C#
Apache License 2.0
nuget/nugetgallery
[HotFix] Update test to use Newtonsoft.Json instead of jQuery. (#8785)
455,781
03.09.2021 16:43:08
25,200
f08f9af86f14034516aa78ab25ca990b9cc23629
[Hotfix] Update test to be Newtonsoft.Json instead of jQuery on loadtest.
[ { "change_type": "MODIFY", "old_path": "tests/NuGetGallery.LoadTests/LoadTests.cs", "new_path": "tests/NuGetGallery.LoadTests/LoadTests.cs", "diff": "@@ -128,13 +128,13 @@ public async Task HitSearchEndPointDirectly()\n}\n[TestMethod]\n- [Description(\"Verify the webresponse from top30 packages feed...
C#
Apache License 2.0
nuget/nugetgallery
[Hotfix] Update test to be Newtonsoft.Json instead of jQuery on loadtest. (#8787)
455,736
03.09.2021 16:45:38
25,200
32a9cbf9c5df7ea3c9db9981939769bb6e103b6d
Check for deleted packages on several read and write operations Fix
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Core/Services/ICorePackageService.cs", "new_path": "src/NuGetGallery.Core/Services/ICorePackageService.cs", "diff": "@@ -29,7 +29,11 @@ public interface ICorePackageService\nTask UpdatePackageStatusAsync(Package package, PackageStatus newPacka...
C#
Apache License 2.0
nuget/nugetgallery
Check for deleted packages on several read and write operations (#8779) Fix https://github.com/NuGet/NuGetGallery/issues/8778
455,766
08.09.2021 16:37:16
10,800
70410644e3c591c69d6c455f88d2534483f89ccb
Order vulnerabilities by severity Addresses
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Helpers/ViewModelExtensions/DisplayPackageViewModelFactory.cs", "new_path": "src/NuGetGallery/Helpers/ViewModelExtensions/DisplayPackageViewModelFactory.cs", "diff": "@@ -206,7 +206,7 @@ public DisplayPackageViewModelFactory(IIconUrlProvider i...
C#
Apache License 2.0
nuget/nugetgallery
Order vulnerabilities by severity (#8780) Addresses #8703
455,744
14.09.2021 14:20:08
25,200
bfad23470599cac87928e0e653a62dc3ef5c02e7
Added admin enabled checks that were lost during merge back
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "new_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "diff": "</li>\n}\n- @if (Model.Available && User.IsAdministrator())\n+ @if (AdminHelper.IsAdminPanelEnabled && Model.Available && User...
C#
Apache License 2.0
nuget/nugetgallery
Added admin enabled checks that were lost during merge back
455,744
14.09.2021 14:52:34
25,200
116db709a158a0982357582a36281863458336d1
Immediately returning from AdminActionAttribute.OnAuthorization upon determining result.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Filters/AdminActionAttribute.cs", "new_path": "src/NuGetGallery/Filters/AdminActionAttribute.cs", "diff": "@@ -17,6 +17,7 @@ public override void OnAuthorization(AuthorizationContext filterContext)\nif (!AdminHelper.IsAdminPanelEnabled)\n{\nfi...
C#
Apache License 2.0
nuget/nugetgallery
Immediately returning from AdminActionAttribute.OnAuthorization upon determining result.
455,744
14.09.2021 14:57:49
25,200
5c16da97bd01f5d9404fa75294b22d3b569947e6
AdminAction attribute without parens.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Controllers/AccountsController.cs", "new_path": "src/NuGetGallery/Controllers/AccountsController.cs", "diff": "@@ -338,7 +338,7 @@ public virtual ActionResult DeleteRequest(string accountName = null)\n}\n[HttpGet]\n- [AdminAction()]\n+ [AdminA...
C#
Apache License 2.0
nuget/nugetgallery
AdminAction attribute without parens.
455,744
14.09.2021 15:10:27
25,200
d00117ebb27dd94f7448ef63869626df0e95b9cc
Clarified RegisterUIRoutes calls
[ { "change_type": "MODIFY", "old_path": "tests/NuGetGallery.Facts/Helpers/ObfuscationHelperFacts.cs", "new_path": "tests/NuGetGallery.Facts/Helpers/ObfuscationHelperFacts.cs", "diff": "@@ -22,7 +22,7 @@ public TheObfuscateCurrentRequestUrlFacts()\n{\n_currentRoutes = new RouteCollection();\nRoutes.Re...
C#
Apache License 2.0
nuget/nugetgallery
Clarified RegisterUIRoutes calls
455,744
14.09.2021 16:42:59
25,200
77229744d9ee356cfce0f6e71aade3909f8d12b8
Putting back admin read-only features.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Users/Profiles.cshtml", "new_path": "src/NuGetGallery/Views/Users/Profiles.cshtml", "diff": "<div class=\"description\">Total @(Model.TotalPackageDownloadCount == 1 ? \"download\" : \"downloads\") of packages</div>\n</div>\n</div>\n- @if...
C#
Apache License 2.0
nuget/nugetgallery
Putting back admin read-only features.
455,754
17.09.2021 07:21:00
-36,000
03ea2cc05f38860097e95f8e9a20f7b37fd5cdee
Make pva cache case insensitive to support all package details urls
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Services/PackageVulnerabilitiesCacheService.cs", "new_path": "src/NuGetGallery/Services/PackageVulnerabilitiesCacheService.cs", "diff": "@@ -86,7 +86,9 @@ public void RefreshCache(IServiceScopeFactory serviceScopeFactory)\nikv.GroupBy(kv => kv...
C#
Apache License 2.0
nuget/nugetgallery
Make pva cache case insensitive to support all package details urls (#8793)
455,741
17.09.2021 14:43:35
25,200
ce803dc957171e39dc03d377a13e8f69b34c99fd
add domain app.fossa.com & cdn.syncfusion.com
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/App_Data/Files/Content/Trusted-Image-Domains.json", "new_path": "src/NuGetGallery/App_Data/Files/Content/Trusted-Image-Domains.json", "diff": "\"api.travis-ci.com\",\n\"api.travis-ci.org\",\n\"app.fossa.io\",\n+ \"app.fossa.com\",\n\"badge.fur...
C#
Apache License 2.0
nuget/nugetgallery
add domain app.fossa.com & cdn.syncfusion.com (#8805)
455,744
17.09.2021 19:38:07
25,200
4e62f823b65ed27cda3645b19b60c51367f80101
Configurable admin actions.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Services/Permissions/ActionsRequiringPermissions.cs", "new_path": "src/NuGetGallery.Services/Permissions/ActionsRequiringPermissions.cs", "diff": "@@ -8,22 +8,27 @@ namespace NuGetGallery\n/// </summary>\npublic static class ActionsRequiringPe...
C#
Apache License 2.0
nuget/nugetgallery
Configurable admin actions.
455,744
21.09.2021 18:46:40
25,200
89fc141e9e763fb346ea95798946880a87bad41b
Switching httpRuntime to 4.7.2
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Web.config", "new_path": "src/NuGetGallery/Web.config", "diff": "<add tagPrefix=\"ef\" assembly=\"Microsoft.AspNet.EntityDataSource\" namespace=\"Microsoft.AspNet.EntityDataSource\"/>\n</controls>\n</pages>\n- <httpRuntime targetFramework=\"4....
C#
Apache License 2.0
nuget/nugetgallery
Switching httpRuntime to 4.7.2 (#8810)
455,756
27.09.2021 10:37:14
25,200
7045ad65133a2c8999df53d0f80f2675069208f6
Update HSTS header
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Web.config", "new_path": "src/NuGetGallery/Web.config", "diff": "<add name=\"X-Frame-Options\" value=\"deny\"/>\n<add name=\"X-XSS-Protection\" value=\"1; mode=block\"/>\n<add name=\"X-Content-Type-Options\" value=\"nosniff\"/>\n- <add name=\"...
C#
Apache License 2.0
nuget/nugetgallery
Update HSTS header (#8824)
455,754
30.09.2021 12:29:10
-36,000
c63bb491d60af4760cc97404d2c1324e91b46eb3
Streamline report package page and add vulnerability text
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Services/Models/ReportPackageReason.cs", "new_path": "src/NuGetGallery.Services/Models/ReportPackageReason.cs", "diff": "@@ -10,19 +10,22 @@ public enum ReportPackageReason\n[Description(\"Other\")]\nOther,\n- [Description(\"The package has a ...
C#
Apache License 2.0
nuget/nugetgallery
Streamline report package page and add vulnerability text (#8831)
455,754
15.10.2021 14:47:31
-36,000
78357e135a1acaa92ce456caef86ed12b3dd5f53
Add recaptcha to the forgot password page
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Controllers/UsersController.cs", "new_path": "src/NuGetGallery/Controllers/UsersController.cs", "diff": "@@ -624,6 +624,7 @@ public virtual ActionResult ForgotPassword()\n[HttpPost]\n[ValidateAntiForgeryToken]\n+ [ValidateRecaptchaResponse]\np...
C#
Apache License 2.0
nuget/nugetgallery
Add recaptcha to the forgot password page (#8849)
455,744
26.10.2021 19:00:29
25,200
c63f62cb9fb2c83e5e2143518cab522084c63d8b
More readable test data
[ { "change_type": "MODIFY", "old_path": "tests/NuGetGallery.Facts/Services/ActionsRequiringPermissionsAdminFacts.cs", "new_path": "tests/NuGetGallery.Facts/Services/ActionsRequiringPermissionsAdminFacts.cs", "diff": "@@ -15,20 +15,20 @@ public class ActionsRequiringPermissionsAdminFacts\n{\nprivate i...
C#
Apache License 2.0
nuget/nugetgallery
More readable test data
455,754
27.10.2021 12:01:56
-36,000
26f9d1bd800829ada58551dca6debcf686f27fa8
Add link to form for revenge porn reporting, remove fields
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/App_Data/Files/Content/flags.json", "new_path": "src/NuGetGallery/App_Data/Files/Content/flags.json", "diff": "\"NuGetGallery.PatternSetTfmHeuristics\": \"Enabled\",\n\"NuGetGallery.EmbeddedIcons\": \"Enabled\",\n\"NuGetGallery.MarkdigMdRender...
C#
Apache License 2.0
nuget/nugetgallery
Add link to form for revenge porn reporting, remove fields (#8857)
455,744
15.11.2021 14:32:52
28,800
0be284ebfaa8fc4f7d01b02fcf65b3f3361718da
Registering admin panel routes when admin panel is not disabled.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/App_Start/AppActivator.cs", "new_path": "src/NuGetGallery/App_Start/AppActivator.cs", "diff": "@@ -248,7 +248,7 @@ private static void AppPostStart(IAppConfiguration configuration)\n// Log unhandled exceptions\nGlobalConfiguration.Configuratio...
C#
Apache License 2.0
nuget/nugetgallery
Registering admin panel routes when admin panel is not disabled. (#8880)
455,754
06.12.2021 15:04:32
-36,000
fbdd379552b7112854e4d3a7d99795a6a1937606
Additional online safety instructions
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/ReportAbuse.cshtml", "new_path": "src/NuGetGallery/Views/Packages/ReportAbuse.cshtml", "diff": "<p tabindex=\"0\">\nPlease provide a detailed description of the problem.\n<p>\n+ <div class=\"online-safety-extras\" tabindex=\"0\"...
C#
Apache License 2.0
nuget/nugetgallery
Additional online safety instructions (#8902)
455,754
07.12.2021 14:57:58
-36,000
af38edce56418a2e3995066d788a472c8c041ef3
Make checkmarks and bangs accessible in package details page
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Scripts/gallery/page-display-package-v2.js", "new_path": "src/NuGetGallery/Scripts/gallery/page-display-package-v2.js", "diff": "}\n});\n}\n+\n+ $(\".reserved-indicator\").each(window.nuget.setPopovers);\n+ $(\".package-warning-icon\").each(wi...
C#
Apache License 2.0
nuget/nugetgallery
Make checkmarks and bangs accessible in package details page (#8901)
455,754
04.01.2022 15:23:02
-36,000
d12c199b7067700d917086894ae3b2981de08398
Remove cybertip link from report package page
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/ReportAbuse.cshtml", "new_path": "src/NuGetGallery/Views/Packages/ReportAbuse.cshtml", "diff": "If you are reporting copyright infringement, please describe the copyrighted material with particularity and provide us with informa...
C#
Apache License 2.0
nuget/nugetgallery
Remove cybertip link from report package page (#8917)
455,747
04.01.2022 15:22:04
28,800
d01ec315d51ef07d0c1d2c408b296f04a73e5615
Fix assembly warnings
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Core/NuGetGallery.Core.csproj", "new_path": "src/NuGetGallery.Core/NuGetGallery.Core.csproj", "diff": "<Version>6.0.0</Version>\n</PackageReference>\n<PackageReference Include=\"NuGet.Services.FeatureFlags\">\n- <Version>2.96.0</Version>\n+ <V...
C#
Apache License 2.0
nuget/nugetgallery
Fix assembly warnings (#8928)
455,781
05.01.2022 13:22:27
25,200
7d4c4353985e39eb540814ff58260bc61c32a43d
Add feature flags for TFM.
[ { "change_type": "MODIFY", "old_path": "src/AccountDeleter/EmptyFeatureFlagService.cs", "new_path": "src/AccountDeleter/EmptyFeatureFlagService.cs", "diff": "@@ -51,6 +51,11 @@ public bool IsAsyncAccountDeleteEnabled()\nthrow new NotImplementedException();\n}\n+ public bool IsComputeTargetFrameworkE...
C#
Apache License 2.0
nuget/nugetgallery
Add feature flags for TFM. (#8929)
455,747
07.01.2022 18:03:21
28,800
c81a82a238cd16dd9ee485de01bea3981d6429d0
Update gallery jobs to use new service bus MSI
[ { "change_type": "MODIFY", "old_path": "NuGet.config", "new_path": "NuGet.config", "diff": "<package pattern=\"NuGet.Jobs.*\" />\n<package pattern=\"NuGet.Services.*\" />\n<package pattern=\"NuGet.StrongName.*\" />\n+ <package pattern=\"NuGetGallery.Core\" />\n<package pattern=\"Strathweb.CacheOutpu...
C#
Apache License 2.0
nuget/nugetgallery
Update gallery jobs to use new service bus MSI (#8930)
455,736
19.01.2022 12:40:02
28,800
4aec7e0833ede13a4ed598badc1b5162df9a1a2d
Fix issue template links Fix
[ { "change_type": "MODIFY", "old_path": ".github/ISSUE_TEMPLATE/NUGETORG_ISSUE.yml", "new_path": ".github/ISSUE_TEMPLATE/NUGETORG_ISSUE.yml", "diff": "@@ -10,9 +10,9 @@ body:\nThe more detail you provide, the more likely it will be for us to be able to identify what is going on and how to solve it!\n...
C#
Apache License 2.0
nuget/nugetgallery
Fix issue template links (#8946) Fix https://github.com/NuGet/NuGetGallery/issues/8944
455,754
25.01.2022 15:10:02
-36,000
afb9219b5c3d42388972146a95a98617c8ba4f00
Add reCAPTCHA to package uploads
[ { "change_type": "MODIFY", "old_path": "src/AccountDeleter/EmptyFeatureFlagService.cs", "new_path": "src/AccountDeleter/EmptyFeatureFlagService.cs", "diff": "@@ -285,5 +285,10 @@ public bool ProxyGravatarEnSubdomain()\n{\nthrow new NotImplementedException();\n}\n+\n+ public bool IsRecaptchaEnabledFo...
C#
Apache License 2.0
nuget/nugetgallery
Add reCAPTCHA to package uploads (#8948)
455,781
25.01.2022 12:55:09
25,200
9611fdb911a394daf3d4c8ea6245ac586c57e4e9
Added error message to aria-label attribute.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Scripts/gallery/page-edit-readme.js", "new_path": "src/NuGetGallery/Scripts/gallery/page-edit-readme.js", "diff": "@@ -369,6 +369,9 @@ var BindReadMeDataManager = (function () {\n}\nfunction displayReadMeError(errorMsg) {\n+ // In order for Na...
C#
Apache License 2.0
nuget/nugetgallery
Added error message to aria-label attribute. (#8954)
455,737
26.01.2022 19:51:11
28,800
d926c9a9fa155ca6deaf83144c8e0f9480592249
Use table-responsive for sample glob descriptions.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Users/ApiKeys.cshtml", "new_path": "src/NuGetGallery/Views/Users/ApiKeys.cshtml", "diff": "<div class=\"panel-body\">\n<p>A glob pattern allows you to replace any sequence of characters with '*'.</p>\n<p>Example glob patterns:</p>\n- <ta...
C#
Apache License 2.0
nuget/nugetgallery
Use table-responsive for sample glob descriptions.
455,754
27.01.2022 15:47:56
-36,000
a49635c4d547452481cf60b72db54b1094dda34d
create nupkg and snupkg for sharing NuGetGallery.Services
[ { "change_type": "MODIFY", "old_path": "build.ps1", "new_path": "build.ps1", "diff": "@@ -116,6 +116,7 @@ Invoke-BuildStep 'Creating artifacts' { `\nNew-ProjectPackage (Join-Path $PSScriptRoot \"src\\NuGetGallery.Core\\NuGetGallery.Core.csproj\") -Configuration $Configuration -Symbols -BuildNumber $...
C#
Apache License 2.0
nuget/nugetgallery
create nupkg and snupkg for sharing NuGetGallery.Services
455,736
28.01.2022 16:25:20
28,800
7875bf2b869d668f9729c0b151f3a1cae1376e24
Add option to backfill tools for specific IDs list * Add option to backfill tools for specific IDs list * Add readme to csproj for ease Fix
[ { "change_type": "MODIFY", "old_path": "src/GalleryTools/App.config", "new_path": "src/GalleryTools/App.config", "diff": "<add key=\"Gallery.FileStorageDirectory\" value=\"..\\..\\..\\NuGetGallery\\App_Data\\Files\"/>\n<add key=\"Gallery.LuceneIndexLocation\" value=\"Temp\"/>\n<add key=\"Gallery.IsH...
C#
Apache License 2.0
nuget/nugetgallery
Add option to backfill tools for specific IDs list (#8960) * Add option to backfill tools for specific IDs list * Add readme to csproj for ease Fix https://github.com/NuGet/NuGetGallery/issues/8961
455,783
01.02.2022 19:29:45
-3,600
028e25f19a75c934b4a66fdcfa215457d9a8d0f2
Allow user selection in install command Addresses
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -1382,10 +1382,6 @@ p.frameworktableinfo-text {\nborder-color: #002440;\nborder-style: solid;\nborder-width: 1px 0 1px 1px;\n- -webkit-user-selec...
C#
Apache License 2.0
nuget/nugetgallery
Allow user selection in install command (#8892) Addresses https://github.com/NuGet/NuGetGallery/issues/8886 Co-authored-by: Loic Sharma <sharma.loic@gmail.com>
455,778
01.02.2022 20:41:08
28,800
f2c175946041567506bde93ed0faeb2ab48e31ba
Adds User's MFA status when an API key is created
[ { "change_type": "MODIFY", "old_path": "src/NuGet.Services.Entities/Credential.cs", "new_path": "src/NuGet.Services.Entities/Credential.cs", "diff": "@@ -84,6 +84,8 @@ public Credential(string type, string value, TimeSpan? expiration)\npublic CredentialRevocationSource? RevocationSourceKey { get; se...
C#
Apache License 2.0
nuget/nugetgallery
Adds User's MFA status when an API key is created (#8947)
455,781
07.02.2022 17:29:21
25,200
ed514528f518d640fcc6f73a4eda936be22a8a81
stop showing tfm when package is deleted or template.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/ViewModels/DisplayPackageViewModel.cs", "new_path": "src/NuGetGallery/ViewModels/DisplayPackageViewModel.cs", "diff": "@@ -141,6 +141,11 @@ public bool CanDisplayFuGetLink()\nreturn IsFuGetLinksEnabled && !string.IsNullOrEmpty(FuGetUrl) && Ava...
C#
Apache License 2.0
nuget/nugetgallery
stop showing tfm when package is deleted or template. (#8992)
455,781
07.02.2022 17:32:14
25,200
3e9959370c200571018e289bb8a266a9c495a9c0
border adjusted and background color fixed.
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -704,6 +704,7 @@ img.reserved-indicator-icon {\n-ms-flex-pack: center;\njustify-content: center;\ndisplay: inline-block;\n+ border: 1px solid #00...
C#
Apache License 2.0
nuget/nugetgallery
border adjusted and background color fixed. (#8985)
455,736
07.02.2022 18:37:21
28,800
6c475d9317e077367a30645ed84bbdc0f41fadda
Allow case insensitive comparison of X-Frame-Options
[ { "change_type": "MODIFY", "old_path": "tests/NuGetGallery.WebUITests.P2/ValidationRuleFindHeaderText.cs", "new_path": "tests/NuGetGallery.WebUITests.P2/ValidationRuleFindHeaderText.cs", "diff": "// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license infor...
C#
Apache License 2.0
nuget/nugetgallery
Allow case insensitive comparison of X-Frame-Options (#8993)
455,747
16.02.2022 12:30:09
28,800
4af23cfc739621107e292cfc90edce8ddf82c8ae
Increase blocking time for search indexing
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/ViewModels/DisplayPackageViewModel.cs", "new_path": "src/NuGetGallery/ViewModels/DisplayPackageViewModel.cs", "diff": "@@ -47,6 +47,8 @@ public class DisplayPackageViewModel : ListPackageItemViewModel\npublic bool HasEmbeddedReadmeFile { get; ...
C#
Apache License 2.0
nuget/nugetgallery
Increase blocking time for search indexing (#9006)
455,781
23.02.2022 15:14:35
25,200
b0e5d1640b8998187e264b2fe54e43840aed4daf
EmptyVersion now displays empty string.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Core/Frameworks/NuGetFrameworkExtensions.cs", "new_path": "src/NuGetGallery.Core/Frameworks/NuGetFrameworkExtensions.cs", "diff": "@@ -11,6 +11,11 @@ public static class NuGetFrameworkExtensions\n{\npublic static string GetBadgeVersion(this Nu...
C#
Apache License 2.0
nuget/nugetgallery
EmptyVersion now displays empty string. (#9016)
455,744
25.02.2022 15:19:49
28,800
deb2fe7c07ed0f6cf72f098fb99184ce8a183061
Only allowing lowercase 'tags' element in package metadata.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Core/Packaging/PackageMetadata.cs", "new_path": "src/NuGetGallery.Core/Packaging/PackageMetadata.cs", "diff": "@@ -40,6 +40,8 @@ public class PackageMetadata\n\"serviceable\",\n};\n+ private const string TagsElement = \"tags\";\n+\nprivate rea...
C#
Apache License 2.0
nuget/nugetgallery
Only allowing lowercase 'tags' element in package metadata. (#9022)
455,781
28.02.2022 14:37:05
25,200
cf887bd97bc94c276dc1e90b0c92322f28bbcab4
[TFM Display] Fix font issue for safari.
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -686,12 +686,10 @@ img.reserved-indicator-icon {\npadding-bottom: 3em;\n}\n.framework {\n- font-family: Segoe UI;\nfont-size: 14px;\nline-height:...
C#
Apache License 2.0
nuget/nugetgallery
[TFM Display] Fix font issue for safari. (#9011)
455,781
28.02.2022 14:37:35
25,200
c8747f85b23379ef0cfc025871dd141076efc2b1
[TFM Display] Added tooltip/popover for badges.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Scripts/gallery/common.js", "new_path": "src/NuGetGallery/Scripts/gallery/common.js", "diff": "setTimeout(function () {\npopoverElement.popover('destroy');\n},\n- 1000);\n+ 2000);\n});\n};\n" }, { "change_type": "MODIFY", "old_path...
C#
Apache License 2.0
nuget/nugetgallery
[TFM Display] Added tooltip/popover for badges. (#9020)
455,754
01.03.2022 08:33:13
-36,000
359a21debe3f50e42ba6dc91105ae179f08a8ed4
Improve inclusiveness of language used in code
[ { "change_type": "MODIFY", "old_path": "tests/NuGetGallery.Facts/Authentication/AuthenticationServiceFacts.cs", "new_path": "tests/NuGetGallery.Facts/Authentication/AuthenticationServiceFacts.cs", "diff": "@@ -2448,9 +2448,9 @@ public static bool VerifyPasswordHash(string hash, string algorithm, str...
C#
Apache License 2.0
nuget/nugetgallery
Improve inclusiveness of language used in code
455,778
08.03.2022 14:03:38
28,800
75a22450447affe9edef7dcc36be4a8ab3b9172d
[A11y] Improved contrast of buttons when in tab focus mode
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap.css", "new_path": "src/Bootstrap/dist/css/bootstrap.css", "diff": "@@ -2383,7 +2383,6 @@ fieldset[disabled] a.btn {\n.btn-default:focus,\n.btn-default.focus {\ncolor: #333;\n- background-color: #e6e6e6;\nborder-color: #3f3f3f;\...
C#
Apache License 2.0
nuget/nugetgallery
[A11y] Improved contrast of buttons when in tab focus mode (#9031)
455,778
08.03.2022 14:41:58
28,800
7f0de4e5e254d0bf5485942662f7f289961135e8
[A11y] Improved contrast of focus outline on elements in the header and footer
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -68,6 +68,10 @@ body h3 {\n.footer a {\ncolor: #e3ebf1;\n}\n+.footer a:focus {\n+ outline: 3px solid white;\n+ outline-offset: 2px;\n+}\n.footer ...
C#
Apache License 2.0
nuget/nugetgallery
[A11y] Improved contrast of focus outline on elements in the header and footer (#9032)
455,781
11.03.2022 15:20:38
28,800
07b85d1a2967305a08e60491a79eb06ad661cedc
add red start for required label in form groups.
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -338,6 +338,10 @@ img.reserved-indicator-icon {\n.sortable {\ncursor: pointer;\n}\n+.form-group label.required::after {\n+ color: red;\n+ content...
C#
Apache License 2.0
nuget/nugetgallery
add red start for required label in form groups.
455,736
14.03.2022 09:13:11
25,200
875309c581c4a43279d55fac198258b41b9aa8c4
Remove dependency on RazorEngine in tests to fix Component Governance error
[ { "change_type": "MODIFY", "old_path": "tests/NuGetGallery.Facts/NuGetGallery.Facts.csproj", "new_path": "tests/NuGetGallery.Facts/NuGetGallery.Facts.csproj", "diff": "<PackageReference Include=\"Moq\">\n<Version>4.8.2</Version>\n</PackageReference>\n- <PackageReference Include=\"RazorEngine\">\n- <...
C#
Apache License 2.0
nuget/nugetgallery
Remove dependency on RazorEngine in tests to fix Component Governance error (#9050)
455,736
14.03.2022 15:44:34
25,200
5e1aeab14e06664e18c463fd2fdebd2f4f26d61b
Add namespace and package prefix search tools to namespace reservation admin panel Progress on
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Areas/Admin/Controllers/ReservedNamespaceController.cs", "new_path": "src/NuGetGallery/Areas/Admin/Controllers/ReservedNamespaceController.cs", "diff": "// Licensed under the Apache License, Version 2.0. See License.txt in the project root for...
C#
Apache License 2.0
nuget/nugetgallery
Add namespace and package prefix search tools to namespace reservation admin panel (#9055) Progress on https://github.com/NuGet/Engineering/issues/4269
455,781
16.03.2022 11:07:43
25,200
00606e58c2e05e6d0b57b8e592e3ab01c5abeaff
[Ally Bug] Remove table layout from installation commands.
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -1445,22 +1445,21 @@ p.frameworktableinfo-text {\nfont-weight: 600;\ntext-decoration: underline;\n}\n-.page-package-details .install-tabs .tab-co...
C#
Apache License 2.0
nuget/nugetgallery
[Ally Bug] Remove table layout from installation commands. (#9058)
455,736
19.03.2022 21:13:31
25,200
e90a2a2dfd3aa87ab9de88ace864c169dce461cf
Remove unused constants (found when investigating legacy README container)
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/GalleryConstants.cs", "new_path": "src/NuGetGallery/GalleryConstants.cs", "diff": "@@ -10,7 +10,6 @@ public static class GalleryConstants\n{\npublic const string AlphabeticSortOrder = \"package-title\";\npublic const int DefaultPackageListPage...
C#
Apache License 2.0
nuget/nugetgallery
Remove unused constants (found when investigating legacy README container) (#9062)
455,778
22.03.2022 16:16:43
25,200
db379b0d1bd19a00209667265ff66244da73b1b3
[A11y] Added aria lables to tabs on Package Details page
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "new_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "diff": "<div class=\"tab-content body-tab-content\">\n@if (!Model.Deleted)\n{\n- <div role=\"tabpanel\" class=\"tab-pane @(activeBodyT...
C#
Apache License 2.0
nuget/nugetgallery
[A11y] Added aria lables to tabs on Package Details page (#9067)
455,778
24.03.2022 15:47:03
25,200
e59a924a692cad3668b5e66ea3d0af99aaa24995
[A11y] Added column header roles, made each cell accessible with keyboard navigation
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "new_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "diff": "<table class=\"table borderless\" aria-label=\"Packages that depend on @Model.Id\">\n<thead>\n<tr>\n- <th class=\"used-by-adju...
C#
Apache License 2.0
nuget/nugetgallery
[A11y] Added column header roles, made each cell accessible with keyboard navigation (#9073)
455,744
30.03.2022 18:15:21
25,200
a0666d8a2136bbeaad24326f21a90f69968e499d
Not using metric identifier to get metric object.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Services/Telemetry/TelemetryClientWrapper.cs", "new_path": "src/NuGetGallery.Services/Telemetry/TelemetryClientWrapper.cs", "diff": "@@ -63,14 +63,7 @@ public void TrackAggregatedMetric(string metricName, double value, string dimens\n{\ntry\n{...
C#
Apache License 2.0
nuget/nugetgallery
Not using metric identifier to get metric object. (#9082)
455,741
01.04.2022 11:39:27
25,200
1cdf0b3c01a5c7b6fedbb41606da75b6ddcc6c3d
blockqupte fontsize
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -682,6 +682,9 @@ img.reserved-indicator-icon {\n.readme-common li.task-list-item {\nlist-style-type: none;\n}\n+.readme-common blockquote {\n+ fo...
C#
Apache License 2.0
nuget/nugetgallery
blockqupte fontsize (#9083)
455,744
08.04.2022 15:56:45
25,200
cef94bf0b88f1628e3108131761f9ff554401fa7
SQL connection creation duration tracking * Methods for tracking Sql connection creation duration. * Reporting new metric * Reporting milliseconds for create sql connection duration. * Better check for all event names. Testing both sync and async SQL creation duration metric
[ { "change_type": "MODIFY", "old_path": "src/GitHubVulnerabilities2Db/Gallery/ThrowingTelemetryService.cs", "new_path": "src/GitHubVulnerabilities2Db/Gallery/ThrowingTelemetryService.cs", "diff": "@@ -390,5 +390,15 @@ public void TrackVulnerabilitiesCacheRefreshDuration(TimeSpan duration)\n{\nthrow n...
C#
Apache License 2.0
nuget/nugetgallery
SQL connection creation duration tracking (#9086) * Methods for tracking Sql connection creation duration. * Reporting new metric * Reporting milliseconds for create sql connection duration. * Better check for all event names. Testing both sync and async SQL creation duration metric
455,744
11.04.2022 17:28:33
25,200
8570b5ab22ebae6250fcaf59e80f46db088d5e5d
Attempting to 'fix' admin panel link in support request items.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Scripts/gallery/page-support-requests.js", "new_path": "src/NuGetGallery/Scripts/gallery/page-support-requests.js", "diff": "@@ -210,13 +210,13 @@ var SupportRequestsViewModel = (function () {\nthis.generateUserProfileUrl = function (supportRe...
C#
Apache License 2.0
nuget/nugetgallery
Attempting to 'fix' admin panel link in support request items. (#9089)
455,747
18.04.2022 16:16:19
25,200
b7ac17216bfe02ac7bbd0f44c950dce21f87c0fe
Hide package metadata for certain packages Verified in DEV.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Controllers/PackagesController.cs", "new_path": "src/NuGetGallery/Controllers/PackagesController.cs", "diff": "@@ -1365,6 +1365,9 @@ public virtual ActionResult ReportAbuse(string id, string version)\nPackageId = id,\nPackageVersion = package....
C#
Apache License 2.0
nuget/nugetgallery
Hide package metadata for certain packages (#9096) Verified in DEV.
455,781
19.04.2022 11:44:22
25,200
70c8a2f9c5268131c68c6d2850bbfaa94c1214b5
[A11y Bug] Make TFM badges asset and compatible different for high contrast.
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -806,6 +806,16 @@ p.frameworktableinfo-text {\nline-height: 16px;\nmargin-top: 10px;\n}\n+@media (-ms-high-contrast: active), (forced-colors: act...
C#
Apache License 2.0
nuget/nugetgallery
[A11y Bug] Make TFM badges asset and compatible different for high contrast. (#9098)
455,747
20.04.2022 10:19:40
25,200
dd09f83971d063796cbf663d01c5d98196d3bb53
Increase blocking duration to 90 days
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/ViewModels/DisplayPackageViewModel.cs", "new_path": "src/NuGetGallery/ViewModels/DisplayPackageViewModel.cs", "diff": "@@ -47,7 +47,7 @@ public class DisplayPackageViewModel : ListPackageItemViewModel\npublic bool HasEmbeddedReadmeFile { get; ...
C#
Apache License 2.0
nuget/nugetgallery
Increase blocking duration to 90 days (#9099)
455,747
22.04.2022 10:59:55
25,200
2ae64d137e54cff5b3a0486ee56c6ddcf2f88524
Fix org profile to show correct MFA status for site admins
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/ViewModels/UserProfileModel.cs", "new_path": "src/NuGetGallery/ViewModels/UserProfileModel.cs", "diff": "@@ -16,7 +16,6 @@ public UserProfileModel(User user, User currentUser, List<ListPackageItemViewMod\nUsername = user.Username;\nEmailAddres...
C#
Apache License 2.0
nuget/nugetgallery
Fix org profile to show correct MFA status for site admins (#9106)
455,781
27.04.2022 13:48:18
25,200
9baae9c89f33b0e3ad14edbb638d048e7bd895e0
[A11y Bug] Remove focus from non-interactive elements on TFM badge and table.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "new_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "diff": "src=\"@(PackageHelper.ShouldRenderUrl(Model.IconUrl) && Model.ShowDetailsAndLinks ? Model.IconUrl : Url.Absolute(\"~/Content/g...
C#
Apache License 2.0
nuget/nugetgallery
[A11y Bug] Remove focus from non-interactive elements on TFM badge and table. (#9108)
455,747
27.04.2022 16:09:15
25,200
2bd5b23e8f370130f5ebfafe66a889fb109aa111
Update server common libs to 2.100.0
[ { "change_type": "MODIFY", "old_path": "src/DatabaseMigrationTools/DatabaseMigrationTools.csproj", "new_path": "src/DatabaseMigrationTools/DatabaseMigrationTools.csproj", "diff": "<PrivateAssets>all</PrivateAssets>\n</PackageReference>\n<PackageReference Include=\"NuGet.Services.Validation\">\n- <Ve...
C#
Apache License 2.0
nuget/nugetgallery
Update server common libs to 2.100.0 (#9110)
455,754
17.05.2022 14:48:54
-36,000
e52cf37acac5d9e0bc5a351f596e0df91f7ba4c2
Convert NuGetGallery.Services to SDK-style project
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Services/Configuration/ConfigurationService.cs", "new_path": "src/NuGetGallery.Services/Configuration/ConfigurationService.cs", "diff": "using System.Threading.Tasks;\nusing System.Web;\nusing System.Web.Configuration;\n-using Microsoft.Window...
C#
Apache License 2.0
nuget/nugetgallery
Convert NuGetGallery.Services to SDK-style project
455,754
18.05.2022 12:55:54
-36,000
d0757d33cf9dd386c13347f9d44f352cea65c66b
Remove unused field from ConfigurationService
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Services/Configuration/ConfigurationService.cs", "new_path": "src/NuGetGallery.Services/Configuration/ConfigurationService.cs", "diff": "@@ -24,7 +24,6 @@ public class ConfigurationService : IGalleryConfigurationService, IConfiguration\nprotec...
C#
Apache License 2.0
nuget/nugetgallery
Remove unused field from ConfigurationService
455,736
02.06.2022 18:40:18
25,200
747039872c3211130704cafb9c6a101573bc82d8
Mark backup folders as private They are already set as private in Blob Storage. There is no known scenario that needs public (unauthenticated) access to these blobs.
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Core/Services/GalleryCloudBlobContainerInformationProvider.cs", "new_path": "src/NuGetGallery.Core/Services/GalleryCloudBlobContainerInformationProvider.cs", "diff": "@@ -11,10 +11,8 @@ public class GalleryCloudBlobContainerInformationProvider...
C#
Apache License 2.0
nuget/nugetgallery
Mark backup folders as private (#9129) They are already set as private in Blob Storage. There is no known scenario that needs public (unauthenticated) access to these blobs.
455,736
03.06.2022 14:15:01
25,200
e6dd16fd3462ba742543560cec45b0d332ae56d8
Update grunt to 1.5.3 to remediate Dependabot warning
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/package-lock.json", "new_path": "src/Bootstrap/package-lock.json", "diff": "\"optional\": true\n},\n\"node_modules/grunt\": {\n- \"version\": \"1.4.1\",\n- \"resolved\": \"https://registry.npmjs.org/grunt/-/grunt-1.4.1.tgz\",\n- \"integrity\": \"...
C#
Apache License 2.0
nuget/nugetgallery
Update grunt to 1.5.3 to remediate Dependabot warning (#9130)
455,756
08.06.2022 18:15:49
25,200
6624919f3f98fd22e44bc19f8a906653261d5235
Remove the trailing slash when formatting the tab fragment * Remove the trailing slash when it appears * Revert "Remove the trailing slash when it appears" This reverts commit * Trim the end slash
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Shared/_ListPackage.cshtml", "new_path": "src/NuGetGallery/Views/Shared/_ListPackage.cshtml", "diff": "<div class=\"col-sm-11\">\n<div class=\"package-header\">\n<a class=\"package-title\"\n- href=\"@Url.Package(Model.Id, Model.UseVersio...
C#
Apache License 2.0
nuget/nugetgallery
Remove the trailing slash when formatting the tab fragment (#9138) * Remove the trailing slash when it appears * Revert "Remove the trailing slash when it appears" This reverts commit 855ea8fa0c4617b5c97c6f6e1e42600a4ea9c483. * Trim the end slash
455,736
10.06.2022 14:42:53
25,200
0cf362ab2287a0b2913e580b1d6a560898cb5610
Remove in-memory caching from endpoints that are cached by APIM Resolve
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Services/ServicesConstants.cs", "new_path": "src/NuGetGallery.Services/ServicesConstants.cs", "diff": "@@ -59,7 +59,6 @@ public static class ContentNames\npublic static readonly string TyposquattingConfiguration = \"Typosquatting-Configuration...
C#
Apache License 2.0
nuget/nugetgallery
Remove in-memory caching from endpoints that are cached by APIM (#9139) Resolve https://github.com/NuGet/Engineering/issues/4370
455,739
27.06.2022 13:01:10
25,200
5fd09327f9b69c2d3777001551755cf7be65e2de
Fix A11y bugs * no aria-required for labels * Contrast and tabbing bugs * Nit * Revert "Nit" This reverts commit * reNit
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/less/theme/common-readme.less", "new_path": "src/Bootstrap/less/theme/common-readme.less", "diff": "tr:nth-child(even) {\nbackground-color: @readme-table-bg-color;\n+ a {\n+ color: @readme-table-link-color\n+ }\n}\n// We added boostrap extension ...
C#
Apache License 2.0
nuget/nugetgallery
Fix A11y bugs (#9148) * no aria-required for labels * Contrast and tabbing bugs * Nit * Revert "Nit" This reverts commit d7e381a9fd7c6a652e1860ccf90417625e47548d. * reNit Co-authored-by: Advay Tandon <82980589+advay26@users.noreply.github.com>
455,754
12.07.2022 07:33:00
-36,000
9194611b3e0e5655dba66aa1cf50701e0a19f9da
Add netstandard2.1 target to NuGetGallery.Services Add netstandard2.1 target to NuGetGallery.Services
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Services/NuGetGallery.Services.csproj", "new_path": "src/NuGetGallery.Services/NuGetGallery.Services.csproj", "diff": "<Import Project=\"..\\..\\SdkProjects.props\" />\n<PropertyGroup>\n- <TargetFramework>net472</TargetFramework>\n+ <TargetFra...
C#
Apache License 2.0
nuget/nugetgallery
Add netstandard2.1 target to NuGetGallery.Services (#9158) Add netstandard2.1 target to NuGetGallery.Services
455,736
14.07.2022 16:30:47
25,200
487be28b42cbaca5f120cb59009e98b26045d05e
Update SECURITY.md Fix wording around how Microsoft's security policy applies to this .NET Foundation code repository.
[ { "change_type": "MODIFY", "old_path": "SECURITY.md", "new_path": "SECURITY.md", "diff": "Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/M...
C#
Apache License 2.0
nuget/nugetgallery
Update SECURITY.md (#9164) Fix wording around how Microsoft's security policy applies to this .NET Foundation code repository.
455,754
19.07.2022 12:17:23
-36,000
88727038d1977789d044672702f5969a3726445d
Add Models classes to netstandard2.1
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery.Services/NuGetGallery.Services.csproj", "new_path": "src/NuGetGallery.Services/NuGetGallery.Services.csproj", "diff": "<Compile Remove=\"Extensions\\*.cs\" />\n<Compile Remove=\"Helpers\\*.cs\" />\n<Compile Remove=\"Mail\\**\\*.cs\" />\n- <Com...
C#
Apache License 2.0
nuget/nugetgallery
Add Models classes to netstandard2.1 (#9163)
455,744
19.07.2022 19:47:50
25,200
2edeac8ab27019d4bc28bf69c8019b5276442f11
Ran grunt after recent change to LESS files, to update actual used CSS
[ { "change_type": "MODIFY", "old_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "new_path": "src/Bootstrap/dist/css/bootstrap-theme.css", "diff": "@@ -675,6 +675,9 @@ img.reserved-indicator-icon {\n.readme-common tr:nth-child(even) {\nbackground-color: #f2f2f2;\n}\n+.readme-common tr:nth-child(...
C#
Apache License 2.0
nuget/nugetgallery
Ran grunt after recent change to LESS files, to update actual used CSS (#9169)
455,741
20.07.2022 13:46:22
25,200
441dbc7ab4068cf792b48ff84a3934ea5588e93b
Add newtonsoft.json package reference
[ { "change_type": "MODIFY", "old_path": "tests/NuGetGallery.LoadTests/NuGetGallery.LoadTests.csproj", "new_path": "tests/NuGetGallery.LoadTests/NuGetGallery.LoadTests.csproj", "diff": "<SccLocalPath>SAK</SccLocalPath>\n<SccAuxPath>SAK</SccAuxPath>\n<SccProvider>SAK</SccProvider>\n+ <AutoGenerateBindi...
C#
Apache License 2.0
nuget/nugetgallery
Add newtonsoft.json package reference (#9176)
455,741
16.08.2022 12:21:10
25,200
945b6583d4cb871def07647c880d1ab7f0d0376e
bundle script
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/App_Start/AppActivator.cs", "new_path": "src/NuGetGallery/App_Start/AppActivator.cs", "diff": "@@ -215,6 +215,10 @@ private static void BundlingPostStart()\n.Include(\"~/Scripts/gallery/md5.js\");\nBundleTable.Bundles.Add(addOrganizationScript...
C#
Apache License 2.0
nuget/nugetgallery
bundle script (#9191)
455,754
17.08.2022 14:43:17
-36,000
ee1bd6b6650c6c121d22c4c16a511badbe18bdff
Manage disposal of httpclient directly - autofac disposing early
[ { "change_type": "MODIFY", "old_path": "src/GitHubVulnerabilities2Db/Job.cs", "new_path": "src/GitHubVulnerabilities2Db/Job.cs", "diff": "@@ -134,7 +134,8 @@ protected void ConfigureQueryServices(ContainerBuilder containerBuilder)\n{\ncontainerBuilder\n.RegisterInstance(_client)\n- .As<HttpClient>()...
C#
Apache License 2.0
nuget/nugetgallery
Manage disposal of httpclient directly - autofac disposing early (#9195)
455,747
19.08.2022 11:51:36
25,200
ed43f939f860b12352489af2869f3f7df0c4e523
[Hotfix] Set download count to Int32.MaxValue for V2 feed packages exceeding this threshold
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/OData/PackageExtensions.cs", "new_path": "src/NuGetGallery/OData/PackageExtensions.cs", "diff": "@@ -88,7 +88,10 @@ public static IQueryable<V1FeedPackage> ToV1FeedPackageQuery(this IQueryable<Pac\nCreated = p.Created,\nDependencies = p.Flatte...
C#
Apache License 2.0
nuget/nugetgallery
[Hotfix] Set download count to Int32.MaxValue for V2 feed packages exceeding this threshold (#9199)
455,734
26.08.2022 16:03:49
-7,200
64b7e10bcf5be619769c6ffd8c900655db567f85
Fully Qualify Install-Package command on website * Update to fully qualified command name and give info Fix
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "new_path": "src/NuGetGallery/Views/Packages/DisplayPackage.cshtml", "diff": "{\nId = \"package-manager\",\nCommandPrefix = \"PM> \",\n- InstallPackageCommands = new [] { string.Format(\"Install-Package {...
C#
Apache License 2.0
nuget/nugetgallery
Fully Qualify Install-Package command on website (#9203) * Update to fully qualified command name and give info Co-authored-by: Joel Verhagen <jver@microsoft.com> Fix https://github.com/NuGet/NuGetGallery/issues/9201
455,736
26.08.2022 15:05:40
14,400
b7421a3c4478d968c36c87e3e2f28f19b9cfad68
Add additional warning about blocked usernames Fix
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Views/Organizations/DeleteAccount.cshtml", "new_path": "src/NuGetGallery/Views/Organizations/DeleteAccount.cshtml", "diff": "@<text>Delete</text>)\n@ViewHelpers.AlertWarning(@<text><strong class=\"keywords\">Important</strong>\n- Once your org...
C#
Apache License 2.0
nuget/nugetgallery
Add additional warning about blocked usernames (#9206) Fix https://github.com/NuGet/NuGetGallery/issues/7447
455,736
26.08.2022 16:07:10
14,400
9473f506aac6aefc34db68fa5531a541823e5b9f
Update to the latest version of moment.js to resolve CG
[ { "change_type": "MODIFY", "old_path": ".eslintignore", "new_path": ".eslintignore", "diff": "# on specific relative paths.\n**/Scripts/gallery/jquery-3.4.1.js\n**/Scripts/gallery/knockout-3.5.1.js\n-**/Scripts/gallery/moment-2.29.2.js\n+**/Scripts/gallery/moment-2.29.4.js\n" }, { "change_ty...
C#
Apache License 2.0
nuget/nugetgallery
Update to the latest version of moment.js to resolve CG (#9212)
455,736
26.08.2022 17:15:06
14,400
41027e07cb1686ea146338e9454d35a616bd1e55
Show information about parent namespaces on the ID prefix reservation admin panel Progress on
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Areas/Admin/Controllers/ReservedNamespaceController.cs", "new_path": "src/NuGetGallery/Areas/Admin/Controllers/ReservedNamespaceController.cs", "diff": "@@ -39,12 +39,28 @@ public JsonResult SearchPrefix(string query)\nvar prefixQueries = GetP...
C#
Apache License 2.0
nuget/nugetgallery
Show information about parent namespaces on the ID prefix reservation admin panel (#9208) Progress on https://github.com/NuGet/Engineering/issues/4523
455,736
29.08.2022 15:38:37
14,400
3bd9c220182f768f657ed07512a51fa6ea36873b
Update ServerCommon 2.105.0 This resolves a Dependabot alert about Microsoft.Owin 4.1.0 Prune unnecessary dependencies in NuGetGallery csproj files Delete unused sidecar files for NuGetGallery.csproj
[ { "change_type": "MODIFY", "old_path": "src/DatabaseMigrationTools/DatabaseMigrationTools.csproj", "new_path": "src/DatabaseMigrationTools/DatabaseMigrationTools.csproj", "diff": "<PrivateAssets>all</PrivateAssets>\n</PackageReference>\n<PackageReference Include=\"NuGet.Services.Validation\">\n- <Ve...
C#
Apache License 2.0
nuget/nugetgallery
Update ServerCommon 2.105.0 (#9214) This resolves a Dependabot alert about Microsoft.Owin 4.1.0 Prune unnecessary dependencies in NuGetGallery csproj files Delete unused sidecar files for NuGetGallery.csproj
455,736
09.09.2022 14:28:11
25,200
f635f4ba2a0d8eeb3552048e06196ce858464055
Use Application Insights JS SDK instead of Google Analytics Also, delete an ancient clickonce line that is unused Progress on
[ { "change_type": "MODIFY", "old_path": "src/NuGetGallery/Scripts/gallery/common.js", "new_path": "src/NuGetGallery/Scripts/gallery/common.js", "diff": ".filter(':visible:first')\n.trigger('focus');\n- // Handle Google analytics tracking event on specific links.\n- var emitClickEvent = function (e, e...
C#
Apache License 2.0
nuget/nugetgallery
Use Application Insights JS SDK instead of Google Analytics (#9228) Also, delete an ancient clickonce line that is unused Progress on https://github.com/NuGet/Engineering/issues/4555