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
AgeCommit message (Collapse)Author
2022-04-27!fixup! Remove Windows.10.Arm64v8.Open queuedougbu/dont.ignore.failed.sourcesDoug Bunting
- `dotnet-trace` is not supported on Windows ARM64
2022-04-26!fixup! Avoid restore errors when installing toolDoug Bunting
- `dotnet-trace` installation hit same `dotnet restore` issue in last iteration
2022-04-26!fixup! Install `dotnet-trace` in work item rootDoug Bunting
- global dotnet tool location is not in `$env:PATH` by default
2022-04-23Use `dotnet trace` to get more dataDoug Bunting
2022-04-22Remove `--ignore-failed-sources`Doug Bunting
2022-04-22Fix Blazor Wasm benchmarks (#41312)Sébastien Ros
* Pinning selenium/standalone-chrome version * Update dockerfile * Update dockerfile
2022-04-22Revert "Quarantine ConfigurationChangeStopsInProcess (#40629)" (#41304)Tanay Parikh
This reverts commit ae296947eb6cf82bb2baeec5e4ec97eb51b781bb.
2022-04-22Zero byte reads support for FileBufferingReadStream #41287 (#41309)Chris Ross
2022-04-21Normalize data protection app discriminator (#41095)Hao Kung
2022-04-21Update dependencies from https://github.com/dotnet/efcore build 20220421.1 ↵dotnet-maestro[bot]
(#41306) [main] Update dependencies from dotnet/efcore
2022-04-21Make PassThroughHandler respect InvokeHandlers flag (#41289)Hao Kung
2022-04-21Update dependencies from https://github.com/dotnet/runtime build 20220420.8 ↵dotnet-maestro[bot]
(#41299) [main] Update dependencies from dotnet/runtime
2022-04-21Check in launchesttings.json from AzureAd.Website (#41267)William Godbe
2022-04-20Improve abort handling (#41263)Hao Kung
2022-04-20Allow Multiple Wildcard Prefix Server Names of the Same Length in SNI ↵Chad Applegate
Configuration (#41240)
2022-04-20[main] Update dependencies from dotnet/efcore dotnet/runtime (#41272)dotnet-maestro[bot]
[main] Update dependencies from dotnet/efcore dotnet/runtime
2022-04-20Split KestrelTrace into multiple files (#41245)Andrew Clark
2022-04-20Update branding to preview5 (#41268)William Godbe
* Update fabric bot milestones to preview5 * Update branding
2022-04-20Place XML comment hrefs in see elements (#41254)James Newton-King
2022-04-20Implement minimal RateLimitingMiddleware (#41008)William Godbe
* First RateLimiting commit * More * ctrl-s * lil bit * Small * Check-in launchSettings.json files from Middleware (#40695) * sln * More * More * More * Remove stuff * rm * Not SharedFx * Feedback * Internal+IVT * Feedback * Feedback chunk 1 * Feedback chunk 2 * Small feedback * Fix extension methods * Small fix * Func * Config status code * Feedback, add servicecollection extension * Update API * Some feedback * Lil more feedback * Partially fix test * Fix/Add tests * Add another test
2022-04-20Allow specifying authz policies on endpoints (#41153)Hao Kung
2022-04-20[SignalR] Add client return results (#40811)Brennan
2022-04-20Capture target from delegates and MethodInfo (#41253)Safia Abdalla
* Capture target from delegates and MethodInfo * Address feedback from peer review * Fix up tests and targetFactory invocation * Fix build error in tests * Validate delegate invoked in tests
2022-04-19Fixed the window update hangs (#41256)David Fowler
* Fixed the window update hangs causing tests to fail - While computing how many bytes we needed to write, we were returning the remaining number of window bytes (for both the connection and stream). Since window updates happen concurrently with the write loop, it was possible to miss and not observe the window update depending on when the update happened in relation to the loop observing this state. We now look at the current state of the connection window and stream window before we decide to queue or wait for a window update under the appropriate locks. - Added a test to verify we don't lose bytes if the stream window is more than the connection window.
2022-04-19Use file-scoped namespace (#41261)Jonathan
* Use file-scoped namespace * Update 30_api_proposal.md
2022-04-19Remove some legacy folders and add area-grpc, area-web-frameworks (#41260)Artak
Updated FabricBot mappings to: Remove MusicStore mapping (as the folder doesn't exist any more) Remove Blazor WASM template mapping, as the template has merged with the rest of the templates under ProjectTemplates Adds mappings for area-web-frameworks Adds mapping for area-grpc
2022-04-19Update dependencies from https://github.com/dotnet/runtime build 20220418.7 ↵dotnet-maestro[bot]
(#41258) [main] Update dependencies from dotnet/runtime
2022-04-19Add Microsoft.AspNetCore.OpenApi package (#41238)Safia Abdalla
* Add Microsoft.AspNetCore.OpenApi package Fix up schema type generation Post review polish Add new package to templates Split out SchemaGenerator Clean up usings * Address feedback from peer review * Move OpenApi package to top-level directory in src * Clean up HttpAbstractions filter * Update ProjectReferences and templates * Fix up ProjectReferences and address feedback * Add new directory to Build.props and clean up sln
2022-04-19Use handler directly in gRPC interop tests (#41251)James Newton-King
2022-04-19Enable trimming for data protection (#41118)Pranav K
Co-authored-by: James Newton-King <james@newtonking.com>
2022-04-19Flow IContractResolver through JsonPatch method calls (#40966)mboggs1
2022-04-19Add TypedResults static factory class for creating typed IResult objects ↵Damian Edwards
(#41161) - Use the `HttpResult` suffix on `IResult` types except for where the short name has recognized value, e.g. those types that implement `IEndpointMetadataProvider` and will be used in conjunction with `Results<T1, TN>`, e.g. `Results<Ok<Todo>, NotFound>` - Add `TypedResults.xxx` factory class - Added `HttpResults.ValidationProblem` type that represents 400 responses with validation errors (equiv to `BadRequest<HttpValidationProblemDetails>` - Moved `Results<TResult1, TResultN>` types into the `Microsoft.AspNetCore.Http.HttpResults` namespace to match where the other results types are - Changed `Results.xxx` methods to call through to `TypedResults.xxx` methods - Explicitly implemented `IEndpointMetadataProvider` on following `IResult` types: - `Accepted` - `Accepted<TValue>` - `AcceptedAtRoute` - `AcceptedAtRoute<TValue>` - `BadRequest` - `BadRequest<TValue>` - `Conflict` - `Conflict<TValue>` - `Created` - `Created<TValue>` - `CreatedAtRoute` - `CreatedAtRoute<TValue>` - `NoContent` - `NotFound` - `NotFound<TValue>` - `Ok` - `Ok<TValue>` - `UnprocessableEntity` - `UnprocessableEntity<TValue>` - Order `using` statements before `namespace` declarations - Added tests for `Microsoft.AspNetCore.Http.Results` and `Microsoft.AspNetCore.Http.TypedResults` Fixes #41009 Co-authored-by: Bruno Lins de Oliveira <brolivei@microsoft.com>
2022-04-19Bump async from 2.6.3 to 2.6.4 in /src/Components/test/E2ETest (#41196)dependabot[bot]
Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - [Commits](https://github.com/caolan/async/compare/v2.6.3...v2.6.4) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-19Quarantine ClientCompressedUnary #41248 (#41249)Chris Ross
2022-04-19Raise HTTP/2 stream end event in tests with lifetime handler (#41230)James Newton-King
2022-04-19Simplify 'Virtualize' when using 'display: flex' on the scroll container ↵Mackinnon Buck
(#41241)
2022-04-18[main] (deps): Bump src/submodules/googletest (#41233)dependabot[bot]
Bumps [src/submodules/googletest](https://github.com/google/googletest) from `a1cc8c5` to `80600e5`. - [Release notes](https://github.com/google/googletest/releases) - [Commits](https://github.com/google/googletest/compare/a1cc8c55195661a58ad60c3bb062a0b9c302710d...80600e56cc9afe7ee02737429f9177aa87025054) --- updated-dependencies: - dependency-name: src/submodules/googletest dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-18Update dependencies from https://github.com/dotnet/efcore build 20220418.7 ↵dotnet-maestro[bot]
(#41236) [main] Update dependencies from dotnet/efcore
2022-04-18Update dependencies from https://github.com/dotnet/arcade build 20220415.2 ↵dotnet-maestro[bot]
(#41232) [main] Update dependencies from dotnet/arcade
2022-04-18[main] Update dependencies from dotnet/efcore dotnet/runtime (#41226)dotnet-maestro[bot]
[main] Update dependencies from dotnet/efcore dotnet/runtime
2022-04-17Fix MapPath and UsePathBase's use of implicit PathStrings #41168 (#41215)Chris Ross
2022-04-16HTTP/2 output processing make over (#40925)David Fowler
This changes the HTTP/2's output processing to be use queues instead of locks (a channel to be precise). We're manually scheduling the Http2OutputProducer's intent to write instead of a write operation. This removes locks and allows the thread to do other useful work while processing in line for processing in a low allocation way.
2022-04-16Update dependencies from https://github.com/dotnet/runtime build 20220415.7 ↵dotnet-maestro[bot]
(#41218) [main] Update dependencies from dotnet/runtime
2022-04-16Update dependencies from https://github.com/dotnet/efcore build 20220415.1 ↵dotnet-maestro[bot]
(#41214) [main] Update dependencies from dotnet/efcore
2022-04-16Update InputFile error message for stale references (#41094)Tanay Parikh
* Update InputFile error message for stale references * eUpdate src/Components/Web.JS/src/InputFile.ts * Update InputFile.ts
2022-04-15Signal IsCompleted from Response.BodyWriter after abort (#40570)Bartosz Sendek
2022-04-15Quarantine ConfigurationChangeCanBeIgnoredInProcess (#41208)Chris Ross
2022-04-15[main] Update dependencies from dotnet/efcore dotnet/runtime (#41198)dotnet-maestro[bot]
* Update dependencies from https://github.com/dotnet/efcore build 20220414.1 Microsoft.EntityFrameworkCore.Tools , dotnet-ef , Microsoft.EntityFrameworkCore , Microsoft.EntityFrameworkCore.SqlServer , Microsoft.EntityFrameworkCore.InMemory , Microsoft.EntityFrameworkCore.Relational , Microsoft.EntityFrameworkCore.Sqlite , Microsoft.EntityFrameworkCore.Design From Version 7.0.0-preview.4.22211.2 -> To Version 7.0.0-preview.4.22214.1 * Update dependencies from https://github.com/dotnet/efcore build 20220414.2 Microsoft.EntityFrameworkCore.Tools , dotnet-ef , Microsoft.EntityFrameworkCore , Microsoft.EntityFrameworkCore.SqlServer , Microsoft.EntityFrameworkCore.InMemory , Microsoft.EntityFrameworkCore.Relational , Microsoft.EntityFrameworkCore.Sqlite , Microsoft.EntityFrameworkCore.Design From Version 7.0.0-preview.4.22211.2 -> To Version 7.0.0-preview.4.22214.2 * Update dependencies from https://github.com/dotnet/efcore build 20220414.3 Microsoft.EntityFrameworkCore.Tools , dotnet-ef , Microsoft.EntityFrameworkCore , Microsoft.EntityFrameworkCore.SqlServer , Microsoft.EntityFrameworkCore.InMemory , Microsoft.EntityFrameworkCore.Relational , Microsoft.EntityFrameworkCore.Sqlite , Microsoft.EntityFrameworkCore.Design From Version 7.0.0-preview.4.22211.2 -> To Version 7.0.0-preview.4.22214.3 * Update dependencies from https://github.com/dotnet/runtime build 20220414.7 Microsoft.NETCore.BrowserDebugHost.Transport , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.Platforms , System.Reflection.Metadata , System.Net.Http.WinHttpHandler , System.Net.Http.Json , System.IO.Pipelines , System.DirectoryServices.Protocols , System.Diagnostics.EventLog , System.Diagnostics.DiagnosticSource , System.Resources.Extensions , System.Threading.RateLimiting , System.Threading.Channels , System.Threading.AccessControl , System.Text.Json , System.Text.Encodings.Web , System.ServiceProcess.ServiceController , System.Security.Permissions , System.Security.Cryptography.Xml , System.Security.Cryptography.Pkcs , Microsoft.NET.Runtime.WebAssembly.Sdk , Microsoft.NET.Runtime.MonoAOTCompiler.Task , Microsoft.Internal.Runtime.AspNetCore.Transport , Microsoft.Extensions.DependencyInjection.Abstractions , Microsoft.Extensions.DependencyInjection , Microsoft.Extensions.Configuration.Xml , Microsoft.Extensions.Configuration.UserSecrets , Microsoft.Extensions.Configuration.Json , Microsoft.Extensions.Configuration.Ini , Microsoft.Extensions.Configuration.FileExtensions , Microsoft.Extensions.Configuration.EnvironmentVariables , Microsoft.Extensions.Configuration.CommandLine , Microsoft.Extensions.Configuration.Binder , Microsoft.Extensions.Configuration , Microsoft.Extensions.Caching.Memory , Microsoft.Extensions.Caching.Abstractions , Microsoft.Extensions.Configuration.Abstractions , Microsoft.Extensions.DependencyModel , Microsoft.Extensions.FileProviders.Abstractions , Microsoft.Extensions.FileProviders.Composite , Microsoft.Extensions.Primitives , Microsoft.Extensions.Options.DataAnnotations , Microsoft.Extensions.Options.ConfigurationExtensions , Microsoft.Extensions.Options , Microsoft.Extensions.Logging.TraceSource , Microsoft.Extensions.Logging.EventSource , Microsoft.Extensions.Logging.EventLog , Microsoft.Extensions.Logging.Debug , Microsoft.Extensions.Logging.Console , Microsoft.Extensions.Logging.Configuration , Microsoft.Extensions.Logging.Abstractions , Microsoft.Extensions.Logging , Microsoft.Extensions.Http , Microsoft.Extensions.Hosting.Abstractions , Microsoft.Extensions.Hosting , Microsoft.Extensions.HostFactoryResolver.Sources , Microsoft.Extensions.FileSystemGlobbing , Microsoft.Extensions.FileProviders.Physical , Microsoft.NETCore.App.Ref , Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm From Version 7.0.0-preview.4.22213.16 -> To Version 7.0.0-preview.4.22214.7 Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2022-04-15Add SocketsHttpHandler logging to gRPC interop tests (#41199)James Newton-King
2022-04-15Bump async from 3.2.1 to 3.2.3 in /src/SignalR/clients/ts/FunctionalTests ↵dependabot[bot]
(#41185)