* Replace custom webhooks implementation with WebhooksCore Replaced the existing custom webhooks registration and dispatching system with the WebhooksCore library. This involved removing all previous custom webhook classes and interfaces, updating project dependencies, and modifying appsettings and program files to use the new configuration. The update simplifies the webhook handling architecture and leverages the features provided by WebhooksCore. * Hide API key in Datadog Docker compose file This change replaces the exposed Datadog API key with a placeholder "<HIDDEN>". This enhances security by preventing the API key from being visible in the version control system.
22 lines
906 B
XML
22 lines
906 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<configuration>
|
|
<packageSources>
|
|
<clear />
|
|
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
|
|
<add key="Elsa 3 Preview" value="https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json" />
|
|
<add key="Webhooks Core Preview" value="https://f.feedz.io/personal/webhooks-core/nuget/index.json" />
|
|
</packageSources>
|
|
<packageSourceMapping>
|
|
<packageSource key="NuGet official package source">
|
|
<package pattern="*" />
|
|
</packageSource>
|
|
<packageSource key="Elsa 3 Preview">
|
|
<package pattern="Elsa.*" />
|
|
</packageSource>
|
|
<packageSource key="Webhooks Core Preview">
|
|
<package pattern="WebhooksCore" />
|
|
<package pattern="WebhooksCore.*" />
|
|
</packageSource>
|
|
</packageSourceMapping>
|
|
</configuration> |