Skip to content

Releases: deweyjose/graphqlcodegen

graphqlcodegen-maven-plugin-1.61.5

24 Aug 11:44
Compare
Choose a tag to compare

graphqlcodegen-maven-plugin-1.61.4

23 Aug 15:44
1424021
Compare
Choose a tag to compare

What's Changed

  • fix(schemaPaths): fix the default setup for schema paths by @deweyjose in #171

Fixes issue #168

Full Changelog: graphqlcodegen-maven-plugin-1.61.3...graphqlcodegen-maven-plugin-1.61.4

graphqlcodegen-maven-plugin-1.61.3

23 Aug 15:24
Compare
Choose a tag to compare

Full Changelog:

Integrate DGS Codegen 6.2.4.

Add support for for date suppression in the @generated annotation for reproducible builds.

Fixes #169

graphqlcodegen-maven-plugin-1.61.2

23 Aug 14:50
847f616
Compare
Choose a tag to compare

What's Changed

  • Bump com.netflix.graphql.dgs.codegen:graphql-dgs-codegen-core from 6.2.1 to 6.2.2 by @dependabot in #166
  • Bump com.squareup:kotlinpoet-jvm from 1.18.0 to 1.18.1 by @dependabot in #165
  • Bump junit.version from 5.10.2 to 5.10.3 by @dependabot in #164
  • Bump org.projectlombok:lombok from 1.18.32 to 1.18.34 by @dependabot in #163
  • Bump org.sonatype.plugins:nexus-staging-maven-plugin from 1.6.13 to 1.7.0 by @dependabot in #162

Full Changelog: graphqlcodegen-maven-plugin-1.61.1...graphqlcodegen-maven-plugin-1.61.2

Version 1.61.1

09 Jul 22:33
2777d43
Compare
Choose a tag to compare

What's Changed

  • Remove volatility from schema manifest file by @erichaagdev in #160
  • Bump org.apache.maven.plugin-tools:maven-plugin-annotations from 3.13.0 to 3.13.1 by @dependabot in #153
  • Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0 by @dependabot in #154
  • Bump org.apache.maven.plugins:maven-plugin-plugin from 3.13.0 to 3.13.1 by @dependabot in #156
  • Bump org.apache.maven:maven-plugin-api from 3.9.6 to 3.9.8 by @dependabot in #158
  • Bump com.squareup:kotlinpoet-jvm from 1.16.0 to 1.18.0 by @dependabot in #159

New Contributors

Full Changelog: graphqlcodegen-maven-plugin-1.61.0...graphqlcodegen-maven-plugin-1.61.1

Version 1.61.0

27 May 14:24
cf8c79a
Compare
Choose a tag to compare

Integrate DGS codegen 6.2.1.

Version 1.60.1

26 Mar 23:08
8db5826
Compare
Choose a tag to compare
  • update documentation per Netflix DGS that schemaJarFilesFromDependencies requires the external .graphql(s) files to be packaged under META-INF
  • fixed a small bug where if no local schemas were specified the plugin may not compile external schema files.

Version 1.60.0

10 Feb 15:26
206b703
Compare
Choose a tag to compare

Maintenance:

  • upgrade to DGS codegen 6.1.3

Feature:
Support for issue: #130
typeMapping can now be configured via properties file bundled in other dependencies. This is useful for cases where common types are shared across multiple projects and the typeMapping is the same.

This feature will scan all dependencies in the project for the files listed in typeMappingPropertiesFiles and merge them with any typeMappings included directly in the plugin <configuration> block.

example plugin config:

<configuration>
  <typeMappingPropertiesFiles>
    <typeMappingPropertiesFile>graphql/common-type-mappings.properties</typeMappingPropertiesFile>
  </typeMappingPropertiesFiles>
</configuration>

example properties file:

Foo=io.github.deweyjose.Foo

For a fully working example check out the graphqlcodegen-example project.

Version 1.51.3

18 Jan 02:50
9c2b301
Compare
Choose a tag to compare

Integrate DGS 6.1.3

Version 1.51.2

10 Jan 02:41
acec328
Compare
Choose a tag to compare

Bug fix for kotlin code generation. The kotlinpoet-jvm platform dependency is now required as kotlinpoet went multiplatform.
Fixes #116