Releases: autofac/Autofac
Release list
v9.3.1
v9.3.0
v9.2.0
What's Changed
- Fix decorator parameter selection for derived-service dependencies (#1459) by @tillig in #1484
- Dispose container when an
IStartablethrows during Build (#1392) by @tillig in #1485 - Honor
ExternallyOwnedownership for decorators (#1402) by @tillig in #1486 - Only subscribe
Moduleregistry events when hooks are overridden (#1446) by @tillig in #1487 - Prefer a complete generic argument mapping for multi-interface open generics (#1464) by @tillig in #1489
- Fail fast when a scope-local registration binds its lifetime to an ancestor scope (#1460) by @tillig in #1488
- Add
GetRegistrationIdextension to expose a registration's unique ID (#1327) by @tillig in #1490 - Cache compiled factory-delegate generators to avoid recompilation across scopes (#1461) by @tillig in #1491
Full Changelog: v9.1.0...v9.2.0
v9.1.0
This is a pretty big release for Autofac with some major new functionality!
AnyKey Support
First, Autofac now natively supports the concept of AnyKey. It behaves the same way AnyKey works in Microsoft.Extensions.DependencyInjection, but it is native to Autofac directly. The unit tests here show some very detailed examples of usage, but on a high level:
var builder = new ContainerBuilder();
builder.RegisterType<Service>().Keyed<IService>(KeyedService.AnyKey);
var container = builder.Build();
// Registering as AnyKey allows it to respond to... any key!
var service = container.ResolveKeyed<IService>("service1");Inject Service Key Into Constructors
The new [ServiceKey] attribute allows you to inject the service key provided during resolution. This is handy in conjunction with AnyKey. Again, this is similar to the construct in Microsoft.Extensions.DependencyInjection, but with native Autofac.
First, mark up your class to take the constructor parameter.
public class Service : IService
{
private readonly string _id;
public Service([ServiceKey] string id) => _id = id;
}Then when you resolve the class, the service key will automatically be injected.
You can also make use of this in a lambda registration.
var builder = new ContainerBuilder();
builder.Register<Service>((ctx, p) => {
var key = p.TryGetKeyedServiceKey(out string value) ? value : null;
return new Service(key);
}).Keyed<Service>(KeyedService.AnyKey);Metrics
Some metrics have been introduced that can allow you to capture counters on how long middleware is taking, how often lock contention occurs, and so on.
Set the AUTOFAC_METRICS environment variable in your process to true or 1 to enable this feature. You can see the set of counters that will become available here.
β οΈ This is NOT FREE. Collecting counters and metrics will incur a performance hit, so it's not something you want to leave on in production.
General Performance Improvements
A pass over the whole system was made with an eye to trying to claw back some performance. Some additional caching was introduced to help reduce lookups and calculations of reflection data; and a few hot-path optimizations were made for the common situations.
Full Changelog: v9.0.0...v9.1.0
v9.0.0
Updated Autofac for .NET 10. New current set of target frameworks: net10.0;net8.0;netstandard2.1;netstandard2.0
Breaking Changes
Dropped support for net6.0, net7.0.
Additional Changes
- Added support for
net10.0. - Updated dependencies:
- System.Diagnostics.DiagnosticSource 8.0.1 => 10.0.0
- Microsoft.Bcl.AsyncInterfaces 8.0.0 => 10.0.0
Full Changelog: v8.4.0...v9.0.0
v8.4.0
Minor breaking change: The shim RequiresUnreferencedCodeAttribute has been changed from public to internal (#1462/#1463 - thanks @prochnowc!). This will only affect people targeting older/lower .NET standard frameworks who also rely on the shim attribute in Autofac. While it's technically breaking, it didn't seem like a great reason to do a full major release due to the edge case nature of the set of applications/users affected.
v8.3.0
What's Changed
- Corrected nullable markup on
IIndex<K,V>.TryGetValue()since it may return null on failure. - Composite services can now be keyed (#1458 - thanks @syko9000!)
- Packages for core Autofac are no longer published to MyGet. Instead, builds are now available from GitHub Packages This also means the actual packages themselves won't be manually attached to the release - you can get them from the package source now.
Full Changelog: v8.2.1...v8.3.0
v8.2.1
v8.2.0
What's Changed
- Fix #1437: Improve type cache handling for generic type arguments with respect to
AssemblyLoadContextdisposal (#1438 - thanks @hemirunner426!) - Added overloads for
RegisterServiceMiddlewareto assist with interceptors/decorators (#1439 - thanks @idiotsky!)
Full Changelog: v8.1.1...v8.2.0
v8.1.1
What's Changed
- Fix boxing in
ResolveRequest.operator==()(#1430, thanks @SergeiPavlov!) - Remove redundant null-checking in resolution extensions (#1428, thanks @SergeiPavlov!)
- Fix #1427: Ensure
WithPropertyregistration methods consistently allow null values (#1428)
Full Changelog: v8.1.0...v8.1.1