Skip to content

Releases: autofac/Autofac.Mvc

v6.1.0

23 Aug 15:27
Compare
Choose a tag to compare

What's Changed

  • Update base Autofac dependency to 6.4.0 so fixes and features are present by default.
  • Add support for IAsyncDisposable (thanks @pengweiqhca ! #40)

Full Changelog: v6.0.0...v6.1.0

v6.0.0

28 Sep 22:01
Compare
Choose a tag to compare

This is an Autofac v6.0.0 compatibility release.

Breaking change: Starting with Autofac 6.0, we now only target netstandard20 and netstandard21; we have removed the explicit target for net461. As such, the Autofac.Mvc5 project has been updated to .NET 4.7.2. We strongly encourage you to upgrade to .NET Framework 4.7.2 or higher, as per the .NET Standard Documentation to avoid any of the known dependency issues when using .NET Standard packages in .NET Framework 4.6.1.

v5.0.0

28 Jan 23:26
cec7bfd
Compare
Choose a tag to compare

This release is an update for compatibility with Autofac 5.0.0 and requires that new version. Autofac 5.0.0 does have some breaking changes - see the Autofac release notes for more information.

  • Dependencies updated to Autofac 5.0.0.
  • .NET 4.6.1 is now the minimum framework version.

v4.0.2

10 Apr 15:44
Compare
Choose a tag to compare

Fixed #20 - MVC integration throws NullReferenceException at request end when HttpContext.Current is null

v4.0.1

08 Feb 13:14
Compare
Choose a tag to compare

Reduced .NET Framework dependency down to 4.5.

v4.0.0

03 Jan 23:26
Compare
Choose a tag to compare
  • Updated to .NET 4.5 and the associated security model.
  • Minimum requirement Autofac 4.0+.
  • Added ability to set the default context accessor.
  • Added property injection support to ExtensibleActionInvoker.

v3.3.4

03 Jan 23:25
Compare
Choose a tag to compare

Made AutofacDependencyResolver.GetService() and .GetServices() methods virtual.

v3.3.3

03 Jan 23:24
Compare
Choose a tag to compare

This release occurred prior to switching Autofac components to separate repositories.

3.3.3

Fixed code analysis issues.

3.3.0

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. (autofac/Autofac#466)

3.1.0

Updated InstancePerHttpRequest to accept additional lifetime scope tags.