diff options
author | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2021-01-27 16:31:45 -0500 |
---|---|---|
committer | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2021-01-28 09:08:24 -0500 |
commit | 96d0852481a6a594f6cdf1ce9f31def50663d6dc (patch) | |
tree | 456b57b8f15029c02aaebf19d18ecbf8f06dbade /models-interactions/model-impl/cds/pom.xml | |
parent | 4dc88bdf42bd2ef60ecb62b963a9c1a1c6f84da6 (diff) |
Upgrade io.grpc library in CDS actor
Upgrading to latest version of io.grpc 1.35.0 to fix security issues. The methods named loadBalancerFactory and nameResolverFactory have been removed in the latest version. After going through the grpc-java codebase found that the one's we were using to initialize those factories are made default. Confirmed my understanding by posting a query on grpc-java github repo.
Issue-ID: POLICY-2936
Change-Id: I238700ac3f384ff8e5fdef6c3f2ccfb54bff7005
Signed-off-by: Ram Krishna Verma <ram_krishna.verma@bell.ca>
Diffstat (limited to 'models-interactions/model-impl/cds/pom.xml')
-rw-r--r-- | models-interactions/model-impl/cds/pom.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/models-interactions/model-impl/cds/pom.xml b/models-interactions/model-impl/cds/pom.xml index 25da63210..8ed5c2244 100644 --- a/models-interactions/model-impl/cds/pom.xml +++ b/models-interactions/model-impl/cds/pom.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- ============LICENSE_START======================================================= - Copyright (C) 2019-2020 Bell Canada. + Copyright (C) 2019-2021 Bell Canada. Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); @@ -33,8 +33,8 @@ <description>gRPC client implementation to send process message to CDS blueprint processor gRPC endpoint.</description> <properties> - <grpc.version>1.17.1</grpc.version> - <protobuf.version>3.6.1</protobuf.version> + <grpc.version>1.35.0</grpc.version> + <protobuf.version>3.14.0</protobuf.version> </properties> <dependencies> |