From c878f085b13bc16767e7e578bb0f3cd10d6f4dfa Mon Sep 17 00:00:00 2001
From: Scala Steward <43047562+scala-steward@users.noreply.github.com>
Date: Sat, 23 Nov 2024 19:02:42 +0100
Subject: [PATCH] Update vertx-core, vertx-web to 5.0.0.CR2 (#861)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## About this PR
📦 Updates
* io.vertx:vertx-core
* io.vertx:vertx-web
from `5.0.0.CR1` to `5.0.0.CR2`
## 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/3524289258266a18952c176b58ca3246f5e590e3/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 = "io.vertx" } ]
```
Or, add this to slow down future updates of this dependency:
```
dependencyOverrides = [{
pullRequests = { frequency = "30 days" },
dependency = { groupId = "io.vertx" }
}]
```
labels: library-update, commit-count:1
---
build.sbt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.sbt b/build.sbt
index 16a69644c..70f7b3b2b 100644
--- a/build.sbt
+++ b/build.sbt
@@ -475,8 +475,8 @@ lazy val `kyo-bench` =
libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.29",
libraryDependencies += "org.http4s" %% "http4s-dsl" % "0.23.29",
libraryDependencies += "dev.zio" %% "zio-http" % "3.0.1",
- libraryDependencies += "io.vertx" % "vertx-core" % "5.0.0.CR1",
- libraryDependencies += "io.vertx" % "vertx-web" % "5.0.0.CR1",
+ libraryDependencies += "io.vertx" % "vertx-core" % "5.0.0.CR2",
+ libraryDependencies += "io.vertx" % "vertx-web" % "5.0.0.CR2",
libraryDependencies += "org.scalatest" %% "scalatest" % scalaTestVersion % Test
)