Doug Bunting
a6199bbfba
Add integration and functional tests of `[BindRequired]` on page properties ( #8677 )
...
- #7353
2018-10-31 14:15:14 -07:00
Ryan Nowak
3b485909eb
Fix aspnet/AspNetCore#3634
2018-10-31 14:12:55 -07:00
Nate McMaster
954362f344
Update the sign config entry for API-MS-Win-core-xstate-l2-1-0.dll to match case exactly
2018-10-31 14:09:40 -07:00
Nate McMaster
4c51201f58
Include win-arm assets in the signing configuration
2018-10-31 13:27:25 -07:00
Ryan Nowak
c9a53b9067
Merge pull request #522 from dotnet-maestro-bot/merge/release/2.2-to-master
...
[automated] Merge branch 'release/2.2' => 'master'
2018-10-31 13:26:02 -07:00
ASP.NET CI
50952529be
Updating BuildTools from 2.1.3-rtm-15835 to 2.1.3-rtm-15836
...
[auto-updated: buildtools]
2018-10-31 20:22:16 +00:00
Nate McMaster
b262521969
Include x86 assets in the signing configuration
2018-10-31 13:03:53 -07:00
Ryan Nowak
c802d5ef5f
Redesign HealthStatus (again) ( #520 )
...
* Redesign HealthStatus (again)
This change brings back the ability to return Healthy/Degraded/Unhealthy
in a HealthCheckResult. We tried making this pass/fail in 2.2.0-preview3
and folks writing health checks for their own use pointed out (rightly
so) that it was too limited.
It's still possible for the app developer to configure the failure
status of a health check, but it requires the health check author to
cooperate.
I also got rid of HealthStatus.Failed since it raises more questions
than it answers. It's really not clear that it's valuable for a health
check for behave different when throwing an unhandled exception.
We would still recommend that a health check library handle exceptions
that they know about and return `context.Registration.FailureStatus`.
2018-10-31 12:51:14 -07:00
Ryan Nowak
d193e66566
Update to Dev16 Roslyn
2018-10-31 12:34:48 -07:00
Pranav K
f2af66bc31
Cleanup InferParameterBindingInfoConvention ( #8665 )
...
* Cleanup InferParameterBindingInfoConvention
* Infer BindingSource for collection parameters as Body. Fixes https://github.com/aspnet/Mvc/issues/8536
* Introduce a compat switch to keep 2.1.x LTS behavior for collection parameters
* Do not infer BinderModelName in InferParameterBindingInfoConvention
2018-10-31 12:24:37 -07:00
Ryan Nowak
707692cbe1
Update to Dev16 Roslyn
2018-10-31 12:17:22 -07:00
Nate McMaster
ba87c3fbd1
Remove Microsoft.AspNetCore.All ( #3761 )
...
This shared framework and metapackage are obsolete. The recommended replacement is Microsoft.AspNetCore.App.
2018-10-31 12:13:05 -07:00
Nate McMaster
569016c2c5
Code sign all packages in a single batch ( #3778 )
...
Changes:
* Sign shared fx zips
* Sign metapackages
* Disable signing on inner repo builds and instead sign all packages at the end
* Add a list of files from other Microsoft teams which can be excluded from signing
* Add a list of 3rd party assemblies which are bundled in the shared frameworks.
2018-10-31 12:12:15 -07:00
John Luo
62d9794c63
Merge branch 'release/2.2'
2018-10-31 11:52:48 -07:00
John Luo
27efce1042
Do not use the default 5000 port for functional tests
2018-10-31 11:45:53 -07:00
Brice Lambson
4a5d7cf930
Merge branch 'release/2.2'
2018-10-31 11:35:26 -07:00
Brice Lambson
1f896dc61b
⬆️ Update NetTopologySuite.IO.SqlServerBytes to 1.15.0
2018-10-31 11:30:17 -07:00
BrennanConroy
867c315a56
Merge pull request #3240 from dotnet-maestro-bot/merge/release/2.2-to-master
...
[automated] Merge branch 'release/2.2' => 'master'
2018-10-31 11:12:05 -07:00
Mikael Mengistu
5b486cdfa9
Java API Doc revisions
2018-10-31 10:42:43 -07:00
ASP.NET CI
973508d1c5
Updating submodule(s)
...
EntityFrameworkCore => 02c9355b90096762400aa0ab9943725a4cfd8d43
Identity => da9318f431
KestrelHttpServer => e958d82584
Mvc => c74a945dda
Razor => 41fa3ff3eb
SignalR => 865de16086
[auto-updated: submodules]
2018-10-31 10:09:06 -07:00
Nate McMaster
c2e9ca24d3
Update build tools to 2.2.0-preview2-20181031.2
2018-10-31 10:04:25 -07:00
Pranav K
54579f9bf5
Merge pull request #8673 from dotnet-maestro-bot/merge/release/2.2-to-master
...
[automated] Merge branch 'release/2.2' => 'master'
2018-10-31 09:46:33 -07:00
Nate McMaster
2f747d5055
Update MusicStore test projects to use netcoreapp3.0 ( #873 )
2018-10-31 09:44:27 -07:00
Ryan Brandenburg
7100d1a797
Update to new templates
2018-10-31 09:43:13 -07:00
ASP.NET CI
828191adbd
Updating BuildTools from 2.1.3-rtm-15834 to 2.1.3-rtm-15835
...
[auto-updated: buildtools]
2018-10-31 09:23:16 -07:00
BrennanConroy
c7d3690ca0
Merge branch 'release/2.2'
2018-10-30 22:29:03 -07:00
BrennanConroy
865de16086
Enable cookie jar for Node client using request package ( #3202 )
2018-10-30 22:13:24 -07:00
Doug Bunting
579341c8d6
Merge branch 'master' into merge/release/2.2-to-master
2018-10-30 21:08:15 -07:00
Doug Bunting
c74a945dda
Convert `RouteValueDictionary` values to `string` using `CultureInfo.InvariantCulture` ( #8674 )
...
* Convert `RouteValueDictionary` values to `string` using `CultureInfo.InvariantCulture`
- #8578
- user may override this choice in one case:
- register a custom `IValueProviderFactory` to pass another `CultureInfo` into the `RouteValueProvider`
- values are used as programmatic tokens outside `RouteValueProvider`
nits:
- take VS suggestions in changed classes
- take VS suggestions in files I had open :)
2018-10-30 20:09:17 -07:00
Ryan Nowak
c6a910419d
Merge pull request #2694 from dotnet-maestro-bot/merge/release/2.2-to-master
...
[automated] Merge branch 'release/2.2' => 'master'
2018-10-30 18:32:41 -07:00
Ryan Nowak
41fa3ff3eb
Add Razor.Workspaces to non-shipping in NPV
...
Putting this package where it belongs in the NPV list. This package only
ships with our other tooling-only packages.
(cherry picked from commit 9d314071dc )
2018-10-30 18:04:11 -07:00
Nate McMaster
c629400a73
Fix syntax error caused by bad merge on build/dependencies.props
2018-10-30 17:28:41 -07:00
Nate McMaster
908a8b3013
Merge branch 'release/2.2'
2018-10-30 17:18:22 -07:00
Nate McMaster
5c9701e0b6
Merge branch 'release/2.2'
...
\n\nCommit migrated from 34204b6bc4
2018-10-30 17:16:51 -07:00
Nate McMaster
eb79d8f75e
Remove the EventNotification submodule
2018-10-30 17:10:11 -07:00
Nate McMaster
973edeb29f
List linux-arm64 as a supported RID ( #3769 )
2018-10-30 17:08:33 -07:00
Nate McMaster
3a68e6540d
Merge branch 'release/2.1' into release/2.2
2018-10-30 16:39:06 -07:00
Nate McMaster
45b0b83997
Merge branch 'release/2.1' into release/2.2
...
\n\nCommit migrated from 18fcffbd25
2018-10-30 16:39:06 -07:00
Nate McMaster
5460fd093e
Fix the package id for Microsoft.AspNetCore.BenchmarkRunner.Sources
...
\n\nCommit migrated from d0aa5c1701
2018-10-30 16:32:28 -07:00
Hao Kung
da9318f431
Block enabled 2fa in the UI without cookie consent ( #2035 )
...
* Block enabled 2fa in the UI without cookie consent
* Guard against feature not being there
* Set up tweak
* Fix
2018-10-30 16:23:55 -07:00
BrennanConroy
36ca210a65
[Java] Add null ref test for websocket
2018-10-30 15:43:43 -07:00
Nate McMaster
9b98b5679a
Merge branch 'release/2.2'
2018-10-30 15:43:15 -07:00
BrennanConroy
46a3d7e342
Merge branch 'release/2.2' of https://github.com/DHosseiny/SignalR into DHosseiny-release/2.2
2018-10-30 15:43:10 -07:00
Justin Kotalik
370490d2a3
Fix master package verison ( #1565 )
2018-10-30 15:31:03 -07:00
Nate McMaster
4c9c4a5cc8
Merge branch 'release/2.2'
2018-10-30 15:22:50 -07:00
Chris Ross (ASP.NET)
3e08bf8833
Move tests to net472
2018-10-30 15:18:52 -07:00
Pavel Krymets
6603f41677
Fix tests that were mocking ILogger ( #3066 )
2018-10-30 15:15:55 -07:00
Ajay Bhargav Baaskaran
970dbfd9d5
Resolve bad merge
2018-10-30 15:14:07 -07:00
Nate McMaster
a705aae147
Merge branch 'release/2.1' into release/2.2
2018-10-30 15:07:46 -07:00
Chris Ross (ASP.NET)
2451b68ca0
Rewrite Listener.ResponseSendFileTests
2018-10-30 14:58:23 -07:00