From 25e19b5580ef5fbcac8ac44af3dd7dfdc6ce8a35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Mar 2025 07:52:18 +0000 Subject: [PATCH 1/2] Bump kotlin.version from 2.0.21 to 2.1.20 Bumps `kotlin.version` from 2.0.21 to 2.1.20. Updates `org.jetbrains.kotlin:kotlin-stdlib` from 2.0.21 to 2.1.20 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/commits) Updates `org.jetbrains.kotlin:kotlin-reflect` from 2.0.21 to 2.1.20 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/commits) Updates `org.jetbrains.kotlin:kotlin-maven-plugin` from 2.0.21 to 2.1.20 --- updated-dependencies: - dependency-name: org.jetbrains.kotlin:kotlin-stdlib dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-reflect dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.jetbrains.kotlin:kotlin-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- boat-quay/boat-quay-lint/pom.xml | 2 +- boat-quay/pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boat-quay/boat-quay-lint/pom.xml b/boat-quay/boat-quay-lint/pom.xml index 0b8a22d2f..b4e9f5e3b 100644 --- a/boat-quay/boat-quay-lint/pom.xml +++ b/boat-quay/boat-quay-lint/pom.xml @@ -17,7 +17,7 @@ ${basedir}/../${aggregate.report.dir} - 2.0.21 + 2.1.20 false diff --git a/boat-quay/pom.xml b/boat-quay/pom.xml index e553626aa..4b0f0ecd4 100644 --- a/boat-quay/pom.xml +++ b/boat-quay/pom.xml @@ -19,7 +19,7 @@ ${basedir}/../${aggregate.report.dir} - 2.0.21 + 2.1.20 false 1.1.1 From b3b98cfc614b5d7cd11bd8c14f40860ea4401fd0 Mon Sep 17 00:00:00 2001 From: jasper linschoten Date: Tue, 25 Mar 2025 09:09:53 +0100 Subject: [PATCH 2/2] Fix rule for kotlin update --- .../kotlin/com/backbase/oss/boat/quay/ruleset/util/TestUtil.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boat-quay/boat-quay-rules/src/test/kotlin/com/backbase/oss/boat/quay/ruleset/util/TestUtil.kt b/boat-quay/boat-quay-rules/src/test/kotlin/com/backbase/oss/boat/quay/ruleset/util/TestUtil.kt index d5afc3a2c..f801f0df7 100644 --- a/boat-quay/boat-quay-rules/src/test/kotlin/com/backbase/oss/boat/quay/ruleset/util/TestUtil.kt +++ b/boat-quay/boat-quay-rules/src/test/kotlin/com/backbase/oss/boat/quay/ruleset/util/TestUtil.kt @@ -32,7 +32,7 @@ fun openApiWithOperations(operations: Map>): OpenAPI = responses.addApiResponse(it, ApiResponse()) } } - pathItem.operation(io.swagger.v3.oas.models.PathItem.HttpMethod.valueOf(method.toUpperCase()), operation) + pathItem.operation(io.swagger.v3.oas.models.PathItem.HttpMethod.valueOf(method.uppercase()), operation) } paths = Paths() paths.addPathItem("/test", pathItem)