Commit Graph

397 Commits

Author SHA1 Message Date
Martin Costello acabbbc61b
Remove QueuePolicy locks (#23187)
* Use field rather than property

Operate on a field directly, rather than through a property.

* Make field readonly

Make field read-only as its value is never changed.

* Remove lock

Use Interlocked.Decrement() instead of taking a lock.

* Remove lock for increment

This removes the need for the lock in the success case at the cost of an extra  Interlocked.Decrement() call for the failed case.

* Fix typos

Change "availible" to "available".

* Add unit test for full queue

Add a unit test that validates request is not queued if the queue is already full.
2020-06-30 05:11:58 +00:00
Martin Costello c19f3d29ca
Only look-up Cache-Control once (#23329)
Only look-up the Cache-Control header once, rather than twice if non-empty.
2020-06-24 22:48:36 +00:00
Martin Costello 5155e11120
Two minor perf tweaks in CORS and Localization middleware (#23190)
* Use char instead of char[] for string.Split

Use the newer overload for string.Split() that accepts a char instead of creating a char array.

* Remove redundant bounds check

Remove redundant bounds check for count of exactly 1 as that has already been checked to be true by the previous check.
2020-06-24 07:17:33 -07:00
Stephan Troyer 7aa91ffd62
SpaProxy: Fix proxying of WebSocket protocol (#23250) 2020-06-23 16:20:00 -07:00
Doug Bunting c4c6e25a06
Add missing doc files and cleanup nits (#22931)
* nit: Remove useless `$(HasReferenceAssembly)` settings
  - set in /Directory.Build.targets
    - `true` only in `$(IsAspNetCoreApp)` projects
* nit: Remove useless `$(CompileUsingReferenceAssemblies)` settings
  - no current versioning differences between ref/ and src/ assemblies when targeting default TFM
* Add more `$(GenerateDocumentationFile)` settings
  - increases the number of generated doc files, mostly without problems
- !fixup! correct typo in `DebugProxyHost` doc comments
    - was not generating a doc file before
  - remove previous (ineffective) src/Components/Directory.Build.targets setting
  - nit: remove a duplicate `$(GenerateDocumentationFile)` setting
* nit: Remove useless `$(IsPackable)` settings
  - only analyzers and implementation projects are packable by default
    - main use case for explicit setting is projects shipping only in shared framework
  - conditional setting in src/Mvc/Directory.Build.props just subset logic in /Directory.Build.targets
* nit: Remove useless `$(IsProjectReferenceProvider)` settings
  - only implementation projects are providers by default
* nit: Remove useless `$(IsTestAssetProject)` settings
  - set in src/Mvc/test/WebSites/Directory.Build.props
* !fixup! Looks like `InProcessNewShimWebSite` must compile w/o ref/ assemblies
  - restore `$(CompileUsingReferenceAssemblies)` in this one project
2020-06-17 13:04:45 -07:00
Ken Dale 28ed208022
Add SetIsOriginAllowedToAllowWildcardSubdomains_DoesNotAllowRootDomain test (#23001)
This test makes it clear root domains are not included in CORS subdomain wildcards
2020-06-17 06:22:20 -07:00
brianchance a0827ace5e
Change default for queryStringDelete (#21586) 2020-06-15 14:46:40 -07:00
Huei Feng 7cdbaeeccf
Update Async To MigrationsEndPointMiddleware (#22573) 2020-06-15 14:42:55 -07:00
Scott Addie 11fb7b67d1
Add detail to InvalidOperationException in Exception Handler Middleware (#22858) 2020-06-15 11:31:23 -07:00
John Luo ef9a3662d6
Also set no-store when we set no-cache in response cache control headers (#22842) 2020-06-11 20:38:54 -07:00
Javier Calvarro Nelson a27356078f
Disable Yarn warnings on CI builds for restore and Blazor WebAssembly projects (#22703)
Disables warnings when running the Yarn task in CI environments. You'll still get the warnings on developer builds.
2020-06-09 09:53:50 -07:00
Kirill Osenkov 0e7ca749de
Add a Mime Type for .exe and .dll files. (#21805)
* Add a Mime Type for .exe and .dll files.

Useful for serving downloads of installers.
Could be application/octet-stream, but I hear application/vnd.microsoft.portable-executable is specified by IANA here:

https://www.iana.org/assignments/media-types/application/vnd.microsoft.portable-executable

* Update src/Middleware/StaticFiles/src/FileExtensionContentTypeProvider.cs

Co-authored-by: Chris Ross <Tratcher@Outlook.com>

* Update src/Middleware/StaticFiles/src/FileExtensionContentTypeProvider.cs

Co-authored-by: Chris Ross <Tratcher@Outlook.com>

Co-authored-by: Chris Ross <Tratcher@Outlook.com>
2020-06-05 20:21:31 +00:00
Doug Bunting 256045729a
Add `SuccessfulTests` to ensure something runs in every non-Helix run (#22406)
* Remove extra `[SkipOnHelix]` attribute
- only need the one compiled into Microsoft.AspNetCore.Testing
- update the documentation to reflect this
  - nit: address Markdown warnings that VS Code showed

* Add `SuccessfulTests` to ensure something runs in every non-Helix runs
- #22241
- cleans up hundreds of warnings but leaves a couple for the Blazor tests assembly
  - see comments about xUnit runner command line in the new class
2020-06-02 12:19:28 -07:00
Michelle Tan 6afd6f40c0
Fix tiny typo in ErrorContext summary. (#22190) 2020-05-24 19:41:19 -07:00
Hao Kung a806ae62c3
Add helix-matrix.yml and windows arm 64 helix queue (#22002) 2020-05-23 17:08:18 -07:00
dotnet-maestro[bot] d5849f3534
[master] Update dependencies from dotnet/arcade dotnet/aspnetcore-tooling (#21630)
* Update dependencies from https://github.com/dotnet/arcade build 20200511.9
- Microsoft.DotNet.Arcade.Sdk: 5.0.0-beta.20228.4 => 5.0.0-beta.20261.9
- Microsoft.DotNet.GenAPI: 5.0.0-beta.20228.4 => 5.0.0-beta.20261.9
- Microsoft.DotNet.Helix.Sdk: 5.0.0-beta.20228.4 => 5.0.0-beta.20261.9

* Update dependencies from https://github.com/dotnet/aspnetcore-tooling build 20200514.6

Microsoft.AspNetCore.Mvc.Razor.Extensions , Microsoft.AspNetCore.Razor.Language , Microsoft.CodeAnalysis.Razor , Microsoft.NET.Sdk.Razor
 From Version 5.0.0-preview.5.20261.4 -> To Version 5.0.0-preview.6.20264.6

* Pre-emptively take -nobl change

* Disable binlogs in CI

* Fix build.sh to know about -nobl

* Align build.ps1|sh with latest Arcade parameters
- do not enable binary logs by default in CI builds
- leave `-binaryLog` and `-excludeCIBinaryLog` handling to eng/common/tools.ps1|sh
  - was unnecessary since `-bl /bl:{some name}` worked fine, ignoring OOMs

nit: document `-excludeCIBinarylog` a bit more

* Do not pass unknown options into CodeCheck.ps1

* Pass `-ci -nobl` into remaining CI build jobs

* Switch default TFM to `net5.0`

* Update missing project templates tfms

* Add more `-ci -nobl`
- needed because _all_ builds in the pipeline are implicitly CI builds
  - default-build.yml adds `-ci` when script wasn't explicit

* Default templates to net5.0

* PR feedback

* Update TFMs in explicit .nuspec files

* Update TFMs in test projects

* Update TFMs in test C# code

* Update TFMs in infrastructure files

* Future-proof a check for `net5.0` or later
- avoid comparisons involving `$(TargetFramework)` in .targets files
  - fine to compare it with `''` or `$(DefaultNetCoreTargetFramework)`

* !fixup! Undo a couple of earlier fixes
- remove a duplicate `$()` setting
- correct the one remaining versioned `#if` define
  - did not make it `#if NETCOREAPP` because benchmarks test numerous .NET Core TFMs

* Disable binary logs in CodeCheck.ps1

* Specify `-ci -nobl` just once when using `parameters.buildArgs`

* Restore `$binaryLog` default logic

Co-authored-by: Doug Bunting <6431421+dougbu@users.noreply.github.com>
Co-authored-by: Will Godbe <wigodbe@microsoft.com>
Co-authored-by: Viktor Hofer <viktor.hofer@microsoft.com>
2020-05-15 00:17:02 +00:00
Artyom Tarasov 17c90a7e17
Fix for https://github.com/dotnet/aspnetcore/issues/17277 (#21819)
Fixed adding a string with a large number of trailing zeros to StringBuilder, which sometimes caused the thread to hang
2020-05-14 10:47:26 -07:00
Stephen Halter 5607ea1e0c
Remove workaround in HeaderPropagationMiddleware (#20533)
Fixed by #14146 which starts each request on a fresh ExecutionContext
2020-04-09 16:43:18 -07:00
John Luo 3ec1676ac6
Ingest updated packages from dotnet/runtime (#20300) 2020-04-06 01:06:22 -07:00
Kevin Pilch f34033a415 Add .vsconfig files in root and beside slns 2020-03-31 14:25:44 -07:00
Chris Pickford 3eb778fb41
Added null check to CorsPolicyBuilder (#19831)
* Added null check to CorsPolicyBuilder

* Replaced string.IsNullOrEmpty with null check

* Added inner null check + updated unit test

#19830

* Unit Tests: Reverted Theory to separate Facts

* Strongly typed args

Co-authored-by: Chris Pickford <chris.pickford@aldautomotive.com>
2020-03-30 19:32:30 +00:00
huysentruitw bb2e2a9160
Obsolete ReceiveBufferSize in WebSocketOptions #20084 (#20189)
* Obsolete ReceiveBufferSize in WebSocketOptions

* Update reference

* Update obsolete messages
2020-03-26 18:02:30 +00:00
Radek Falhar e21fb7e93c
Fix #19991 Made TestHost fail when Response Flush is called with AllowSynchronossIO being dissabled (#20059) 2020-03-26 09:46:15 -07:00
dotnet-maestro[bot] 30c5484424
[master] Update dependencies from dotnet/efcore (#20107)
* Update dependencies from https://github.com/dotnet/efcore build 20200324.2

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-preview.3.20174.2
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-preview.3.20174.2
- dotnet-ef - 5.0.0-preview.3.20174.2
- Microsoft.EntityFrameworkCore - 5.0.0-preview.3.20174.2
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-preview.3.20174.2
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-preview.3.20174.2
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-preview.3.20174.2

* Update dependencies from https://github.com/dotnet/efcore build 20200324.3

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-preview.3.20174.3
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-preview.3.20174.3
- dotnet-ef - 5.0.0-preview.3.20174.3
- Microsoft.EntityFrameworkCore - 5.0.0-preview.3.20174.3
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-preview.3.20174.3
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-preview.3.20174.3
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-preview.3.20174.3

* Update dependencies from https://github.com/dotnet/efcore build 20200324.4

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-preview.3.20174.4
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-preview.3.20174.4
- dotnet-ef - 5.0.0-preview.3.20174.4
- Microsoft.EntityFrameworkCore - 5.0.0-preview.3.20174.4
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-preview.3.20174.4
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-preview.3.20174.4
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-preview.3.20174.4

* Update dependencies from https://github.com/dotnet/efcore build 20200324.5

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-preview.3.20174.5
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-preview.3.20174.5
- dotnet-ef - 5.0.0-preview.3.20174.5
- Microsoft.EntityFrameworkCore - 5.0.0-preview.3.20174.5
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-preview.3.20174.5
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-preview.3.20174.5
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-preview.3.20174.5

* React to EF Migrations breaking changes

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: AndriySvyryd <Andriy.Svyryd@microsoft.com>
2020-03-25 03:19:39 +00:00
Andrew Stanton-Nurse 8ec31594ea
Fix #2442 by adding webmanifest extension to content-type map (#19661) 2020-03-09 17:30:54 -07:00
John Luo d2b67cad82 Feedback 2020-03-06 12:42:42 -08:00
John Luo f05e019271
Merge branch 'master' into johluo/migrate-logging-testing 2020-03-04 22:17:06 -08:00
John Luo c181547864 Migration fixup for Logging.Testing 2020-03-04 22:10:12 -08:00
Andrew Stanton-Nurse e65408a36c
unquarantine a pile of long-passing tests (#19440) 2020-02-28 19:02:58 +00:00
Maher Jendoubi 1a4dbb7cc5
Contributing: fixed some typos (#18494)
* Contributing: fixed some typos

* Spotted another typo

* this will cause a breaking change

* made DefaultDisconetTimout readonly

* made ConnectionOptionsSetup class internal

* Revert "made ConnectionOptionsSetup class internal"

This reverts commit 90f94d257bf5c953415c2f581f0a24a6f9bd51f6.

* Update HttpConnectionDispatcher.Log.cs

* Apply suggestions from code review

Co-authored-by: Brennan <brecon@microsoft.com>
2020-02-25 02:11:17 +00:00
Kahbazi 09bb7b4ca5
Add WebSockets Benchmarks project back to solution (#19302) 2020-02-24 23:24:20 +00:00
John Luo a5fc9defc4 Regenerate ref assemblies 2020-02-20 16:53:07 -08:00
John Luo 5f9f1ce183 Merge branch 'master' into johluo/migrating-extensions 2020-02-20 16:44:06 -08:00
John Luo 7d1f5d8c0b Updates for extensions migrations
- Multi-target ObjectPool
- Move Embedded.Manifest.Task.Internal.Entry to the public namespace
- Remove ref assemblies from AspNetCore.Testing
- Skip TestPathUtilitiesTest since it's a pattern we want to migrate away from
- Fix FileProviders.Abstractions version in Embedded.*.nuspec
- Add workarounds for project references to FileProviders.Embedded
2020-02-20 14:00:29 -08:00
Brennan 1e03d57deb
Merge branch 'master' into halter73/mega-merge 2020-02-19 14:20:10 -08:00
Brennan Conroy 2d066dcd3e Apply some fixes 2020-02-19 14:18:29 -08:00
Roman Marusyk 76d197f0dd
Add XML Documentation to ResponseCachingMiddleware and ResponseCachingExtensions (#18968)
* Add XML Documentation to ResponseCachingMiddleware and ResponseCachingExtensions

* Update src/Middleware/ResponseCaching/src/ResponseCachingExtensions.cs

Co-Authored-By: Andrew Stanton-Nurse <andrew@stanton-nurse.com>

* Update src/Middleware/ResponseCaching/src/ResponseCachingExtensions.cs

Co-Authored-By: Andrew Stanton-Nurse <andrew@stanton-nurse.com>

* Update src/Middleware/ResponseCaching/src/ResponseCachingExtensions.cs

Co-Authored-By: Andrew Stanton-Nurse <andrew@stanton-nurse.com>

* Update src/Middleware/ResponseCaching/src/ResponseCachingMiddleware.cs

Co-Authored-By: Andrew Stanton-Nurse <andrew@stanton-nurse.com>

* Update src/Middleware/ResponseCaching/src/ResponseCachingMiddleware.cs

Co-Authored-By: Andrew Stanton-Nurse <andrew@stanton-nurse.com>

* Update ResponseCachingMiddleware.cs

Co-authored-by: Andrew Stanton-Nurse <andrew@stanton-nurse.com>
2020-02-19 21:39:24 +00:00
Ajay Bhargav Baaskaran b92f4231e8 Todos 2020-02-18 13:47:25 -08:00
Stephen Halter 88073f86ff Merge branch 'release/3.1' into master 2020-02-18 13:46:51 -08:00
Alessio Franceschelli d05c9f465c
HeaderPropagation: reset AsyncLocal per request (#18300)
As Kestrel can bleed the AsyncLocal across requests,
see https://github.com/aspnet/AspNetCore/issues/13991.
2020-02-14 09:33:26 -08:00
Doug Bunting a6c43b14a1
Mark AspNetCore projects that aren't packaged explicitly (#18767)
* Mark AspNetCore projects that aren't packaged explicitly
- avoid NU5104 warnings due to confusing versioning
- `$(IsShippingPackage)` was semantically incorrect in any case

* Remove redundant `$(IsShippingPackage)` settings in `$(IsAspNetCoreApp)` projects
- default is `true` for all implementation projects

* Use `$(IsPackable)` when deciding how `$(IsAspNetCoreApp)` projects are handled
- remove all use of `$(IsShippingPackage)` for shared framework composition
- update documentation to match these changes

nits:
- remove odd default for `$(IsPackable)` in Directory.Build.targets
  - no longer relevant since all `$(IsAspNetCoreApp)` projects are `$(IsShippingPackage)` too
- include more information in docs/ProjectProperties.md

* Add direct System.Text.Json references
- avoid MSB3277 warnings
2020-02-13 15:51:27 -08:00
AndriySvyryd db3d23b3af Cleanup processes started by UseReactDevelopmentServer and UseAngularCliServer
Fixes #11597
2020-01-29 18:31:40 -08:00
dotnet-maestro[bot] a1e226f06c
[master] Update dependencies from dotnet/efcore (#18247)
* Update dependencies from https://github.com/dotnet/efcore build 20200109.3

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20059.3
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20059.3
- dotnet-ef - 5.0.0-alpha.1.20059.3
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20059.3
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20059.3
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20059.3
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20059.3

* Update dependencies from https://github.com/dotnet/efcore build 20200109.2

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20059.2
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20059.2
- dotnet-ef - 5.0.0-alpha.1.20059.2
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20059.2
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20059.2
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20059.2
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20059.2

* Add workarounds

* Fix workaround

* Update dependencies from https://github.com/dotnet/efcore build 20200110.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20060.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20060.1
- dotnet-ef - 5.0.0-alpha.1.20060.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20060.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20060.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20060.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20060.1

* Update dependencies from https://github.com/dotnet/efcore build 20200111.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20061.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20061.1
- dotnet-ef - 5.0.0-alpha.1.20061.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20061.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20061.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20061.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20061.1

* Update dependencies from https://github.com/dotnet/efcore build 20200112.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20062.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20062.1
- dotnet-ef - 5.0.0-alpha.1.20062.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20062.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20062.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20062.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20062.1

* Update dependencies from https://github.com/dotnet/efcore build 20200114.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20064.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20064.1
- dotnet-ef - 5.0.0-alpha.1.20064.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20064.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20064.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20064.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20064.1

* Update dependencies from https://github.com/dotnet/efcore build 20200114.2

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20064.2
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20064.2
- dotnet-ef - 5.0.0-alpha.1.20064.2
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20064.2
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20064.2
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20064.2
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20064.2

* Update dependencies from https://github.com/dotnet/efcore build 20200115.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20065.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20065.1
- dotnet-ef - 5.0.0-alpha.1.20065.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20065.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20065.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20065.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20065.1

* Update dependencies from https://github.com/dotnet/efcore build 20200116.2

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20066.2
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20066.2
- dotnet-ef - 5.0.0-alpha.1.20066.2
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20066.2
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20066.2
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20066.2
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20066.2

* Update dependencies from https://github.com/dotnet/efcore build 20200118.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20068.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20068.1
- dotnet-ef - 5.0.0-alpha.1.20068.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20068.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20068.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20068.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20068.1

* Update dependencies from https://github.com/dotnet/efcore build 20200120.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20070.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20070.1
- dotnet-ef - 5.0.0-alpha.1.20070.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20070.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20070.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20070.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20070.1

* Update dependencies from https://github.com/dotnet/efcore build 20200122.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20072.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20072.1
- dotnet-ef - 5.0.0-alpha.1.20072.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20072.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20072.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20072.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20072.1

* Update dependencies from https://github.com/dotnet/efcore build 20200122.6

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20072.6
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20072.6
- dotnet-ef - 5.0.0-alpha.1.20072.6
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20072.6
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20072.6
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20072.6
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20072.6

* Update dependencies from https://github.com/dotnet/efcore build 20200123.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20073.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20073.1
- dotnet-ef - 5.0.0-alpha.1.20073.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20073.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20073.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20073.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20073.1

* Update dependencies from https://github.com/dotnet/efcore build 20200123.2

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20073.2
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20073.2
- dotnet-ef - 5.0.0-alpha.1.20073.2
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20073.2
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20073.2
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20073.2
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20073.2

Dependency coherency updates

- Microsoft.CSharp - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.Registry - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.SystemEvents - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ComponentModel.Annotations - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Diagnostics.EventLog - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Drawing.Common - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.IO.Pipelines - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.Http.WinHttpHandler - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.WebSockets.WebSocketProtocol - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Reflection.Metadata - 1.8.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Runtime.CompilerServices.Unsafe - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Cng - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Pkcs - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Xml - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Permissions - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Principal.Windows - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ServiceProcess.ServiceController - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Encodings.Web - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Json - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Threading.Channels - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Windows.Extensions - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.Platforms - 3.1.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)

* Update dependencies from https://github.com/dotnet/efcore build 20200123.3

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20073.3
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20073.3
- dotnet-ef - 5.0.0-alpha.1.20073.3
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20073.3
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20073.3
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20073.3
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20073.3

Dependency coherency updates

- Microsoft.CSharp - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.Registry - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.SystemEvents - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ComponentModel.Annotations - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Diagnostics.EventLog - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Drawing.Common - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.IO.Pipelines - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.Http.WinHttpHandler - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.WebSockets.WebSocketProtocol - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Reflection.Metadata - 1.8.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Runtime.CompilerServices.Unsafe - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Cng - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Pkcs - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Xml - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Permissions - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Principal.Windows - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ServiceProcess.ServiceController - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Encodings.Web - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Json - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Threading.Channels - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Windows.Extensions - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.Platforms - 3.1.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)

* Update dependencies from https://github.com/dotnet/efcore build 20200124.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20074.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20074.1
- dotnet-ef - 5.0.0-alpha.1.20074.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20074.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20074.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20074.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20074.1

Dependency coherency updates

- Microsoft.CSharp - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.Registry - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.SystemEvents - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ComponentModel.Annotations - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Diagnostics.EventLog - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Drawing.Common - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.IO.Pipelines - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.Http.WinHttpHandler - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.WebSockets.WebSocketProtocol - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Reflection.Metadata - 1.8.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Runtime.CompilerServices.Unsafe - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Cng - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Pkcs - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Xml - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Permissions - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Principal.Windows - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ServiceProcess.ServiceController - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Encodings.Web - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Json - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Threading.Channels - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Windows.Extensions - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.Platforms - 3.1.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)

* Update dependencies from https://github.com/dotnet/efcore build 20200124.3

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20074.3
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20074.3
- dotnet-ef - 5.0.0-alpha.1.20074.3
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20074.3
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20074.3
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20074.3
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20074.3

Dependency coherency updates

- Microsoft.CSharp - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.Registry - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.SystemEvents - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ComponentModel.Annotations - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Diagnostics.EventLog - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Drawing.Common - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.IO.Pipelines - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.Http.WinHttpHandler - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.WebSockets.WebSocketProtocol - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Reflection.Metadata - 1.8.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Runtime.CompilerServices.Unsafe - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Cng - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Pkcs - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Xml - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Permissions - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Principal.Windows - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ServiceProcess.ServiceController - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Encodings.Web - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Json - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Threading.Channels - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Windows.Extensions - 4.7.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.Platforms - 3.1.0 (parent: Microsoft.NETCore.App.Runtime.win-x64)

* Update dependencies from https://github.com/dotnet/efcore build 20200125.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20075.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20075.1
- dotnet-ef - 5.0.0-alpha.1.20075.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20075.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20075.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20075.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20075.1

* Update dependencies from https://github.com/dotnet/efcore build 20200126.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20076.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20076.1
- dotnet-ef - 5.0.0-alpha.1.20076.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20076.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20076.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20076.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20076.1

* Update dependencies from https://github.com/dotnet/efcore build 20200126.2

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20076.2
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20076.2
- dotnet-ef - 5.0.0-alpha.1.20076.2
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20076.2
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20076.2
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20076.2
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20076.2

* Update dependencies from https://github.com/dotnet/efcore build 20200127.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20077.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20077.1
- dotnet-ef - 5.0.0-alpha.1.20077.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20077.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20077.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20077.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20077.1

* Update dependencies from https://github.com/dotnet/efcore build 20200127.2

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20077.2
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20077.2
- dotnet-ef - 5.0.0-alpha.1.20077.2
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20077.2
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20077.2
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20077.2
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20077.2

* Update dependencies from https://github.com/dotnet/efcore build 20200127.3

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20077.3
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20077.3
- dotnet-ef - 5.0.0-alpha.1.20077.3
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20077.3
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20077.3
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20077.3
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20077.3

* Update dependencies from https://github.com/dotnet/efcore build 20200128.1

- Microsoft.EntityFrameworkCore.Tools - 5.0.0-alpha.1.20078.1
- Microsoft.EntityFrameworkCore.SqlServer - 5.0.0-alpha.1.20078.1
- dotnet-ef - 5.0.0-alpha.1.20078.1
- Microsoft.EntityFrameworkCore - 5.0.0-alpha.1.20078.1
- Microsoft.EntityFrameworkCore.InMemory - 5.0.0-alpha.1.20078.1
- Microsoft.EntityFrameworkCore.Relational - 5.0.0-alpha.1.20078.1
- Microsoft.EntityFrameworkCore.Sqlite - 5.0.0-alpha.1.20078.1

* Revert "Fix workaround"

This reverts commit d427e2a22e5f0dcf0a60c85c4e2ab113128bb5fe.

* Revert "Add workarounds"

This reverts commit 1f4e01a3e89e771d2d5cc13d2188b4ecf4c961b8.

* Add EF workaround to template tests

* Remove NoWarn NU1605

Co-authored-by: William Godbe <wigodbe@microsoft.com>
Co-authored-by: Brennan <brecon@microsoft.com>
2020-01-29 21:11:29 +00:00
Alessio Franceschelli c848c33cfa ResponseCaching: started conversion to pipes (#16961)
* ResponseCaching: started conversion to pipes

* nits

* Use span instead of memory

* CachedResponseBody Tests

* Benchmark

* Reworked benchmark

* Addressed feedback

* Increased timeout
2020-01-17 10:58:38 -08:00
Kahbazi 44e44931fe Remove nameof for log event name (#17807) 2020-01-16 12:57:26 -08:00
Maher Jendoubi 116799fa70 Contributing: Fixed some typos (#18331) 2020-01-14 08:58:52 -08:00
Kevin Pilch 0517745c08 aspnet/AspNetCore -> dotnet/aspnet
Except aspnet/AspNetCore-Internal.
2020-01-08 16:40:11 -08:00
Kevin Pilch f3215fd881 aspnet/AspNetCore-Tooling -> dotnet/aspnetcore-tooling 2020-01-08 16:40:11 -08:00
Martin Costello 8b000d961c Use RandomNumberGenerator.Fill() (#18128)
* Use RandomNumberGenerator.Fill()

Use the new RandomNumberGenerator.Fill() method instead of maintaining instances of RandomNumberGenerator to use GetBytes().

* Revert RandomNumberGenerator.Fill()

Revert usage of RandomNumberGenerator.Fill() as the project still targets netstandard2.0.
2020-01-04 15:52:06 -08:00
Kahbazi adb12f23d0 Use AppendJoin(...) instead of Append(string.Join(...)) on StringBuilder (#18007) 2020-01-02 08:05:54 -08:00