From cefa72eb43fdb74abccfee32315fb3e00da2f3a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 08:56:36 +0000 Subject: [PATCH 1/3] [pigeon]: Bump io.mockk:mockk Bumps [io.mockk:mockk](https://github.com/mockk/mockk) from 1.13.7 to 1.13.12. - [Release notes](https://github.com/mockk/mockk/releases) - [Commits](https://github.com/mockk/mockk/compare/1.13.7...1.13.12) --- updated-dependencies: - dependency-name: io.mockk:mockk dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- packages/pigeon/platform_tests/test_plugin/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pigeon/platform_tests/test_plugin/android/build.gradle b/packages/pigeon/platform_tests/test_plugin/android/build.gradle index e99686da09c8..581ae4be1123 100644 --- a/packages/pigeon/platform_tests/test_plugin/android/build.gradle +++ b/packages/pigeon/platform_tests/test_plugin/android/build.gradle @@ -69,6 +69,6 @@ android { dependencies { testImplementation 'junit:junit:4.+' - testImplementation "io.mockk:mockk:1.13.7" + testImplementation "io.mockk:mockk:1.13.12" } } From fa28573b40f5d274bdad29a1ab151766970d318b Mon Sep 17 00:00:00 2001 From: Tarrin Neal Date: Wed, 7 Aug 2024 04:00:48 -0700 Subject: [PATCH 2/3] kotlin bom --- .../pigeon/platform_tests/test_plugin/android/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/pigeon/platform_tests/test_plugin/android/build.gradle b/packages/pigeon/platform_tests/test_plugin/android/build.gradle index 581ae4be1123..50d0ef77ec43 100644 --- a/packages/pigeon/platform_tests/test_plugin/android/build.gradle +++ b/packages/pigeon/platform_tests/test_plugin/android/build.gradle @@ -70,5 +70,8 @@ android { dependencies { testImplementation 'junit:junit:4.+' testImplementation "io.mockk:mockk:1.13.12" + // org.jetbrains.kotlin:kotlin-bom artifact purpose is to align kotlin stdlib and related code versions. + // See: https://youtrack.jetbrains.com/issue/KT-55297/kotlin-stdlib-should-declare-constraints-on-kotlin-stdlib-jdk8-and-kotlin-stdlib-jdk7 + implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.10")) } } From 30c3c1a8681fbb9ff287494e961c61872ff5e019 Mon Sep 17 00:00:00 2001 From: Tarrin Neal Date: Wed, 7 Aug 2024 04:51:41 -0700 Subject: [PATCH 3/3] bump example kotlin version --- .../platform_tests/test_plugin/example/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pigeon/platform_tests/test_plugin/example/android/build.gradle b/packages/pigeon/platform_tests/test_plugin/example/android/build.gradle index 14cf5d6d58df..29f83a737883 100644 --- a/packages/pigeon/platform_tests/test_plugin/example/android/build.gradle +++ b/packages/pigeon/platform_tests/test_plugin/example/android/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlin_version = '1.7.10' + ext.kotlin_version = '1.8.10' repositories { google() mavenCentral()