Skip to content

Commit 9a64c33

Browse files
authored
Merge pull request #980 from kobylynskyi/develop
5.4.1 RELEASE
2 parents 06b83be + 37a9f9e commit 9a64c33

File tree

60 files changed

+349
-90
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+349
-90
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id "org.sonarqube" version "3.2.0"
1010
}
1111

12-
def graphqlCodegenVersion = '5.4.0' // This variable used in the automatic release process
12+
def graphqlCodegenVersion = '5.4.1' // This variable used in the automatic release process
1313

1414
group = "io.github.kobylynskyi"
1515
version = graphqlCodegenVersion
@@ -22,7 +22,7 @@ repositories {
2222
dependencies {
2323
compileOnly "org.freemarker:freemarker:2.3.31"
2424
compileOnly "com.graphql-java:graphql-java:16.2"
25-
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.12.1"
25+
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.13.3"
2626
compileOnly "com.typesafe:config:1.4.1"
2727

2828
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.1"

plugins/gradle/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
```groovy
1919
plugins {
20-
id "io.github.kobylynskyi.graphql.codegen" version "5.4.0"
20+
id "io.github.kobylynskyi.graphql.codegen" version "5.4.1"
2121
}
2222
```
2323

@@ -31,7 +31,7 @@ buildscript {
3131
}
3232
}
3333
dependencies {
34-
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:5.4.0"
34+
classpath "io.github.kobylynskyi.graphql.codegen:graphql-codegen-gradle-plugin:5.4.1"
3535
}
3636
}
3737

plugins/gradle/example-client-kotlin/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import com.kobylynskyi.graphql.codegen.model.GeneratedLanguage
22
import io.github.kobylynskyi.graphql.codegen.gradle.GraphQLCodegenGradleTask
33

44
plugins {
5-
id 'java'
6-
id "org.jetbrains.kotlin.jvm" version "1.3.71"
7-
id "io.github.kobylynskyi.graphql.codegen" version "5.4.0"
5+
id "java"
6+
id "org.jetbrains.kotlin.jvm" version "1.6.21"
7+
id "io.github.kobylynskyi.graphql.codegen" version "5.4.1"
88
}
99

10-
def graphqlCodegenClientKotlinVersion = '5.4.0' // Variable used in the automatic release process
10+
def graphqlCodegenClientKotlinVersion = '5.4.1' // Variable used in the automatic release process
1111

