Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2020-06-16Update Microsoft.AspNetCore.Shared.Tests.csprojJustin Kotalik
2020-06-16Annotate Microsoft.AspNetCore.Http with nullable attributes (#22928)Pranav K
* Annotate Microsoft.AspNetCore.Http with nullable attributes * Annotate Hosting with nullable
2020-06-16Annotate webencoders with nullable (#22927)Pranav K
2020-06-16Consume host resolver source package from dotnet/runtime (#22962)John Luo
2020-06-16Add HTTP/2 keep alive pings (#22565)James Newton-King
2020-06-16Change default for queryStringDelete (#21586)brianchance
2020-06-16Update Async To MigrationsEndPointMiddleware (#22573)Huei Feng
2020-06-16Merge pull request #22903 from ↵Todd Grunke
dotnet/dev/toddgrun/NoMoreLineTrackingStringBuffer Get rid of LineTrackingStringBuffer class and instead use the line in…
2020-06-16Delete Microsoft.AspNetCore.Components.WebAssembly.Templates.csprojPranav K
2020-06-15Fixing up build issuesJustin Kotalik
2020-06-15Fix xmldoc typo (#22938)Pavel Voronin
Just removed 'for' in > Adds middleware _for_ needed for debugging Blazor WebAssembly applications
2020-06-15use var where appropriateTodd Grunke
2020-06-15Merge branch 'release/3.1'Justin Kotalik
2020-06-15Unquarantine tests (#22851)Sébastien Ros
2020-06-15Add an option to configure the NewtonsoftJson buffer size (#22735)Pranav K
* Add an option to configure the NewtonsoftJson buffer size Contributes to https://github.com/dotnet/aspnetcore/issues/21245 * Update src/Mvc/Mvc.NewtonsoftJson/src/MvcNewtonsoftJsonOptions.cs Co-authored-by: Stephen Halter <halter73@gmail.com> Co-authored-by: Stephen Halter <halter73@gmail.com>
2020-06-15Use redirect helper (#22847)Hao Kung
2020-06-15Add detail to InvalidOperationException in Exception Handler Middleware (#22858)Scott Addie
2020-06-15Consolidate RazorSdkDirectory logic (#22836)John Luo
* Consolidate RazorSdkDirectory logic
2020-06-14Add nullable to DataProtection (#22591)Pranav K
* Add nullable to DataProtection Contributes to https://github.com/dotnet/aspnetcore/issues/5680
2020-06-14Quarantine tests (#22919)John Luo
2020-06-13Fix a bug in DefaultRazorSourceLineCollection.GetLineStartsTodd Grunke
2020-06-13Get rid of LineTrackingStringBuffer class and instead use the line ↵Todd Grunke
information provided by RazorSourceDocument. This additionally gets rid of an extra whole buffer allocation in the ParserContext. The most complex bit of the change is around avoiding TextLineCollection.GetLocation. Overall, I'm seeing a pretty big win here, about 35% less time spent in RazorSyntaxTree.Parse for the typing scenario I was doing in a very large file.
2020-06-13Make WebAssembly templates use the same version as the rest of the WASM ↵Pranav K
product (#22896) We've already shipped a 3.2.0 version of the package. The build's currently producing 3.1.6 version of the package. This changes the package version to 3.2.1
2020-06-13Improve gRPC interop test failure logging (#22856)James Newton-King
2020-06-12Merge pull request #22877 from dotnet/dev/toddgrun/MorePerfOptimizationsTodd Grunke
Dev/toddgrun/more perf optimizations
2020-06-12Merge pull request #22887 from ↵Todd Grunke
dotnet/dev/toddgrun/TrySplitNamespaceAndTypeAllocatesTooMuch Small memory allocation optimization in DefaultRazorTagHelperBinderPh…
2020-06-12Merge pull request #22840 from dotnet-maestro-bot/merge/release/3.1-to-masterWilliam Godbe
[automated] Merge branch 'release/3.1' => 'master'
2020-06-12Small memory allocation optimization in ↵Todd Grunke
DefaultRazorTagHelperBinderPhase.TrySplitNamespaceAndType This method allocated multiple strings on every invocation when they were rarely needed. With this change, I see a reduction in memory allocated during RazorProjectEngine.ProcessDesignTime of 1.4%.
2020-06-12[3.1] Add latin1 support to IIS (#22798)Justin Kotalik
Co-authored-by: Chris Ross <Tratcher@Outlook.com>
2020-06-12Add nullable annotations to Healthchecks (#22785)Pranav K
* Add nullable annotations to Healthchecks * Update HealthCheckContext.cs
2020-06-12Quarantine static web assets tests so we can capture more data for ↵Javier Calvarro Nelson
diagnostics (#22876)
2020-06-12Unquarantine tests since they haven't failed in 30 days (#22878)Javier Calvarro Nelson
2020-06-12Quarantining InputDateInteractsWithEditContext_NonNullableDateTime (#22857)Sébastien Ros
https://github.com/dotnet/aspnetcore-internal/issues/3616
2020-06-12Fixup nullable (#22861)Pranav K
2020-06-12Revert change to EndLocation as it was incorrectly changed.Todd Grunke
2020-06-12Also set no-store when we set no-cache in response cache control headers ↵John Luo
(#22842)
2020-06-12Add nullability to antiforgery (#22279)Pranav K
* Add nullability to antiforgery Addresses #5680 * Rebase
2020-06-12A couple more perf optimizations focused around memory allocations.Todd Grunke
This is the last of the easy wins that I could find for typing in large razor files (minus the logged bug to move the divergence checker code off the UI thread). In the profile for the large document editing, these changes reduce allocated memory during RazorSyntaxTree.Parse by about 25%. CPU wise, the win isn't quite as dramatic, only a couple percent improvement under RazorSyntaxTree.Parse.
2020-06-12Update jsPranav K
2020-06-12Merge remote-tracking branch 'origin/release/3.1'Pranav K
2020-06-12Razor SDK build ordering issues (#22684)Pranav K
* Razor SDK build ordering issues * Build the SDK completely regardless of the MSBuild runtime type * Split SDK integration tests into a separate project. Clean up project file * Add project to sln * Update Microsoft.NET.Sdk.Razor.csproj * Fixup tests * Avoid rebuilding dependencies if they appear up to date. Fixup tests * Fixup * Update CSharp.Common.props * Cleanup the build
2020-06-11Fix nullable build warning (#22838)Pranav K
2020-06-11Ensure FileBufferingReadStream created by formatters are always disposed ↵Pranav K
(#22746)
2020-06-11[Blazor] Switches Error.razor to Error.cshtml (#22777)Javier Calvarro Nelson
* [Blazor] Switch to use a cshtml file for errors * Update template tests
2020-06-11[Blazor] Fix manifest integrity computation (#22771)Javier Calvarro Nelson
* [Blazor] Fix manifest integrity computation * Add a couple of tests to validate incrementalism
2020-06-11[Blazor] Register HttpClient as a scoped instance (#22770)Javier Calvarro Nelson
This avoid the container holding on to transient HttpClient instances for the lifetime of the application.
2020-06-11Workaround for DomException when invoking cache.put (#22756)Pranav K
* Workaround for DomException when invoking cache.put Invoking cache.put could sometimes result in exceptions being thrown. While this seems to have been fixed in Chromium - https://bugs.chromium.org/p/chromium/issues/detail?id=968444, we've had several reports of this in our repo. The fix here is to write defensively when working with the cache apis since they appear to behave in unexpected ways.. Fixes https://github.com/dotnet/aspnetcore/issues/20256 * Fixup
2020-06-11Merge pull request #22833 from dotnet-maestro-bot/merge/release/3.1-to-mastermsftbot[bot]
[automated] Merge branch 'release/3.1' => 'master'
2020-06-11Add mechanism where IR token generation can defer allocation of it's … ↵Todd Grunke
(#22792) * Add mechanism where IR token generation can defer allocation of it's content. It turns out that many IR tokens access their content, and thus allocating it is unnecessary. In particular, with this change against a large file, I've seen allocations under SyntaxNodeExtensions.GetContent reduced by about 33%. Performance wise, I've seen the number of CPU samples in the profile under GetContent reduce by about 40% (in my sample I typed 26 characters and there was about 600 ms less spent in GetContent) * ContentGetter => ContentFactory * Make tests happy with the switch from IntermediateToken to IntermediateTokenWithDeferreedContentAllocation * IntermediateTokenWithDeferredContentAllocation => LazyIntermediateToken
2020-06-11Fixes NullRef exception in IIS in-proc (#22806)Brennan