Skip to content

Commit

Permalink
Merge pull request #24945 from jhipster/skip_ci-spring-boot_3.2.2
Browse files Browse the repository at this point in the history
Update spring-boot version to 3.2.2
  • Loading branch information
DanielFran authored Feb 2, 2024
2 parents c5d26b2 + c76d500 commit 514123d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
3 changes: 0 additions & 3 deletions generators/app/__snapshots__/generator.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,6 @@ exports[`generator - app with default config should match snapshot 1`] = `
"r2dbc": {
"artifactId": "r2dbc-postgresql",
"groupId": "org.postgresql",
"version": "1.0.2.RELEASE",
},
},
"prodDatabaseExtraOptions": "",
Expand Down Expand Up @@ -1268,7 +1267,6 @@ exports[`generator - app with gateway should match snapshot 1`] = `
"r2dbc": {
"artifactId": "r2dbc-postgresql",
"groupId": "org.postgresql",
"version": "1.0.2.RELEASE",
},
},
"prodDatabaseExtraOptions": "",
Expand Down Expand Up @@ -1785,7 +1783,6 @@ exports[`generator - app with microservice should match snapshot 1`] = `
"r2dbc": {
"artifactId": "r2dbc-postgresql",
"groupId": "org.postgresql",
"version": "1.0.2.RELEASE",
},
},
"prodDatabaseExtraOptions": "",
Expand Down
2 changes: 1 addition & 1 deletion generators/generator-constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const javaDependencies = {
/**
* spring-boot version should match the one managed by https://mvnrepository.com/artifact/tech.jhipster/jhipster-dependencies/JHIPSTER_DEPENDENCIES_VERSION
*/
'spring-boot': '3.2.1',
'spring-boot': '3.2.2',
/*
* hibernate version should match the one managed by https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/SPRING_BOOT_VERSION
* Required due to hibernate-jpamodelgen annotation processor.
Expand Down
3 changes: 1 addition & 2 deletions generators/spring-data-relational/internal/dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ const databaseArtifactForDB: Record<string, DatabaseArtifact> = {
},
postgresql: {
jdbc: { groupId: 'org.postgresql', artifactId: 'postgresql' },
// TODO ignore v1.0.3.RELEASE due to https://github.com/pgjdbc/r2dbc-postgresql/issues/622, revisit for spring-boot 3.2.2
r2dbc: { groupId: 'org.postgresql', artifactId: 'r2dbc-postgresql', version: '1.0.2.RELEASE' },
r2dbc: { groupId: 'org.postgresql', artifactId: 'r2dbc-postgresql' },
},
};

Expand Down

0 comments on commit 514123d

Please sign in to comment.