Matheus Cruz

Results 65 issues of Matheus Cruz

## Context Using the Outbox API: ```java public Response createWithOutbox(OrderRequest request) { Log.info("Receiving request for creating an Order: " + request); String uuid = UUID.randomUUID().toString(); Order order = new Order(uuid,...

Actually when building a Java application using native mode (Spring Native and Quarkus). We are getting an error due to a SecureRandom at image heap: ```shell Error: Detected an instance...

**What would you like to be added**: Support for `run.shell` task, to: > Enables the execution of shell commands within a workflow, enabling workflows to interact with the underlying operating...

enhancement :pray:
Stale Issue

**Many thanks for submitting your Pull Request :heart:!** **What this PR does / why we need it**: Implement for `RunTask.shell` [task](https://github.com/serverlessworkflow/specification/blob/main/dsl-reference.md#shell-process). Closes #246 **Special notes for reviewers**: In progress, I...

The DevService are intermitent, sometimes the `/dapr/subscribe` is available to the DevService, sometimes no. We need to be sure that the endpoint is availble for Dapr DevService when it access...

bug

Using a record like it: ```java public record Order(String id, List items) { record OrderItem(Long id, String name, double price) { } } ``` ```java @POST @Path("/webhook/orders") @Topic(pubsubName = "rabbitmq",...

bug

We do not support Dapr Workflows, we need to add: * Support for Workflows * Add examples projects having as base https://github.com/diagrid-labs/workflow-patterns-spring-boot project.

Actually we do not have support for shared feature like others DevServices, it would be great if we have this feature working.