Skip to content
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
ea28b9d
Update Solution and Docs to new Extensions namespace.
KnibbsyMan May 15, 2025
8661fe5
Remove Integration from Sql Projects.
KnibbsyMan May 15, 2025
1c78630
Remove Integration from Telnyx
KnibbsyMan May 15, 2025
61e3ec2
Remove Integration from Slack
KnibbsyMan May 15, 2025
9204661
Remove Integration from Azure projects and split them into new folders.
KnibbsyMan May 15, 2025
3dfeb31
Remove Integration from Agents.
KnibbsyMan May 15, 2025
46fd206
Import Kafka & MassTransit into ServiceBus.
KnibbsyMan May 16, 2025
49257a6
Update all projects to include the 'extensions' package tag.
KnibbsyMan May 16, 2025
b5b1851
Import Alterations from Core.
KnibbsyMan May 16, 2025
845a4c2
Import Caching from Core. Adds 'extensions' tag to projects.
KnibbsyMan May 16, 2025
8a9ec1e
Replace more 'integration' words with 'extensions'.
KnibbsyMan May 17, 2025
19873b9
Import Connections and Persistence providers into Extensions. Persist…
KnibbsyMan May 17, 2025
64196e5
Update Kafka namespace to include 'ServiceBus'.
KnibbsyMan May 17, 2025
10013ed
Import Files into Extensions and rename namespaces for both Files and…
KnibbsyMan May 17, 2025
bb078a2
Imports ProtoActors and renames the project. Resolves the dependency …
KnibbsyMan May 17, 2025
a3b8597
Import all Scripting projects into Extensions.
KnibbsyMan May 17, 2025
2ed69e7
Import Retention into Extensions
KnibbsyMan May 17, 2025
c12b231
Import Drop-Ins into Extensions.
KnibbsyMan May 17, 2025
c999d52
Import Scheduling projects into Extensions.
KnibbsyMan May 18, 2025
d130074
Import Http and Webhooks into Extensions.
KnibbsyMan May 18, 2025
a97e00d
Import Email project into Extensions.
KnibbsyMan May 18, 2025
eac5d37
Import Secrets into Extensions. Rename 'EntityFrameworkCore' to 'EFCore'
KnibbsyMan May 19, 2025
0133558
Import SasTokens into Security extensions.
KnibbsyMan May 19, 2025
84103f0
Import WorkflowContext projects to Extensions.
KnibbsyMan May 19, 2025
4c9e7c2
Remove package dependencies and replace with project dependencies for…
KnibbsyMan May 19, 2025
adbc6bc
Resolve Nuke build issue with new Project name.
KnibbsyMan May 19, 2025
c0a9983
Update Agents usings for new Persistence projects.
KnibbsyMan May 19, 2025
eef63fe
Update Scheduling usings. Renamed local ISchedule to QuartzIScheduler…
KnibbsyMan May 19, 2025
56dbb6e
Resolve last of using conflicts. Temporarily remove .UseJavascript fr…
KnibbsyMan May 19, 2025
23352d8
Update all Nuget packages.
KnibbsyMan May 19, 2025
e2714bb
Import Studio Secrets into Extensions.
KnibbsyMan May 19, 2025
b7da387
Import Studio WebHooks into Extensions. Rename to include Http to mat…
KnibbsyMan May 19, 2025
ef856f9
Import Studio WorkflowContext into Extensions.
KnibbsyMan May 19, 2025
02556ab
Add extensions to Package tags.
KnibbsyMan May 19, 2025
7a85912
Resolve all package warnings.
KnibbsyMan May 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .nuke/parameters.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "./build.schema.json",
"Solution": "Elsa.Integrations.sln"
"Solution": "Elsa.Extensions.sln"
}
28 changes: 14 additions & 14 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to Elsa Integrations
# Contributing to Elsa Extensions

Thank you for your interest in contributing to **Elsa Integrations**! 🎉
Thank you for your interest in contributing to **Elsa Extensions**! 🎉
We welcome contributions from the community to enhance workflow automation by adding new integrations, improving existing ones, fixing bugs, or refining documentation.

---
Expand All @@ -10,34 +10,34 @@ We welcome contributions from the community to enhance workflow automation by ad
### 1️⃣ Fork the Repository
Click the **Fork** button on the top right of this repository and clone it to your local machine:
```sh
git clone https://github.com/YOUR-USERNAME/elsa-integrations.git
cd elsa-integrations
git clone https://github.com/YOUR-USERNAME/elsa-extensions.git
cd elsa-extensions
```

### 2️⃣ Set Up the Development Environment
Ensure you have the following installed:
- .NET 8 or higher SDK
- A text editor or IDE (Visual Studio, Rider, VS Code)
- Docker (if working on integrations that require local services)
- Docker (if working on extensions that require local services)

Then restore dependencies:
```sh
dotnet restore
```

### 3️⃣ Choose an Issue or Feature
- Check our [Issues](https://github.com/elsa-workflows/elsa-integrations/issues) for **"good first issue"** labels.
- Check our [Issues](https://github.com/elsa-workflows/elsa-extensions/issues) for **"good first issue"** labels.
- If you have a new idea, open an issue to discuss before starting development.

### 4️⃣ Develop Your Changes
Create a new branch for your changes:
```sh
git checkout -b feature/integration-name
git checkout -b feature/extension-name
```
Follow the repository's structure when adding a new integration:
Follow the repository's structure when adding a new extensions:
```
[group-name]/
└── Elsa.Integrations.[integration-name]/
└── Elsa.[extension-name]/
├── Services/
├── Activities/
├── AI/
Expand All @@ -48,8 +48,8 @@ Follow the repository's structure when adding a new integration:
Ensure your code follows the project’s conventions and add meaningful commit messages:
```sh
git add .
git commit -m "Add support for [integration-name]"
git push origin feature/integration-name
git commit -m "Add support for [extension-name]"
git push origin feature/extensions-name
```

### 6️⃣ Create a Pull Request (PR)
Expand All @@ -67,12 +67,12 @@ Our team will review your PR, provide feedback if necessary, and merge it once a
## 🛠 Contribution Guidelines

- **Code Style**: Follow `.editorconfig` settings and existing project conventions.
- **Documentation**: Every integration must have a `README.md` at the root of its group folder or project. See [README-TEMPLATE](https://github.com/elsa-workflows/elsa-integrations/blob/main/README-TEMPLATE.md).
- **Documentation**: Every extension must have a `README.md` at the root of its group folder or project. See [README-TEMPLATE](https://github.com/elsa-workflows/elsa-extensions/blob/main/README-TEMPLATE.md).
- **Tests**: If possible, add unit/integration tests for your changes.

---

## 💬 Need Help?
If you need assistance, feel free to ask in [Discussions](https://github.com/elsa-workflows/elsa-integrations/discussions) or open an issue.
If you need assistance, feel free to ask in [Discussions](https://github.com/elsa-workflows/elsa-extensions/discussions) or open an issue.

🚀 Happy coding and thank you for contributing to Elsa Integrations!
🚀 Happy coding and thank you for contributing to Elsa Extensions!
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<Authors>Elsa Workflows Community</Authors>
<Copyright>2025</Copyright>

<PackageProjectUrl>https://github.com/elsa-workflows/elsa-integrations</PackageProjectUrl>
<RepositoryUrl>https://github.com/elsa-workflows/elsa-integrations</RepositoryUrl>
<PackageProjectUrl>https://github.com/elsa-workflows/elsa-extensions</PackageProjectUrl>
<RepositoryUrl>https://github.com/elsa-workflows/elsa-extensions</RepositoryUrl>
<RepositoryType>git</RepositoryType>

<LangVersion>latest</LangVersion>
Expand Down Expand Up @@ -38,7 +38,7 @@
</PropertyGroup>

<PropertyGroup Label="PackageVersions">
<ElsaVersion>3.6.0-preview.2935</ElsaVersion>
<ElsaVersion>3.6.0-preview.2950</ElsaVersion>
<ElsaStudioVersion>3.6.0-preview.1018</ElsaStudioVersion>
</PropertyGroup>
</Project>
129 changes: 91 additions & 38 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,34 +5,33 @@
</PropertyGroup>
<ItemGroup Label="Elsa">
<PackageVersion Include="Elsa" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Agents.Models" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Alterations" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Api.Common" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Common" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.EntityFrameworkCore" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.EntityFrameworkCore.Common" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.EntityFrameworkCore.MySql" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.EntityFrameworkCore.Sqlite" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.EntityFrameworkCore.SqlServer" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.EntityFrameworkCore.PostgreSql" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Expressions" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Features" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.JavaScript" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Studio.Workflows" Version="$(ElsaStudioVersion)" />
<PackageVersion Include="Elsa.Workflows.Core" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Workflows.Api" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Http" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Hosting.Management" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Identity" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.MassTransit" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.MassTransit.RabbitMq" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Webhooks" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Workflows.Management" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Workflows.Runtime" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Workflows.Runtime.ProtoActor" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Tenants" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Testing.Shared.Component" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Labels" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Resilience" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Tenants" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Testing.Shared.Component" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Workflows.Api" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Workflows.Core" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Workflows.Management" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Workflows.Runtime" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Workflows.Runtime.ProtoActor" Version="$(ElsaVersion)" />
<PackageVersion Include="Elsa.Studio.Core" Version="$(ElsaStudioVersion)" />
<PackageVersion Include="Elsa.Studio.Shared" Version="$(ElsaStudioVersion)" />
<PackageVersion Include="Elsa.Studio.Workflows" Version="$(ElsaStudioVersion)" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Azure.Identity" Version="1.13.2" />
<PackageVersion Include="Antlr4.Runtime.Standard" Version="4.13.1" />
<PackageVersion Include="AppAny.Quartz.EntityFrameworkCore.Migrations" Version="0.5.1" />
<PackageVersion Include="AppAny.Quartz.EntityFrameworkCore.Migrations.MySql" Version="0.5.1" />
<PackageVersion Include="AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL" Version="0.5.1" />
<PackageVersion Include="AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite" Version="0.5.1" />
<PackageVersion Include="AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer" Version="0.5.1" />
<PackageVersion Include="Azure.Identity" Version="1.14.0" />
<PackageVersion Include="Azure.Messaging.ServiceBus" Version="7.19.0" />
<PackageVersion Include="Azure.ResourceManager" Version="1.13.0" />
<PackageVersion Include="Azure.ResourceManager.AppContainers" Version="1.3.0" />
Expand All @@ -42,54 +41,108 @@
<PackageVersion Include="BenchmarkDotNet" Version="0.14.0" />
<PackageVersion Include="Bogus" Version="35.6.2" />
<PackageVersion Include="ConfigureAwait.Fody" Version="3.3.2" />
<PackageVersion Include="Confluent.Kafka" Version="2.10.0" />
<PackageVersion Include="Confluent.SchemaRegistry.Serdes.Avro" Version="2.10.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
<PackageVersion Include="Cronos" Version="0.11.0" />
<PackageVersion Include="Dapper" Version="2.1.66" />
<PackageVersion Include="Elastic.Clients.Elasticsearch" Version="9.0.3" />
<PackageVersion Include="FastEndpoints" Version="5.34.0" />
<PackageVersion Include="FastEndpoints.Security" Version="5.34.0" />
<PackageVersion Include="FastEndpoints.Swagger" Version="5.34.0" />
<PackageVersion Include="FluentMigrator" Version="7.1.0" />
<PackageVersion Include="FluentMigrator.Runner" Version="7.1.0" />
<PackageVersion Include="FluentStorage" Version="5.6.0" />
<PackageVersion Include="Fluid.Core" Version="2.24.0" />
<PackageVersion Include="Fody" Version="6.9.2" />
<PackageVersion Include="GitHubActionsTestLogger" Version="2.4.1" />
<PackageVersion Include="Google.Protobuf" Version="3.31.0" />
<PackageVersion Include="Grpc.Tools" Version="2.72.0" />
<PackageVersion Include="Hangfire" Version="1.8.20" />
<PackageVersion Include="Hangfire.MemoryStorage" Version="1.8.1.1" />
<PackageVersion Include="Hangfire.Storage.SQLite" Version="0.4.2" />
<PackageVersion Include="Humanizer.Core" Version="2.14.1" />
<PackageVersion Include="JetBrains.Annotations" Version="2024.3.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.12.0" />
<PackageVersion Include="Jint" Version="4.2.2" />
<PackageVersion Include="MailKit" Version="4.12.1" />
<PackageVersion Include="MassTransit" Version="8.4.1" />
<PackageVersion Include="MassTransit.Azure.ServiceBus.Core" Version="8.4.1" />
<PackageVersion Include="MassTransit.RabbitMQ" Version="8.4.1" />
<PackageVersion Include="Microsoft.AspNetCore.DataProtection.Abstractions" Version="9.0.5" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.14.0" />
<PackageVersion Include="Microsoft.Data.SqlClient" Version="6.0.2" />
<PackageVersion Include="Microsoft.Data.Sqlite" Version="9.0.4" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.4" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.4" />
<PackageVersion Include="Microsoft.Data.Sqlite" Version="9.0.5" />
<PackageVersion Include="Microsoft.Data.Sqlite.Core" Version="9.0.5" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.5" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.5" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.5" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite.Design" Version="1.1.6" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.4" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.4" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="9.0.4" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.4" />
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.4" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="9.0.4" />
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="9.0.4" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Http.Resilience" Version="9.5.0" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Options" Version="9.0.5" />
<PackageVersion Include="Microsoft.Extensions.Resilience" Version="9.5.0" />
<PackageVersion Include="Microsoft.Identity.Client" Version="4.72.0" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.49.0" />
<PackageVersion Include="Microsoft.SemanticKernel" Version="1.51.0" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<PackageVersion Include="MongoDB.Driver" Version="3.4.0" />
<PackageVersion Include="MongoDB.Driver.Core.Extensions.DiagnosticSources" Version="2.0.0" />
<PackageVersion Include="MongoDB.Driver.Extensions" Version="2.0.2" />
<PackageVersion Include="MySql.Data" Version="9.3.0" />
<PackageVersion Include="Npgsql" Version="9.0.3" />
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
<PackageVersion Include="NSubstitute" Version="5.3.0" />
<PackageVersion Include="NuGet.Packaging" Version="6.14.0" />
<PackageVersion Include="NuGet.Protocol" Version="6.14.0" />
<PackageVersion Include="Open.Linq.AsyncExtensions" Version="1.2.0" />
<PackageVersion Include="Oracle.EntityFrameworkCore" Version="9.23.80" />
<PackageVersion Include="Polly" Version="8.5.2" />
<PackageVersion Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0-preview.3.efcore.9.0.0" />
<PackageVersion Include="Proto.Actor" Version="1.7.0" />
<PackageVersion Include="Proto.Cluster" Version="1.7.0" />
<PackageVersion Include="Proto.Cluster.CodeGen" Version="1.7.0" />
<PackageVersion Include="Proto.Cluster.TestProvider" Version="1.7.0" />
<PackageVersion Include="Proto.OpenTelemetry" Version="1.7.0" />
<PackageVersion Include="Proto.Persistence" Version="1.7.0" />
<PackageVersion Include="Proto.Remote" Version="1.7.0" />
<PackageVersion Include="pythonnet" Version="3.1.0-preview2024-09-06" />
<PackageVersion Include="Quartz.Extensions.Hosting" Version="3.14.0" />
<PackageVersion Include="Quartz.Serialization.Json" Version="3.14.0" />
<PackageVersion Include="Refit" Version="8.0.0" />
<PackageVersion Include="Refit.HttpClientFactory" Version="8.0.0" />
<PackageVersion Include="Scrutor" Version="6.0.1" />
<PackageVersion Include="SlackNet" Version="0.16.1" />
<PackageVersion Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageVersion Include="System.Data.SqlClient" Version="4.9.0" />
<PackageVersion Include="System.Formats.Asn1" Version="9.0.5" />
<PackageVersion Include="System.Linq.Async" Version="6.0.1" />
<PackageVersion Include="System.Text.Json" Version="9.0.4" />
<PackageVersion Include="Testcontainers" Version="4.2.0" />
<PackageVersion Include="Testcontainers.PostgreSql" Version="4.4.0" />
<PackageVersion Include="Testcontainers.RabbitMq" Version="4.4.0" />
<PackageVersion Include="ThrottleDebounce" Version="2.0.1" />
<PackageVersion Include="WebhooksCore" Version="0.0.1" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.abstractions" Version="2.0.3" />
<PackageVersion Include="xunit.categories" Version="2.0.8" />
<PackageVersion Include="xunit.extensibility.core" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.0" />
<PackageVersion Include="System.Linq.Async" Version="6.0.1" />
<PackageVersion Include="System.Text.Json" Version="9.0.4" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.15" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.16" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.4" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.5" />
</ItemGroup>
</Project>
Loading
Loading