Skip to content

Commit

Permalink
CORE-69: Minor and patch updates - google-cloud-nio to 0.127.27 - sen…
Browse files Browse the repository at this point in the history
…try-logback to 7.18.0 - billing-profile-manager-client to 0.1.590-SNAPSHOT - commons-io to 2.18.0 - swagger-parser-v3 to 2.1.24 - azure-core-management to 1.15.6 - workspace-manager-client to 0.254.1161-SNAPSHOT - azure-identity to 1.14.2 (#3143)

* CORE-69: Update billing-profile-manager-client from 0.1.589-SNAPSHOT to 0.1.590-SNAPSHOT

* CORE-69: Update workspace-manager-client from 0.254.1160-SNAPSHOT to 0.254.1161-SNAPSHOT

* CORE-69: Update azure-core-management from 1.15.5 to 1.15.6

* CORE-69: Update azure-identity from 1.14.1 to 1.14.2

* CORE-69: Update google-cloud-nio from 0.127.26 to 0.127.27

* CORE-69: Update commons-io from 2.17.0 to 2.18.0

* CORE-69: Update sentry-logback from 7.16.0 to 7.18.0

* CORE-69: Update swagger-parser-v3 from 2.1.23 to 2.1.24
  • Loading branch information
broadbot authored Dec 2, 2024
1 parent 91f0574 commit 6ff3602
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ object Dependencies {
val jacksonCore: ModuleID = "com.fasterxml.jackson.core" % "jackson-core" % "2.18.1"
val jodaTime: ModuleID = "joda-time" % "joda-time" % "2.13.0"
val typesafeConfig: ModuleID = "com.typesafe" % "config" % "1.4.3"
val sentryLogback: ModuleID = "io.sentry" % "sentry-logback" % "7.16.0"
val sentryLogback: ModuleID = "io.sentry" % "sentry-logback" % "7.18.0"
val webjarsLocator: ModuleID = "org.webjars" % "webjars-locator" % "0.52"
val commonsJEXL: ModuleID = "org.apache.commons" % "commons-jexl" % "2.1.1"
val cats: ModuleID = "org.typelevel" %% "cats-core" % "2.12.0"
Expand All @@ -75,7 +75,7 @@ object Dependencies {
val mockserverNetty: ModuleID = "org.mock-server" % "mockserver-netty" % "5.15.0" % "test"
val breeze: ModuleID = "org.scalanlp" %% "breeze" % "1.2" % "test"
val ficus: ModuleID = "com.iheart" %% "ficus" % "1.5.2"
val apacheCommonsIO: ModuleID = "commons-io" % "commons-io" % "2.17.0"
val apacheCommonsIO: ModuleID = "commons-io" % "commons-io" % "2.18.0"
val antlrParser: ModuleID = "org.antlr" % "antlr4-runtime" % "4.13.2"
// protobuf is only need to use the MySQL X DevAPI which we don't. exclude it to avoid interference with Google client libraries
val mysqlConnector: ModuleID = "com.mysql" % "mysql-connector-j" % "9.1.0" exclude("com.google.protobuf", "protobuf-java")
Expand Down Expand Up @@ -104,14 +104,14 @@ object Dependencies {
val workbenchOauth2: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-oauth2" % workbenchOauth2V
val workbenchOauth2Tests: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-oauth2" % workbenchOauth2V % "test" classifier "tests"

val googleStorageLocal: ModuleID = "com.google.cloud" % "google-cloud-nio" % "0.127.26" % "test"
val googleStorageLocal: ModuleID = "com.google.cloud" % "google-cloud-nio" % "0.127.27" % "test"

val workbenchUtil: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-util" % s"0.10-${workbenchLibsHash}"

val circeYAML: ModuleID = "io.circe" %% "circe-yaml" % "1.15.0"

val azureIdentity: ModuleID = "com.azure" % "azure-identity" % "1.14.1"
val azureCoreManagement: ModuleID = "com.azure" % "azure-core-management" % "1.15.5"
val azureIdentity: ModuleID = "com.azure" % "azure-identity" % "1.14.2"
val azureCoreManagement: ModuleID = "com.azure" % "azure-core-management" % "1.15.6"

def excludeOpenTelemetry = ExclusionRule("io.opentelemetry.instrumentation")
def clientLibExclusions(m: ModuleID): ModuleID = m.excludeAll(excludeOpenTelemetry)
Expand All @@ -127,10 +127,10 @@ object Dependencies {
// "Terra Common Lib" Exclusions:
def tclExclusions(m: ModuleID): ModuleID = m.excludeAll(excludeSpringBoot, excludeSpringAop, excludeSpringData, excludeSpringFramework, excludeOpenCensus, excludeGoogleFindBugs, excludeBroadWorkbench, excludePostgresql, excludeSnakeyaml, excludeSlf4j)

val workspaceManager = clientLibExclusions("bio.terra" % "workspace-manager-client" % "0.254.1160-SNAPSHOT")
val workspaceManager = clientLibExclusions("bio.terra" % "workspace-manager-client" % "0.254.1161-SNAPSHOT")
val dataRepo = clientLibExclusions("bio.terra" % "datarepo-jakarta-client" % "1.593.0-SNAPSHOT")
val resourceBufferService = clientLibExclusions("bio.terra" % "terra-resource-buffer-client" % "0.198.42-SNAPSHOT")
val billingProfileManager = clientLibExclusions("bio.terra" % "billing-profile-manager-client" % "0.1.589-SNAPSHOT")
val billingProfileManager = clientLibExclusions("bio.terra" % "billing-profile-manager-client" % "0.1.590-SNAPSHOT")
val terraCommonLib = tclExclusions(clientLibExclusions("bio.terra" % "terra-common-lib" % "0.1.23-SNAPSHOT" classifier "plain"))
val sam: ModuleID = clientLibExclusions("org.broadinstitute.dsde.workbench" %% "sam-client" % "v0.0.325")
val leonardo: ModuleID = "org.broadinstitute.dsde.workbench" % "leonardo-client_2.13" % "1.3.6-2e87300"
Expand All @@ -147,7 +147,7 @@ object Dependencies {
val kindProjector = compilerPlugin(("org.typelevel" %% "kind-projector" % "0.13.3").cross(CrossVersion.full))
val betterMonadicFor = compilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")

val openApiParser: ModuleID = "io.swagger.parser.v3" % "swagger-parser-v3" % "2.1.23"
val openApiParser: ModuleID = "io.swagger.parser.v3" % "swagger-parser-v3" % "2.1.24"

// Overrides for transitive dependencies. These apply - via Settings.scala - to all projects in this codebase.
// These are overrides only; if the direct dependencies stop including any of these, they will not be included
Expand Down

0 comments on commit 6ff3602

Please sign in to comment.