diff --git a/NOTICE b/NOTICE index 37150fb..cebc750 100644 --- a/NOTICE +++ b/NOTICE @@ -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"). @@ -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"). diff --git a/README.md b/README.md index 4d7e5e5..dff0ed0 100644 --- a/README.md +++ b/README.md @@ -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") } } @@ -51,7 +51,7 @@ may be an appropriate choice. org.springframework.boot spring-boot-starter-parent - 3.3.3 + 3.3.4 diff --git a/gradle.properties b/gradle.properties index a94f645..9d81b21 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -springBootVersion=3.3.3 -springDataBomVersion=2024.0.3 +springBootVersion=3.3.4 +springDataBomVersion=2024.0.4 diff --git a/spring-data-jdbc-plus-support/src/main/java/com/navercorp/spring/data/jdbc/plus/support/convert/SqlGenerator.java b/spring-data-jdbc-plus-support/src/main/java/com/navercorp/spring/data/jdbc/plus/support/convert/SqlGenerator.java index 77405da..79400ea 100644 --- a/spring-data-jdbc-plus-support/src/main/java/com/navercorp/spring/data/jdbc/plus/support/convert/SqlGenerator.java +++ b/spring-data-jdbc-plus-support/src/main/java/com/navercorp/spring/data/jdbc/plus/support/convert/SqlGenerator.java @@ -650,7 +650,7 @@ private SelectBuilder.SelectWhere selectBuilder(Collection keyCol Table table = getTable(); - List columnExpressions = new ArrayList<>(); + Set columnExpressions = new LinkedHashSet<>(); List joinTables = new ArrayList<>(); for (PersistentPropertyPath path : mappingContext