v6.0.0
What's Changed
Breaking change: Support has been updated to use Autofac.Extensions.DependencyInjection v8.0.0
This means IServiceScopeFactory
is now a singleton and child scopes are flat, not hierarchical. Any scope you create from IServiceScopeFactory
is a peer, not a hierarchy like you might see in core Autofac. Even if you create a scope from a scope, it'll use the singleton factory under the covers and all scopes will be peers. For more information, check out the Autofac.Extensions.DependencyInjection v8.0.0 release notes.
Full Changelog: v5.1.0...v6.0.0