diff --git a/CHANGELOG.md b/CHANGELOG.md index c009d38942..d1a55ad4fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,10 +14,12 @@ and what APIs have changed, if applicable. ## [Unreleased] +## [29.37.15] - 2022-08-23 +- Exclude transitive Netty dependency for ZooKeeper client. + ## [29.37.14] - 2022-08-19 - Avoid casting classloader to URLLoader in ResourceModelEncoder and use ClassGraph to search for restspec file - ## [29.37.13] - 2022-08-15 - Fix d2-test-api dependencies @@ -5307,7 +5309,8 @@ patch operations can re-use these classes for generating patch messages. ## [0.14.1] -[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.37.14...master +[Unreleased]: https://github.com/linkedin/rest.li/compare/v29.37.15...master +[29.37.15]: https://github.com/linkedin/rest.li/compare/v29.37.14...v29.37.15 [29.37.14]: https://github.com/linkedin/rest.li/compare/v29.37.13...v29.37.14 [29.37.13]: https://github.com/linkedin/rest.li/compare/v29.37.12...v29.37.13 [29.37.12]: https://github.com/linkedin/rest.li/compare/v29.37.11...v29.37.12 diff --git a/d2-int-test/build.gradle b/d2-int-test/build.gradle index 73de004d66..72dac6745a 100644 --- a/d2-int-test/build.gradle +++ b/d2-int-test/build.gradle @@ -10,7 +10,9 @@ dependencies { compile externalDependency.commonsCodec compile externalDependency.commonsIo compile externalDependency.commonsHttpClient - compile externalDependency.zookeeper + compile(externalDependency.zookeeper) { + exclude group: 'io.netty' + } compile externalDependency.jdkTools compile externalDependency.netty testCompile externalDependency.testng diff --git a/d2/build.gradle b/d2/build.gradle index 7effc445d5..5f0ae15a85 100644 --- a/d2/build.gradle +++ b/d2/build.gradle @@ -13,7 +13,9 @@ dependencies { compile externalDependency.httpclient compile externalDependency.httpcore compile externalDependency.hdrhistogram - compile externalDependency.zookeeper + compile(externalDependency.zookeeper) { + exclude group: 'io.netty' + } compile externalDependency.jacksonCore compile externalDependency.jacksonDataBind compile externalDependency.jdkTools diff --git a/gradle.properties b/gradle.properties index 9c30d7b3c0..a3cffdc149 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=29.37.14 +version=29.37.15 group=com.linkedin.pegasus org.gradle.configureondemand=true org.gradle.parallel=true diff --git a/restli-example-server/build.gradle b/restli-example-server/build.gradle index 6a8ed19f50..95e72e916f 100644 --- a/restli-example-server/build.gradle +++ b/restli-example-server/build.gradle @@ -13,7 +13,9 @@ dependencies { compile project(':pegasus-common') compile externalDependency.javaxInject compile externalDependency.parseq - compile externalDependency.zookeeper + compile(externalDependency.zookeeper) { + exclude group: 'io.netty' + } testCompile project(':restli-client') testCompile externalDependency.testng testCompile externalDependency.easymock