From 5aca4224c1b181fe71b41219d74e995e971e62de Mon Sep 17 00:00:00 2001 From: CloudQuery Bot <102256036+cq-bot@users.noreply.github.com> Date: Mon, 30 Sep 2024 21:49:18 -0400 Subject: [PATCH] fix(deps): Update junit5 monorepo to v5.11.1 (#273) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [org.junit.jupiter:junit-jupiter-engine](https://junit.org/junit5/) ([source](https://togithub.com/junit-team/junit5)) | dependencies | patch | `5.11.0` -> `5.11.1` | | [org.junit.jupiter:junit-jupiter-api](https://junit.org/junit5/) ([source](https://togithub.com/junit-team/junit5)) | dependencies | patch | `5.11.0` -> `5.11.1` | | [org.junit.jupiter:junit-jupiter](https://junit.org/junit5/) ([source](https://togithub.com/junit-team/junit5)) | dependencies | patch | `5.11.0` -> `5.11.1` | | [org.junit:junit-bom](https://junit.org/junit5/) ([source](https://togithub.com/junit-team/junit5)) | dependencies | patch | `5.11.0` -> `5.11.1` | --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). --- lib/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/build.gradle b/lib/build.gradle index 134141a..bfabbf7 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -50,14 +50,14 @@ dependencies { testImplementation 'io.grpc:grpc-testing:1.66.0' testImplementation 'io.grpc:grpc-inprocess:1.66.0' - testImplementation platform('org.junit:junit-bom:5.11.0') - testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0' - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0' + testImplementation platform('org.junit:junit-bom:5.11.1') + testImplementation 'org.junit.jupiter:junit-jupiter:5.11.1' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.1' testImplementation 'org.mockito:mockito-core:5.13.0' testImplementation 'org.mockito:mockito-junit-jupiter:5.13.0' testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.16.2' testImplementation 'org.assertj:assertj-core:3.26.3' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.0' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.1' runtimeOnly "org.apache.arrow:arrow-memory-netty:17.0.0" }