-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into khajavi-patch-1
- Loading branch information
Showing
96 changed files
with
3,338 additions
and
1,415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
|
||
jobs: | ||
auto-approve: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: hmarr/[email protected] | ||
if: github.actor == 'scala-steward' || github.actor == 'renovate[bot]' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18.16.0 | ||
20.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version = "3.7.3" | ||
version = "3.8.1" | ||
runner.dialect = scala212 | ||
maxColumn = 120 | ||
align.preset = most | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,12 @@ inThisBuild( | |
), | ||
Developer("justcoon", "Peter Kotula", "[email protected]", url("https://github.com/justcoon")) | ||
), | ||
zioVersion := "2.0.13" | ||
zioVersion := "2.1.1", | ||
scala212 := "2.12.17", | ||
scala213 := "2.13.10", | ||
scala3 := "3.3.0", | ||
javaPlatform := "11", | ||
javaPlatforms := Seq("11", "17") | ||
) | ||
) | ||
|
||
|
@@ -91,7 +96,8 @@ lazy val core = crossProject(JSPlatform, JVMPlatform) | |
.settings(enableZIO(enableStreaming = true)) | ||
.settings( | ||
libraryDependencies ++= Seq( | ||
"dev.zio" %%% "zio-parser" % zioParser | ||
"dev.zio" %%% "zio-parser" % zioParser, | ||
"dev.zio" %%% "zio-prelude" % zioPrelude | ||
) | ||
) | ||
.jvmSettings( | ||
|
@@ -131,7 +137,7 @@ lazy val slf4j2 = project | |
libraryDependencies ++= Seq( | ||
"org.slf4j" % "slf4j-api" % slf4j2Version, | ||
"ch.qos.logback" % "logback-classic" % logback2Version % Test, | ||
"net.logstash.logback" % "logstash-logback-encoder" % "7.3" % Test, | ||
"net.logstash.logback" % "logstash-logback-encoder" % "7.4" % Test, | ||
"org.scala-lang.modules" %% "scala-collection-compat" % scalaCollectionCompatVersion % Test | ||
) | ||
) | ||
|
@@ -195,8 +201,9 @@ lazy val examplesCore = project | |
.settings( | ||
publish / skip := true, | ||
libraryDependencies ++= Seq( | ||
"dev.zio" %% "zio-metrics-connectors" % zioMetricsConnectorsVersion, | ||
"dev.zio" %% "zio-config-typesafe" % zioConfig | ||
"dev.zio" %% "zio-metrics-connectors-prometheus" % zioMetricsConnectorsVersion, | ||
"dev.zio" %% "zio-http" % zioHttp, | ||
"dev.zio" %% "zio-config-typesafe" % zioConfig | ||
) | ||
) | ||
|
||
|
@@ -220,7 +227,7 @@ lazy val examplesSlf4j2Logback = project | |
publish / skip := true, | ||
libraryDependencies ++= Seq( | ||
"ch.qos.logback" % "logback-classic" % logback2Version, | ||
"net.logstash.logback" % "logstash-logback-encoder" % "7.3" | ||
"net.logstash.logback" % "logstash-logback-encoder" % "7.4" | ||
) | ||
) | ||
|
||
|
@@ -231,8 +238,8 @@ lazy val examplesSlf4j2Log4j = project | |
.settings( | ||
publish / skip := true, | ||
libraryDependencies ++= Seq( | ||
"org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.20.0", | ||
"org.apache.logging.log4j" % "log4j-core" % "2.20.0" | ||
"org.apache.logging.log4j" % "log4j-slf4j2-impl" % log4jVersion, | ||
"org.apache.logging.log4j" % "log4j-core" % log4jVersion | ||
) | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.