1212
group = 'io.github.dreamylost'
1313
version = graphqlCodegenClientKotlinVersion
@@ -29,13 +29,13 @@ repositories {
2929

3030

3131
dependencies {
32-
implementation "io.github.kobylynskyi:graphql-java-codegen:5.4.0"
32+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.4.1"
3333
implementation "javax.validation:validation-api:2.0.1.Final"
3434
implementation "com.squareup.okhttp3:okhttp:4.2.2"
35-
implementation "com.fasterxml.jackson.core:jackson-core:2.12.0"
36-
implementation "com.fasterxml.jackson.core:jackson-databind:2.12.0"
37-
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.12.0"
38-
implementation "com.fasterxml.jackson.core:jackson-annotations:2.12.0"
35+
implementation "com.fasterxml.jackson.core:jackson-core:2.13.3"
36+
implementation "com.fasterxml.jackson.core:jackson-databind:2.13.3"
37+
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.13.3"
38+
implementation "com.fasterxml.jackson.core:jackson-annotations:2.13.3"
3939
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
4040
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.0"
4141
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.0"

plugins/gradle/example-client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
// use the latest available version:
99
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
10-
id "io.github.kobylynskyi.graphql.codegen" version "5.4.0"
10+
id "io.github.kobylynskyi.graphql.codegen" version "5.4.1"
1111
}
1212

1313
mainClassName = "io.github.kobylynskyi.order.Application"
@@ -22,7 +22,7 @@ dependencies {
2222

2323
// use the latest available version:
2424
// https://search.maven.org/artifact/io.github.kobylynskyi/graphql-java-codegen
25-
implementation "io.github.kobylynskyi:graphql-java-codegen:5.4.0"
25+
implementation "io.github.kobylynskyi:graphql-java-codegen:5.4.1"
2626

2727
implementation "org.apache.httpcomponents:httpclient:4.5.13"
2828
implementation "javax.validation:validation-api:2.0.1.Final"

plugins/gradle/example-server/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
//
77
// use the latest available version:
88
// https://plugins.gradle.org/plugin/io.github.kobylynskyi.graphql.codegen
9-
id "io.github.kobylynskyi.graphql.codegen" version "5.4.0"
9+
id "io.github.kobylynskyi.graphql.codegen" version "5.4.1"
1010
}
1111

1212
mainClassName = "io.github.kobylynskyi.product.Application"

plugins/gradle/graphql-java-codegen-gradle-plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apply plugin: "java"
1616
apply plugin: "idea"
1717
apply plugin: "maven-publish"
1818

19-
def graphqlCodegenGradlePluginVersion = '5.4.0' // This variable used in the automatic release process
19+
def graphqlCodegenGradlePluginVersion = '5.4.1' // This variable used in the automatic release process
2020

2121
group = "io.github.kobylynskyi"
2222
version = graphqlCodegenGradlePluginVersion
@@ -29,7 +29,7 @@ dependencies {
2929

3030
implementation "org.freemarker:freemarker:2.3.31"
3131
implementation "com.graphql-java:graphql-java:16.2"
32-
implementation "com.fasterxml.jackson.core:jackson-databind:2.12.1"
32+
implementation "com.fasterxml.jackson.core:jackson-databind:2.13.3"
3333
implementation "com.typesafe:config:1.4.1"
3434

3535
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'

plugins/maven/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<plugin>
2121
<groupId>io.github.kobylynskyi</groupId>
2222
<artifactId>graphql-codegen-maven-plugin</artifactId>
23-
<version>5.4.0</version>
23+
<version>5.4.1</version>
2424
<executions>
2525
<execution>
2626
<goals>

plugins/maven/example-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.kobylynskyi</groupId>
66
<artifactId>graphql-codegen-maven-plugin-example-client</artifactId>
7-
<version>5.4.0</version>
7+
<version>5.4.1</version>
88
<name>graphql-codegen-maven-plugin-example-client</name>
99

1010
<build>

plugins/maven/example-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.kobylynskyi</groupId>
66
<artifactId>graphql-codegen-maven-plugin-example-server</artifactId>
7-
<version>5.4.0</version>
7+
<version>5.4.1</version>
88
<name>graphql-codegen-maven-plugin-example-server</name>
99

1010
<build>

plugins/maven/graphql-java-codegen-maven-plugin/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>io.github.kobylynskyi</groupId>
55
<artifactId>graphql-codegen-maven-plugin</artifactId>
6-
<version>5.4.0</version>
6+
<version>5.4.1</version>
77
<packaging>maven-plugin</packaging>
88

99
<name>graphql-codegen-maven-plugin</name>
@@ -72,7 +72,7 @@
7272
<version.maven-gpg-plugin>3.0.1</version.maven-gpg-plugin>
7373
<version.maven-shared-utils>3.3.4</version.maven-shared-utils>
7474

75-
<version.graphql-java-codegen>5.4.0</version.graphql-java-codegen>
75+
<version.graphql-java-codegen>5.4.1</version.graphql-java-codegen>
7676
</properties>
7777

7878
<dependencies>
@@ -123,7 +123,7 @@
123123
<dependency>
124124
<groupId>com.fasterxml.jackson.core</groupId>
125125
<artifactId>jackson-databind</artifactId>
126-
<version>2.12.1</version>
126+
<version>2.13.3</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>com.typesafe</groupId>

0 commit comments

Comments
 (0)