Skip to content

Releases: elsa-workflows/elsa-core

1.3.0

23 Sep 09:06
cd1c151
Compare
Choose a tag to compare

This release contains the following:

Fixes

  • Reverse WorkflowInstanceEntity.Scopes on deserialization (#342) by @iyhammad
  • Correct sample paths (#284) by @iyhammad
  • Fix bug in ForEach activity when the collection is empty (#313) by @Dandevmt
  • Updating ContentType in SendHTTPRequest to match WriteHTTPRequest (#322) by @martinisaksen
  • Add Exception property to WorkflowFault (#283) by @aburada
  • TriggerRequestHandler workflows to resume filtered by X-Correlation-ID header(s) (#289) by @flew2bits
  • Make AutoMapper internal to avoid collision with other frameworks like ABP (f44d7e1) by @sfmskywalker
  • Make Dashboard NotifierFilter work for non-controller based applications too, like ABP (d3032a8) by @sfmskywalker
  • Foreach generic list bug (#303) by @mertyildiz41
  • Update ForEach to expose Done and Iterate outcomes (#285) by @mertyildiz41

Thanks to all contributors for making this a release with many great improvements!

1.2.2

20 Feb 20:30
Compare
Choose a tag to compare

This release contains the following:

Fixes

  • Literal expression now supports non-empty but blank string values (#250) @wakuflair
  • Fixed stackoverflow when finding ancestors (#247) @jamesdoran
  • Improve JS value converter to support object target type @sfmskywalker

1.2.1

18 Jan 10:11
16e91e0
Compare
Choose a tag to compare

This patch release includes a fix allowing Elsa Dashboard to be hosted in IIS.

The reason the dashboard application could not be hosted in IIS was due to the fact that IServer was being decorated, causing some IIS startup filter to fail with an exception message along the lines of: "Running in an IIS process but the server is not configured to run in IIS".

The reason IServerwas decorated was to implement a startup task runner that would execute before the web server starts accepting requests.

However, with .NET Core 3, we can use IHostedService to implement async initialization tasks.
For more information, see Andrew Lock's blog post

1.2.0

16 Jan 20:41
Compare
Choose a tag to compare

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

1.1.5

06 Jan 20:23
Compare
Choose a tag to compare

This release contains a few fixes:

Fixes

  • #220 Fixed Serialization for Objects (@jamesdoran )
  • #219 A second operation started on this context before a previous operation completed (@sfmskywalker )
  • Fixed Readme file in Elsa.Persistence.EntityFrameworkCore with functioning connection strings (omitting double-quotes) (@sfmskywalker )

1.1.4

27 Dec 11:01
Compare
Choose a tag to compare

This release contains fixes and new features:

Improvements

  • Added PostgreSQL persistence provider (@nhughey-evo )
  • Added Startup activity (@Andale-online )
  • Custom Entity Framework Core schema support (@nhughey-evo )
  • YesSQL now stores schema version, preventing the provider from trying to create tables that were already created (@jamesdoran )

Fixes

Misc

  • Added an Elsa icon to the packages.

Many thanks to the contributors who made this release possible!

1.1.3

22 Nov 15:27
Compare
Choose a tag to compare

This release contains the following improvements and fixes:

Improvements

  • Switch activity is now case-insensitive (@jamesdoran) #182
  • Switch activity now supports a default branch (@Andale-online) #136
  • Jint's AllowCrl is now optional (@jamesdoran) #179
  • Connections are now hooked up by case-insensitive outcome names (@jamesdoran )
  • New and improved MassTransit activities (@petedavis )
  • Reflection-based activities (ExecuteMethod and SplitObject) (@Andale-online ) #132
  • MassTransit's ShoppingCart example (Sampl21) now implemented using an Elsa workfow (@petedavis )

Fixes

All issues closed as part of the 1.1 milestone: https://github.com/elsa-workflows/elsa-core/issues?q=is%3Aissue+is%3Aclosed

Many thanks to all contributors involved in this release!

1.1.2

06 Nov 20:43
Compare
Choose a tag to compare

This release contains mostly bug fixes:

  • Error handling for invalid expressions (#131)
  • Multiple activity registrations of the same type would cause duplicate key exception (#128) (@jamesdoran )
  • Fixed issue where named activities couldn't be used with Then() (#129) (@jamesdoran )
  • Improved table list view (#127)
  • Fixed broken YesSQL provider
  • Improved workflow variables serialization (#120)

Many thanks to the contributors who tested, reported and fixed these issues!

1.1.1

01 Nov 13:18
Compare
Choose a tag to compare

Fixes a DI bug in SignalRequestHandler

1.1.0

01 Nov 12:51
57f116c
Compare
Choose a tag to compare
  • Fix lifetime scope issue #115.
  • Remove the need to call AddMediatr and introduced AddNotificationHandler.