This release is available through Nuget.
When upgrading from v4.x, please make sure you upgrade your application to the latest v4.x version of Simple Injector first. After that upgrade directly to the latest v5.3.x release.
This patch fixes a caching bug in GetRegistration
, which could cause a a call to GetRegistration
or GetService
to invalidly return null
.
- #909 A call to
GetRegistration(Type)
andGetRegistration<T>()
would returnnull
, even after that type was registered, whenGetRegistration
was called before that registration was made. - #909 A call to
GetService(Type)
would returnnull
instead of the registered service, when a call toGetRegistration
was made before the registration was made.