From 280ea43d75c0a0837bc8e9c66386bbc40ee0a25f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 21:37:24 +0000 Subject: [PATCH] Bump the gradle group with 4 updates Bumps the gradle group with 4 updates: [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5), [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5), [org.junit.jupiter:junit-jupiter-params](https://github.com/junit-team/junit5) and [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5). Updates `org.junit.jupiter:junit-jupiter-api` from 5.11.0 to 5.11.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.0...r5.11.1) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.11.0 to 5.11.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.0...r5.11.1) Updates `org.junit.jupiter:junit-jupiter-params` from 5.11.0 to 5.11.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.0...r5.11.1) Updates `org.junit.jupiter:junit-jupiter` from 5.11.0 to 5.11.1 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.0...r5.11.1) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter-params dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle ... Signed-off-by: dependabot[bot] --- .../custom-trait-handwritten/build.gradle.kts | 6 +++--- .../custom-trait-with-java-validator/build.gradle.kts | 6 +++--- .../integ/custom-trait-handwritten-test/build.gradle.kts | 6 +++--- .../integ/custom-trait-test/build.gradle.kts | 6 +++--- .../custom-trait-with-java-validator-test/build.gradle.kts | 6 +++--- gradle-plugin-examples/integ/tutorial/build.gradle.kts | 6 +++--- .../custom-linter/build.gradle.kts | 6 +++--- .../custom-validator/build.gradle.kts | 6 +++--- linting-and-validation-examples/decorators/build.gradle.kts | 2 +- .../common-linting-configuration-test/build.gradle.kts | 6 +++--- .../integ/custom-linter-test/build.gradle.kts | 6 +++--- .../integ/custom-validator-test/build.gradle.kts | 6 +++--- .../integ/decorators-test/build.gradle.kts | 6 +++--- 13 files changed, 37 insertions(+), 37 deletions(-) diff --git a/custom-trait-examples/custom-trait-handwritten/build.gradle.kts b/custom-trait-examples/custom-trait-handwritten/build.gradle.kts index d969f23..0f9576f 100644 --- a/custom-trait-examples/custom-trait-handwritten/build.gradle.kts +++ b/custom-trait-examples/custom-trait-handwritten/build.gradle.kts @@ -11,9 +11,9 @@ dependencies { smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion") implementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") } java { diff --git a/custom-trait-examples/custom-trait-with-java-validator/build.gradle.kts b/custom-trait-examples/custom-trait-with-java-validator/build.gradle.kts index 0ce1b6b..3f3fb4f 100644 --- a/custom-trait-examples/custom-trait-with-java-validator/build.gradle.kts +++ b/custom-trait-examples/custom-trait-with-java-validator/build.gradle.kts @@ -11,9 +11,9 @@ dependencies { smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion") implementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") } java { diff --git a/custom-trait-examples/integ/custom-trait-handwritten-test/build.gradle.kts b/custom-trait-examples/integ/custom-trait-handwritten-test/build.gradle.kts index 470e925..34539ce 100644 --- a/custom-trait-examples/integ/custom-trait-handwritten-test/build.gradle.kts +++ b/custom-trait-examples/integ/custom-trait-handwritten-test/build.gradle.kts @@ -13,9 +13,9 @@ dependencies { implementation(project(":custom-trait-examples:custom-trait-handwritten")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") } // Use Junit5's test runner. diff --git a/custom-trait-examples/integ/custom-trait-test/build.gradle.kts b/custom-trait-examples/integ/custom-trait-test/build.gradle.kts index 5ef51e6..918cd71 100644 --- a/custom-trait-examples/integ/custom-trait-test/build.gradle.kts +++ b/custom-trait-examples/integ/custom-trait-test/build.gradle.kts @@ -13,9 +13,9 @@ dependencies { implementation(project(":custom-trait-examples:custom-trait")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") } // Use Junit5's test runner. diff --git a/custom-trait-examples/integ/custom-trait-with-java-validator-test/build.gradle.kts b/custom-trait-examples/integ/custom-trait-with-java-validator-test/build.gradle.kts index 5b1235e..9e605bf 100644 --- a/custom-trait-examples/integ/custom-trait-with-java-validator-test/build.gradle.kts +++ b/custom-trait-examples/integ/custom-trait-with-java-validator-test/build.gradle.kts @@ -13,9 +13,9 @@ dependencies { implementation(project(":custom-trait-examples:custom-trait-with-java-validator")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") } // Use Junit5's test runner. diff --git a/gradle-plugin-examples/integ/tutorial/build.gradle.kts b/gradle-plugin-examples/integ/tutorial/build.gradle.kts index 5a287c0..1d0c9f8 100644 --- a/gradle-plugin-examples/integ/tutorial/build.gradle.kts +++ b/gradle-plugin-examples/integ/tutorial/build.gradle.kts @@ -18,8 +18,8 @@ dependencies { val smithyVersion: String by project testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") testImplementation("org.hamcrest:hamcrest:3.0") } diff --git a/linting-and-validation-examples/custom-linter/build.gradle.kts b/linting-and-validation-examples/custom-linter/build.gradle.kts index 5aac122..3382b47 100644 --- a/linting-and-validation-examples/custom-linter/build.gradle.kts +++ b/linting-and-validation-examples/custom-linter/build.gradle.kts @@ -56,7 +56,7 @@ dependencies { implementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") } diff --git a/linting-and-validation-examples/custom-validator/build.gradle.kts b/linting-and-validation-examples/custom-validator/build.gradle.kts index 86e7768..05a4bfc 100644 --- a/linting-and-validation-examples/custom-validator/build.gradle.kts +++ b/linting-and-validation-examples/custom-validator/build.gradle.kts @@ -52,7 +52,7 @@ dependencies { smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion") implementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") } diff --git a/linting-and-validation-examples/decorators/build.gradle.kts b/linting-and-validation-examples/decorators/build.gradle.kts index 40f956b..9b6e2cd 100644 --- a/linting-and-validation-examples/decorators/build.gradle.kts +++ b/linting-and-validation-examples/decorators/build.gradle.kts @@ -32,7 +32,7 @@ repositories { dependencies { // Use JUnit Jupiter for testing. - testImplementation("org.junit.jupiter:junit-jupiter:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter:5.11.1") // This dependency is used internally, and not exposed to consumers on their own compile classpath. val smithyVersion: String by project diff --git a/linting-and-validation-examples/integ/common-linting-configuration-test/build.gradle.kts b/linting-and-validation-examples/integ/common-linting-configuration-test/build.gradle.kts index 7548042..7d4d014 100644 --- a/linting-and-validation-examples/integ/common-linting-configuration-test/build.gradle.kts +++ b/linting-and-validation-examples/integ/common-linting-configuration-test/build.gradle.kts @@ -25,9 +25,9 @@ dependencies { implementation("software.amazon.smithy:smithy-linters:$smithyVersion") testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") testImplementation("org.hamcrest:hamcrest:3.0") } diff --git a/linting-and-validation-examples/integ/custom-linter-test/build.gradle.kts b/linting-and-validation-examples/integ/custom-linter-test/build.gradle.kts index 7085b06..acc7334 100644 --- a/linting-and-validation-examples/integ/custom-linter-test/build.gradle.kts +++ b/linting-and-validation-examples/integ/custom-linter-test/build.gradle.kts @@ -25,9 +25,9 @@ dependencies { implementation(project(":linting-and-validation-examples:custom-linter")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") } smithy { diff --git a/linting-and-validation-examples/integ/custom-validator-test/build.gradle.kts b/linting-and-validation-examples/integ/custom-validator-test/build.gradle.kts index 7b42406..d22a3c3 100644 --- a/linting-and-validation-examples/integ/custom-validator-test/build.gradle.kts +++ b/linting-and-validation-examples/integ/custom-validator-test/build.gradle.kts @@ -25,9 +25,9 @@ dependencies { implementation(project(":linting-and-validation-examples:custom-validator")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") } smithy { diff --git a/linting-and-validation-examples/integ/decorators-test/build.gradle.kts b/linting-and-validation-examples/integ/decorators-test/build.gradle.kts index 43fb7a4..b5524cb 100644 --- a/linting-and-validation-examples/integ/decorators-test/build.gradle.kts +++ b/linting-and-validation-examples/integ/decorators-test/build.gradle.kts @@ -23,7 +23,7 @@ dependencies { implementation(project(":linting-and-validation-examples:decorators")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.0") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") }