Skip to content

Commit 006b018

Browse files
committed
Upgrade Versions; Prepare for Milestone Release
1 parent 1a1b1f6 commit 006b018

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ ext {
5555
log4jVersion = '2.17.1'
5656
logbackVersion = '1.2.3'
5757
lz4Version = '1.8.0'
58-
micrometerVersion = '1.8.0'
58+
micrometerVersion = '2.0.0-M1'
5959
mockitoVersion = '3.11.2'
6060
rabbitmqStreamVersion = '0.4.0'
6161
rabbitmqVersion = project.hasProperty('rabbitmqVersion') ? project.rabbitmqVersion : '5.13.1'
6262
rabbitmqHttpClientVersion = '3.12.1'
63-
reactorVersion = '2020.0.14'
63+
reactorVersion = '2020.0.15'
6464
snappyVersion = '1.1.8.4'
65-
springDataCommonsVersion = '2.6.0'
66-
springVersion = project.hasProperty('springVersion') ? project.springVersion : '6.0.0-SNAPSHOT'
65+
springDataCommonsVersion = '3.0.0-M1'
66+
springVersion = project.hasProperty('springVersion') ? project.springVersion : '6.0.0-M2'
6767
springRetryVersion = '1.3.1'
6868
zstdJniVersion = '1.5.0-2'
6969
}

spring-rabbit/src/main/java/org/springframework/amqp/rabbit/listener/AbstractMessageListenerContainer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2139,6 +2139,7 @@ Object start() {
21392139
return Timer.start(this.registry);
21402140
}
21412141

2142+
@SuppressWarnings("deprecation")
21422143
void success(Object sample, String queue) {
21432144
Timer timer = this.timers.get(queue + "none");
21442145
if (timer == null) {
@@ -2147,6 +2148,7 @@ void success(Object sample, String queue) {
21472148
((Sample) sample).stop(timer);
21482149
}
21492150

2151+
@SuppressWarnings("deprecation")
21502152
void failure(Object sample, String queue, String exception) {
21512153
Timer timer = this.timers.get(queue + exception);
21522154
if (timer == null) {

0 commit comments

Comments
 (0)