Skip to content

Commit

Permalink
Update zio-kafka, zio-kafka-testkit to 2.8.3 (#1353)
Browse files Browse the repository at this point in the history
## About this PR
πŸ“¦ Updates 
* [dev.zio:zio-kafka](https://github.com/zio/zio-kafka)
* [dev.zio:zio-kafka-testkit](https://github.com/zio/zio-kafka)

 from `2.8.2` to `2.8.3`

πŸ“œ [GitHub Release
Notes](https://github.com/zio/zio-kafka/releases/tag/v2.8.3) - [Version
Diff](v2.8.2...v2.8.3)

## 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/767fcfecbfd53c507152f6cf15c846176bae561d/docs/repo-specific-configuration.md)
file.

_Have a fantastic day writing Scala!_

<details>
<summary>πŸ” Files still referring to the old version number</summary>

The following files still refer to the old version number (2.8.2).
You might want to review and update them manually.
```
README.md
build.sbt
```
</details>
<details>
<summary>βš™ Adjust future updates</summary>

Add this to your `.scala-steward.conf` file to ignore future updates of
this dependency:
```
updates.ignore = [ { groupId = "dev.zio" } ]
```
Or, add this to slow down future updates of this dependency:
```
dependencyOverrides = [{
  pullRequests = { frequency = "30 days" },
  dependency = { groupId = "dev.zio" }
}]
```
</details>

<sup>
labels: library-update, early-semver-patch, semver-spec-patch,
old-version-remains, commit-count:1
</sup>

Co-authored-by: zio-scala-steward[bot] <145262613+zio-scala-steward[bot]@users.noreply.github.com>
  • Loading branch information
zio-scala-steward[bot] authored Oct 31, 2024
1 parent fbaa2d5 commit 84eabfe
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ lazy val binCompatVersionToCompare =
// Note, "git describe --tags"
// either produces something like "v2.8.2-40-ge8a844a1" (not building from a release tag),
// or "v2.8.2" (building from a release tag),
Try("git describe --tags".!!)
.toOption
Try("git describe --tags".!!).toOption
.map(_.strip())
// Only continue when we're building from a release tag
.filter(_.matches("v[0-9]+\\.[0-9]+\\.[0-9]+"))
Expand Down Expand Up @@ -196,11 +195,11 @@ lazy val zioKafkaExample =
.settings(
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "2.1.11",
"dev.zio" %% "zio-kafka" % "2.8.2",
"dev.zio" %% "zio-kafka" % "2.8.3",
"dev.zio" %% "zio-logging-slf4j2" % "2.3.2",
"io.github.embeddedkafka" %% "embedded-kafka" % embeddedKafkaVersion,
logback,
"dev.zio" %% "zio-kafka-testkit" % "2.8.2" % Test,
"dev.zio" %% "zio-kafka-testkit" % "2.8.3" % Test,
"dev.zio" %% "zio-test" % "2.1.11" % Test
),
// Scala 3 compiling fails with:
Expand Down

0 comments on commit 84eabfe

Please sign in to comment.