chore(deps): Update Guava in Firestore and Google Sheets plugins (#27203)

Update Guava to v32, to get fix for CVE-2023-2976.

---------

Co-authored-by: “sneha122” <“sneha@appsmith.com”>
Co-authored-by: Ayush Pahwa <ayushpahwa96@gmail.com>
This commit is contained in:
Shrikant Sharat Kandula 2023-09-14 15:32:54 +05:30 committed by GitHub
parent f2c3b971a4
commit c1bef4c0c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 2 deletions

View File

@ -19,7 +19,7 @@
<dependency>
<groupId>com.google.firebase</groupId>
<artifactId>firebase-admin</artifactId>
<version>9.1.1</version>
<version>9.2.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
@ -32,6 +32,13 @@
</exclusions>
</dependency>
<dependency>
<!-- remove after firebase-admin brings v32.0.1-jre at least -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.1-jre</version>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>org.testcontainers</groupId>

View File

@ -75,7 +75,7 @@
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-sheets</artifactId>
<version>v4-rev20220927-2.0.0</version>
<version>v4-rev20230815-2.0.0</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
@ -88,6 +88,13 @@
</exclusions>
</dependency>
<dependency>
<!-- remove after google-api-services-sheets brings v32.0.1-jre at least -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.1-jre</version>
</dependency>
<!-- Test dependencies -->
<dependency>