diff --git a/bom/pom.xml b/bom/pom.xml
index 35ea7b05..e85426c6 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -15,7 +15,7 @@
1.0.0
- 1.7.1
+ 1.8.0
2.2.0
diff --git a/core/pom.xml b/core/pom.xml
index 5515e919..f092e4f7 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -29,7 +29,7 @@
io.grpc
grpc-netty
- 1.59.1
+ 1.68.3
true
diff --git a/core/src/test/java/tech/ydb/core/impl/pool/DefaultChannelFactoryTest.java b/core/src/test/java/tech/ydb/core/impl/pool/DefaultChannelFactoryTest.java
index e36f17b1..9cec8196 100644
--- a/core/src/test/java/tech/ydb/core/impl/pool/DefaultChannelFactoryTest.java
+++ b/core/src/test/java/tech/ydb/core/impl/pool/DefaultChannelFactoryTest.java
@@ -124,7 +124,7 @@ public void customChannelInitializer() {
.withUseDefaultGrpcResolver(true);
ManagedChannelFactory factory = ShadedNettyChannelFactory
- .withInterceptor(ForwardingChannelBuilder2::enableFullStreamDecompression)
+ .withInterceptor(ForwardingChannelBuilder2::useTransportSecurity)
.buildFactory(builder);
channelStaticMock.verify(FOR_ADDRESS, Mockito.times(0));
@@ -141,7 +141,7 @@ public void customChannelInitializer() {
Mockito.verify(channelBuilderMock, Mockito.times(1))
.withOption(ChannelOption.ALLOCATOR, ByteBufAllocator.DEFAULT);
Mockito.verify(channelBuilderMock, Mockito.times(1)).withOption(ChannelOption.TCP_NODELAY, Boolean.TRUE);
- Mockito.verify(channelBuilderMock, Mockito.times(1)).enableFullStreamDecompression();
+ Mockito.verify(channelBuilderMock, Mockito.times(1)).useTransportSecurity();
}
@Test