Skip to content

Commit

Permalink
Bump up spring boot version to 3.3.4 (#159)
Browse files Browse the repository at this point in the history
* Bump up spring boot version to 3.3.4

* Avoid selection of duplicate columns
  • Loading branch information
IAM20 authored Sep 20, 2024
1 parent e027843 commit 2d7fdfd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spring-projects/spring-data-commons
https://github.com/spring-projects/spring-data-commons


Spring Data Commons 3.3.3
Spring Data Commons 3.3.4
Copyright (c) [2010-2019] Pivotal Software, Inc.

This product is licensed to you under the Apache License, Version 2.0 (the "License").
Expand Down Expand Up @@ -71,7 +71,7 @@ spring-projects/spring-data-jdbc
https://github.com/spring-projects/spring-data-jdbc


Spring Data Relational 3.3.3
Spring Data Relational 3.3.4
Copyright (c) [2017-2019] Pivotal Software, Inc.

This product is licensed to you under the Apache License, Version 2.0 (the "License").
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ may be an appropriate choice.
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.3")
classpath("org.springframework.boot:spring-boot-gradle-plugin:3.3.4")
}
}
Expand All @@ -51,7 +51,7 @@ may be an appropriate choice.
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.3</version>
<version>3.3.4</version>
<relativePath/>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
springBootVersion=3.3.3
springDataBomVersion=2024.0.3
springBootVersion=3.3.4
springDataBomVersion=2024.0.4
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ private SelectBuilder.SelectWhere selectBuilder(Collection<SqlIdentifier> keyCol

Table table = getTable();

List<Expression> columnExpressions = new ArrayList<>();
Set<Expression> columnExpressions = new LinkedHashSet<>();

List<Join> joinTables = new ArrayList<>();
for (PersistentPropertyPath<RelationalPersistentProperty> path : mappingContext
Expand Down

0 comments on commit 2d7fdfd

Please sign in to comment.