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 dependency com.expediagroup:graphql-kotlin-spring-server to v8 #394

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 5, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
com.expediagroup:graphql-kotlin-spring-server 5.5.0 -> 8.2.1 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

ExpediaGroup/graphql-kotlin (com.expediagroup:graphql-kotlin-spring-server)

v8.2.1

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@8.2.0...8.2.1

v8.2.0

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@8.1.0...8.2.0

v8.1.0

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@8.0.0...8.1.0

v8.0.0

Compare Source

What's Changed

New Contributors

Full Changelog: ExpediaGroup/graphql-kotlin@7.1.5...8.0.0

v7.2.2

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@7.2.1...7.2.2

v7.2.1

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@7.2.0...7.2.1

v7.2.0

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@7.1.5...7.2.0

v7.1.5

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@7.1.4...7.1.5

v7.1.4

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@7.1.3...7.1.4

v7.1.3

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@7.1.2...7.1.3

v7.1.2

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@7.1.1...7.1.2

v7.1.1

Compare Source

What's Changed

Full Changelog: ExpediaGroup/graphql-kotlin@7.1.0...7.1.1

v7.1.0

Compare Source

Minor Changes

Patch Changes

Other Changes

v7.0.2

Compare Source

Patch Changes
Other Changes

v7.0.1

Compare Source

Patch Changes
Other Changes

v7.0.0

Compare Source

🎉 GraphQL Kotlin 7.0.0!

After over a hundred PRs and numerous pre-releases, we are pleased to announce the 7.0.0 release!

Major Changes and Features
Ktor GraphQL Server Plugin

Ktor is a lightweight web framework from Jetbrains. Its built in Kotlin using Coroutines and follows a functional configuration style where we have to explicitly configure our server with the features that we want to use.
Starting with GraphQL Kotlin v7, we now provide an official Ktor Server Plugin to simplify your GraphQL Ktor server development!

class HelloWorldQuery : Query {
    fun hello(): String = "Hello World!"
}

fun Application.graphQLModule() {
    install(GraphQL) {
        schema {
            packages = listOf("com.example")
            queries = listOf(
                HelloWorldQuery()
            )
        }
    }
    install(Routing) {
        graphQLPostRoute()
    }
}

Check out documentation for details.

GraphQL WS Subscription Support

Ktor and Spring GraphQL servers now provide out-of-box support for GraphQL subscriptions using GraphQL WS protocol.

Spring support for Apollo subscription transport ws was deprecated and will be removed in future releases.

GraalVM support

GraalVM is a high performance JDK distribution from Oracle that supports Ahead-of-Time (AOT) compilation. AOT allows you to build highly optimized native images that have milisecond startup times with immediate peak performance without the overhead of running JVM.

GraphQL Kotlin v7 provides out-of-box support for creating native GraalVM Ktor and Spring GraphQL servers. Maven and Gradle plugins were updated to provide new goal/task to auto-generate GraalVM reachability metadata.

Check out plugin documentation (Gradle | Maven) for more details or watch my
Supercharge your GraphQL with Ktor and GraalVM (KotlinConf 2023) talk for a live demo!

Drop support for GraphQLContext interface

graphql-java v17 introduced new GraphQL context mechanism which standardized how context should be utilized. Prior to v17, context could be of any object and it was up to the developers to decide how it should look like. This old "any" object context mechanism is currently deprecated and will be removed in future versions of graphql-java. "New" GraphQLContext standardizes the approach and is a simple wrapper around a map.

With GraphQL Kotlin v7 we dropped the support for old context mechanism and generic GraphQLContext interface is no longer available. Standardized context map is the only supported mechanism. See documentation for details.

Include GraphiQL IDE

GraphiQL is the official GraphQL IDE backed by the GraphQL Foundation and is now the default IDE included with all graphql-kotlin-server implementations.

GraphQL Playground is still available in graphql-kotlin-spring-server through explicit opt-in mechanism. Playground integration was deprecated and will be removed in future releases.

Apollo Federation v2.5 Support

Library now defaults to Apollo Federation v2 and users have to explicitly opt-out into Federation v1 schemas. To avoid potential conflicts on imported elements, Federation logic was also updated to support namespacing and renaming of the imported types.

By default, graphql-kotlin will continue to apply @link directive using latest supported federation specification but will only auto-import federation specific directives up to version 2.3 and only if they are present (i.e. applied to an element) in the schema. All new fed v2.4+ won't be included in the auto-imports and instead will be namespaced with the spec name, e.g. @federation__authenticated.

Users can provide custom @link information by providing a schema object with @LinkDirective information, e.g.

@​LinkDirective(url = "https://specs.apollo.dev/federation/v2.3", `as`: "fed", import = [LinkImport(name = "@​key", `as` = "@​myKey"), LinkImport(name = "@​requires")])
class MyCustomLinkSchema

Will generate following schema

schema @​link(as: "fed", import : [{name : "@​key", as : "@​myKey"}, "@​requires"], url : "https://specs.apollo.dev/federation/v2.3"){
  query: Query
}

// directive imported with custom name
"Space separated list of primary keys needed to access federated object"
directive @​myKey(fields: fed__FieldSet!, resolvable: Boolean = true) repeatable on OBJECT | INTERFACE

// directive imported with same name
"Specifies required input field set from the base type for a resolver"
directive @​requires(fields: fed__FieldSet!) on FIELD_DEFINITION

// type imported with custom namespace
"Federation type representing set of fields"
scalar fed__FieldSet
Java 17 and Kotlin 1.8 Baseline

We were previously targeting Java 8 byte code to match graphql-java target. Java 8 was released over 9 years ago and with Java 21 LTS just around the corner, many libraries started to move towards relying on newer versions of Java. With graphql-java finally moving to Java 11 target and Spring Boot v3 requiring Java 17, we also updated our compilation target to Java 17.

While Kotlin currently does not benefit directly from new Java features, your applications will benefit tremendously from multidue of security and performance improvements in new JVM versions.

All Changes

Full Changelog: ExpediaGroup/graphql-kotlin@c65f2a1...11c24e8

Major Changes
Minor Changes
Patch Changes
Other Changes

New Contributors

v6.9.0

Compare Source

What's Changed

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/com.expediagroup-graphql-kotlin-spring-server-8.x branch from 6994352 to c4cb7dc Compare October 19, 2024 01:08
@renovate renovate bot force-pushed the renovate/com.expediagroup-graphql-kotlin-spring-server-8.x branch from c4cb7dc to 3469836 Compare October 27, 2024 04:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants