Skip to content

Commit 768de9a

Browse files
committed
Prohibit Netty 4.2.0
See gh-45122
1 parent 376b10a commit 768de9a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Diff for: spring-boot-project/spring-boot-dependencies/build.gradle

+8
Original file line numberDiff line numberDiff line change
@@ -1653,6 +1653,10 @@ bom {
16531653
contains ".RC"
16541654
because "we don't want alphas, betas, or release candidates"
16551655
}
1656+
prohibit {
1657+
versionRange "[4.2.0,)"
1658+
because "Reactor Netty will not support it in time for 3.5.x"
1659+
}
16561660
group("io.netty") {
16571661
bom("netty-bom")
16581662
}
@@ -1915,6 +1919,10 @@ bom {
19151919
}
19161920
}
19171921
library("Rabbit Stream Client", "0.23.0") {
1922+
prohibit {
1923+
versionRange "[0.24.0,)"
1924+
because "It requires Netty 4.2.0"
1925+
}
19181926
group("com.rabbitmq") {
19191927
modules = [
19201928
"stream-client"

0 commit comments

Comments
 (0)