Skip to content

Commit

Permalink
chore: Patches/Minor updates (#120)
Browse files Browse the repository at this point in the history
* chore: Update testcontainers-scala-munit from 0.41.3 to 0.41.4

* chore: Update testcontainers-scala-postgresql from 0.41.3 to 0.41.4

* chore: Update testcontainers-scala-rabbitmq from 0.41.3 to 0.41.4

* chore: Update tapir-http4s-client from 1.10.8 to 1.10.12

* chore: Update tapir-http4s-server from 1.10.8 to 1.10.12

* chore: Update tapir-iron from 1.10.8 to 1.10.12

* chore: Update tapir-json-circe from 1.10.8 to 1.10.12

* chore: Update tapir-openapi-docs from 1.10.8 to 1.10.12

* chore: Update tapir-opentelemetry-metrics from 1.10.8 to 1.10.12

* chore: Update tapir-sttp-stub-server from 1.10.8 to 1.10.12

* chore: Update fs2-rabbit from 5.1.3 to 5.2.0

* chore: Update circe-core from 0.14.7 to 0.14.9

* chore: Update circe-generic from 0.14.7 to 0.14.9

* chore: Update circe-parser from 0.14.7 to 0.14.9

* chore: Update circe-yaml from 0.15.1 to 0.15.2

* chore: Update iron from 2.5.0 to 2.6.0

* chore: Update iron-cats from 2.5.0 to 2.6.0

* chore: Update iron-circe from 2.5.0 to 2.6.0

* chore: Update iron-decline from 2.5.0 to 2.6.0

* chore: Update iron-scalacheck from 2.5.0 to 2.6.0

* chore: Update flyway-core from 10.14.0 to 10.15.2

* chore: Update flyway-database-postgresql from 10.14.0 to 10.15.2

* chore: Update http4s-netty-client from 0.5.16 to 0.5.17

* chore: Update http4s-netty-server from 0.5.16 to 0.5.17

* chore: Update scalafmt-core from 3.8.1 to 3.8.2

* Reformat with scalafmt 3.8.2

Executed command: scalafmt --non-interactive

* Add 'Reformat with scalafmt 3.8.2' to .git-blame-ignore-revs

* chore: Update mouse from 1.2.4 to 1.3.1

* chore: Update sbt-sonatype from 3.10.0 to 3.11.0
  • Loading branch information
scala-steward authored Jul 5, 2024
1 parent 044571c commit 9827be6
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 32 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.8.2
4bfd946353162d813ce177e4f4b96de9a27fa431
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.8.1
version = 3.8.2
runner.dialect = scala3
maxColumn = 120

Expand Down
9 changes: 6 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,12 @@ inThisBuild(
)
),
startYear := Some(2023),
licenses += ("Apache-2.0", url(
"http://www.apache.org/licenses/LICENSE-2.0"
)),
licenses += (
"Apache-2.0",
url(
"http://www.apache.org/licenses/LICENSE-2.0"
)
),
scalacOptions ++= ScalacOptions.tokensForVersion(
ScalaVersion.V3_3_0,
Set(
Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/scala/pillars/probes.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object probes:
// tag::probe[]
trait Probe[F[_]]:
def component: Component //// <1>
def check: F[Boolean] //// <2>
def check: F[Boolean] //// <2>
def config: ProbeConfig = ProbeConfig() //// <3>
end Probe
// end::probe[]
Expand Down
52 changes: 26 additions & 26 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ object Dependencies {
"co.fs2" %% "fs2-core" % "3.10.2",
"org.typelevel" %% "cats-collections-core" % "0.9.8",
"org.typelevel" %% "cats-time" % "0.5.1",
"org.typelevel" %% "mouse" % "1.2.4"
"org.typelevel" %% "mouse" % "1.3.1"
)

val model: Seq[ModuleID] = Seq(
"com.comcast" %% "ip4s-core" % "3.6.0",
"io.github.iltotore" %% "iron" % "2.5.0",
"io.github.iltotore" %% "iron-cats" % "2.5.0",
"io.github.iltotore" %% "iron-circe" % "2.5.0",
"io.github.iltotore" %% "iron-decline" % "2.5.0"
"io.github.iltotore" %% "iron" % "2.6.0",
"io.github.iltotore" %% "iron-cats" % "2.6.0",
"io.github.iltotore" %% "iron-circe" % "2.6.0",
"io.github.iltotore" %% "iron-decline" % "2.6.0"
)

val commandLine: Seq[ModuleID] = Seq(
Expand All @@ -23,10 +23,10 @@ object Dependencies {
)

val json: Seq[ModuleID] = Seq(
"io.circe" %% "circe-core" % "0.14.7",
"io.circe" %% "circe-generic" % "0.14.7",
"io.circe" %% "circe-parser" % "0.14.7",
"io.circe" %% "circe-yaml" % "0.15.1"
"io.circe" %% "circe-core" % "0.14.9",
"io.circe" %% "circe-generic" % "0.14.9",
"io.circe" %% "circe-parser" % "0.14.9",
"io.circe" %% "circe-yaml" % "0.15.2"
)

val http4s: Seq[ModuleID] = Seq(
Expand All @@ -36,26 +36,26 @@ object Dependencies {
)

val http4sClient: Seq[ModuleID] = Seq(
"org.http4s" %% "http4s-netty-client" % "0.5.16"
"org.http4s" %% "http4s-netty-client" % "0.5.17"
)
val http4sServer: Seq[ModuleID] = Seq(
"org.http4s" %% "http4s-netty-server" % "0.5.16"
"org.http4s" %% "http4s-netty-server" % "0.5.17"
)
val scodec: Seq[ModuleID] = Seq(
"org.scodec" %% "scodec-bits" % "2.2.2",
"org.scodec" %% "scodec-core" % "2.2.2"
)

private val tapir = Seq(
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-opentelemetry-metrics" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-iron" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "1.10.12",
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "1.10.12",
"com.softwaremill.sttp.tapir" %% "tapir-opentelemetry-metrics" % "1.10.12",
"com.softwaremill.sttp.tapir" %% "tapir-iron" % "1.10.12",
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "1.10.12",
"com.softwaremill.sttp.apispec" %% "openapi-circe-yaml" % "0.10.0",
"com.softwaremill.sttp.tapir" %% "tapir-http4s-client" % "1.10.8" % Test,
"com.softwaremill.sttp.tapir" %% "tapir-sttp-stub-server" % "1.10.8" % Test,
"com.softwaremill.sttp.client3" %% "core" % "3.9.7" % Test
"com.softwaremill.sttp.tapir" %% "tapir-http4s-client" % "1.10.12" % Test,
"com.softwaremill.sttp.tapir" %% "tapir-sttp-stub-server" % "1.10.12" % Test,
"com.softwaremill.sttp.client3" %% "core" % "3.9.7" % Test
// "com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-bundle" % "1.9.1",
)

Expand All @@ -71,13 +71,13 @@ object Dependencies {
"org.scalameta" %% "munit" % "1.0.0" % Test,
"org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test,
"org.scalameta" %% "munit-scalacheck" % "1.0.0" % Test,
"io.github.iltotore" %% "iron-scalacheck" % "2.5.0" % Test
"io.github.iltotore" %% "iron-scalacheck" % "2.6.0" % Test
)

val testContainers: Seq[ModuleID] = Seq(
"com.dimafeng" %% "testcontainers-scala-munit" % "0.41.3" % Test,
"com.dimafeng" %% "testcontainers-scala-postgresql" % "0.41.3" % Test,
"com.dimafeng" %% "testcontainers-scala-rabbitmq" % "0.41.3" % Test
"com.dimafeng" %% "testcontainers-scala-munit" % "0.41.4" % Test,
"com.dimafeng" %% "testcontainers-scala-postgresql" % "0.41.4" % Test,
"com.dimafeng" %% "testcontainers-scala-rabbitmq" % "0.41.4" % Test
)

val observability: Seq[ModuleID] = Seq(
Expand All @@ -98,14 +98,14 @@ object Dependencies {

val migrationsRuntime: Seq[ModuleID] = Seq(
"org.postgresql" % "postgresql" % "42.7.3",
"org.flywaydb" % "flyway-database-postgresql" % "10.14.0"
"org.flywaydb" % "flyway-database-postgresql" % "10.15.2"
)
val migrations: Seq[ModuleID] = Seq(
"org.flywaydb" % "flyway-core" % "10.14.0"
"org.flywaydb" % "flyway-core" % "10.15.2"
) ++ tests ++ testContainers ++ migrationsRuntime.map(_ % Test)

val fs2Rabbit: Seq[ModuleID] = Seq(
"dev.profunktor" %% "fs2-rabbit" % "5.1.3"
"dev.profunktor" %% "fs2-rabbit" % "5.2.0"
) ++ tests ++ testContainers

val rediculous: Seq[ModuleID] = Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")

// Giter8 scaffold
Expand Down

0 comments on commit 9827be6

Please sign in to comment.