Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ReleasePrep][2018.11.05]RI Dev into master #6625

Merged
merged 22 commits into from
Nov 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
0e244f8
Add setting 'Gallery.FileStorageDirectory' (#6569)
stevenaw Oct 17, 2018
cdbfae0
Symbols UI Fixes (#6576)
shishirx34 Oct 18, 2018
fa40f54
GetEtagAsync (#6577)
cristinamanum Oct 18, 2018
88588f8
[MSA] Pass the error messages from AADv2 to gallery (#6581)
shishirx34 Oct 19, 2018
9411c69
Emails should not be sent synchronously (#6555)
xavierdecoster Oct 22, 2018
8cf7c8d
Consume NuGet.Services.Entities and NuGet.Services.Messaging.Email (#…
xavierdecoster Oct 24, 2018
d770e5d
Fix TSA issues (#6590)
skofman1 Oct 24, 2018
75d53d3
Aligning all ServerCommon dependencies to the same version to fix ass…
xavierdecoster Oct 24, 2018
166be05
Fix versioning issue (#6595)
shishirx34 Oct 25, 2018
b0a1c72
Upgrade to stable v2.30 ServerCommon dependencies (#6596)
xavierdecoster Oct 25, 2018
a4dd371
Integrate FxCop exclusions (#6603)
chenriksson Oct 26, 2018
64f5a36
Redirect HTTP 400 to a specific error page instead of default for 500…
joelverhagen Oct 29, 2018
dc86fe8
Add custom query telemetry and response header to OData endpoint (#6583)
joelverhagen Oct 24, 2018
6ebb7a2
Fix concurrency/consistency issues in Gallery API push (#6600)
shishirx34 Oct 30, 2018
c6e3c47
Do not CC sender for Contact Owners emails
Oct 30, 2018
e93c1b1
Merge branch 'master' of https://github.com/NuGet/NuGetGallery into s…
Oct 30, 2018
7e155f7
Validation message enhancements (#6608)
agr Oct 31, 2018
0146ed3
Merge pull request #6612 from NuGet/sb-ccownersdev
Oct 31, 2018
a053203
Typosquatting optimization: add caching (#6597)
zhhyu Nov 1, 2018
2cf936f
[Symbol server]Address UI fixes and fix re-upload on failed validatio…
shishirx34 Nov 6, 2018
56126b1
Fix default value bug and add tests (#6630)
zhhyu Nov 6, 2018
663cd34
Http to https translation for GitHub pages urls (#6626)
skofman1 Nov 6, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ param (
[string]$PackageSuffix,
[string]$Branch,
[string]$CommitSHA,
[string]$BuildBranch = '795fed66b8bae2d248237ee5ec82e688e7174a42'
[string]$BuildBranch = '5fd8377a9abf3ff411918dbb973948a6677432db'
)

Set-StrictMode -Version 1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
using Microsoft.Extensions.CommandLineUtils;
using NuGet.Packaging;
using NuGet.Packaging.Core;
using NuGet.Services.Entities;
using NuGet.Services.Search.Client;
using NuGetGallery;
using NuGetGallery.Configuration;
Expand Down Expand Up @@ -447,7 +448,7 @@ public RepositoryMetadataLogMap()

private class FileCursor : IDisposable
{
private FileStream _fileStream;
private readonly FileStream _fileStream;
private StreamWriter _cursorWriter;

public FileCursor(string fileName)
Expand All @@ -473,7 +474,7 @@ public void Dispose()

public DateTime GetCursorTime()
{
using (var reader = new StreamReader(_fileStream, Encoding.ASCII, detectEncodingFromByteOrderMarks: false, bufferSize:100, leaveOpen: true))
using (var reader = new StreamReader(_fileStream, Encoding.ASCII, detectEncodingFromByteOrderMarks: false, bufferSize: 100, leaveOpen: true))
{
reader.BaseStream.Seek(0, SeekOrigin.Begin);

Expand Down
1 change: 1 addition & 0 deletions src/GalleryTools/Commands/HashCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
using System.Threading.Tasks;
using Autofac;
using Microsoft.Extensions.CommandLineUtils;
using NuGet.Services.Entities;
using NuGetGallery;
using NuGetGallery.Configuration;
using NuGetGallery.Infrastructure.Authentication;
Expand Down
1 change: 1 addition & 0 deletions src/GalleryTools/Commands/VerifyApiKeyCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Text;
using System.Threading.Tasks;
using Microsoft.Extensions.CommandLineUtils;
using NuGet.Services.Entities;
using NuGetGallery;
using NuGetGallery.Infrastructure.Authentication;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using NuGet.Services.Entities;
using NuGetGallery.Auditing.Obfuscation;

namespace NuGetGallery.Auditing.AuditedEntities
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using NuGet.Services.Entities;

namespace NuGetGallery.Auditing.AuditedEntities
{
public class AuditedPackageRegistration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using NuGet.Services.Entities;

namespace NuGetGallery.Auditing.AuditedEntities
{
public class AuditedReservedNamespace
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using NuGet.Services.Entities;

namespace NuGetGallery.Auditing.AuditedEntities
{
/// <summary>
Expand Down
1 change: 1 addition & 0 deletions src/NuGetGallery.Core/Auditing/CredentialAuditRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

using System;
using System.Collections.Generic;
using NuGet.Services.Entities;

namespace NuGetGallery.Auditing
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using NuGet.Services.Entities;
using NuGetGallery.Auditing.AuditedEntities;

namespace NuGetGallery.Auditing
Expand Down
1 change: 1 addition & 0 deletions src/NuGetGallery.Core/Auditing/PackageAuditRecord.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using NuGet.Services.Entities;
using NuGetGallery.Auditing.AuditedEntities;

namespace NuGetGallery.Auditing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using NuGet.Services.Entities;
using NuGetGallery.Auditing.AuditedEntities;

namespace NuGetGallery.Auditing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Linq;
using System.Collections.Generic;
using NuGetGallery.Auditing.AuditedEntities;
using NuGet.Services.Entities;

namespace NuGetGallery.Auditing
{
Expand Down
1 change: 1 addition & 0 deletions src/NuGetGallery.Core/Auditing/UserAuditRecord.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using NuGet.Services.Entities;
using NuGetGallery.Auditing.AuditedEntities;

namespace NuGetGallery.Auditing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using NuGet.Services.Entities;
using NuGetGallery.Auditing.AuditedEntities;

namespace NuGetGallery.Auditing
Expand Down
2 changes: 0 additions & 2 deletions src/NuGetGallery.Core/CoreConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ public static class CoreConstants
{
public const string AdminRoleName = "Admins";

public const int MaxPackageIdLength = 128;

public const string PackageFileSavePathTemplate = "{0}.{1}{2}";
public const string PackageFileBackupSavePathTemplate = "{0}/{1}/{2}.{3}";

Expand Down
1 change: 1 addition & 0 deletions src/NuGetGallery.Core/CredentialTypes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using NuGet.Services.Entities;

namespace NuGetGallery
{
Expand Down
45 changes: 0 additions & 45 deletions src/NuGetGallery.Core/Entities/AccountDelete.cs

This file was deleted.

65 changes: 0 additions & 65 deletions src/NuGetGallery.Core/Entities/Certificate.cs

This file was deleted.

114 changes: 0 additions & 114 deletions src/NuGetGallery.Core/Entities/Credential.cs

This file was deleted.

Loading