docs: add 3.6.0 release notes#130
Merged
sfmskywalker merged 2 commits intorelease/3.6.0from Mar 5, 2026
Merged
Conversation
Co-authored-by: sfmskywalker <938393+sfmskywalker@users.noreply.github.com>
Copilot stopped work on behalf of
sfmskywalker due to an error
March 5, 2026 14:04
Greptile SummaryThis PR adds a new Major highlights documented:
One minor issue: Two entries in the Full Changelog section are listed out of numerical order — Confidence Score: 4/5
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["3.6.0 Release"] --> B["⚠️ Breaking Changes"]
A --> C["✨ New Features"]
A --> D["🔧 Improvements"]
A --> E["🐛 Fixes"]
B --> B1["Repo rebrand: Integrations → Extensions\n(namespace/package renames)"]
B --> B2["EF Core projects moved to elsa-core"]
B --> B3["SQL Evaluator expression syntax overhaul\n(e.g. Variables.foo → Variable.foo)"]
B --> B4["Agent activity system refactor\n(ConfiguredAgentActivity → AgentActivity)"]
C --> C1["Elsa.Http.OpenApi\n(OpenAPI 3.0 + ReDoc UI)"]
C --> C2["Elsa.Csv / Elsa.IO modules"]
C --> C3["Elsa.Logging (Log activity)"]
C --> C4["Microsoft Agent Framework integration"]
C --> C5[".NET 10 multi-targeting"]
C --> C6["Azure Service Bus managed-identity overloads"]
D --> D1["Quartz.NET: clustering + resilience hardening"]
D --> D2["Azure Service Bus: config validation + factory fix"]
D --> D3["V3.6 schema migrations (PostgreSQL, MySQL, Oracle)"]
D --> D4["IKernelFactory made public for MCP extensibility"]
E --> E1["SQL evaluator variable-retrieval fixes"]
E --> E2["MongoDB FindManyAsync / store fixes"]
E --> E3["Dapper AggregateFaultCount default fix"]
E --> E4["Drop-in monitor async exception fix"]
Last reviewed commit: 3a180c2 |
Comment on lines
+158
to
+172
| - MongoDB: try-catch in `FindManyAsync`. ([#81](https://github.com/elsa-workflows/elsa-extensions/pull/81)) | ||
| - Add OpenAPI documentation extension for HTTP workflow triggers. ([#80](https://github.com/elsa-workflows/elsa-extensions/pull/80)) | ||
| - Add Logging features from `elsa-core 3.5`; replace WorkflowContexts module; move Slack to Communication folder. ([#83](https://github.com/elsa-workflows/elsa-extensions/pull/83)) | ||
| - Remove core EF Core projects (moved to `elsa-core`). ([#86](https://github.com/elsa-workflows/elsa-extensions/pull/86)) | ||
| - BREAKING: Enhance SQL evaluator — object-property navigation, new context prefixes, deprecated key removal. ([#87](https://github.com/elsa-workflows/elsa-extensions/pull/87)) | ||
| - Add CSV data processing module. ([#91](https://github.com/elsa-workflows/elsa-extensions/pull/91)) | ||
| - Add `.NET 10 (LTS)` target framework support. ([#94](https://github.com/elsa-workflows/elsa-extensions/pull/94)) | ||
| - Fix `AggregateFaultCount` int column default in Dapper V3.5 migration. ([#97](https://github.com/elsa-workflows/elsa-extensions/pull/97)) | ||
| - Microsoft Agent Framework integration; code-first agents; multi-agent workflows. ([#99](https://github.com/elsa-workflows/elsa-extensions/pull/99)) | ||
| - `UseAzureServiceBus` overloads for custom `ServiceBusClient`. ([#100](https://github.com/elsa-workflows/elsa-extensions/pull/100)) | ||
| - Fix resource leak in `AppComponentTest`. ([#105](https://github.com/elsa-workflows/elsa-extensions/pull/105)) | ||
| - Refactor `QuartzJobTransientRetryTests`. ([#106](https://github.com/elsa-workflows/elsa-extensions/pull/106)) | ||
| - Refactor agent activity system; rename `ConfiguredAgentActivity` → `AgentActivity`. ([#107](https://github.com/elsa-workflows/elsa-extensions/pull/107)) | ||
| - Add `Elsa.Http.OpenApi` project to solution. ([#108](https://github.com/elsa-workflows/elsa-extensions/pull/108)) | ||
| - Quartz.NET resilience via `Elsa.Resilience.Core`; add retry unit tests. ([#104](https://github.com/elsa-workflows/elsa-extensions/pull/104)) |
There was a problem hiding this comment.
Two entries in the Full Changelog section are out of numerical order:
- Line 158–159:
#81appears before#80(should be swapped) - Line 172:
#104appears after#108(should be placed before#105)
Reordering these entries will make the changelog easier to scan:
Suggested change
| - MongoDB: try-catch in `FindManyAsync`. ([#81](https://github.com/elsa-workflows/elsa-extensions/pull/81)) | |
| - Add OpenAPI documentation extension for HTTP workflow triggers. ([#80](https://github.com/elsa-workflows/elsa-extensions/pull/80)) | |
| - Add Logging features from `elsa-core 3.5`; replace WorkflowContexts module; move Slack to Communication folder. ([#83](https://github.com/elsa-workflows/elsa-extensions/pull/83)) | |
| - Remove core EF Core projects (moved to `elsa-core`). ([#86](https://github.com/elsa-workflows/elsa-extensions/pull/86)) | |
| - BREAKING: Enhance SQL evaluator — object-property navigation, new context prefixes, deprecated key removal. ([#87](https://github.com/elsa-workflows/elsa-extensions/pull/87)) | |
| - Add CSV data processing module. ([#91](https://github.com/elsa-workflows/elsa-extensions/pull/91)) | |
| - Add `.NET 10 (LTS)` target framework support. ([#94](https://github.com/elsa-workflows/elsa-extensions/pull/94)) | |
| - Fix `AggregateFaultCount` int column default in Dapper V3.5 migration. ([#97](https://github.com/elsa-workflows/elsa-extensions/pull/97)) | |
| - Microsoft Agent Framework integration; code-first agents; multi-agent workflows. ([#99](https://github.com/elsa-workflows/elsa-extensions/pull/99)) | |
| - `UseAzureServiceBus` overloads for custom `ServiceBusClient`. ([#100](https://github.com/elsa-workflows/elsa-extensions/pull/100)) | |
| - Fix resource leak in `AppComponentTest`. ([#105](https://github.com/elsa-workflows/elsa-extensions/pull/105)) | |
| - Refactor `QuartzJobTransientRetryTests`. ([#106](https://github.com/elsa-workflows/elsa-extensions/pull/106)) | |
| - Refactor agent activity system; rename `ConfiguredAgentActivity` → `AgentActivity`. ([#107](https://github.com/elsa-workflows/elsa-extensions/pull/107)) | |
| - Add `Elsa.Http.OpenApi` project to solution. ([#108](https://github.com/elsa-workflows/elsa-extensions/pull/108)) | |
| - Quartz.NET resilience via `Elsa.Resilience.Core`; add retry unit tests. ([#104](https://github.com/elsa-workflows/elsa-extensions/pull/104)) | |
| - Add IO module from `elsa-core`. ([#74](https://github.com/elsa-workflows/elsa-extensions/pull/74), [#75](https://github.com/elsa-workflows/elsa-extensions/pull/75), [#76](https://github.com/elsa-workflows/elsa-extensions/pull/76), [#77](https://github.com/elsa-workflows/elsa-extensions/pull/77)) | |
| - Add OpenAPI documentation extension for HTTP workflow triggers. ([#80](https://github.com/elsa-workflows/elsa-extensions/pull/80)) | |
| - MongoDB: try-catch in `FindManyAsync`. ([#81](https://github.com/elsa-workflows/elsa-extensions/pull/81)) | |
| - Add Logging features from `elsa-core 3.5`; replace WorkflowContexts module; move Slack to Communication folder. ([#83](https://github.com/elsa-workflows/elsa-extensions/pull/83)) | |
| - Remove core EF Core projects (moved to `elsa-core`). ([#86](https://github.com/elsa-workflows/elsa-extensions/pull/86)) | |
| - BREAKING: Enhance SQL evaluator — object-property navigation, new context prefixes, deprecated key removal. ([#87](https://github.com/elsa-workflows/elsa-extensions/pull/87)) | |
| - Add CSV data processing module. ([#91](https://github.com/elsa-workflows/elsa-extensions/pull/91)) | |
| - Add `.NET 10 (LTS)` target framework support. ([#94](https://github.com/elsa-workflows/elsa-extensions/pull/94)) | |
| - Fix `AggregateFaultCount` int column default in Dapper V3.5 migration. ([#97](https://github.com/elsa-workflows/elsa-extensions/pull/97)) | |
| - Microsoft Agent Framework integration; code-first agents; multi-agent workflows. ([#99](https://github.com/elsa-workflows/elsa-extensions/pull/99)) | |
| - `UseAzureServiceBus` overloads for custom `ServiceBusClient`. ([#100](https://github.com/elsa-workflows/elsa-extensions/pull/100)) | |
| - Quartz.NET resilience via `Elsa.Resilience.Core`; add retry unit tests. ([#104](https://github.com/elsa-workflows/elsa-extensions/pull/104)) | |
| - Fix resource leak in `AppComponentTest`. ([#105](https://github.com/elsa-workflows/elsa-extensions/pull/105)) | |
| - Refactor `QuartzJobTransientRetryTests`. ([#106](https://github.com/elsa-workflows/elsa-extensions/pull/106)) | |
| - Refactor agent activity system; rename `ConfiguredAgentActivity` → `AgentActivity`. ([#107](https://github.com/elsa-workflows/elsa-extensions/pull/107)) | |
| - Add `Elsa.Http.OpenApi` project to solution. ([#108](https://github.com/elsa-workflows/elsa-extensions/pull/108)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
3.6.0(compared to3.5.3) using the release-notes agentdoc/changelogs/3.6.0.md✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.