Skip to content

Commit 11d2155

Browse files
Yury-Fridlyandshohamazon
authored andcommitted
Java: Bump netty. (#3804)
Bump `netty`. Signed-off-by: Yury-Fridlyand <yury.fridlyand@improving.com>
1 parent 4ac38ea commit 11d2155

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
#### Fixes
8282

8383
* Go, Java: Fix response handling for `customCommand` API for cluster client ([#3593](https://github.com/valkey-io/valkey-glide/pull/3593))
84+
* Java: Bump `netty` version ([#3804](https://github.com/valkey-io/valkey-glide/pull/3804))
8485

8586
#### Operational Enhancements
8687

java/client/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ dependencies {
2222
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '4.29.1'
2323
shadow group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'
2424

25-
shadow group: 'io.netty', name: 'netty-handler', version: '4.1.115.Final'
25+
shadow group: 'io.netty', name: 'netty-handler', version: '4.1.121.Final'
2626
// https://github.com/netty/netty/wiki/Native-transports
2727
// At the moment, Windows is not supported
28-
shadow group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.115.Final', classifier: 'linux-x86_64'
29-
shadow group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.115.Final', classifier: 'linux-aarch_64'
30-
shadow group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.115.Final', classifier: 'osx-aarch_64'
28+
shadow group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.121.Final', classifier: 'linux-x86_64'
29+
shadow group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.121.Final', classifier: 'linux-aarch_64'
30+
shadow group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.121.Final', classifier: 'osx-aarch_64'
3131

3232
// junit
3333
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '3.12.4'

java/integTest/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ dependencies {
1717

1818
// https://github.com/netty/netty/wiki/Native-transports
1919
// At the moment, Windows is not supported
20-
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.115.Final', classifier: 'linux-x86_64'
21-
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.115.Final', classifier: 'osx-x86_64'
22-
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.115.Final', classifier: 'osx-aarch_64'
20+
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.121.Final', classifier: 'linux-x86_64'
21+
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.121.Final', classifier: 'osx-x86_64'
22+
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: '4.1.121.Final', classifier: 'osx-aarch_64'
2323

2424
// junit
2525
testImplementation 'org.mockito:mockito-junit-jupiter:3.12.4'

0 commit comments

Comments
 (0)