Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all dependencies #56

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 3, 2025

This PR contains the following updates:

Package Type Update Change
ch.qos.logback:logback-classic Runtime patch 1.5.16 -> 1.5.17
com.github.sbt:sbt-ci-release (source) plugin patch 1.9.2 -> 1.9.3
dev.zio:zio (source) patch 2.1.15 -> 2.1.16
dev.zio:zio-streams (source) patch 2.1.15 -> 2.1.16
dev.zio:zio-test (source) patch 2.1.15 -> 2.1.16
dev.zio:zio-test-sbt (source) patch 2.1.15 -> 2.1.16
docker/build-push-action action minor v6.14.0 -> v6.15.0
docker/login-action action minor v3.3.0 -> v3.4.0
docker/metadata-action action minor v5.6.1 -> v5.7.0
docker/setup-buildx-action action minor v3.9.0 -> v3.10.0
io.cucumber:cucumber-scala patch 8.26.1 -> 8.26.2
io.gatling:gatling-jsonpath (source) patch 3.13.4 -> 3.13.5
sbt/sbt patch 1.10.7 -> 1.10.11

Release Notes

sbt/sbt-ci-release (com.github.sbt:sbt-ci-release)

v1.9.3: 1.9.3

Compare Source

updates and fixes

behind the scene

Full Changelog: sbt/sbt-ci-release@v1.9.2...v1.9.3

zio/zio (dev.zio:zio)

v2.1.16: 2.1.16

Compare Source

Highlights

This seemingly small release brings 2 new features to ZIO which library authors can utilize in order to provide a better DX for users. As usually, it also contains a number of optimizations, bug fixes, and it's fully binary and source-compatible with the rest of the v2.x series.

HasNoScope evidence (https://github.com/zio/zio/pull/9604)

In ZIO, having a Scope as an environment requirement indicates that the effect contains finalizers (e.g., closing an HTTP connection) which need to be handled at some point in the evaluation of the effect or the application's lifetime. In certain cases, we might want to ensure that an effect provided to a method does not contain any finalizers. Starting with this version of ZIO, users / library authors can use the HasNoScope evidence for methods where the environment is generic, e.g.,:

def foo[R, A](f: ZIO[R, Nothing, A)(using HasNoScope[R]) = ???

val f1 = foo(ZIO.succeed("foo")) // compiles
val f2 = foo(ZIO.acquireRelease(ZIO.succeed("foo"))(_ => ZIO.unit)) // fails to compile

Note that this feature is primarily intended for use in libraries such as zio-http where we need to ensure that a user-provided effect does not contain any finalizers.

Generic interfaces for non-empty collections (https://github.com/zio/zio/pull/9560)

This release introduces the NonEmptySeq type class (which NonEmptyChunk now extends) so that users / library authors can write generic code which requires non-empty collections as arguments.

What's Changed

Other changes (CI, dependencies and documentation)

Full Changelog: zio/zio@v2.1.15...v2.1.16

docker/build-push-action (docker/build-push-action)

v6.15.0

Compare Source

Full Changelog: docker/build-push-action@v6.14.0...v6.15.0

docker/login-action (docker/login-action)

v3.4.0

Compare Source

Full Changelog: docker/login-action@v3.3.0...v3.4.0

docker/metadata-action (docker/metadata-action)

v5.7.0

Compare Source

Full Changelog: docker/metadata-action@v5.6.1...v5.7.0

docker/setup-buildx-action (docker/setup-buildx-action)

v3.10.0

Compare Source

Full Changelog: docker/setup-buildx-action@v3.9.0...v3.10.0

cucumber/cucumber-jvm-scala (io.cucumber:cucumber-scala)

v8.26.2

Compare Source

Changed
  • [Build] update action-publish-sbt
  • [Build] update sbt-release
gatling/gatling (io.gatling:gatling-jsonpath)

v3.13.5

Compare Source

sbt/sbt (sbt/sbt)

v1.10.11: 1.10.11

Compare Source

updates
🐛 bug fixes

Full Changelog: sbt/sbt@v1.10.10...v1.10.11

v1.10.10: 1.10.10

Compare Source

🐛 bug fixes

Full Changelog: sbt/sbt@v1.10.9...v1.10.10

v1.10.9: 1.10.9

Compare Source

🚀 features and other updates
🐛 bug fixes
🎬 behind the scene
new contributors

Full Changelog: sbt/sbt@v1.10.7...v1.10.9

v1.10.8: 1.10.8

Compare Source

sbt 1.10.8 is dead on arrival, please use 1.10.9 when it comes out.


Configuration

📅 Schedule: Branch creation - "before 9am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 6301232 to c9fbc1e Compare March 4, 2025 07:26
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 27e37f8 to 88de4ec Compare March 16, 2025 18:15
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants