commits

date

comment

430b5f33055c
by davidmatson
(20 downloads)
Fri
11:54 PM

Disable OWIN host buffering according to buffer policy (fixes #1418).

66be22f34038
by davidmatson
(0 downloads)
Fri
11:50 PM

Handle web host routing exceptions by default (fixes #1355).

9751c4e8ca09
by davidmatson
(0 downloads)
Fri
11:09 PM

Log and return an error when TryComputeLength throws (fixes #1320).

8da67a018a5c
by davidmatson
(1 download)
Fri
9:52 PM

Incorporate code review feedback.

0457a339e406
by dougbu
(3 downloads)
Fri
9:00 PM

Correct format used when Html5DateRenderingMode==RFC3339
- http://aspnetwebstack.codeplex.com/workitem/479
- "EditorFor Date Value Does Not Output Correct Date Format As Per RFC 3339"
- Reported issue was a bug in HtmlHandler.Html5DateRenderingMode handling
- Code previously assumed any use of an edit format string indicated an
explicit [DisplayFormat] attribute
- Instead track whether edit format string came from [DataType] attribute
in new ModelMetadata.HasNonDefaultEditFormat property
- FxCop required me to refactor DataAnnotationsModelMetadataProvider slightly

3c3c825aacae
by Ryan Nowak
(4 downloads)
Fri
7:15 PM

Codeplex-1417 - Throw on ambiguous controller match in WebAPI Attribute Routing

c6abc068ce03
by phenning
(0 downloads)
Fri
6:39 PM

Update Microsoft.Owin references to 2.0.2

01376b80a334
by Tian Pan
(27 downloads)
Thu
10:22 PM

Issue1370: WebAPI AttributeRouting RoutePrefix issue
- Add IRoutePrefix
- Unseal RoutePrefixAttribute

897b9133d831
by Ryan Nowak
(1 download)
Thu
9:21 PM

Fix for Codeplex-1393

Disposing the HttpRouteCollection will now dispose the HttpMessageHandler
instances owned by those routes.

We want to fix this for use in scenarios where an API might have a limited
lifetime, which is possible in selfhost/owin.

f291ab8258da
by davidmatson
(9 downloads)
Thu
7:15 PM

Expose IDirectRouteProvider in MVC and Web API (fixes #1360).

1efec3289b32
by dougbu
(32 downloads)
Thu
5:21 AM

Fix 1362 & 1366; cache less to improve correctness and performance
"MVC5 Bug: Views are not compatible with Virtual Path Providers"
- https://aspnetwebstack.codeplex.com/workitem/1362
- Should never cache HostingEnvironment.VirtualPathProvider; this property
may change at any time.
- This bug is a regression from MVC4.

"MVC bug: Bad performance of views if ViewEngines.Engines is initialized
without HttpContext"
- https://aspnetwebstack.codeplex.com/workitem/1366
- ViewEngines.Engines may be read before HttpContext.Current is initialized,
leading to inefficient use of the NullViewLocationCache instance.

ed3bde41f54e
by Ryan Nowak
(16 downloads)
Wed
8:55 PM

Fixing FxCop violation

bd699bc92c03
by Ryan Nowak
(0 downloads)
Wed
8:53 PM

CR feedback

8c497f9e499e
by Yishai Galatzer
(33 downloads)
Wed
5:18 AM

Temporary fix: Disable fxcop rule MW1200, because it throws nullref.

3bfb4622f4dc
by dougbu
(0 downloads)
Wed
4:58 AM

Fix 1407, combine blank option and option label in EDDL()
- https://aspnetwebstack.codeplex.com/workitem/1407
- "EDDL() shows extra blank option in addition to option label"
- Special-case in EDDL(); don't pass option label to helper methods
- Add tests for these situations
- Add tests using an empty enum

1e55e5173c46
by dougbu
(0 downloads)
Wed
4:54 AM

Add comment for %MSBuild% setting
- CR follow-up

cac3d0b87473
by Tian Pan
(1 download)
Wed
4:18 AM

Fix resource racing on ports in OwinHostIntegrationTest

d2e43cb5dd83
by Yishai Galatzer
(2 downloads)
Wed
2:33 AM

Fix fxcop build break

35289ec6c986
by Tian Pan
(3 downloads)
Wed
1:15 AM

Issue 762: Support IgnoreRoute in Web API on WebHost, OWIN, and Self-Host.

39d1b2c7ce39
by davidmatson
(0 downloads)
Wed
1:09 AM

Do not treat HttpContent as containing chunked frames (fixes #1124).

96dc3442b858
by Yishai Galatzer
(1 download)
Wed
12:02 AM

Query support in portable libraries: CodePlex, https://aspnetwebstack.codeplex.com/workitem/1305

Description: Add query support in portable library,
the original support was missing because the namevaluepair
class does not exist in the portable version of .NET

This fix attempts re-use the same files and tests.

c8e2630d4483
by raghuramn
(61 downloads)
Nov 11
11:12 PM

Issue 1395: MediaTypeFormatter's ReadFromStreamAsync fails when tracing is
on

tracer tests that validate that the tracers override all the base class
methods do not take method overloads into account while verifying. Fixing
the test identified more issues with existing traces which are fixed as
well in this change.

24f0121f55f0
by raghuramn
(2 downloads)
Nov 11
10:33 PM

Issue 1409: Delta<T>.PUT overwrites navigation properties as well

Delta<T> doesn't know the IEdmType or the IEdmModel of the T. Hence
Delta<T>.Put resets the navigation properties to null as it cannot
distinguish between navigation and structural properties. This is
incorrect behavior according to OData spec and also causes issues with EF
as resetting the navigation properties might cause ForeignKey constraint
violations.

Fixing this by adding a ctor that takes the list of updatable
properties and resetting only them in Delta<T>.Put. The OData formatter
when it constructs Delta<T> during deserialization passes the structural
properties for this list.

5101edb4df3e
by raghuramn
(1 download)
Nov 11
9:53 PM

Issue 1128: Web Api 2-OData same variable name causes type error

b68d682b6822
by raghuramn
(7 downloads)
Nov 11
6:58 PM

Issue 670: Delta<T> should support non-settable collections.