From b083cd9f5d1c9998f46162d1743a50e7a360713c Mon Sep 17 00:00:00 2001
From: Scala Steward <43047562+scala-steward@users.noreply.github.com>
Date: Thu, 28 Nov 2024 08:03:26 +0100
Subject: [PATCH] Update cats-effect to 3.5.7 (#226)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## About this PR
📦 Updates
[org.typelevel:cats-effect](https://github.com/typelevel/cats-effect)
from `3.5.6` to `3.5.7`
📜 [GitHub Release
Notes](https://github.com/typelevel/cats-effect/releases/tag/v3.5.7) -
[Version
Diff](https://github.com/typelevel/cats-effect/compare/v3.5.6...v3.5.7)
## Usage
✅ **Please merge!**
I'll automatically update this PR to resolve conflicts as long as you
don't change it yourself.
If you'd like to skip this version, you can just close this PR. 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/916c6a1aef8db850bfac13d53922270789350b55/docs/repo-specific-configuration.md)
file.
_Have a fantastic day writing Scala!_
âš™ Adjust future updates
Add this to your `.scala-steward.conf` file to ignore future updates of
this dependency:
```
updates.ignore = [ { groupId = "org.typelevel", artifactId = "cats-effect" } ]
```
Or, add this to slow down future updates of this dependency:
```
dependencyOverrides = [{
pullRequests = { frequency = "30 days" },
dependency = { groupId = "org.typelevel", artifactId = "cats-effect" }
}]
```
labels: library-update, early-semver-patch, semver-spec-patch,
version-scheme:early-semver, commit-count:1
---
project/Dependencies.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 1dad958..00cad6c 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -8,7 +8,7 @@ object Dependencies {
object Cats {
private val version = "2.12.0"
- private val effectVersion = "3.5.6"
+ private val effectVersion = "3.5.7"
val core = "org.typelevel" %% "cats-core" % version
val effect = "org.typelevel" %% "cats-effect" % effectVersion
}