Skip to content

Commit 41b4d38

Browse files
Pull all changes from the latest main (#1303)
* Revert sonar version back to 4.0.0.2929 * Revert graphql-java back to 20.2 (#1302) * Bump org.apache.maven:maven-core (#1301) Bumps [org.apache.maven:maven-core](https://github.com/apache/maven) from 3.9.3 to 3.9.4. - [Release notes](https://github.com/apache/maven/releases) - [Commits](apache/maven@maven-3.9.3...maven-3.9.4) --- updated-dependencies: - dependency-name: org.apache.maven:maven-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.apache.maven:maven-plugin-api (#1300) Bumps [org.apache.maven:maven-plugin-api](https://github.com/apache/maven) from 3.9.3 to 3.9.4. - [Release notes](https://github.com/apache/maven/releases) - [Commits](apache/maven@maven-3.9.3...maven-3.9.4) --- updated-dependencies: - dependency-name: org.apache.maven:maven-plugin-api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-data-mongodb (#1296) Bumps [org.springframework.boot:spring-boot-starter-data-mongodb](https://github.com/spring-projects/spring-boot) from 2.7.13 to 2.7.14. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v2.7.13...v2.7.14) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-data-mongodb dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-data-mongodb (#1295) Bumps [org.springframework.boot:spring-boot-starter-data-mongodb](https://github.com/spring-projects/spring-boot) from 2.7.13 to 2.7.14. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v2.7.13...v2.7.14) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-data-mongodb dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-data-mongodb (#1292) Bumps [org.springframework.boot:spring-boot-starter-data-mongodb](https://github.com/spring-projects/spring-boot) from 2.7.13 to 2.7.14. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v2.7.13...v2.7.14) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-data-mongodb dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump org.springframework.boot:spring-boot-starter-web (#1291) Bumps [org.springframework.boot:spring-boot-starter-web](https://github.com/spring-projects/spring-boot) from 2.7.13 to 2.7.14. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](spring-projects/spring-boot@v2.7.13...v2.7.14) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0b7faf6 commit 41b4d38

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
id "java-library"
77
id "signing"
88
id "maven-publish"
9-
id "org.sonarqube" version "4.3.0.3225"
9+
id "org.sonarqube" version "4.0.0.2929"
1010
}
1111

1212
def graphqlCodegenVersion = '5.8.1-SNAPSHOT' // This variable used in the automatic release process
@@ -20,7 +20,7 @@ repositories {
2020

2121
dependencies {
2222
compileOnly "org.freemarker:freemarker:2.3.32"
23-
compileOnly "com.graphql-java:graphql-java:21.0"
23+
compileOnly "com.graphql-java:graphql-java:20.2"
2424
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.15.2"
2525
compileOnly "com.typesafe:config:1.4.2"
2626

plugins/gradle/example-server/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mainClassName = "io.github.kobylynskyi.product.Application"
1313

1414
dependencies {
1515
implementation "org.springframework.boot:spring-boot-starter-web:2.7.14"
16-
implementation "org.springframework.boot:spring-boot-starter-data-mongodb:2.7.13"
16+
implementation "org.springframework.boot:spring-boot-starter-data-mongodb:2.7.14"
1717

1818
implementation "com.graphql-java-kickstart:graphql-spring-boot-starter:11.0.0"
1919
implementation "com.graphql-java-kickstart:graphiql-spring-boot-starter:11.1.0"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
implementation "io.github.kobylynskyi:graphql-java-codegen:${version}"
2828

2929
implementation "org.freemarker:freemarker:2.3.32"
30-
implementation "com.graphql-java:graphql-java:21.0"
30+
implementation "com.graphql-java:graphql-java:20.2"
3131
implementation "com.fasterxml.jackson.core:jackson-databind:2.15.2"
3232
implementation "com.typesafe:config:1.4.2"
3333

plugins/maven/example-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
<dependency>
129129
<groupId>org.springframework.boot</groupId>
130130
<artifactId>spring-boot-starter-data-mongodb</artifactId>
131-
<version>2.7.13</version>
131+
<version>2.7.14</version>
132132
</dependency>
133133

134134
<dependency>

plugins/maven/example-server/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@
7676
<dependency>
7777
<groupId>org.springframework.boot</groupId>
7878
<artifactId>spring-boot-starter-web</artifactId>
79-
<version>2.7.13</version>
79+
<version>2.7.14</version>
8080
</dependency>
8181
<dependency>
8282
<groupId>org.springframework.boot</groupId>
8383
<artifactId>spring-boot-starter-data-mongodb</artifactId>
84-
<version>2.7.13</version>
84+
<version>2.7.14</version>
8585
</dependency>
8686

8787
<dependency>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
</ciManagement>
5757

5858
<properties>
59-
<version.maven-plugin-api>3.9.3</version.maven-plugin-api>
60-
<version.maven-core>3.9.3</version.maven-core>
59+
<version.maven-plugin-api>3.9.4</version.maven-plugin-api>
60+
<version.maven-core>3.9.4</version.maven-core>
6161
<version.maven-plugin-annotations>3.9.0</version.maven-plugin-annotations>
6262
<version.maven-plugin-plugin>3.9.0</version.maven-plugin-plugin>
6363
<version.maven-compiler-plugin>3.11.0</version.maven-compiler-plugin>
@@ -121,7 +121,7 @@
121121
<dependency>
122122
<groupId>com.graphql-java</groupId>
123123
<artifactId>graphql-java</artifactId>
124-
<version>21.0</version>
124+
<version>20.2</version>
125125
</dependency>
126126
<dependency>
127127
<groupId>com.fasterxml.jackson.core</groupId>

0 commit comments

Comments
 (0)