Skip to content

Commit

Permalink
fix(security): fix for zookeeper CVE-2023-44981 (#9190)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-leifker committed Nov 7, 2023
1 parent 34aa08b commit 279fdd5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext.junitJupiterVersion = '5.6.1'
// Releases: https://github.com/linkedin/rest.li/blob/master/CHANGELOG.md
ext.pegasusVersion = '29.45.0'
ext.pegasusVersion = '29.46.8'
ext.mavenVersion = '3.6.3'
ext.springVersion = '5.3.29'
ext.springBootVersion = '2.7.14'
Expand Down Expand Up @@ -212,7 +212,7 @@ project.ext.externalDependency = [
'testContainersOpenSearch': 'org.opensearch:opensearch-testcontainers:2.0.0',
'typesafeConfig':'com.typesafe:config:1.4.1',
'wiremock':'com.github.tomakehurst:wiremock:2.10.0',
'zookeeper': 'org.apache.zookeeper:zookeeper:3.4.14',
'zookeeper': 'org.apache.zookeeper:zookeeper:3.7.2',
'wire': 'com.squareup.wire:wire-compiler:3.7.1',
'charle': 'com.charleskorn.kaml:kaml:0.53.0',
'common': 'commons-io:commons-io:2.7',
Expand Down
6 changes: 6 additions & 0 deletions metadata-service/restli-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,10 @@ dependencies {

restClientCompile spec.product.pegasus.d2
restClientCompile spec.product.pegasus.restliClient

constraints {
restClientCompile(externalDependency.zookeeper) {
because("CVE-2023-44981")
}
}
}

0 comments on commit 279fdd5

Please sign in to comment.