github elsa-workflows/elsa-core 1.2.0

latest releases: 3.1.3, 3.1.2, 3.1.1...
4 years ago

This release contains the following:

❗️ Breaking changes

Persistence Provider Registration

When registering your persistence provider, you now need to specify the DbContext type to use. For example, when using EF Core with SQL Server, do this:

services.AddElsa(x => x.AddEntityFrameworkStores<SqlServerContext>(...));

Timers Background Task

The TimersOptions in Elsa.Activities.Timers now uses the Duration type for the SweepInterval setting, instead of Period. Duration makes more sense, semantically speaking. This affects the value you specify in your appettings. For example, to configure the sweep interval to be every 5 minutes, your appsettings would look like this:

{
   "Elsa": {
      "Times": {
         "SweepInterval": "0:00:05:00"
      }
   }
}

🔨 Fixes & Changes

⭐️ New Features

Don't miss a new elsa-core release

NewReleases is sending notifications on new releases.