Commit Graph

905 Commits

Author SHA1 Message Date
ASP.NET CI f47b5e9f9e Update dependencies.props
[auto-updated: dependencies]
2018-06-12 19:20:15 +00:00
Nate McMaster b8be770d37
Bumping version from 2.1.0 to 2.1.1 2018-06-05 09:11:35 -07:00
ASP.NET CI c08f320967 Update dependencies.props
[auto-updated: dependencies]
2018-05-29 09:38:22 -07:00
ASP.NET CI 95a44cda4b Update dependencies.props
[auto-updated: dependencies]
2018-05-04 07:35:31 -07:00
Nate McMaster (automated) 65228ea374
Bump version to 2.1.0-rtm 2018-04-30 14:51:40 -07:00
ASP.NET CI ae960c06e5 Update dependencies.props
[auto-updated: dependencies]
2018-04-19 22:22:03 -07:00
Nate McMaster 7ddbde8b68
Set NETStandardImplicitPackageVersion via dependencies.props 2018-04-19 16:39:19 -07:00
Ryan Brandenburg e7055a11ae Branching for 2.1.0-rc1 2018-04-16 16:57:39 -07:00
Ryan Brandenburg 5d1ee9da82 Merge remote-tracking branch 'origin/release/2.1' into rybrande/MergeRelease21IntoDev 2018-04-16 14:32:09 -07:00
ASP.NET CI a5743b2fd4 Update dependencies.props
[auto-updated: dependencies]
2018-04-15 14:10:15 -07:00
Nate Barbettini a6bdb9b1ec Fix typos in code documentation (#1012)
* Fix typos in code documentation

* Add missing detail to code documentation
2018-04-06 08:09:48 -07:00
ASP.NET CI ce49e95239 Update dependencies.props
[auto-updated: dependencies]
2018-04-03 22:27:07 +00:00
Nate McMaster (automated) b97e40ff7d
Update dependencies.props
[auto-updated: dependencies]
2018-03-28 10:45:35 -07:00
Tornhoof e80d0b000a Make BufferedReadString public and add doc (#1011) 2018-03-26 16:03:16 -07:00
ASP.NET CI ed5c070639 Update dependencies.props
[auto-updated: dependencies]
2018-03-25 15:39:44 -07:00
Chris Ross (ASP.NET) 49b447d626 Merge branch 'release/2.1' into dev 2018-03-23 09:19:06 -07:00
Chris Ross (ASP.NET) 3d9a19d865 Merge branch 'release/2.1' into dev
# Conflicts:
#	build/dependencies.props
#	korebuild-lock.txt
2018-03-23 09:16:55 -07:00
Patrick Westerhoff 72210e4078 Add AuthenticationProperties.Parameters (#1008)
Add a `Parameters` bag to the authentication properties that allow
passing arbitrary parameters to an authentication handler. These values
are not intended for serialization of persistence, only for flowing data
between call sites.

Also make existing `Items` collection helpers protected to allow them to
be reused in subclasses, make string-based helpers public as a public
way to work with the collection, and add helper methods to interact with
the `Parameters` dictionary.
2018-03-23 09:13:02 -07:00
Chris Ross (ASP.NET) e5cffe685b Do not rely on the implicit StringValues to array converter. 2018-03-21 09:42:20 -07:00
Ryan Brandenburg f91db5b794 Set 2.0 baselines 2018-03-20 11:49:29 -07:00
Chris Ross (ASP.NET) 7f0602d2b1 Merge branch 'release' into dev 2018-03-19 09:11:19 -07:00
richardhopton f6f89554c9 Fix trimming line if CR not directly before LF (#1006)
If the line contains a CR in any location than directly before the LF it would detect a valid line and then trim 2 characters from the end of the line, losing a "real" character.
2018-03-19 09:09:57 -07:00
Pranav K e6919e550f
Merge branch 'release/2.1' into dev 2018-03-16 12:30:01 -07:00
Pranav K f3ac1fac0c
Update KoreBuild channel 2018-03-16 12:29:56 -07:00
Pranav K 29225ebc3a
Update version prefix to preview3 2018-03-16 11:26:26 -07:00
Pranav K 779f3305ad
Merge remote-tracking branch 'origin/release/2.1' into dev 2018-03-16 11:26:26 -07:00
Pranav K c86fb52eb0
Branching for 2.1.0-preview2 2018-03-16 11:14:44 -07:00
ASP.NET CI fbbbb16305 Update dependencies.props
[auto-updated: dependencies]
2018-03-08 13:00:29 -08:00
Pranav K 617ee97b21
Prepend FeatureBranchVersionPrefix if FeatureBranchVersionSuffix is specified 2018-03-06 10:03:57 -08:00
Pranav K 666437615b
Use dotnet-core feed in repos 2018-03-06 10:03:57 -08:00
Nate McMaster ad4e1c03f2
Merge branch 'release/2.1' into dev 2018-03-02 14:26:35 -08:00
ASP.NET CI 63c7963595 Update dependencies.props
[auto-updated: dependencies]
2018-02-26 11:02:00 -08:00
John Luo b85ed9d5cd Commas in doc comments 2018-02-22 10:44:59 -08:00
Pranav K ab0dbaa347 Use FeatureBranchVersionSuffix when generating VersionSuffix 2018-02-21 18:26:57 -08:00
ASP.NET CI 93b784766a Update dependencies.props
[auto-updated: dependencies]
2018-02-18 12:18:08 -08:00
Chris Ross (ASP.NET) d20d47924c Add HostString.MatchesAny #2863 2018-02-13 14:40:14 -08:00
ASP.NET CI f152b9863a Update dependencies.props
[auto-updated: dependencies]
2018-02-11 12:24:40 -08:00
ASP.NET CI 271612a899 Update dependencies.props
[auto-updated: dependencies]
2018-02-09 11:43:21 -08:00
Doug Bunting 7b9da556fb Add `HttpRequestRewindExtensions`
- aspnet/Home#2684
- makes the `BufferingHelper` methods used in MVC and WebHooks `public`
2018-02-06 22:11:06 -08:00
David Fowler 816ecf5cda
Reduce the amount of argument checking by flattening the call graph. (#995) 2018-02-06 10:26:56 -08:00
Robert Miles 672a5f3c76 Allow null value in query string KVP per RFC 3986 (#994)
* Allow null value in query string KVP per RFC 3986

* Tweaks per PR suggestions

* Tweaks per PR suggestions, round 2

* Tweaks per PR suggestions, round 3
2018-02-05 20:25:53 -08:00
Kristian Hellang 450900d14c Added protected ctor to AuthenticationSchemeProvider (#990) 2018-02-05 13:43:55 -08:00
ASP.NET CI 51a7e83a23 Update dependencies.props
[auto-updated: dependencies]
2018-02-03 02:46:21 +00:00
Hossam Barakat 9119433ab7 Add the middleware name to the exception message UseMiddlewareNoInvokeMethod (#993)
Addresses #927
Addresses aspnet/Home#2692
2018-02-01 06:22:08 -08:00
ASP.NET CI fd385a3c54 Update dependencies.props
[auto-updated: dependencies]
2018-02-01 03:30:18 +00:00
Nate McMaster 3e99312192 Update dependencies.props to 2.1.0-preview-28193, build tools to 2.1.0-preview1-1010 [ci skip]
Scripted changes:
- updated travis and appveyor.yml files to only build dev, ci, and release branches
- updated dependencies.props
- updated korebuild-lock.txt
- updated korebuild.json to release/2.1 channel
2018-01-31 15:01:11 -08:00
Mikael Mengistu e8d69911fd
Adding Http2 headers to HeaderNames class (#992) 2018-01-31 11:55:43 -08:00
David Fowler 6cd313fcfa
Revert "Change MiddlewareFactory to type activate IMiddleware as a fallback (#988)" (#991)
This reverts commit 44d5bf074f.
2018-01-30 10:28:52 -08:00
Michael Hawkins 9f64c69a2a Disambiguates IFormFile name docs (#935) 2018-01-28 14:27:47 -08:00
Ryan Brandenburg 2326783a04 Have definitive values for TheoryData 2018-01-25 14:44:47 -08:00