quarkus-zeebe icon indicating copy to clipboard operation
quarkus-zeebe copied to clipboard

Camunda Platform 8 (Zeebe) Quarkus extension

Results 16 quarkus-zeebe issues
Sort by recently updated
recently updated
newest added

Bumps [quarkiverse-parent](https://github.com/quarkiverse/quarkiverse-parent) from 11 to 12. Release notes Sourced from quarkiverse-parent's releases. 12 What's Changed Bump impsort-maven-plugin from 1.7.0 to 1.8.0 by @​dependabot in quarkiverse/quarkiverse-parent#66 Format and import sort should...

dependencies

Bumps `quarkus.version` from 2.13.3.Final to 2.15.0.Final. Updates `quarkus-bom` from 2.13.3.Final to 2.15.0.Final Release notes Sourced from quarkus-bom's releases. 2.15.0.CR1 Major changes #29490 - SmallRye GraphQL 1.9.0 #29323 - Support filtering...

dependencies

Bumps `zeebe.version` from 8.1.4 to 8.1.5. Updates `zeebe-client-java` from 8.1.4 to 8.1.5 Commits 611d642 [maven-release-plugin] prepare release 8.1.5 a6b325b build(project): update go embedded version data 4ffe94d merge: #11160 91de863 fix(engine):...

dependencies

Hello Andrej, I help Max Andersen schedule the Quarkus Insights Podcast. Max and I were discussing showcasing extensions on upcoming episodes. https://quarkus.io/insights/ I wanted to reach out to you to...

Bumps `quarkus.version` from 3.9.4 to 3.10.0. Updates `io.quarkus:quarkus-bom` from 3.9.4 to 3.10.0 Release notes Sourced from io.quarkus:quarkus-bom's releases. 3.10.0.CR1 Major changes #36504 - Allow authentication mechanism selection for a REST...

dependencies

Bumps `zeebe.version` from 8.4.5 to 8.5.0. Updates `io.camunda:zeebe-client-java` from 8.4.5 to 8.5.0 Release notes Sourced from io.camunda:zeebe-client-java's releases. 8.5.0 Enhancements Broker Subscribe to a message boundary event on process instance...

dependencies

Hi zeebe api has added the function of assign a user task. Do you have any plans to add this function? https://docs.camunda.io/docs/apis-tools/zeebe-api-rest/specifications/assign-a-user-task/

Perhaps it is more a question then a bug. The Spring implentation for zeebe testing has zeebeTestEngine.waitForIdleState(). This is because of Threading issues with the engine to my understanding. This...

```kotlin package com.example.camunda.poc import io.quarkiverse.zeebe.JobWorker import io.quarkiverse.zeebe.Variable import jakarta.enterprise.context.ApplicationScoped @ApplicationScoped class MyJobWorker { @JobWorker fun myMethod(@Variable a: String, @Variable b: String): Map { print("a: $a") return mapOf("foo" to "bar") }...