Skip to content

Commit

Permalink
Update grpc version to 1.66 and protobuf to 3.25.3 (#698)
Browse files Browse the repository at this point in the history
* Update grpc version to 1.66 and protobuf to 3.25.3

* Add grpc-inprocess dependency
  • Loading branch information
sarthakn7 authored Aug 22, 2024
1 parent a996905 commit cc78438
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ System.setProperty("org.gradle.internal.publish.checksums.insecure", "True")

def luceneVersion = '9.11.1'
project.ext.slf4jVersion = '2.0.16'
project.ext.grpcVersion = '1.60.2'
project.ext.grpcVersion = '1.66.0'
project.ext.lz4Version = '1.8.0'
project.ext.mockitoVersion = '5.12.0'
project.ext.jacksonYamlVersion = '2.17.2'
Expand Down Expand Up @@ -110,6 +110,7 @@ dependencies {

testImplementation "junit:junit:${project.ext.junitVersion}"
testImplementation "io.grpc:grpc-testing:${rootProject.grpcVersion}"
testImplementation "io.grpc:grpc-inprocess:${rootProject.grpcVersion}"
testImplementation "org.mockito:mockito-core:${project.ext.mockitoVersion}"
testImplementation "org.apache.lucene:lucene-test-framework:${luceneVersion}"
testImplementation "org.locationtech.spatial4j:spatial4j:${spatial4jVersion}"
Expand Down
3 changes: 2 additions & 1 deletion clientlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ startScripts.enabled = false
def _artifactId = 'clientlib'

// Dependency versions
def protobufVersion = '3.25.1'
def protobufVersion = '3.25.3'
def protocVersion = protobufVersion

dependencies {
//grpc deps
api "com.google.api.grpc:proto-google-common-protos:2.41.0"
implementation "io.grpc:grpc-protobuf:${rootProject.grpcVersion}"
implementation "io.grpc:grpc-stub:${rootProject.grpcVersion}"
implementation "io.grpc:grpc-okhttp:${rootProject.grpcVersion}"
Expand Down

0 comments on commit cc78438

Please sign in to comment.