Skip to content

Commit c828848

Browse files
authored
Bump develocity gradle plugin, and apollo-published (#5883)
* Bump develocity gradle plugin * Bump apollo-published
1 parent 38af25f commit c828848

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

benchmark/settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pluginManagement {
22
includeBuild("build-logic")
33
}
44
plugins {
5-
id("com.gradle.develocity") version "3.17.2" // sync with libraries.toml
5+
id("com.gradle.develocity") version "3.17.3" // sync with libraries.toml
66
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.1"
77
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
88
}
@@ -28,4 +28,4 @@ listOf(pluginManagement.repositories, dependencyResolutionManagement.repositorie
2828
}
2929
}
3030

31-
includeBuild("../")
31+
includeBuild("../")

build-logic/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("com.gradle.develocity") version "3.17.2" // sync with libraries.toml
2+
id("com.gradle.develocity") version "3.17.3" // sync with libraries.toml
33
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.1"
44
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
55
}

gradle/libraries.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ androidx-sqlite = "2.3.1"
1616
# This is used by the gradle integration tests to get the artifacts locally
1717
apollo = "4.0.0-beta.7-SNAPSHOT"
1818
# Used by the apollo-tooling project which uses a published version of Apollo
19-
apollo-published = "4.0.0-beta.3"
19+
apollo-published = "4.0.0-beta.6"
2020
atomicfu = "0.23.1"
2121
cache = "2.0.2"
2222
compose = "1.5.1"
@@ -100,7 +100,7 @@ clikt = { group = "com.github.ajalt.clikt", name = "clikt", version = "3.5.2" }
100100
compose-runtime = { group = "androidx.compose.runtime", name = "runtime", version.ref = "compose" }
101101
compose-ui = { group = "androidx.compose.ui", name = "ui", version.ref = "compose" }
102102
dokkatoo = "dev.adamko.dokkatoo:dokkatoo-plugin:2.1.0"
103-
dgp = "com.gradle:develocity-gradle-plugin:3.17.2" # // sync with settings.gradle.kts
103+
dgp = "com.gradle:develocity-gradle-plugin:3.17.3" # // sync with settings.gradle.kts
104104
# Not updating because it fails in apollo-compiler Java tests with
105105
# annotation @org.jetbrains.annotations.Nullable not applicable in this type context
106106
google-testing-compile = { group = "com.google.testing.compile", name = "compile-testing", version = "0.19" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
extend schema @link(url: "https://specs.apollo.dev/nullability/v0.1", import: ["@catch", "CatchTo"])
1+
extend schema @link(url: "https://specs.apollo.dev/nullability/v0.3", import: ["@catch", "CatchTo"])
22
extend schema @catch(to: THROW)
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
extend schema @link(url: "https://specs.apollo.dev/nullability/v0.1", import: ["@semanticNonNull", "@catch", "CatchTo"])
1+
extend schema @link(url: "https://specs.apollo.dev/nullability/v0.3", import: ["@semanticNonNull", "@semanticNonField", "@catch", "CatchTo"])
22
extend schema @catch(to: THROW)
33

4-
extend type Service @semanticNonNull(field: "statsWindow")
5-
extend type ServiceMutation @semanticNonNull(field: "registerOperationsWithResponse")
6-
extend type ServiceStatsWindow @semanticNonNull(field: "fieldLatencies")
7-
extend type RegisterOperationsMutationResponse @semanticNonNull(field: "invalidOperations")
4+
extend type Service @semanticNonNullField(name: "statsWindow")
5+
extend type ServiceMutation @semanticNonNullField(name: "registerOperationsWithResponse")
6+
extend type ServiceStatsWindow @semanticNonNullField(name: "fieldLatencies")
7+
extend type RegisterOperationsMutationResponse @semanticNonNullField(name: "invalidOperations")
88
# Not sure if errors can be null or not
9-
# extend type InvalidOperation @semanticNonNull(field: "errors")
9+
# extend type InvalidOperation @semanticNonNull(field: "errors")
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
extend schema @link(url: "https://specs.apollo.dev/nullability/v0.1", import: ["@semanticNonNull", "@catch", "CatchTo"])
1+
extend schema @link(url: "https://specs.apollo.dev/nullability/v0.3", import: ["@semanticNonNull", "@semanticNonField", "@catch", "CatchTo"])
22
extend schema @catch(to: THROW)
33

4-
extend type GraphMutation @semanticNonNull(field: "uploadSchema")
5-
extend type GraphMutation @semanticNonNull(field: "publishSubgraph")
6-
extend type GraphVariant @semanticNonNull(field: "latestPublication")
7-
extend type SchemaPublication @semanticNonNull(field: "schema")
4+
extend type GraphMutation @semanticNonNullField(name: "uploadSchema")
5+
extend type GraphMutation @semanticNonNullField(name: "publishSubgraph")
6+
extend type GraphVariant @semanticNonNullField(name: "latestPublication")
7+
extend type SchemaPublication @semanticNonNullField(name: "schema")

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pluginManagement {
33
}
44

55
plugins {
6-
id("com.gradle.develocity") version "3.17.2" // sync with libraries.toml
6+
id("com.gradle.develocity") version "3.17.3" // sync with libraries.toml
77
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.1"
88
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
99
}

tests/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pluginManagement {
33
}
44

55
plugins {
6-
id("com.gradle.develocity") version "3.17.2" // sync with libraries.toml
6+
id("com.gradle.develocity") version "3.17.3" // sync with libraries.toml
77
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.1"
88
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
99
}

0 commit comments

Comments
 (0)