From 6ebd6c52eba8501f91964f62f7ec8dfa45d7d544 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 May 2023 15:28:31 +0000 Subject: [PATCH 1/9] [url_launcher]: Bump androidx.annotation:annotation Bumps androidx.annotation:annotation from 1.2.0 to 1.6.0. --- updated-dependencies: - dependency-name: androidx.annotation:annotation dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- packages/url_launcher/url_launcher_android/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/url_launcher/url_launcher_android/android/build.gradle b/packages/url_launcher/url_launcher_android/android/build.gradle index 3344266b6b37..ba2a9f8a65f0 100644 --- a/packages/url_launcher/url_launcher_android/android/build.gradle +++ b/packages/url_launcher/url_launcher_android/android/build.gradle @@ -59,7 +59,7 @@ android { } dependencies { - compileOnly 'androidx.annotation:annotation:1.2.0' + compileOnly 'androidx.annotation:annotation:1.6.0' testImplementation 'junit:junit:4.13.2' testImplementation 'org.mockito:mockito-core:5.1.1' testImplementation 'androidx.test:core:1.0.0' From bb286dad8aadb317a434b6a45bec53855402d802 Mon Sep 17 00:00:00 2001 From: gmackall <34871572+gmackall@users.noreply.github.com> Date: Thu, 22 Jun 2023 08:49:35 -0700 Subject: [PATCH 2/9] Update build.gradle --- .../url_launcher/url_launcher_android/android/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/url_launcher/url_launcher_android/android/build.gradle b/packages/url_launcher/url_launcher_android/android/build.gradle index cee51725b80d..a3a25c6ca9d1 100644 --- a/packages/url_launcher/url_launcher_android/android/build.gradle +++ b/packages/url_launcher/url_launcher_android/android/build.gradle @@ -64,4 +64,8 @@ dependencies { testImplementation 'org.mockito:mockito-core:5.1.1' testImplementation 'androidx.test:core:1.0.0' testImplementation 'org.robolectric:robolectric:4.10.3' + + // 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.22")) } From e2e12ab0d294f10cc32a29e94dfcdd671b0237f3 Mon Sep 17 00:00:00 2001 From: gmackall <34871572+gmackall@users.noreply.github.com> Date: Thu, 22 Jun 2023 08:51:08 -0700 Subject: [PATCH 3/9] Update CHANGELOG.md --- packages/url_launcher/url_launcher_android/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/url_launcher/url_launcher_android/CHANGELOG.md b/packages/url_launcher/url_launcher_android/CHANGELOG.md index 040ec106155e..84943e179387 100644 --- a/packages/url_launcher/url_launcher_android/CHANGELOG.md +++ b/packages/url_launcher/url_launcher_android/CHANGELOG.md @@ -1,3 +1,8 @@ +## 6.0.36 + +* Bumps androidx.annotation:annotation from 1.2.0 to 1.6.0 +* Adds a dependency on kotlin-bom to align versions of Kotlin transitive dependencies. + ## 6.0.35 * Converts method channels to Pigeon. From 9514daecb6f4865a5850db55ae3fac6644779893 Mon Sep 17 00:00:00 2001 From: gmackall <34871572+gmackall@users.noreply.github.com> Date: Thu, 22 Jun 2023 08:51:19 -0700 Subject: [PATCH 4/9] Update pubspec.yaml --- packages/url_launcher/url_launcher_android/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/url_launcher/url_launcher_android/pubspec.yaml b/packages/url_launcher/url_launcher_android/pubspec.yaml index 72962b595e68..5967bf0bb9e9 100644 --- a/packages/url_launcher/url_launcher_android/pubspec.yaml +++ b/packages/url_launcher/url_launcher_android/pubspec.yaml @@ -2,7 +2,7 @@ name: url_launcher_android description: Android implementation of the url_launcher plugin. repository: https://github.com/flutter/packages/tree/main/packages/url_launcher/url_launcher_android issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+url_launcher%22 -version: 6.0.35 +version: 6.0.36 environment: sdk: ">=2.18.0 <4.0.0" From 5ce2cac15dc257255f4e304235f1d2a3a9b515c8 Mon Sep 17 00:00:00 2001 From: gmackall <34871572+gmackall@users.noreply.github.com> Date: Thu, 22 Jun 2023 09:07:11 -0700 Subject: [PATCH 5/9] Update build.gradle --- packages/url_launcher/url_launcher_android/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/url_launcher/url_launcher_android/android/build.gradle b/packages/url_launcher/url_launcher_android/android/build.gradle index a3a25c6ca9d1..930e016546d4 100644 --- a/packages/url_launcher/url_launcher_android/android/build.gradle +++ b/packages/url_launcher/url_launcher_android/android/build.gradle @@ -59,7 +59,7 @@ android { } dependencies { - compileOnly 'androidx.annotation:annotation:1.6.0' + implementation 'androidx.annotation:annotation:1.6.0' testImplementation 'junit:junit:4.13.2' testImplementation 'org.mockito:mockito-core:5.1.1' testImplementation 'androidx.test:core:1.0.0' From a8430ba6e6a35102b866eaa7248bc0bf42eea189 Mon Sep 17 00:00:00 2001 From: gmackall <34871572+gmackall@users.noreply.github.com> Date: Thu, 22 Jun 2023 10:42:23 -0700 Subject: [PATCH 6/9] Undo addition of kotlin-bom dependency --- .../url_launcher/url_launcher_android/android/build.gradle | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/url_launcher/url_launcher_android/android/build.gradle b/packages/url_launcher/url_launcher_android/android/build.gradle index 930e016546d4..cf8371cebcd5 100644 --- a/packages/url_launcher/url_launcher_android/android/build.gradle +++ b/packages/url_launcher/url_launcher_android/android/build.gradle @@ -64,8 +64,4 @@ dependencies { testImplementation 'org.mockito:mockito-core:5.1.1' testImplementation 'androidx.test:core:1.0.0' testImplementation 'org.robolectric:robolectric:4.10.3' - - // 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.22")) } From 55a28d751572f6fc2de5fa35f83eefd4ef03664e Mon Sep 17 00:00:00 2001 From: gmackall <34871572+gmackall@users.noreply.github.com> Date: Thu, 22 Jun 2023 10:42:41 -0700 Subject: [PATCH 7/9] Update CHANGELOG.md --- packages/url_launcher/url_launcher_android/CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/url_launcher/url_launcher_android/CHANGELOG.md b/packages/url_launcher/url_launcher_android/CHANGELOG.md index 84943e179387..1e28f6172371 100644 --- a/packages/url_launcher/url_launcher_android/CHANGELOG.md +++ b/packages/url_launcher/url_launcher_android/CHANGELOG.md @@ -1,7 +1,6 @@ ## 6.0.36 * Bumps androidx.annotation:annotation from 1.2.0 to 1.6.0 -* Adds a dependency on kotlin-bom to align versions of Kotlin transitive dependencies. ## 6.0.35 From 5e4ce08e4b545e8fa100832abc087df61b392403 Mon Sep 17 00:00:00 2001 From: gmackall <34871572+gmackall@users.noreply.github.com> Date: Thu, 22 Jun 2023 10:50:53 -0700 Subject: [PATCH 8/9] Update CHANGELOG.md --- packages/url_launcher/url_launcher_android/CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/url_launcher/url_launcher_android/CHANGELOG.md b/packages/url_launcher/url_launcher_android/CHANGELOG.md index 1e28f6172371..f7605d8f2a33 100644 --- a/packages/url_launcher/url_launcher_android/CHANGELOG.md +++ b/packages/url_launcher/url_launcher_android/CHANGELOG.md @@ -1,6 +1,7 @@ ## 6.0.36 -* Bumps androidx.annotation:annotation from 1.2.0 to 1.6.0 +* Bumps androidx.annotation:annotation from 1.2.0 to 1.6.0. +* Adds a dependency on kotlin-bom to align versions of Kotlin transitive dependencies. ## 6.0.35 From 469f03744026ae1d8c6ef0e0c4c534977d582642 Mon Sep 17 00:00:00 2001 From: gmackall <34871572+gmackall@users.noreply.github.com> Date: Thu, 22 Jun 2023 10:51:20 -0700 Subject: [PATCH 9/9] Update build.gradle --- .../url_launcher/url_launcher_android/android/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/url_launcher/url_launcher_android/android/build.gradle b/packages/url_launcher/url_launcher_android/android/build.gradle index cf8371cebcd5..930e016546d4 100644 --- a/packages/url_launcher/url_launcher_android/android/build.gradle +++ b/packages/url_launcher/url_launcher_android/android/build.gradle @@ -64,4 +64,8 @@ dependencies { testImplementation 'org.mockito:mockito-core:5.1.1' testImplementation 'androidx.test:core:1.0.0' testImplementation 'org.robolectric:robolectric:4.10.3' + + // 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.22")) }