Skip to content
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

Unflake tests with published messages #1040

Merged
3 commits merged into from
Jan 22, 2024
Merged

Unflake tests with published messages #1040

3 commits merged into from
Jan 22, 2024

Conversation

korthout
Copy link
Member

@korthout korthout commented Jan 19, 2024

Description

ZPT test cases that manipulate time should not buffer messages for a shorter period than they want to travel through time because the message expires.

Most often, the message expiry is not the event that your test wants to travel through time for, but rather you're doing so to wait for a timer event to trigger. However, time travel in ZPT is only deterministic in the sense that it awaits busy and idle state after time manipulation. That includes message expiry.

I've changed all tests to default to publishing messages without a TTL, so they aren't buffered. This means they cannot expire later during time travel. Instead, messages published without a TTL expire immediately when published.

I've also updated the example test case that showcases both message publication and time travel in the same test case.

This resolves a flaky test.

Related issues

closes #984

Definition of Done

Not all items need to be done depending on the issue and the pull request.

Code changes:

  • The changes are backwards compatibility with previous versions
  • If it fixes a bug then PRs are created to backport the fix

Testing:

  • There are unit/integration tests that verify all acceptance criterias of the issue
  • New tests are written to ensure backwards compatibility with further versions
  • The behavior is tested manually

Documentation:

  • Javadoc has been written
  • The documentation is updated

When ZPT tests perform time travel they typically do so in the
expectation that something has happened in the engine. For example,
that a timer has triggered. So, the time travel function of ZPT awaits
for busy state followed by idle state before allowing the test to
continue.

Since message expiration is also busy state, it can happen that a timer
has not yet triggered in the engine after time traveling because of a
message expiration due to the time traveling.

It thus makes sense that we avoid buffering messages in tests unless
nescessary. By default, messages published in tests were published with
a TTL of 1 minute. I've now changed this to ZERO to disable buffering.

Note that two specific tests require messages to be published with a
TTL. Tests are isolated because a new engine is created for each test
case.
ZPT test cases that also use timetravel should either:
- not buffer messages
- buffer messages for longer then they travel through time

When a buffered message expires during time travel, this can be detected
by ZPT as busy and idle state, rather than the actual event your test is
waiting for like a timer event that should trigger.

This can be the cause of flaky tests, and was so for us, because we run
these example test cases as well.
@korthout
Copy link
Member Author

I've run the related flaky test #984 locally, noticing that it failed about every third run. After the fix, I ran it successfully dozens of times. I've also run the entire test suite several times to verify that I hadn't created any new flaky tests.

@korthout korthout marked this pull request as ready for review January 19, 2024 17:51
Copy link

github-actions bot commented Jan 19, 2024

Test Results

 50 files  ±0   50 suites  ±0   1m 42s ⏱️ -32s
134 tests ±0  134 ✅ ±0  0 💤 ±0  0 ❌ ±0 
426 runs  ±0  426 ✅ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit 5e5221e. ± Comparison against base commit c3c1ec1.

♻️ This comment has been updated with latest results.

@tmetzke
Copy link
Member

tmetzke commented Jan 22, 2024

@korthout, have you run ZPT test cases by any chance, using your changes?
If I get your changes right, this test case in ZPT needs to be adjusted because now the message expires directly and the test case fails: https://github.com/camunda/zeebe-process-test/blob/main/qa/abstracts/src/main/java/io/camunda/zeebe/process/test/qa/abstracts/assertions/AbstractMessageAssertTest.java#L269.

Off-topic: another good reason to move ZPT into the repo 🙂

@korthout
Copy link
Member Author

@korthout, have you run ZPT test cases by any chance, using your changes? If I get your changes right, this test case in ZPT needs to be adjusted because now the message expires directly and the test case fails: https://github.com/camunda/zeebe-process-test/blob/main/qa/abstracts/src/main/java/io/camunda/zeebe/process/test/qa/abstracts/assertions/AbstractMessageAssertTest.java#L269.

The testHasExpiredFailure test case expects the message to not expire after publishing it. It depended on the message being published with a TTL of 1 minute (in Utilities.sendMessage). However, as I'm changing the behavior of this utility method to publish messages without a TTL, the message immediately expires on publication. That's expected behavior. The test must be adjusted because it explicitly needs to publish a message with some TTL.

I have run all ZPT tests multiple times:

I've also run the entire test suite several times to verify that I hadn't created any new flaky tests.

Does that make sense @tmetzke ?

@tmetzke tmetzke self-requested a review January 22, 2024 13:10
@tmetzke
Copy link
Member

tmetzke commented Jan 22, 2024

@korthout, have you run ZPT test cases by any chance, using your changes? If I get your changes right, this test case in ZPT needs to be adjusted because now the message expires directly and the test case fails: https://github.com/camunda/zeebe-process-test/blob/main/qa/abstracts/src/main/java/io/camunda/zeebe/process/test/qa/abstracts/assertions/AbstractMessageAssertTest.java#L269.

The testHasExpiredFailure test case expects the message to not expire after publishing it. It depended on the message being published with a TTL of 1 minute (in Utilities.sendMessage). However, as I'm changing the behavior of this utility method to publish messages without a TTL, the message immediately expires on publication. That's expected behavior. The test must be adjusted because it explicitly needs to publish a message with some TTL.

I have run all ZPT tests multiple times:

I've also run the entire test suite several times to verify that I hadn't created any new flaky tests.

Does that make sense @tmetzke ?

That makes a ton of sense, exactly what I expected. Thanks, @korthout 👍
I had mistaken this for a change in Zeebe itself first, that's why I was wondering how it'll affect ZPT. Since it's in ZPT itself, you took care of everything I mentioned already.

Copy link
Member

@tmetzke tmetzke left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 A really cool change, @korthout, I like the simplicity of it and the effect it has, making things more straightforward and robust here at the same time.
💭 I added a thought that shouldn't block you from merging here so I'll approve this already from my end.

@korthout korthout requested a review from tmetzke January 22, 2024 13:32
Copy link
Member

@tmetzke tmetzke left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 Perfect, @korthout, that's nice ⭐

@korthout
Copy link
Member Author

Still using bors here - another reason to move ZPT into the Zeebe repo 🌟

bors merge

@ghost
Copy link

ghost commented Jan 22, 2024

Build succeeded:

@ghost ghost merged commit 6769a0a into main Jan 22, 2024
11 checks passed
@ghost ghost deleted the korthout-984-unflake-test branch January 22, 2024 13:45
@backport-action
Copy link
Collaborator

Successfully created backport PR for stable/8.1:

@backport-action
Copy link
Collaborator

Successfully created backport PR for stable/8.2:

@backport-action
Copy link
Collaborator

Successfully created backport PR for stable/8.3:

@backport-action
Copy link
Collaborator

