Skip to content

Commit

Permalink
Upgraded dependenciesg (#915)
Browse files Browse the repository at this point in the history
Co-authored-by: Afsal Thaj <[email protected]>
  • Loading branch information
ithinkicancode and afsalthaj authored Oct 21, 2022
1 parent 89f2610 commit 6761bea
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 27 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fail-fast: false
matrix:
java: ['[email protected]', '[email protected]']
scala: ['2.11.12', '2.12.13', '2.13.5', '3.1.0']
scala: ['2.11.12', '2.12.16', '2.13.8', '3.1.0']
platform: ['JS', 'JVM', 'Native']
steps:
- name: Checkout current branch
Expand All @@ -51,7 +51,7 @@ jobs:
run: sbt ++${{ matrix.scala }}! testJS
- name: Run 2.11 JVM tests
if: ${{ matrix.platform == 'JVM' && startsWith(matrix.scala, '2.11') }}
run: sbt ++${{ matrix.scala }}! testJVM211
run: sbt ++${{ matrix.scala }}! testJVM211
- name: Run 2.12 JVM tests
if: ${{ matrix.platform == 'JVM' && startsWith(matrix.scala, '2.12') }}
run: sbt ++${{ matrix.scala }}! testJVM212
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Scala and Java
- name: Setup Scala and Java
uses: olafurpg/setup-scala@v13
- name: Cache scala dependencies
uses: coursier/cache-action@v6
Expand Down
18 changes: 9 additions & 9 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ addCommandAlias(
"checkAll",
"; ++2.11.12; project root2-11; check; ++2.12.13; project root2-12; check; ++2.13.5; project root2-13; check"
)
addCommandAlias("compileAll", "; ++2.11.12; root2-11/compile; ++2.12.13; root2-12/compile; ++2.13.5!; root2-13/compile")
addCommandAlias("testAll", "; ++2.11.12; root2-11/test; ++2.12.13; root2-12/test; ++2.13.5!; root2-13/test")
addCommandAlias("compileAll", "; ++2.11.12; root2-11/compile; ++2.12.16; root2-12/compile; ++2.13.8!; root2-13/compile")
addCommandAlias("testAll", "; ++2.11.12; root2-11/test; ++2.12.16; root2-12/test; ++2.13.8!; root2-13/test")
addCommandAlias(
"testJS",
";zioConfigJS/test"
Expand All @@ -69,11 +69,11 @@ addCommandAlias(
";zioConfigJVM/test;zioConfigTypesafeJVM/test;zioConfigDerivationJVM/test;zioConfigYamlJVM/test;zioConfigAwsJVM/test;zioConfigZioAwsJVM/test"
)

lazy val awsVersion = "1.12.184"
lazy val awsVersion = "1.12.277"
lazy val zioAwsVersion = "5.17.267.4"
lazy val zioVersion = "2.0.0"
lazy val magnoliaVersion = "0.17.0"
lazy val refinedVersion = "0.9.28"
lazy val refinedVersion = "0.10.1"
lazy val pureconfigVersion = "0.16.0"
lazy val shapelessVersion = "2.4.0-M1"

Expand Down Expand Up @@ -177,7 +177,7 @@ lazy val zioConfig = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.settings(
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % zioVersion,
"org.scala-lang.modules" %% "scala-collection-compat" % "2.5.0",
"org.scala-lang.modules" %% "scala-collection-compat" % "2.8.1",
"dev.zio" %% "zio-test" % zioVersion % Test
),
testFrameworks := Seq(new TestFramework("zio.test.sbt.ZTestFramework"))
Expand Down Expand Up @@ -317,7 +317,7 @@ lazy val zioConfigGen = crossProject(JVMPlatform)
magnoliaDependencies,
libraryDependencies ++= Seq(
"dev.zio" %% "zio-test-magnolia" % zioVersion,
"org.scalatest" %% "scalatest" % "3.2.9" % Test
"org.scalatest" %% "scalatest" % "3.2.13" % Test
)
)
.dependsOn(zioConfigTypesafe, zioConfigMagnolia)
Expand Down Expand Up @@ -390,7 +390,7 @@ lazy val zioConfigYaml = crossProject(JVMPlatform)
.settings(crossProjectSettings)
.settings(
libraryDependencies ++= Seq(
"org.snakeyaml" % "snakeyaml-engine" % "2.2.1",
"org.snakeyaml" % "snakeyaml-engine" % "2.3",
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test
),
Expand All @@ -408,7 +408,7 @@ lazy val zioConfigScalaz = crossProject(JSPlatform, JVMPlatform, NativePlatfo
.settings(
crossScalaVersions --= Seq(Scala211, Scala212),
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-core" % "7.4.0-M11",
"org.scalaz" %% "scalaz-core" % "7.4.0-M12",
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test
),
Expand All @@ -426,7 +426,7 @@ lazy val zioConfigCats = crossProject(JSPlatform, JVMPlatform, NativePlatform
.settings(
crossScalaVersions --= Seq(Scala211),
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.7.0",
"org.typelevel" %% "cats-core" % "2.8.0",
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test
),
Expand Down
4 changes: 2 additions & 2 deletions project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ object BuildHelper {
val Scala213: String = versions("2.13")
val ScalaDotty: String = versions("3")

val SilencerVersion = "1.7.6"
val SilencerVersion = "1.7.9"

private val stdOptions = Seq(
"-deprecation",
Expand Down Expand Up @@ -239,7 +239,7 @@ object BuildHelper {
Seq(
"com.github.ghik" % "silencer-lib" % SilencerVersion % Provided cross CrossVersion.full,
compilerPlugin("com.github.ghik" % "silencer-plugin" % SilencerVersion cross CrossVersion.full),
compilerPlugin("org.typelevel" %% "kind-projector" % "0.13.1" cross CrossVersion.full)
compilerPlugin("org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full)
)
},
semanticdbEnabled := scalaVersion.value != ScalaDotty, // enable SemanticDB
Expand Down
18 changes: 9 additions & 9 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.10.0")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.3")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.1")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.3")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.2.16")
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.0")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.1.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.1.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.8.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.2")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.3")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.2.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.1")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.5")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.3")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("pl.project13.scala" % "sbt-jcstress" % "0.2.0")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")

Expand Down
8 changes: 4 additions & 4 deletions sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@

set -o pipefail

declare -r sbt_release_version="1.5.1"
declare -r sbt_unreleased_version="1.5.1"
declare -r sbt_release_version="1.7.1"
declare -r sbt_unreleased_version="1.7.1"

declare -r latest_213="2.13.5"
declare -r latest_212="2.12.13"
declare -r latest_213="2.13.8"
declare -r latest_212="2.12.16"
declare -r latest_211="2.11.12"
declare -r latest_210="2.10.7"
declare -r latest_29="2.9.3"
Expand Down

0 comments on commit 6761bea

Please sign in to comment.