Skip to content

Commit

Permalink
feat(deps): update dependencies from v7.1.5 to v8 (major) (#111)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
renovate[bot] and danadajian authored Aug 31, 2024
1 parent cc5bbd8 commit 31e9831
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ repositories {

plugins {
kotlin("jvm") version "2.0.20"
id("com.expediagroup.graphql") version "7.1.5"
id("com.expediagroup.graphql") version "8.0.0"
}

dependencies {
implementation("com.expediagroup", "graphql-kotlin-schema-generator", "7.1.5")
implementation("com.expediagroup", "graphql-kotlin-server", "7.1.5")
implementation("com.expediagroup", "graphql-kotlin-federation", "7.1.5")
implementation("com.expediagroup", "graphql-kotlin-schema-generator", "8.0.0")
implementation("com.expediagroup", "graphql-kotlin-server", "8.0.0")
implementation("com.expediagroup", "graphql-kotlin-federation", "8.0.0")
}

sourceSets {
Expand Down
9 changes: 6 additions & 3 deletions test/unit/should_replace_federation_directives/schema.graphql
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
directive @extends on OBJECT
directive @external on FIELD_DEFINITION
directive @key(fields: FieldSet!) repeatable on OBJECT | INTERFACE
directive @extends on OBJECT | INTERFACE
directive @external on OBJECT | FIELD_DEFINITION
directive @key(
fields: FieldSet!
resolvable: Boolean = true
) repeatable on OBJECT | INTERFACE
scalar FieldSet

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

0 comments on commit 31e9831

Please sign in to comment.