Skip to content

Commit

Permalink
chore: Minor dependency updates (#262)
Browse files Browse the repository at this point in the history
## About this PR
Updates:

* 📦 [dev.zio:zio-json](https://github.com/zio/zio-json) from `0.7.2` to
`0.7.3`
+ 📜 [GitHub Release
Notes](https://github.com/zio/zio-json/releases/tag/v0.7.3) - [Version
Diff](zio/zio-json@v0.7.2...v0.7.3)
* 📦 [dev.zio:zio-json-interop-refined](https://github.com/zio/zio-json)
from `0.7.2` to `0.7.3`
+ 📜 [GitHub Release
Notes](https://github.com/zio/zio-json/releases/tag/v0.7.3) - [Version
Diff](zio/zio-json@v0.7.2...v0.7.3)
* 📦
[org.typelevel:sbt-tpolecat](https://github.com/typelevel/sbt-tpolecat)
from `0.5.1` to `0.5.2`
+ 📜 [GitHub Release
Notes](https://github.com/typelevel/sbt-tpolecat/releases/tag/v0.5.2) -
[Version
Diff](typelevel/sbt-tpolecat@v0.5.1...v0.5.2)

## Usage
✅ **Please merge!**

I'll automatically update this PR to resolve conflicts as long as you
don't change it yourself.

If you have any feedback, just mention me in the comments below.

Configure Scala Steward for your repository with a
[`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/767fcfecbfd53c507152f6cf15c846176bae561d/docs/repo-specific-configuration.md)
file.

_Have a fantastic day writing Scala!_

<details>
<summary>⚙ Adjust future updates</summary>

Add these to your `.scala-steward.conf` file to ignore future updates of
these dependencies:
```
updates.ignore = [
  { groupId = "dev.zio", artifactId = "zio-json" },
  { groupId = "dev.zio", artifactId = "zio-json-interop-refined" },
  { groupId = "org.typelevel", artifactId = "sbt-tpolecat" }
]
```
Or, add these to slow down future updates of these dependencies:
```
dependencyOverrides = [
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "dev.zio", artifactId = "zio-json" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "dev.zio", artifactId = "zio-json-interop-refined" }
  },
  {
    pullRequests = { frequency = "30 days" },
    dependency = { groupId = "org.typelevel", artifactId = "sbt-tpolecat" }
  }
]
```
</details>

<sup>
labels: library-update, sbt-plugin-update, early-semver-minor,
semver-spec-patch, version-scheme:early-semver, commit-count:n:2
</sup>

---------

Co-authored-by: Marcin Procyk <[email protected]>
  • Loading branch information
daschbot and mpro7 authored Sep 2, 2024
1 parent 8b5e920 commit 2e28360
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ val sqliteVersion = "3.46.0.1"
val tapirVersion = "1.11.1"
val testContainersVersion = "0.40.15"
val zioConfigVersion = "4.0.2"
val zioJsonVersion = "0.7.2"
val zioJsonVersion = "0.7.3"
val zioLoggingVersion = "2.3.1"
val zioMetricsConnectorsVersion = "2.3.1"
val zioMockVersion = "1.0.0-RC12"
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.1")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2")
addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.1")

0 comments on commit 2e28360

Please sign in to comment.