An open index of dependabot pull requests across open source projects.

Bump io.github.deweyjose:graphqlcodegen-maven-plugin from 2.0.0 to 3.5.0

Merged
Number: #80
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: June 23, 2025 at 04:52 AM UTC
(about 1 year ago)
Updated: June 23, 2025 at 09:03 AM UTC
(about 1 year ago)
Merged: June 23, 2025 at 09:03 AM UTC
(about 1 year ago)
by ToQuery
Time to Close: about 4 hours
Labels:
dependencies java
Description:

Bumps io.github.deweyjose:graphqlcodegen-maven-plugin from 2.0.0 to 3.5.0.

Release notes

Sourced from io.github.deweyjose:graphqlcodegen-maven-plugin's releases.

graphqlcodegen-maven-plugin-3.5.0

What's Changed

Full Changelog: https://github.com/deweyjose/graphqlcodegen/compare/graphqlcodegen-maven-plugin-3.4.0...graphqlcodegen-maven-plugin-3.5.0

Version 3.5.0 introduces schema transformation for DGS Client compatibility

This release adds automatic transformation of custom root type names to standard GraphQL types, solving compatibility issues when working with remote GraphQL servers that use non-standard root type names.

The Problem

Many GraphQL servers use custom root type names like CustomQuery, CustomMutation, or CustomSubscription instead of the standard Query, Mutation, and Subscription. While this works fine for server-side operations, DGS Client codegen expects standard root type names and fails to generate client code for these schemas.

The Solution

The plugin now automatically transforms custom root types to their standard equivalents during code generation:

# Remote server schema (custom root types)
schema {
    query: CustomQuery
    mutation: CustomMutation
    subscription: CustomSubscription
}

type CustomQuery {
hello: String
}

Generated client code (standard root types)

type Query {
hello: String
}

Key Benefits

  • Seamless DGS Client integration - Generate working client code from any GraphQL schema
  • No server changes required - Works with existing remote servers that use custom root types
  • Transparent transformation - The GraphQL operations sent over the wire maintain the expected shape for the server
  • Backward compatible - Existing schemas with standard root types continue to work unchanged

When to Use

This feature is primarily useful for client-side code generation when connecting to remote GraphQL servers that use custom root type names. The transformation ensures DGS Client can generate compatible code while preserving the original schema structure for server communication.

graphqlcodegen-maven-plugin-3.4.0

What's Changed

... (truncated)

Commits
  • 56749bc bump version
  • 7cb7dd1 Update coverage badge
  • 273aea3 feat: transform schema (#253)
  • 1908e26 Bump com.graphql-java:graphql-java from 24.0 to 24.1 (#251)
  • e6136c0 Bump org.apache.maven:maven-plugin-api from 3.9.9 to 3.9.10 (#250)
  • 6f8b565 Bump org.mockito:mockito-core from 5.2.0 to 5.18.0 (#249)
  • 59fa5e6 Bump org.jetbrains.kotlin:kotlin-reflect from 1.9.23 to 2.1.21 (#229)
  • df0152a readme instructions for localTypeMappingPropertiesFiles
  • b7421b9 docs: add documentation for localTypeMappingPropertiesFiles
  • 8989fce Update coverage badge
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request Statistics
Commits:
1
Files Changed:
1
Additions:
+1
Deletions:
-1
Package Dependencies
Ecosystem:
maven
Version Change:
2.0.0 → 3.5.0
Update Type:
Major
Technical Details
ID: 2023054
UUID: 2610400308
Node ID: PR_kwDOK1Mht86bl4w0
Host: GitHub
Repository: ToQuery/example-spring-graphql
Merge State: Unknown