Skip to content

Update dependencies - #90

Open
funfix[bot] wants to merge 1 commit into
mainfrom
renovate/all-dependencies
Open

Update dependencies#90
funfix[bot] wants to merge 1 commit into
mainfrom
renovate/all-dependencies

Conversation

@funfix

@funfix funfix Bot commented Sep 7, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change Pending
org.scalacheck:scalacheck (source) Test minor 1.19.01.20.0
org.xerial:sqlite-jdbc Test patch 3.53.2.13.53.4.0
renovatebot/github-action action patch v46.2.4v46.2.5 v46.2.6
org.xerial:sqlite-jdbc dependencies patch 3.53.2.13.53.4.0
org.funfix:tasks-jvm dependencies minor 0.4.10.5.0

Release Notes

typelevel/scalacheck (org.scalacheck:scalacheck)

v1.20.0

Compare Source

What's Changed

Updates

New Contributors

Full Changelog: typelevel/scalacheck@v1.19.0...v1.20.0

xerial/sqlite-jdbc (org.xerial:sqlite-jdbc)

v3.53.4.0

Compare Source

Changelog
🚀 Features

sqlite

  • upgrade to sqlite 3.53.4 (3c55d7a)
🐛 Fixes
  • bound utf-8 reader to the terminating nul in extension-functions (a6f4d4d)
🛠 Build

deps

  • bump org.graalvm.buildtools:native-maven-plugin (c72dc32)
  • bump org.graalvm.buildtools:native-maven-plugin (f5aaf0e)
  • bump EndBug/add-and-commit from 10 to 11 (0a6a8f2)
  • bump org.graalvm.buildtools:native-maven-plugin (843cd86)
  • bump org.graalvm.buildtools:native-maven-plugin (16aa812)
  • bump org.graalvm.sdk:nativeimage from 25.1.3 to 25.2.4 (47e20b2)

deps-dev

  • bump com.tngtech.archunit:archunit-junit5 (db432fd)
  • bump org.apache.maven.plugins:maven-jar-plugin (7650e24)
Contributors

We'd like to thank the following people for their contributions:
Gauthier, Javid Khan

renovatebot/github-action (renovatebot/github-action)

v46.2.5

Compare Source

Documentation
  • update references to renovatebot/github-action to v46.2.4 (c2ba0df)
Miscellaneous Chores
  • deps: update node.js to v24.20.0 (8bff989)
Build System
  • deps: lock file maintenance (40119c0)
Continuous Integration
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.40.0 (7776f7b)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.43.1 (1a8a884)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.44.0 (94a8afa)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.45.2 (91a1ccd)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.45.3 (9df3426)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.45.4 (c0c2060)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.46.0 (246e8c4)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.46.1 (a2cef85)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.46.2 (3ce659c)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.46.4 (cd8ceb2)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.46.5 (8f94c87)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.46.6 (7997c61)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.48.0 (a60af3a)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.48.1 (508cd10)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.48.2 (cca913a)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.48.3 (d450fc2)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.49.0 (0afb379)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.49.1 (c409f02)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.50.1 (dbb0a9b)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.50.2 (f51cd98)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.50.3 (34b46a4)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.51.0 (ea6c45c)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.51.2 (9774ab2)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v44.52.0 (e753d3e)
  • deps: update ghcr.io/zizmorcore/zizmor docker tag to v1.30.0 (92becf5)
  • deps: update zizmorcore/zizmor-action action to v0.6.3 (ea548b4)
funfix/tasks (org.funfix:tasks-jvm)

v0.5.0

This release changes the asynchronous task API and improves cancellation handling.

Breaking changes

AsyncFun<T> now receives a single public Continuation<? super T> and returns void.

Task.fromAsync(continuation -> {
    Executor executor = continuation.getExecutor();

    continuation.invokeOnCancellation(() -> {
        // Cleanup
    });

    executor.execute(() -> continuation.onSuccess("done"));
});

Previously, asynchronous functions received an Executor and CompletionCallback, then returned a Cancellable.

Continuation now:

  • Extends CompletionCallback
  • Provides the task's Executor through getExecutor()
  • Registers cancellation cleanup through invokeOnCancellation()
  • Separates cancellation cleanup from onCancellation(), which signals task completion

This change is source and binary incompatible.

Other changes

  • Improved cancellation race handling for asynchronous tasks, blocking I/O, futures, and Kotlin coroutines.
  • Corrected JSpecify annotations and nullable generic bounds.
  • Added NullAway and Error Prone checks for Java sources.
  • Updated Kotlin to 2.4.10 and kotlinx-coroutines to 1.11.0.
  • Expanded cancellation and cancellable-future test coverage.
  • Updated publishing and dependency automation.

Full changelog: funfix/tasks@v0.4.1...v0.5.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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 has been generated by Mend Renovate CLI.

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