-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(camunda-client): replace zeebe-client by camunda-client #3826
refactor(camunda-client): replace zeebe-client by camunda-client #3826
Conversation
@@ -86,8 +86,8 @@ | |||
} | |||
|
|||
@SuppressWarnings({"rawtypes", "unchecked"}) | |||
public ZeebeFuture<ProcessInstanceEvent> send() { | |||
ZeebeClientFutureImpl future = new ZeebeClientFutureImpl<>(); | |||
public CamundaFuture<ProcessInstanceEvent> send() { |
Check notice
Code scanning / CodeQL
Missing Override annotation Note test
FinalCommandStep.send
@@ -140,7 +141,7 @@ | |||
new ProcessDefinitionVersion( | |||
processDef.getProcessDefinitionKey(), processDef.getVersion())))); | |||
|
|||
var bpmnTest = ZeebeTest.with(zeebeClient).deploy(model).createInstance(); | |||
var bpmnTest = ZeebeTest.with(camundaClient).deploy(model).createInstance(); |
Check notice
Code scanning / CodeQL
Unread local variable Note test
19c270b
to
b494f5a
Compare
…-java-client-artifact-name-change
Map<String, Object> customProperties) | ||
Map<String, Object> customProperties, | ||
String processDefinitionId, | ||
Long processInstanceKey) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is that not in main already?
Co-authored-by: Jonathan <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great thanks!
/backport |
Backport failed for Please cherry-pick the changes locally and resolve any conflicts. git fetch origin release/8.7
git worktree add -d .worktree/backport-3826-to-release/8.7 origin/release/8.7
cd .worktree/backport-3826-to-release/8.7
git switch --create backport-3826-to-release/8.7
git cherry-pick -x 611bcfe4df88e77e36a242b5e3f5dd12387ee270 |
* refactor(camunda-client): 1st commit, further investigation needed merging * refactor(camunda-client): fixing the issue, refactor is done * refactor(camunda-client) bring a single camunda version * refactor(camunda-client) bring a single camunda version 5 * refactor(camunda-client) bring a single camunda version 6 * Update connectors/http/rest/README.peb Co-authored-by: Jonathan <[email protected]> --------- Co-authored-by: Jonathan <[email protected]> (cherry picked from commit 611bcfe)
…) (#3842) * refactor(camunda-client): 1st commit, further investigation needed merging * refactor(camunda-client): fixing the issue, refactor is done * refactor(camunda-client) bring a single camunda version * refactor(camunda-client) bring a single camunda version 5 * refactor(camunda-client) bring a single camunda version 6 * Update connectors/http/rest/README.peb Co-authored-by: Jonathan <[email protected]> --------- Co-authored-by: Jonathan <[email protected]> (cherry picked from commit 611bcfe) Co-authored-by: Mathias Vandaele <[email protected]>
Description
Replace
zeebe-client
dependency bycamunda-client
Related issues
closes #3807
Checklist
no milestone
label.