-
-
Notifications
You must be signed in to change notification settings - Fork 839
Web Api Integration Release Notes
Blair Conrad edited this page May 15, 2014
·
7 revisions
- Pushed the notion of per-request lifetime scope into Autofac core. Individual web/OWIN request mechanisms have been marked obsolete in favor of the new central method. (#466)
-
Updated
InstancePerApiRequest
to accept additional lifetime scope tags. -
Added a
RegisterHttpRequestMessage
method to the container builder that uses aDelegatingHandler
to make the currentHttpRequestMessage
resolvable in the dependency scope.
- Issue 426: Not all Web API filters are executed when multiple filters are applied to the same target.
- Resolved Issue 426: Not all Web API filters are executed when multiple filters are applied to the same target.
- Resolved Issue 418: Multiple
IAutofacActionFilter
causes each filter to execute multiple times. Filter wrappers are now only added once per ControllerType, FilterScope and MethodInfo combination.