Releases: deweyjose/graphqlcodegen
graphqlcodegen-maven-plugin-1.61.5
graphqlcodegen-maven-plugin-1.61.4
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
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
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
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
- @erichaagdev made their first contribution in #160
Full Changelog: graphqlcodegen-maven-plugin-1.61.0...graphqlcodegen-maven-plugin-1.61.1
Version 1.61.0
Integrate DGS codegen 6.2.1.
Version 1.60.1
- 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
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
Integrate DGS 6.1.3
Version 1.51.2
Bug fix for kotlin code generation. The kotlinpoet-jvm platform dependency is now required as kotlinpoet went multiplatform.
Fixes #116