Would the patch version difference matter?
Usually, it is not expected but we saw this kind of dependency conflict with Netty before (here).
You could either update all dependencies to the latest versions. It seems that the old version comes from com.azure*
.
Or, import a fixed Netty version.
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>4.1.65.Final</version>
<type>pom</type>
<scope>import</scope>
</dependency>