From 53665c0fbfa0be975e0e3be546e81fb413ff79db Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 9 Aug 2023 17:17:42 +0000 Subject: [PATCH 1/3] Update dependency ubuntu to v22 (#756) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/auto-approve.yml | 2 +- .github/workflows/release-drafter.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml index ad25c468..e2bbccb8 100644 --- a/.github/workflows/auto-approve.yml +++ b/.github/workflows/auto-approve.yml @@ -5,7 +5,7 @@ on: jobs: auto-approve: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: hmarr/auto-approve-action@v3.2.1 if: github.actor == 'scala-steward' || github.actor == 'renovate[bot]' diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 58bddceb..be3535e2 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -6,7 +6,7 @@ on: jobs: update_release_draft: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: release-drafter/release-drafter@v5 env: From 32a6fa7e5e5edaf80b6c745078d0b15374ee691d Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sun, 13 Aug 2023 19:48:14 +0200 Subject: [PATCH 2/3] Update logback-classic to 1.4.11 (#759) --- project/Versions.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Versions.scala b/project/Versions.scala index 19022172..91f83b06 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -2,7 +2,7 @@ object Versions { val slf4jVersion = "1.7.36" val slf4j2Version = "2.0.7" val logbackVersion = "1.2.12" - val logback2Version = "1.4.9" + val logback2Version = "1.4.11" val scalaCollectionCompatVersion = "2.11.0" val logstashLogbackEncoderVersion = "6.6" val scalaJavaTimeVersion = "2.5.0" From 89d97202dee403e29879ef7315d56971121975ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 13 Aug 2023 20:22:41 +0200 Subject: [PATCH 3/3] Update README.md (#758) Co-authored-by: github-actions[bot] --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c620f5e0..d0c24097 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ In order to use this library, we need to add the following line in our `build.sb ```scala // ZIO Logging backends -libraryDependencies += "dev.zio" %% "zio-logging" % "2.1.13" +libraryDependencies += "dev.zio" %% "zio-logging" % "2.1.14" ``` The main module contains the following features: @@ -43,10 +43,10 @@ Other modules: ```scala // SLF4j v1 integration - libraryDependencies += "dev.zio" %% "zio-logging-slf4j" % "2.1.13" + libraryDependencies += "dev.zio" %% "zio-logging-slf4j" % "2.1.14" // SLF4j v2 integration - libraryDependencies += "dev.zio" %% "zio-logging-slf4j2" % "2.1.13" + libraryDependencies += "dev.zio" %% "zio-logging-slf4j2" % "2.1.14" ``` When to use this module: you are already using SLF4J logger in some other project, and you like to have same log outputs. See SLF4J [v2](docs/slf4j2.md) or [v1](docs/slf4j1.md) section for more details. @@ -56,10 +56,10 @@ Other modules: ```scala // Using ZIO Logging for SLF4j v1 loggers, usually third-party non-ZIO libraries - libraryDependencies += "dev.zio" %% "zio-logging-slf4j-bridge" % "2.1.13" + libraryDependencies += "dev.zio" %% "zio-logging-slf4j-bridge" % "2.1.14" // Using ZIO Logging for SLF4j v2 loggers, usually third-party non-ZIO libraries - libraryDependencies += "dev.zio" %% "zio-logging-slf4j2-bridge" % "2.1.13" + libraryDependencies += "dev.zio" %% "zio-logging-slf4j2-bridge" % "2.1.14" ``` When to use this module: you want to use some zio-logger implementation, but also you are using some java library which using SLF4J interface for logging. @@ -70,7 +70,7 @@ Other modules: ```scala // JPL integration - libraryDependencies += "dev.zio" %% "zio-logging-jpl" % "2.1.13" + libraryDependencies += "dev.zio" %% "zio-logging-jpl" % "2.1.14" ``` When to use this module: you are already using Java Platform/System Logger in some other project, and you like to have same log outputs.