Successfully created backport PR for stable/8.4:

ghost pushed a commit that referenced this pull request Jan 22, 2024
1042: [Backport stable/8.2] Unflake tests with published messages r=github-actions[bot] a=backport-action

# Description
Backport of #1040 to `stable/8.2`.

relates to #984

Co-authored-by: Nico Korthout <nico.korthout@camunda.com>
ghost pushed a commit that referenced this pull request Jan 22, 2024
1041: [Backport stable/8.1] Unflake tests with published messages r=github-actions[bot] a=backport-action

# Description
Backport of #1040 to `stable/8.1`.

relates to #984

Co-authored-by: Nico Korthout <nico.korthout@camunda.com>
ghost pushed a commit that referenced this pull request Jan 22, 2024
1043: [Backport stable/8.3] Unflake tests with published messages r=github-actions[bot] a=backport-action

# Description
Backport of #1040 to `stable/8.3`.

relates to #984

Co-authored-by: Nico Korthout <nico.korthout@camunda.com>
ghost pushed a commit that referenced this pull request Jan 22, 2024
1044: [Backport stable/8.4] Unflake tests with published messages r=github-actions[bot] a=backport-action

# Description
Backport of #1040 to `stable/8.4`.

relates to #984

Co-authored-by: Nico Korthout <nico.korthout@camunda.com>
github-merge-queue bot referenced this pull request in camunda/camunda Apr 17, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[io.camunda:zeebe-process-test-filters](https://togithub.com/camunda-community-hub/zeebe-process-test-root/zeebe-process-test-filters/)
([source](https://togithub.com/camunda/zeebe-process-test)) | `8.4.5` ->
`8.5.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.camunda:zeebe-process-test-filters/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.camunda:zeebe-process-test-filters/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.camunda:zeebe-process-test-filters/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.camunda:zeebe-process-test-filters/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[io.camunda:zeebe-process-test-assertions](https://togithub.com/camunda-community-hub/zeebe-process-test-root/zeebe-process-test-assertions/)
([source](https://togithub.com/camunda/zeebe-process-test)) | `8.4.5` ->
`8.5.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.camunda:zeebe-process-test-assertions/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.camunda:zeebe-process-test-assertions/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.camunda:zeebe-process-test-assertions/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.camunda:zeebe-process-test-assertions/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>camunda/zeebe-process-test
(io.camunda:zeebe-process-test-filters)</summary>

###
[`v8.5.0`](https://togithub.com/camunda/zeebe-process-test/releases/tag/8.5.0)

[Compare
Source](https://togithub.com/camunda/zeebe-process-test/compare/8.4.6...8.5.0)

##### What's Changed

- Support using process instance migration from the zeebe client by
[@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1012](https://togithub.com/camunda/zeebe-process-test/pull/1012)
- Add support for StreamActivatedJobs RPC by
[@&#8203;npepinpe](https://togithub.com/npepinpe) in
[https://github.com/camunda/zeebe-process-test/pull/1020](https://togithub.com/camunda/zeebe-process-test/pull/1020)
- build(deps): Bump net.java.dev.jna:jna from 5.13.0 to 5.14.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1006](https://togithub.com/camunda/zeebe-process-test/pull/1006)
- build(deps): Bump io.netty:netty-bom from 4.1.100.Final to
4.1.104.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1009](https://togithub.com/camunda/zeebe-process-test/pull/1009)
- build(deps): Bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1010](https://togithub.com/camunda/zeebe-process-test/pull/1010)
- build(deps): Bump dependency.slf4j.version from 2.0.9 to 2.0.11 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1023](https://togithub.com/camunda/zeebe-process-test/pull/1023)
- build(deps): Bump org.assertj:assertj-core from 3.24.2 to 3.25.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1022](https://togithub.com/camunda/zeebe-process-test/pull/1022)
- Release 8.4.0 by [@&#8203;camundait](https://togithub.com/camundait)
in
[https://github.com/camunda/zeebe-process-test/pull/1019](https://togithub.com/camunda/zeebe-process-test/pull/1019)
- build(deps): Bump org.camunda.feel:feel-engine from 1.17.3 to 1.17.4
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1025](https://togithub.com/camunda/zeebe-process-test/pull/1025)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.29.0 to 2.30.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1024](https://togithub.com/camunda/zeebe-process-test/pull/1024)
- build(deps): Bump org.apache.maven.plugins:maven-surefire-plugin from
3.2.2 to 3.2.5 by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1026](https://togithub.com/camunda/zeebe-process-test/pull/1026)
- build(deps): Bump com.fasterxml.jackson:jackson-bom from 2.16.0 to
2.16.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1027](https://togithub.com/camunda/zeebe-process-test/pull/1027)
- build(deps): Bump net.bytebuddy:byte-buddy from 1.14.10 to 1.14.11 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1029](https://togithub.com/camunda/zeebe-process-test/pull/1029)
- build(deps): Bump dependency.spring.version from 6.1.1 to 6.1.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1030](https://togithub.com/camunda/zeebe-process-test/pull/1030)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.23.0 to 2.24.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1031](https://togithub.com/camunda/zeebe-process-test/pull/1031)
- build(deps): Bump com.google.guava:guava from 32.1.3-jre to 33.0.0-jre
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1033](https://togithub.com/camunda/zeebe-process-test/pull/1033)
- Timer events fail with specific values by
[@&#8203;ana-vinogradova-camunda](https://togithub.com/ana-vinogradova-camunda)
in
[https://github.com/camunda/zeebe-process-test/pull/1028](https://togithub.com/camunda/zeebe-process-test/pull/1028)
- build(deps): Bump io.netty:netty-bom from 4.1.104.Final to
4.1.105.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1035](https://togithub.com/camunda/zeebe-process-test/pull/1035)
- build(deps): Bump com.google.protobuf:protobuf-java from 3.25.1 to
3.25.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1034](https://togithub.com/camunda/zeebe-process-test/pull/1034)
- build(deps): Bump com.google.googlejavaformat:google-java-format from
1.18.1 to 1.19.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1036](https://togithub.com/camunda/zeebe-process-test/pull/1036)
- build(deps): Bump org.codehaus.mojo:flatten-maven-plugin from 1.5.0 to
1.6.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1037](https://togithub.com/camunda/zeebe-process-test/pull/1037)
- docs: charset issues on windows by
[@&#8203;jonathanlukas](https://togithub.com/jonathanlukas) in
[https://github.com/camunda/zeebe-process-test/pull/1008](https://togithub.com/camunda/zeebe-process-test/pull/1008)
- build(deps): Bump io.netty:netty-bom from 4.1.105.Final to
4.1.106.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1038](https://togithub.com/camunda/zeebe-process-test/pull/1038)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.30.0 to 2.31.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1039](https://togithub.com/camunda/zeebe-process-test/pull/1039)
- Unflake tests with published messages by
[@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1040](https://togithub.com/camunda/zeebe-process-test/pull/1040)
- build(deps): Bump io.grpc:grpc-bom from 1.60.0 to 1.61.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1047](https://togithub.com/camunda/zeebe-process-test/pull/1047)
- build(deps): Bump org.assertj:assertj-core from 3.25.1 to 3.25.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1050](https://togithub.com/camunda/zeebe-process-test/pull/1050)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.31.0 to 2.32.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1051](https://togithub.com/camunda/zeebe-process-test/pull/1051)
- build(deps): Bump dependency.testcontainers.version from 1.19.3 to
1.19.4 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1052](https://togithub.com/camunda/zeebe-process-test/pull/1052)
- Unflake test case EngineClientTest.shouldMigrateProcessInstance by
[@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1046](https://togithub.com/camunda/zeebe-process-test/pull/1046)
- build(deps): Bump slackapi/slack-github-action from 1.24.0 to 1.25.0
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1055](https://togithub.com/camunda/zeebe-process-test/pull/1055)
- fix: Add `fetchVariable` parameter support in ActivateJobs RPC by
[@&#8203;ce-dmelnych](https://togithub.com/ce-dmelnych) in
[https://github.com/camunda/zeebe-process-test/pull/1058](https://togithub.com/camunda/zeebe-process-test/pull/1058)
- Fix InMemoryDb on zeebe 8.5.0-SNAPSHOT with changes to column family
type by [@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1057](https://togithub.com/camunda/zeebe-process-test/pull/1057)
- build(deps): Bump org.apache.maven.plugins:maven-javadoc-plugin from
3.6.2 to 3.6.3 by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/999](https://togithub.com/camunda/zeebe-process-test/pull/999)
- Adding logging for further troubleshooting of a flaky test by
[@&#8203;ana-vinogradova-camunda](https://togithub.com/ana-vinogradova-camunda)
in
[https://github.com/camunda/zeebe-process-test/pull/1056](https://togithub.com/camunda/zeebe-process-test/pull/1056)
- build(deps): Bump hashicorp/vault-action from 2.7.4 to 2.7.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1063](https://togithub.com/camunda/zeebe-process-test/pull/1063)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.32.0 to 2.33.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1064](https://togithub.com/camunda/zeebe-process-test/pull/1064)
- build(deps): Bump hashicorp/vault-action from 2.7.5 to 2.8.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1065](https://togithub.com/camunda/zeebe-process-test/pull/1065)
- build(deps): Bump io.grpc:grpc-bom from 1.61.0 to 1.61.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1068](https://togithub.com/camunda/zeebe-process-test/pull/1068)
- build(deps): Bump org.assertj:assertj-core from 3.25.2 to 3.25.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1069](https://togithub.com/camunda/zeebe-process-test/pull/1069)
- build(deps): Bump org.junit:junit-bom from 5.10.1 to 5.10.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1067](https://togithub.com/camunda/zeebe-process-test/pull/1067)
- build(deps): Bump dependency.slf4j.version from 2.0.11 to 2.0.12 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1074](https://togithub.com/camunda/zeebe-process-test/pull/1074)
- fix: Set variables from ThrowError command by
[@&#8203;saig0](https://togithub.com/saig0) in
[https://github.com/camunda/zeebe-process-test/pull/1080](https://togithub.com/camunda/zeebe-process-test/pull/1080)
- build(deps): Bump dependency.testcontainers.version from 1.19.4 to
1.19.5 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1084](https://togithub.com/camunda/zeebe-process-test/pull/1084)
- build(deps): Bump org.camunda.feel:feel-engine from 1.17.4 to 1.17.5
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1085](https://togithub.com/camunda/zeebe-process-test/pull/1085)
- build(deps): Bump io.netty:netty-bom from 4.1.106.Final to
4.1.107.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1088](https://togithub.com/camunda/zeebe-process-test/pull/1088)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.33.0 to 2.34.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1089](https://togithub.com/camunda/zeebe-process-test/pull/1089)
- build(deps): Bump dependency.spring.version from 6.1.3 to 6.1.4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1092](https://togithub.com/camunda/zeebe-process-test/pull/1092)
- build(deps): Bump net.bytebuddy:byte-buddy from 1.14.11 to 1.14.12 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1097](https://togithub.com/camunda/zeebe-process-test/pull/1097)
- build(deps): Bump com.google.protobuf:protobuf-java from 3.25.2 to
3.25.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1096](https://togithub.com/camunda/zeebe-process-test/pull/1096)
- build(deps): Bump org.immutables:value from 2.10.0 to 2.10.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1101](https://togithub.com/camunda/zeebe-process-test/pull/1101)
- Test no response when no request metadata by
[@&#8203;ana-vinogradova-camunda](https://togithub.com/ana-vinogradova-camunda)
in
[https://github.com/camunda/zeebe-process-test/pull/1091](https://togithub.com/camunda/zeebe-process-test/pull/1091)
- build(deps): Bump com.google.googlejavaformat:google-java-format from
1.19.2 to 1.20.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1102](https://togithub.com/camunda/zeebe-process-test/pull/1102)
- build(deps): Bump dependency.testcontainers.version from 1.19.5 to
1.19.6 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1103](https://togithub.com/camunda/zeebe-process-test/pull/1103)
- build(deps): Bump org.scala-lang:scala-library from 2.13.12 to 2.13.13
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1104](https://togithub.com/camunda/zeebe-process-test/pull/1104)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.24.1 to 2.25.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1100](https://togithub.com/camunda/zeebe-process-test/pull/1100)
- build(deps): Bump io.grpc:grpc-bom from 1.61.1 to 1.62.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1110](https://togithub.com/camunda/zeebe-process-test/pull/1110)
- build(deps): Bump com.google.cloud.tools:jib-maven-plugin from 3.4.0
to 3.4.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1111](https://togithub.com/camunda/zeebe-process-test/pull/1111)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.34.0 to 2.36.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1113](https://togithub.com/camunda/zeebe-process-test/pull/1113)
- build(deps): Bump dependency.testcontainers.version from 1.19.6 to
1.19.7 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1119](https://togithub.com/camunda/zeebe-process-test/pull/1119)
- build(deps): Bump com.google.googlejavaformat:google-java-format from
1.20.0 to 1.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1118](https://togithub.com/camunda/zeebe-process-test/pull/1118)
- build(deps): Bump io.github.classgraph:classgraph from 4.8.165 to
4.8.167 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1120](https://togithub.com/camunda/zeebe-process-test/pull/1120)
- build(deps): Bump io.github.classgraph:classgraph from 4.8.167 to
4.8.168 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1121](https://togithub.com/camunda/zeebe-process-test/pull/1121)
- build(deps): Bump hashicorp/vault-action from 2.8.0 to 3.0.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1095](https://togithub.com/camunda/zeebe-process-test/pull/1095)
- build(deps): Bump com.fasterxml.jackson:jackson-bom from 2.16.1 to
2.16.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1122](https://togithub.com/camunda/zeebe-process-test/pull/1122)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.25.0 to 2.26.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1123](https://togithub.com/camunda/zeebe-process-test/pull/1123)
- build(deps): Bump com.fasterxml.jackson:jackson-bom from 2.16.2 to
2.17.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1124](https://togithub.com/camunda/zeebe-process-test/pull/1124)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.26.0 to 2.26.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1125](https://togithub.com/camunda/zeebe-process-test/pull/1125)
- build(deps): Bump dependency.spring.version from 6.1.4 to 6.1.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1127](https://togithub.com/camunda/zeebe-process-test/pull/1127)
- build(deps): Bump com.google.guava:guava from 33.0.0-jre to 33.1.0-jre
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1129](https://togithub.com/camunda/zeebe-process-test/pull/1129)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.36.0 to 2.37.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1130](https://togithub.com/camunda/zeebe-process-test/pull/1130)
- build(deps): Bump org.agrona:agrona from 1.20.0 to 1.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1126](https://togithub.com/camunda/zeebe-process-test/pull/1126)
- build(deps): Bump dependabot/fetch-metadata from 1.6.0 to 1.7.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1133](https://togithub.com/camunda/zeebe-process-test/pull/1133)
- build(deps): Bump io.netty:netty-bom from 4.1.107.Final to
4.1.108.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1134](https://togithub.com/camunda/zeebe-process-test/pull/1134)
- \[Backport release-8.5.0] fix: db transaction inconsistencies when
deleting keys by
[@&#8203;backport-action](https://togithub.com/backport-action) in
[https://github.com/camunda/zeebe-process-test/pull/1145](https://togithub.com/camunda/zeebe-process-test/pull/1145)

**Full Changelog**:
camunda/zeebe-process-test@8.4.5...8.5.0

###
[`v8.4.6`](https://togithub.com/camunda/zeebe-process-test/releases/tag/8.4.6)

[Compare
Source](https://togithub.com/camunda/zeebe-process-test/compare/8.4.5...8.4.6)

##### What's Changed

- Release 8.4.5 by [@&#8203;camundait](https://togithub.com/camundait)
in
[https://github.com/camunda/zeebe-process-test/pull/1114](https://togithub.com/camunda/zeebe-process-test/pull/1114)
- \[Backport stable/8.4] fix: db transaction inconsistencies when
deleting keys by
[@&#8203;backport-action](https://togithub.com/backport-action) in
[https://github.com/camunda/zeebe-process-test/pull/1144](https://togithub.com/camunda/zeebe-process-test/pull/1144)

**Full Changelog**:
camunda/zeebe-process-test@8.4.5...8.4.6

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 10pm every weekday,before 6am
every weekday" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/camunda/zeebe).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMwMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
github-merge-queue bot referenced this pull request in camunda/camunda Apr 17, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[io.camunda:zeebe-process-test-filters](https://togithub.com/camunda-community-hub/zeebe-process-test-root/zeebe-process-test-filters/)
([source](https://togithub.com/camunda/zeebe-process-test)) | `8.4.5` ->
`8.5.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.camunda:zeebe-process-test-filters/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.camunda:zeebe-process-test-filters/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.camunda:zeebe-process-test-filters/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.camunda:zeebe-process-test-filters/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[io.camunda:zeebe-process-test-assertions](https://togithub.com/camunda-community-hub/zeebe-process-test-root/zeebe-process-test-assertions/)
([source](https://togithub.com/camunda/zeebe-process-test)) | `8.4.5` ->
`8.5.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.camunda:zeebe-process-test-assertions/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.camunda:zeebe-process-test-assertions/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.camunda:zeebe-process-test-assertions/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.camunda:zeebe-process-test-assertions/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>camunda/zeebe-process-test
(io.camunda:zeebe-process-test-filters)</summary>

###
[`v8.5.0`](https://togithub.com/camunda/zeebe-process-test/releases/tag/8.5.0)

[Compare
Source](https://togithub.com/camunda/zeebe-process-test/compare/8.4.6...8.5.0)

##### What's Changed

- Support using process instance migration from the zeebe client by
[@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1012](https://togithub.com/camunda/zeebe-process-test/pull/1012)
- Add support for StreamActivatedJobs RPC by
[@&#8203;npepinpe](https://togithub.com/npepinpe) in
[https://github.com/camunda/zeebe-process-test/pull/1020](https://togithub.com/camunda/zeebe-process-test/pull/1020)
- build(deps): Bump net.java.dev.jna:jna from 5.13.0 to 5.14.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1006](https://togithub.com/camunda/zeebe-process-test/pull/1006)
- build(deps): Bump io.netty:netty-bom from 4.1.100.Final to
4.1.104.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1009](https://togithub.com/camunda/zeebe-process-test/pull/1009)
- build(deps): Bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1010](https://togithub.com/camunda/zeebe-process-test/pull/1010)
- build(deps): Bump dependency.slf4j.version from 2.0.9 to 2.0.11 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1023](https://togithub.com/camunda/zeebe-process-test/pull/1023)
- build(deps): Bump org.assertj:assertj-core from 3.24.2 to 3.25.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1022](https://togithub.com/camunda/zeebe-process-test/pull/1022)
- Release 8.4.0 by [@&#8203;camundait](https://togithub.com/camundait)
in
[https://github.com/camunda/zeebe-process-test/pull/1019](https://togithub.com/camunda/zeebe-process-test/pull/1019)
- build(deps): Bump org.camunda.feel:feel-engine from 1.17.3 to 1.17.4
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1025](https://togithub.com/camunda/zeebe-process-test/pull/1025)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.29.0 to 2.30.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1024](https://togithub.com/camunda/zeebe-process-test/pull/1024)
- build(deps): Bump org.apache.maven.plugins:maven-surefire-plugin from
3.2.2 to 3.2.5 by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1026](https://togithub.com/camunda/zeebe-process-test/pull/1026)
- build(deps): Bump com.fasterxml.jackson:jackson-bom from 2.16.0 to
2.16.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1027](https://togithub.com/camunda/zeebe-process-test/pull/1027)
- build(deps): Bump net.bytebuddy:byte-buddy from 1.14.10 to 1.14.11 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1029](https://togithub.com/camunda/zeebe-process-test/pull/1029)
- build(deps): Bump dependency.spring.version from 6.1.1 to 6.1.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1030](https://togithub.com/camunda/zeebe-process-test/pull/1030)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.23.0 to 2.24.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1031](https://togithub.com/camunda/zeebe-process-test/pull/1031)
- build(deps): Bump com.google.guava:guava from 32.1.3-jre to 33.0.0-jre
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1033](https://togithub.com/camunda/zeebe-process-test/pull/1033)
- Timer events fail with specific values by
[@&#8203;ana-vinogradova-camunda](https://togithub.com/ana-vinogradova-camunda)
in
[https://github.com/camunda/zeebe-process-test/pull/1028](https://togithub.com/camunda/zeebe-process-test/pull/1028)
- build(deps): Bump io.netty:netty-bom from 4.1.104.Final to
4.1.105.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1035](https://togithub.com/camunda/zeebe-process-test/pull/1035)
- build(deps): Bump com.google.protobuf:protobuf-java from 3.25.1 to
3.25.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1034](https://togithub.com/camunda/zeebe-process-test/pull/1034)
- build(deps): Bump com.google.googlejavaformat:google-java-format from
1.18.1 to 1.19.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1036](https://togithub.com/camunda/zeebe-process-test/pull/1036)
- build(deps): Bump org.codehaus.mojo:flatten-maven-plugin from 1.5.0 to
1.6.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1037](https://togithub.com/camunda/zeebe-process-test/pull/1037)
- docs: charset issues on windows by
[@&#8203;jonathanlukas](https://togithub.com/jonathanlukas) in
[https://github.com/camunda/zeebe-process-test/pull/1008](https://togithub.com/camunda/zeebe-process-test/pull/1008)
- build(deps): Bump io.netty:netty-bom from 4.1.105.Final to
4.1.106.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1038](https://togithub.com/camunda/zeebe-process-test/pull/1038)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.30.0 to 2.31.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1039](https://togithub.com/camunda/zeebe-process-test/pull/1039)
- Unflake tests with published messages by
[@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1040](https://togithub.com/camunda/zeebe-process-test/pull/1040)
- build(deps): Bump io.grpc:grpc-bom from 1.60.0 to 1.61.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1047](https://togithub.com/camunda/zeebe-process-test/pull/1047)
- build(deps): Bump org.assertj:assertj-core from 3.25.1 to 3.25.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1050](https://togithub.com/camunda/zeebe-process-test/pull/1050)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.31.0 to 2.32.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1051](https://togithub.com/camunda/zeebe-process-test/pull/1051)
- build(deps): Bump dependency.testcontainers.version from 1.19.3 to
1.19.4 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1052](https://togithub.com/camunda/zeebe-process-test/pull/1052)
- Unflake test case EngineClientTest.shouldMigrateProcessInstance by
[@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1046](https://togithub.com/camunda/zeebe-process-test/pull/1046)
- build(deps): Bump slackapi/slack-github-action from 1.24.0 to 1.25.0
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1055](https://togithub.com/camunda/zeebe-process-test/pull/1055)
- fix: Add `fetchVariable` parameter support in ActivateJobs RPC by
[@&#8203;ce-dmelnych](https://togithub.com/ce-dmelnych) in
[https://github.com/camunda/zeebe-process-test/pull/1058](https://togithub.com/camunda/zeebe-process-test/pull/1058)
- Fix InMemoryDb on zeebe 8.5.0-SNAPSHOT with changes to column family
type by [@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1057](https://togithub.com/camunda/zeebe-process-test/pull/1057)
- build(deps): Bump org.apache.maven.plugins:maven-javadoc-plugin from
3.6.2 to 3.6.3 by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/999](https://togithub.com/camunda/zeebe-process-test/pull/999)
- Adding logging for further troubleshooting of a flaky test by
[@&#8203;ana-vinogradova-camunda](https://togithub.com/ana-vinogradova-camunda)
in
[https://github.com/camunda/zeebe-process-test/pull/1056](https://togithub.com/camunda/zeebe-process-test/pull/1056)
- build(deps): Bump hashicorp/vault-action from 2.7.4 to 2.7.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1063](https://togithub.com/camunda/zeebe-process-test/pull/1063)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.32.0 to 2.33.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1064](https://togithub.com/camunda/zeebe-process-test/pull/1064)
- build(deps): Bump hashicorp/vault-action from 2.7.5 to 2.8.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1065](https://togithub.com/camunda/zeebe-process-test/pull/1065)
- build(deps): Bump io.grpc:grpc-bom from 1.61.0 to 1.61.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1068](https://togithub.com/camunda/zeebe-process-test/pull/1068)
- build(deps): Bump org.assertj:assertj-core from 3.25.2 to 3.25.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1069](https://togithub.com/camunda/zeebe-process-test/pull/1069)
- build(deps): Bump org.junit:junit-bom from 5.10.1 to 5.10.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1067](https://togithub.com/camunda/zeebe-process-test/pull/1067)
- build(deps): Bump dependency.slf4j.version from 2.0.11 to 2.0.12 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1074](https://togithub.com/camunda/zeebe-process-test/pull/1074)
- fix: Set variables from ThrowError command by
[@&#8203;saig0](https://togithub.com/saig0) in
[https://github.com/camunda/zeebe-process-test/pull/1080](https://togithub.com/camunda/zeebe-process-test/pull/1080)
- build(deps): Bump dependency.testcontainers.version from 1.19.4 to
1.19.5 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1084](https://togithub.com/camunda/zeebe-process-test/pull/1084)
- build(deps): Bump org.camunda.feel:feel-engine from 1.17.4 to 1.17.5
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1085](https://togithub.com/camunda/zeebe-process-test/pull/1085)
- build(deps): Bump io.netty:netty-bom from 4.1.106.Final to
4.1.107.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1088](https://togithub.com/camunda/zeebe-process-test/pull/1088)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.33.0 to 2.34.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1089](https://togithub.com/camunda/zeebe-process-test/pull/1089)
- build(deps): Bump dependency.spring.version from 6.1.3 to 6.1.4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1092](https://togithub.com/camunda/zeebe-process-test/pull/1092)
- build(deps): Bump net.bytebuddy:byte-buddy from 1.14.11 to 1.14.12 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1097](https://togithub.com/camunda/zeebe-process-test/pull/1097)
- build(deps): Bump com.google.protobuf:protobuf-java from 3.25.2 to
3.25.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1096](https://togithub.com/camunda/zeebe-process-test/pull/1096)
- build(deps): Bump org.immutables:value from 2.10.0 to 2.10.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1101](https://togithub.com/camunda/zeebe-process-test/pull/1101)
- Test no response when no request metadata by
[@&#8203;ana-vinogradova-camunda](https://togithub.com/ana-vinogradova-camunda)
in
[https://github.com/camunda/zeebe-process-test/pull/1091](https://togithub.com/camunda/zeebe-process-test/pull/1091)
- build(deps): Bump com.google.googlejavaformat:google-java-format from
1.19.2 to 1.20.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1102](https://togithub.com/camunda/zeebe-process-test/pull/1102)
- build(deps): Bump dependency.testcontainers.version from 1.19.5 to
1.19.6 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1103](https://togithub.com/camunda/zeebe-process-test/pull/1103)
- build(deps): Bump org.scala-lang:scala-library from 2.13.12 to 2.13.13
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1104](https://togithub.com/camunda/zeebe-process-test/pull/1104)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.24.1 to 2.25.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1100](https://togithub.com/camunda/zeebe-process-test/pull/1100)
- build(deps): Bump io.grpc:grpc-bom from 1.61.1 to 1.62.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1110](https://togithub.com/camunda/zeebe-process-test/pull/1110)
- build(deps): Bump com.google.cloud.tools:jib-maven-plugin from 3.4.0
to 3.4.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1111](https://togithub.com/camunda/zeebe-process-test/pull/1111)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.34.0 to 2.36.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1113](https://togithub.com/camunda/zeebe-process-test/pull/1113)
- build(deps): Bump dependency.testcontainers.version from 1.19.6 to
1.19.7 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1119](https://togithub.com/camunda/zeebe-process-test/pull/1119)
- build(deps): Bump com.google.googlejavaformat:google-java-format from
1.20.0 to 1.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1118](https://togithub.com/camunda/zeebe-process-test/pull/1118)
- build(deps): Bump io.github.classgraph:classgraph from 4.8.165 to
4.8.167 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1120](https://togithub.com/camunda/zeebe-process-test/pull/1120)
- build(deps): Bump io.github.classgraph:classgraph from 4.8.167 to
4.8.168 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1121](https://togithub.com/camunda/zeebe-process-test/pull/1121)
- build(deps): Bump hashicorp/vault-action from 2.8.0 to 3.0.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1095](https://togithub.com/camunda/zeebe-process-test/pull/1095)
- build(deps): Bump com.fasterxml.jackson:jackson-bom from 2.16.1 to
2.16.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1122](https://togithub.com/camunda/zeebe-process-test/pull/1122)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.25.0 to 2.26.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1123](https://togithub.com/camunda/zeebe-process-test/pull/1123)
- build(deps): Bump com.fasterxml.jackson:jackson-bom from 2.16.2 to
2.17.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1124](https://togithub.com/camunda/zeebe-process-test/pull/1124)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.26.0 to 2.26.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1125](https://togithub.com/camunda/zeebe-process-test/pull/1125)
- build(deps): Bump dependency.spring.version from 6.1.4 to 6.1.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1127](https://togithub.com/camunda/zeebe-process-test/pull/1127)
- build(deps): Bump com.google.guava:guava from 33.0.0-jre to 33.1.0-jre
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1129](https://togithub.com/camunda/zeebe-process-test/pull/1129)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.36.0 to 2.37.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1130](https://togithub.com/camunda/zeebe-process-test/pull/1130)
- build(deps): Bump org.agrona:agrona from 1.20.0 to 1.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1126](https://togithub.com/camunda/zeebe-process-test/pull/1126)
- build(deps): Bump dependabot/fetch-metadata from 1.6.0 to 1.7.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1133](https://togithub.com/camunda/zeebe-process-test/pull/1133)
- build(deps): Bump io.netty:netty-bom from 4.1.107.Final to
4.1.108.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1134](https://togithub.com/camunda/zeebe-process-test/pull/1134)
- \[Backport release-8.5.0] fix: db transaction inconsistencies when
deleting keys by
[@&#8203;backport-action](https://togithub.com/backport-action) in
[https://github.com/camunda/zeebe-process-test/pull/1145](https://togithub.com/camunda/zeebe-process-test/pull/1145)

**Full Changelog**:
camunda/zeebe-process-test@8.4.5...8.5.0

###
[`v8.4.6`](https://togithub.com/camunda/zeebe-process-test/releases/tag/8.4.6)

[Compare
Source](https://togithub.com/camunda/zeebe-process-test/compare/8.4.5...8.4.6)

##### What's Changed

- Release 8.4.5 by [@&#8203;camundait](https://togithub.com/camundait)
in
[https://github.com/camunda/zeebe-process-test/pull/1114](https://togithub.com/camunda/zeebe-process-test/pull/1114)
- \[Backport stable/8.4] fix: db transaction inconsistencies when
deleting keys by
[@&#8203;backport-action](https://togithub.com/backport-action) in
[https://github.com/camunda/zeebe-process-test/pull/1144](https://togithub.com/camunda/zeebe-process-test/pull/1144)

**Full Changelog**:
camunda/zeebe-process-test@8.4.5...8.4.6

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 10pm every weekday,before 6am
every weekday" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/camunda/zeebe).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMwMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
github-merge-queue bot referenced this pull request in camunda/camunda Apr 17, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[io.camunda:zeebe-process-test-filters](https://togithub.com/camunda-community-hub/zeebe-process-test-root/zeebe-process-test-filters/)
([source](https://togithub.com/camunda/zeebe-process-test)) | `8.4.5` ->
`8.5.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.camunda:zeebe-process-test-filters/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.camunda:zeebe-process-test-filters/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.camunda:zeebe-process-test-filters/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.camunda:zeebe-process-test-filters/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[io.camunda:zeebe-process-test-assertions](https://togithub.com/camunda-community-hub/zeebe-process-test-root/zeebe-process-test-assertions/)
([source](https://togithub.com/camunda/zeebe-process-test)) | `8.4.5` ->
`8.5.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.camunda:zeebe-process-test-assertions/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.camunda:zeebe-process-test-assertions/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.camunda:zeebe-process-test-assertions/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.camunda:zeebe-process-test-assertions/8.4.5/8.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>camunda/zeebe-process-test
(io.camunda:zeebe-process-test-filters)</summary>

###
[`v8.5.0`](https://togithub.com/camunda/zeebe-process-test/releases/tag/8.5.0)

[Compare
Source](https://togithub.com/camunda/zeebe-process-test/compare/8.4.6...8.5.0)

##### What's Changed

- Support using process instance migration from the zeebe client by
[@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1012](https://togithub.com/camunda/zeebe-process-test/pull/1012)
- Add support for StreamActivatedJobs RPC by
[@&#8203;npepinpe](https://togithub.com/npepinpe) in
[https://github.com/camunda/zeebe-process-test/pull/1020](https://togithub.com/camunda/zeebe-process-test/pull/1020)
- build(deps): Bump net.java.dev.jna:jna from 5.13.0 to 5.14.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1006](https://togithub.com/camunda/zeebe-process-test/pull/1006)
- build(deps): Bump io.netty:netty-bom from 4.1.100.Final to
4.1.104.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1009](https://togithub.com/camunda/zeebe-process-test/pull/1009)
- build(deps): Bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1010](https://togithub.com/camunda/zeebe-process-test/pull/1010)
- build(deps): Bump dependency.slf4j.version from 2.0.9 to 2.0.11 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1023](https://togithub.com/camunda/zeebe-process-test/pull/1023)
- build(deps): Bump org.assertj:assertj-core from 3.24.2 to 3.25.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1022](https://togithub.com/camunda/zeebe-process-test/pull/1022)
- Release 8.4.0 by [@&#8203;camundait](https://togithub.com/camundait)
in
[https://github.com/camunda/zeebe-process-test/pull/1019](https://togithub.com/camunda/zeebe-process-test/pull/1019)
- build(deps): Bump org.camunda.feel:feel-engine from 1.17.3 to 1.17.4
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1025](https://togithub.com/camunda/zeebe-process-test/pull/1025)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.29.0 to 2.30.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1024](https://togithub.com/camunda/zeebe-process-test/pull/1024)
- build(deps): Bump org.apache.maven.plugins:maven-surefire-plugin from
3.2.2 to 3.2.5 by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1026](https://togithub.com/camunda/zeebe-process-test/pull/1026)
- build(deps): Bump com.fasterxml.jackson:jackson-bom from 2.16.0 to
2.16.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1027](https://togithub.com/camunda/zeebe-process-test/pull/1027)
- build(deps): Bump net.bytebuddy:byte-buddy from 1.14.10 to 1.14.11 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1029](https://togithub.com/camunda/zeebe-process-test/pull/1029)
- build(deps): Bump dependency.spring.version from 6.1.1 to 6.1.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1030](https://togithub.com/camunda/zeebe-process-test/pull/1030)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.23.0 to 2.24.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1031](https://togithub.com/camunda/zeebe-process-test/pull/1031)
- build(deps): Bump com.google.guava:guava from 32.1.3-jre to 33.0.0-jre
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1033](https://togithub.com/camunda/zeebe-process-test/pull/1033)
- Timer events fail with specific values by
[@&#8203;ana-vinogradova-camunda](https://togithub.com/ana-vinogradova-camunda)
in
[https://github.com/camunda/zeebe-process-test/pull/1028](https://togithub.com/camunda/zeebe-process-test/pull/1028)
- build(deps): Bump io.netty:netty-bom from 4.1.104.Final to
4.1.105.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1035](https://togithub.com/camunda/zeebe-process-test/pull/1035)
- build(deps): Bump com.google.protobuf:protobuf-java from 3.25.1 to
3.25.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1034](https://togithub.com/camunda/zeebe-process-test/pull/1034)
- build(deps): Bump com.google.googlejavaformat:google-java-format from
1.18.1 to 1.19.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1036](https://togithub.com/camunda/zeebe-process-test/pull/1036)
- build(deps): Bump org.codehaus.mojo:flatten-maven-plugin from 1.5.0 to
1.6.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1037](https://togithub.com/camunda/zeebe-process-test/pull/1037)
- docs: charset issues on windows by
[@&#8203;jonathanlukas](https://togithub.com/jonathanlukas) in
[https://github.com/camunda/zeebe-process-test/pull/1008](https://togithub.com/camunda/zeebe-process-test/pull/1008)
- build(deps): Bump io.netty:netty-bom from 4.1.105.Final to
4.1.106.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1038](https://togithub.com/camunda/zeebe-process-test/pull/1038)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.30.0 to 2.31.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1039](https://togithub.com/camunda/zeebe-process-test/pull/1039)
- Unflake tests with published messages by
[@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1040](https://togithub.com/camunda/zeebe-process-test/pull/1040)
- build(deps): Bump io.grpc:grpc-bom from 1.60.0 to 1.61.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1047](https://togithub.com/camunda/zeebe-process-test/pull/1047)
- build(deps): Bump org.assertj:assertj-core from 3.25.1 to 3.25.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1050](https://togithub.com/camunda/zeebe-process-test/pull/1050)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.31.0 to 2.32.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1051](https://togithub.com/camunda/zeebe-process-test/pull/1051)
- build(deps): Bump dependency.testcontainers.version from 1.19.3 to
1.19.4 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1052](https://togithub.com/camunda/zeebe-process-test/pull/1052)
- Unflake test case EngineClientTest.shouldMigrateProcessInstance by
[@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1046](https://togithub.com/camunda/zeebe-process-test/pull/1046)
- build(deps): Bump slackapi/slack-github-action from 1.24.0 to 1.25.0
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1055](https://togithub.com/camunda/zeebe-process-test/pull/1055)
- fix: Add `fetchVariable` parameter support in ActivateJobs RPC by
[@&#8203;ce-dmelnych](https://togithub.com/ce-dmelnych) in
[https://github.com/camunda/zeebe-process-test/pull/1058](https://togithub.com/camunda/zeebe-process-test/pull/1058)
- Fix InMemoryDb on zeebe 8.5.0-SNAPSHOT with changes to column family
type by [@&#8203;korthout](https://togithub.com/korthout) in
[https://github.com/camunda/zeebe-process-test/pull/1057](https://togithub.com/camunda/zeebe-process-test/pull/1057)
- build(deps): Bump org.apache.maven.plugins:maven-javadoc-plugin from
3.6.2 to 3.6.3 by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/999](https://togithub.com/camunda/zeebe-process-test/pull/999)
- Adding logging for further troubleshooting of a flaky test by
[@&#8203;ana-vinogradova-camunda](https://togithub.com/ana-vinogradova-camunda)
in
[https://github.com/camunda/zeebe-process-test/pull/1056](https://togithub.com/camunda/zeebe-process-test/pull/1056)
- build(deps): Bump hashicorp/vault-action from 2.7.4 to 2.7.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1063](https://togithub.com/camunda/zeebe-process-test/pull/1063)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.32.0 to 2.33.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1064](https://togithub.com/camunda/zeebe-process-test/pull/1064)
- build(deps): Bump hashicorp/vault-action from 2.7.5 to 2.8.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1065](https://togithub.com/camunda/zeebe-process-test/pull/1065)
- build(deps): Bump io.grpc:grpc-bom from 1.61.0 to 1.61.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1068](https://togithub.com/camunda/zeebe-process-test/pull/1068)
- build(deps): Bump org.assertj:assertj-core from 3.25.2 to 3.25.3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1069](https://togithub.com/camunda/zeebe-process-test/pull/1069)
- build(deps): Bump org.junit:junit-bom from 5.10.1 to 5.10.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1067](https://togithub.com/camunda/zeebe-process-test/pull/1067)
- build(deps): Bump dependency.slf4j.version from 2.0.11 to 2.0.12 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1074](https://togithub.com/camunda/zeebe-process-test/pull/1074)
- fix: Set variables from ThrowError command by
[@&#8203;saig0](https://togithub.com/saig0) in
[https://github.com/camunda/zeebe-process-test/pull/1080](https://togithub.com/camunda/zeebe-process-test/pull/1080)
- build(deps): Bump dependency.testcontainers.version from 1.19.4 to
1.19.5 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1084](https://togithub.com/camunda/zeebe-process-test/pull/1084)
- build(deps): Bump org.camunda.feel:feel-engine from 1.17.4 to 1.17.5
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1085](https://togithub.com/camunda/zeebe-process-test/pull/1085)
- build(deps): Bump io.netty:netty-bom from 4.1.106.Final to
4.1.107.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1088](https://togithub.com/camunda/zeebe-process-test/pull/1088)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.33.0 to 2.34.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1089](https://togithub.com/camunda/zeebe-process-test/pull/1089)
- build(deps): Bump dependency.spring.version from 6.1.3 to 6.1.4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1092](https://togithub.com/camunda/zeebe-process-test/pull/1092)
- build(deps): Bump net.bytebuddy:byte-buddy from 1.14.11 to 1.14.12 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1097](https://togithub.com/camunda/zeebe-process-test/pull/1097)
- build(deps): Bump com.google.protobuf:protobuf-java from 3.25.2 to
3.25.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1096](https://togithub.com/camunda/zeebe-process-test/pull/1096)
- build(deps): Bump org.immutables:value from 2.10.0 to 2.10.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1101](https://togithub.com/camunda/zeebe-process-test/pull/1101)
- Test no response when no request metadata by
[@&#8203;ana-vinogradova-camunda](https://togithub.com/ana-vinogradova-camunda)
in
[https://github.com/camunda/zeebe-process-test/pull/1091](https://togithub.com/camunda/zeebe-process-test/pull/1091)
- build(deps): Bump com.google.googlejavaformat:google-java-format from
1.19.2 to 1.20.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1102](https://togithub.com/camunda/zeebe-process-test/pull/1102)
- build(deps): Bump dependency.testcontainers.version from 1.19.5 to
1.19.6 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1103](https://togithub.com/camunda/zeebe-process-test/pull/1103)
- build(deps): Bump org.scala-lang:scala-library from 2.13.12 to 2.13.13
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1104](https://togithub.com/camunda/zeebe-process-test/pull/1104)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.24.1 to 2.25.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1100](https://togithub.com/camunda/zeebe-process-test/pull/1100)
- build(deps): Bump io.grpc:grpc-bom from 1.61.1 to 1.62.2 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1110](https://togithub.com/camunda/zeebe-process-test/pull/1110)
- build(deps): Bump com.google.cloud.tools:jib-maven-plugin from 3.4.0
to 3.4.1 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1111](https://togithub.com/camunda/zeebe-process-test/pull/1111)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.34.0 to 2.36.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1113](https://togithub.com/camunda/zeebe-process-test/pull/1113)
- build(deps): Bump dependency.testcontainers.version from 1.19.6 to
1.19.7 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1119](https://togithub.com/camunda/zeebe-process-test/pull/1119)
- build(deps): Bump com.google.googlejavaformat:google-java-format from
1.20.0 to 1.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1118](https://togithub.com/camunda/zeebe-process-test/pull/1118)
- build(deps): Bump io.github.classgraph:classgraph from 4.8.165 to
4.8.167 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1120](https://togithub.com/camunda/zeebe-process-test/pull/1120)
- build(deps): Bump io.github.classgraph:classgraph from 4.8.167 to
4.8.168 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1121](https://togithub.com/camunda/zeebe-process-test/pull/1121)
- build(deps): Bump hashicorp/vault-action from 2.8.0 to 3.0.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1095](https://togithub.com/camunda/zeebe-process-test/pull/1095)
- build(deps): Bump com.fasterxml.jackson:jackson-bom from 2.16.1 to
2.16.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1122](https://togithub.com/camunda/zeebe-process-test/pull/1122)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.25.0 to 2.26.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1123](https://togithub.com/camunda/zeebe-process-test/pull/1123)
- build(deps): Bump com.fasterxml.jackson:jackson-bom from 2.16.2 to
2.17.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1124](https://togithub.com/camunda/zeebe-process-test/pull/1124)
- build(deps): Bump com.google.errorprone:error_prone_annotations from
2.26.0 to 2.26.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1125](https://togithub.com/camunda/zeebe-process-test/pull/1125)
- build(deps): Bump dependency.spring.version from 6.1.4 to 6.1.5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1127](https://togithub.com/camunda/zeebe-process-test/pull/1127)
- build(deps): Bump com.google.guava:guava from 33.0.0-jre to 33.1.0-jre
by [@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1129](https://togithub.com/camunda/zeebe-process-test/pull/1129)
- build(deps): Bump com.google.api.grpc:proto-google-common-protos from
2.36.0 to 2.37.1 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1130](https://togithub.com/camunda/zeebe-process-test/pull/1130)
- build(deps): Bump org.agrona:agrona from 1.20.0 to 1.21.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1126](https://togithub.com/camunda/zeebe-process-test/pull/1126)
- build(deps): Bump dependabot/fetch-metadata from 1.6.0 to 1.7.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/camunda/zeebe-process-test/pull/1133](https://togithub.com/camunda/zeebe-process-test/pull/1133)
- build(deps): Bump io.netty:netty-bom from 4.1.107.Final to
4.1.108.Final by [@&#8203;dependabot](https://togithub.com/dependabot)
in
[https://github.com/camunda/zeebe-process-test/pull/1134](https://togithub.com/camunda/zeebe-process-test/pull/1134)
- \[Backport release-8.5.0] fix: db transaction inconsistencies when
deleting keys by
[@&#8203;backport-action](https://togithub.com/backport-action) in
[https://github.com/camunda/zeebe-process-test/pull/1145](https://togithub.com/camunda/zeebe-process-test/pull/1145)

**Full Changelog**:
camunda/zeebe-process-test@8.4.5...8.5.0

###
[`v8.4.6`](https://togithub.com/camunda/zeebe-process-test/releases/tag/8.4.6)

[Compare
Source](https://togithub.com/camunda/zeebe-process-test/compare/8.4.5...8.4.6)

##### What's Changed

- Release 8.4.5 by [@&#8203;camundait](https://togithub.com/camundait)
in
[https://github.com/camunda/zeebe-process-test/pull/1114](https://togithub.com/camunda/zeebe-process-test/pull/1114)
- \[Backport stable/8.4] fix: db transaction inconsistencies when
deleting keys by
[@&#8203;backport-action](https://togithub.com/backport-action) in
[https://github.com/camunda/zeebe-process-test/pull/1144](https://togithub.com/camunda/zeebe-process-test/pull/1144)

**Full Changelog**:
camunda/zeebe-process-test@8.4.5...8.4.6

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 10pm every weekday,before 6am
every weekday" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/camunda/zeebe).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMwMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiXX0=-->
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

PullRequestProcessTest.testRemindReviewer is flaky
3 participants