Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update some Gradle dependencies #2524

Merged
merged 1 commit into from
Jul 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ buildscript {
// versions below must match the ones in that repository.
ext.versions = [
android_gradle_plugin: '7.4.2',
coroutines: '1.7.1',
coroutines: '1.7.2',
jna: '5.13.0',
junit: '4.12',
mockito: '5.3.1',
junit: '4.13.2',
mockito: '5.4.0',
mockwebserver: '4.11.0', // This is different than a-c, but we're fine, it's only tests.
kotlin: '1.8.21',
robolectric: '4.10.1',
robolectric: '4.10.3',
rust_android_plugin: '0.9.3',

// Android X dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ internal object Dispatchers {
* A coroutine scope to make it easy to dispatch API calls off the main thread.
* This needs to be a `var` so that our tests can override this.
*/
@OptIn(kotlinx.coroutines.DelicateCoroutinesApi::class)
@OptIn(kotlinx.coroutines.DelicateCoroutinesApi::class, kotlinx.coroutines.ExperimentalCoroutinesApi::class)
var API = WaitableCoroutineScope(
CoroutineScope(
newSingleThreadContext("GleanAPIPool") + supervisorJob,
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Jun 24 17:01:45 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME