From d14d0c3f04fe673f394e6daf23569b4afb3a018e Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 11 Mar 2022 17:08:52 +0100 Subject: [PATCH 1/7] Start building against Reactor 2020.0.17 snapshots See gh-30169 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 692789cf027..bd06fca3459 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1475,7 +1475,7 @@ bom { ] } } - library("Reactor Bom", "2020.0.16") { + library("Reactor Bom", "2020.0.17-SNAPSHOT") { group("io.projectreactor") { imports = [ "reactor-bom" From 26207104800d2f5e26b676a612ef3167f4bc1aec Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 11 Mar 2022 17:09:21 +0100 Subject: [PATCH 2/7] Start building against Spring Framework 5.3.17 snapshots See gh-30170 --- .../properties/ConfigurationPropertiesReportEndpoint.java | 3 ++- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- .../ConfigurationPropertiesBindConstructorProvider.java | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpoint.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpoint.java index c79c58a0603..f3767f189fc 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpoint.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpoint.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2021 the original author or authors. + * Copyright 2012-2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -489,6 +489,7 @@ public class ConfigurationPropertiesReportEndpoint implements ApplicationContext return StringUtils.capitalize(propertyName); } + @SuppressWarnings("deprecation") private Constructor findBindConstructor(Class type) { boolean classConstructorBinding = MergedAnnotations .from(type, SearchStrategy.TYPE_HIERARCHY_AND_ENCLOSING_CLASSES) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index bd06fca3459..9058471fb50 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1715,7 +1715,7 @@ bom { ] } } - library("Spring Framework", "5.3.16") { + library("Spring Framework", "5.3.17-SNAPSHOT") { group("org.springframework") { imports = [ "spring-framework-bom" diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindConstructorProvider.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindConstructorProvider.java index d9e4723c666..003472dd046 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindConstructorProvider.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindConstructorProvider.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2020 the original author or authors. + * Copyright 2012-2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -76,6 +76,7 @@ class ConfigurationPropertiesBindConstructorProvider implements BindConstructorP return constructor; } + @SuppressWarnings("deprecation") private boolean isConstructorBindingAnnotatedType(Class type) { return MergedAnnotations.from(type, MergedAnnotations.SearchStrategy.TYPE_HIERARCHY_AND_ENCLOSING_CLASSES) .isPresent(ConstructorBinding.class); From c55f0a1eacbd1cd56d5e33193d22be8b533f65a5 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 11 Mar 2022 17:09:49 +0100 Subject: [PATCH 3/7] Start building against Micrometer 1.7.10 snapshots See gh-30171 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 9058471fb50..636fa5ff50e 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1231,7 +1231,7 @@ bom { ] } } - library("Micrometer", "1.7.9") { + library("Micrometer", "1.7.10-SNAPSHOT") { group("io.micrometer") { modules = [ "micrometer-registry-stackdriver" { From e39121564331ae6a3cf29ec82ca88567ff0928a6 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 11 Mar 2022 17:10:14 +0100 Subject: [PATCH 4/7] Start building against Spring Data 2021.0.10 snapshots See gh-30172 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 636fa5ff50e..676596e0138 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1708,7 +1708,7 @@ bom { ] } } - library("Spring Data Bom", "2021.0.9") { + library("Spring Data Bom", "2021.0.10-SNAPSHOT") { group("org.springframework.data") { imports = [ "spring-data-bom" From 07b6269a69face9a2d66bd52391ed8a9067205ae Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 11 Mar 2022 17:10:44 +0100 Subject: [PATCH 5/7] Start building against Spring AMQP 2.3.15 snapshots See gh-30173 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 676596e0138..43629036cf3 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1688,7 +1688,7 @@ bom { ] } } - library("Spring AMQP", "2.3.14") { + library("Spring AMQP", "2.3.15-SNAPSHOT") { group("org.springframework.amqp") { modules = [ "spring-amqp", From 9ed4086ac2c87849442962faa6b4e597f7c285ab Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 11 Mar 2022 17:11:06 +0100 Subject: [PATCH 6/7] Start building against Spring WS 3.1.3 snapshots See gh-30174 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 43629036cf3..11e7d5bee4b 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1793,7 +1793,7 @@ bom { ] } } - library("Spring WS", "3.1.2") { + library("Spring WS", "3.1.3-SNAPSHOT") { group("org.springframework.ws") { modules = [ "spring-ws-core", From 43ba80d43171b751fd2acdcb70583a53ecfd6f31 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 11 Mar 2022 17:11:30 +0100 Subject: [PATCH 7/7] Start building against Spring Integration 5.5.10 snapshots See gh-30175 --- spring-boot-project/spring-boot-dependencies/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 11e7d5bee4b..c741e20cdac 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1729,7 +1729,7 @@ bom { ] } } - library("Spring Integration", "5.5.9") { + library("Spring Integration", "5.5.10-SNAPSHOT") { group("org.springframework.integration") { imports = [ "spring-integration-bom"