From 676573e3cc11944fcadeafb4bac55e4a257a5127 Mon Sep 17 00:00:00 2001 From: Anton Georgiev Date: Wed, 21 Feb 2024 14:01:24 -0500 Subject: [PATCH] fix(sec): bump postgresql to 42.7.2 --- 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 1395104667..a9667a77cb 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.12", "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 38aa753703..305cae9618 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