From 5eace35d791648ae09e89ac3ab0806bbc39984e8 Mon Sep 17 00:00:00 2001 From: Anton Georgiev Date: Fri, 23 Feb 2024 20:11:36 -0500 Subject: [PATCH] fix(sec): bump postgresql to 42.7.2 (#19663) --- bbb-common-web/build.sbt | 2 +- bigbluebutton-web/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bbb-common-web/build.sbt b/bbb-common-web/build.sbt index 8d713533f9..cf124c0652 100755 --- a/bbb-common-web/build.sbt +++ b/bbb-common-web/build.sbt @@ -106,7 +106,7 @@ libraryDependencies ++= Seq( "org.springframework.boot" % "spring-boot-starter-validation" % "2.7.17", "org.springframework.data" % "spring-data-commons" % "2.7.6", "org.apache.httpcomponents" % "httpclient" % "4.5.13", - "org.postgresql" % "postgresql" % "42.4.3", + "org.postgresql" % "postgresql" % "42.7.2", "org.hibernate" % "hibernate-core" % "5.6.1.Final", "org.flywaydb" % "flyway-core" % "7.8.2", "com.zaxxer" % "HikariCP" % "4.0.3", diff --git a/bigbluebutton-web/build.gradle b/bigbluebutton-web/build.gradle index 778aeb1ab3..c4b782d0f5 100755 --- a/bigbluebutton-web/build.gradle +++ b/bigbluebutton-web/build.gradle @@ -103,7 +103,7 @@ dependencies { implementation 'javax.validation:validation-api:2.0.1.Final' implementation "org.springframework.boot:spring-boot-starter-validation:${springVersion}" - implementation 'org.postgresql:postgresql:42.4.3' + implementation 'org.postgresql:postgresql:42.7.2' implementation 'org.hibernate:hibernate-core:5.6.1.Final' //--- BigBlueButton Dependencies End