-
-
Notifications
You must be signed in to change notification settings - Fork 847
Web Api Integration Release Notes
Travis Illig edited this page May 9, 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
InstancePerApiRequestto accept additional lifetime scope tags. -
Added a
RegisterHttpRequestMessagemethod to the container builder that uses aDelegatingHandlerto make the currentHttpRequestMessageresolvable 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
IAutofacActionFiltercauses each filter to execute multiple times. Filter wrappers are now only added once per ControllerType, FilterScope and MethodInfo combination.