chore(deps): update dependency autofac to v7.1.0 - autoclosed
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
Autofac (source) | nuget | minor |
7.0.1 -> 7.1.0
|
Release Notes
autofac/Autofac
v7.1.0
What's Changed
- Fix #1388: Re-enabled
RegsiterTypes
filtering. This was an accidental behavior regression where theRegisterTypes
method wouldn't filter out non-registerable types. -
RegisterType<T>
andRegisterType(Type t)
will now throw when non-registerable types are provided, for examplecontainerBuilder.RegisterType<IInterface>()
(you can't register interfaces - you can register thingsAs<IInterface>
). This used to throw at container build time; now it throws atRegisterType
time and it has a more precise error message so you can handle these issues more proactively.
Full Changelog: https://github.com/autofac/Autofac/compare/v7.0.1...v7.1.0
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.