This repository has been archived by the owner on May 7, 2020. It is now read-only.
v2.0.0
Breaking Changes
- netstandard 2.0 support
- StoveBootstrapper.Configuration -> StoveBoostrapper.StoveConfiguration
- Redis ported from .config based initialization to code based initialization
.UseStoveRedisCaching(configuration =>
{
configuration.ConfigurationOptions
.AddEndpoint("127.0.0.1")
.SetDefaultDatabase(0)
.SetConnectionTimeOut(TimeSpan.FromMinutes(5));
return configuration;
})
Features
- Stove.Serilog package created and ported Stove.NLog to Stove.Serilog on .netcore projects
- Stove.EntityFrameworkCore package created
Enhancements
- Lazy-loading enable-disable support for EF 6.x (#69)
- DefaultPrincipalAccessor's lifetimescope changed as Transient
Bugfixes
- Fixed Autofac.Extras.IocManager IsRegistered method bug (osoykan-archive/Autofac.Extras.IocManager#34)