Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

v2.0.0

Compare
Choose a tag to compare
@osoykan osoykan released this 25 Sep 21:36
· 172 commits to master since this release

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