8000 Tags · rbnswartz/elsa-core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: rbnswartz/elsa-core

Tags

2.0.0

Toggle 2.0.0's commit message
Add git version

1.2.2

Toggle 1.2.2's commit message
Improve JS value converter to support object target type

1.2.1

Toggle 1.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Replace TaskExecutingServer with StartupRunnerHostedService (elsa-wor…

…kflows#237)

This solves an issue where the Dashboard site would not be able to run in IIS, due to an IIS filter that expects a IISServer instance, while it was being decorated with a custom type.

Fortunately, as of .NET Core 3, background hosted services now execute before the server starts, which makes them perfect for async initialization.

1.2.0

Toggle 1.2.0's commit message
Fixed yaml serialisation and updated to YamlDotNet (elsa-workflows#236)

* Fixed Yaml serialisation/deserialisation

Copied json serializer settings from JsonTokenFormatter, apart from CamelCasePropertyNamesContractResolver, as the yaml already had the correct case, and this would cause activity state (which has PascalCasing) to be camelCased too

* Updated YamlDotNet.Standard to YamlDotNet

Switched package as YamlDotNet.Standard has been unlisted on Nuget

1.1.5

Toggle 1.1.5's commit message
Fix issue due to parallel access to DbContext

Fixes elsa-workflows#219

1.1.4

Toggle 1.1.4's commit message
Fix broken Sample23

1.1.3

Toggle 1.1.3's commit message
Add Elsa.Activities.Reflection package to solution

1.1.2

Toggle 1.1.2's commit message
Merge branch 'master' into develop

1.1.1

Toggle 1.1.1's commit message
Fix DI bug in SignalRequestHandler

1.1.0

Toggle 1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix object disposed bug (elsa-workflows#116)

* Refactor buggy SignalRequestHandler

For some reason, the following code is problematic:

await DecryptToken()
                .BindAsync(GetWorkflowInstanceAsync)
                .BindAsync(CheckIfExecutingAsync)
                .MapAsync(ResumeWorkflowAsync);

Basically, any lambda in the BindAsync and MapAsync could execute even after the containing method returned

* Implement better message handler registration without adding multiple IMediator services

* Abstracted Mediator service registration methods.
* Add Liquid support for JObject.
0