Skip to content

Bump the fastendpoints group with 3 updates - #182

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/fastendpoints-b044ec82e0
Open

Bump the fastendpoints group with 3 updates#182
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/fastendpoints-b044ec82e0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 21, 2026

Copy link
Copy Markdown
Contributor

Updated FastEndpoints from 8.2.0 to 8.3.0.

Release notes

Sourced from FastEndpoints's releases.

8.3


⚠️ Goal Sponsorship Level Not Yet Met ⚠️

Please join the discussion here and help out if you can.


New 🎉

'FastEndpoints.CommandRules' package for rule-based command dispatch

A new FastEndpoints.CommandRules package is now available for turning arbitrary input into one or more commands using small, ordered rules.

It's useful when an application event, webhook payload, request DTO, or domain object needs to fan out into different command-bus actions without putting branching logic in endpoints or handlers. Rules evaluate the input, build a command plan, and the dispatcher executes the selected commands immediately or queues them as jobs.

// map input model to a rule
bld.Services.AddCommandRules(o => o.Register<OrderPlaced, OrderPlacedRule>());

// define the rule to specify which commands should execute
sealed class OrderPlacedRule : CommandRule<OrderPlaced>
{
    public override bool CanHandle(OrderPlaced input)
        => input.IsPaid;

    public override IEnumerable<PlannedCommand> Build(OrderPlaced input)
    {
        yield return PlannedCommand.Create(new ReserveStock(input.OrderId));

        if (input.SendReceipt)
        {
            yield return new PlannedCommand(new SendReceipt(input.OrderId))
            {
                Mode = CommandDispatchMode.QueueAsJob
            };
        }
    }
}

// inject ICommandDispatcher<OrderPlaced> where the event/input is handled
await dispatcher.DispatchAsync(orderPlaced, ct);
Cached 'AppFixture' WAF disposal hook

... (truncated)

Commits viewable in compare view.

Updated FastEndpoints.Security from 8.2.0 to 8.3.0.

Release notes

Sourced from FastEndpoints.Security's releases.

8.3


⚠️ Goal Sponsorship Level Not Yet Met ⚠️

Please join the discussion here and help out if you can.


New 🎉

'FastEndpoints.CommandRules' package for rule-based command dispatch

A new FastEndpoints.CommandRules package is now available for turning arbitrary input into one or more commands using small, ordered rules.

It's useful when an application event, webhook payload, request DTO, or domain object needs to fan out into different command-bus actions without putting branching logic in endpoints or handlers. Rules evaluate the input, build a command plan, and the dispatcher executes the selected commands immediately or queues them as jobs.

// map input model to a rule
bld.Services.AddCommandRules(o => o.Register<OrderPlaced, OrderPlacedRule>());

// define the rule to specify which commands should execute
sealed class OrderPlacedRule : CommandRule<OrderPlaced>
{
    public override bool CanHandle(OrderPlaced input)
        => input.IsPaid;

    public override IEnumerable<PlannedCommand> Build(OrderPlaced input)
    {
        yield return PlannedCommand.Create(new ReserveStock(input.OrderId));

        if (input.SendReceipt)
        {
            yield return new PlannedCommand(new SendReceipt(input.OrderId))
            {
                Mode = CommandDispatchMode.QueueAsJob
            };
        }
    }
}

// inject ICommandDispatcher<OrderPlaced> where the event/input is handled
await dispatcher.DispatchAsync(orderPlaced, ct);
Cached 'AppFixture' WAF disposal hook

... (truncated)

Commits viewable in compare view.

Updated FastEndpoints.Swagger from 8.2.0 to 8.3.0.

Release notes

Sourced from FastEndpoints.Swagger's releases.

8.3


⚠️ Goal Sponsorship Level Not Yet Met ⚠️

Please join the discussion here and help out if you can.


New 🎉

'FastEndpoints.CommandRules' package for rule-based command dispatch

A new FastEndpoints.CommandRules package is now available for turning arbitrary input into one or more commands using small, ordered rules.

It's useful when an application event, webhook payload, request DTO, or domain object needs to fan out into different command-bus actions without putting branching logic in endpoints or handlers. Rules evaluate the input, build a command plan, and the dispatcher executes the selected commands immediately or queues them as jobs.

// map input model to a rule
bld.Services.AddCommandRules(o => o.Register<OrderPlaced, OrderPlacedRule>());

// define the rule to specify which commands should execute
sealed class OrderPlacedRule : CommandRule<OrderPlaced>
{
    public override bool CanHandle(OrderPlaced input)
        => input.IsPaid;

    public override IEnumerable<PlannedCommand> Build(OrderPlaced input)
    {
        yield return PlannedCommand.Create(new ReserveStock(input.OrderId));

        if (input.SendReceipt)
        {
            yield return new PlannedCommand(new SendReceipt(input.OrderId))
            {
                Mode = CommandDispatchMode.QueueAsJob
            };
        }
    }
}

// inject ICommandDispatcher<OrderPlaced> where the event/input is handled
await dispatcher.DispatchAsync(orderPlaced, ct);
Cached 'AppFixture' WAF disposal hook

... (truncated)

Commits viewable in compare view.

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps FastEndpoints from 8.2.0 to 8.3.0
Bumps FastEndpoints.Security from 8.2.0 to 8.3.0
Bumps FastEndpoints.Swagger from 8.2.0 to 8.3.0

---
updated-dependencies:
- dependency-name: FastEndpoints
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fastendpoints
- dependency-name: FastEndpoints.Security
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fastendpoints
- dependency-name: FastEndpoints.Swagger
  dependency-version: 8.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: fastendpoints
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the Dependencies Pull requests that update dependencies. label Aug 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Dependencies Pull requests that update dependencies.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant