Skip to content

Commit 31e9831

Browse files
feat(deps): update dependencies from v7.1.5 to v8 (major) (#111)
* feat(deps): update dependencies from v7.1.5 to v8 * update federation directives --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Dan Adajian <dadajian@expediagroup.com>
1 parent cc5bbd8 commit 31e9831

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ repositories {
66

77
plugins {
88
kotlin("jvm") version "2.0.20"
9-
id("com.expediagroup.graphql") version "7.1.5"
9+
id("com.expediagroup.graphql") version "8.0.0"
1010
}
1111

1212
dependencies {
13-
implementation("com.expediagroup", "graphql-kotlin-schema-generator", "7.1.5")
14-
implementation("com.expediagroup", "graphql-kotlin-server", "7.1.5")
15-
implementation("com.expediagroup", "graphql-kotlin-federation", "7.1.5")
13+
implementation("com.expediagroup", "graphql-kotlin-schema-generator", "8.0.0")
14+
implementation("com.expediagroup", "graphql-kotlin-server", "8.0.0")
15+
implementation("com.expediagroup", "graphql-kotlin-federation", "8.0.0")
1616
}
1717

1818
sourceSets {

test/unit/should_replace_federation_directives/schema.graphql

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
directive @extends on OBJECT
2-
directive @external on FIELD_DEFINITION
3-
directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE
1+
directive @extends on OBJECT | INTERFACE
2+
directive @external on OBJECT | FIELD_DEFINITION
3+
directive @key(
4+
fields: FieldSet!
5+
resolvable: Boolean = true
6+
) repeatable on OBJECT | INTERFACE
47
scalar FieldSet
58

69
type FederatedType @extends @key(fields: "some field") {

0 commit comments

Comments
 (0)