Skip to content

Update sqlite-jdbc to 3.53.0.0#478

Merged
mergify[bot] merged 1 commit into
nafg:masterfrom
scala-steward:update/sqlite-jdbc-3.53.0.0
Apr 15, 2026
Merged

Update sqlite-jdbc to 3.53.0.0#478
mergify[bot] merged 1 commit into
nafg:masterfrom
scala-steward:update/sqlite-jdbc-3.53.0.0

Conversation

@scala-steward
Copy link
Copy Markdown
Contributor

About this PR

📦 Updates org.xerial:sqlite-jdbc from 3.51.3.0 to 3.53.0.0

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 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.xerial", artifactId = "sqlite-jdbc" } ]

Or, add this to slow down future updates of this dependency:

dependencyOverrides = [{
  pullRequests = { frequency = "30 days" },
  dependency = { groupId = "org.xerial", artifactId = "sqlite-jdbc" }
}]
labels: test-library-update, commit-count:1

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 15, 2026

📝 Walkthrough

Walkthrough

Updated the sqlite-jdbc test dependency version in build.sbt from 3.51.3.0 to 3.53.0.0. This is a single-line change to the build configuration with no modifications to source code or public APIs.

Changes

Cohort / File(s) Summary
Build Dependency Update
build.sbt
Bumped org.xerial:sqlite-jdbc test dependency from version 3.51.3.0 to 3.53.0.0.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Poem

🐰 A hop and a bump, the deps align,
SQLite's new version—how it will shine!
From 3-51 to 5-3 we go,
Testing stronger with each little toe! ✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main change: updating sqlite-jdbc to version 3.53.0.0, which matches the file-level summary and PR objectives.
Description check ✅ Passed The description is directly related to the changeset, clearly explaining the dependency update from 3.51.3.0 to 3.53.0.0 with relevant context and guidance.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@mergify mergify Bot added the queued label Apr 15, 2026
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@build.sbt`:
- Line 17: Update the libraryDependencies entry for "org.xerial" % "sqlite-jdbc"
in build.sbt to use the existing version "3.51.3.0" instead of the non-existent
"3.53.0.0", and remove the trailing "// latest version that works" comment so
the line reads with the correct version and no misleading comment; locate and
modify the dependency declaration that matches libraryDependencies +=
"org.xerial" % "sqlite-jdbc" % "3.53.0.0" % "test".
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 446f60bc-3089-4db4-a130-059e5a17db7d

📥 Commits

Reviewing files that changed from the base of the PR and between 5af9718 and 722346e.

📒 Files selected for processing (1)
  • build.sbt

Comment thread build.sbt
libraryDependencies += "com.h2database" % "h2" % "2.3.232" % "test"

libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.51.3.0" % "test" // latest version that works
libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.53.0.0" % "test" // latest version that works
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check for security advisories for sqlite-jdbc

# Check for security advisories using GitHub CLI
gh api graphql -f query='
{
  securityVulnerabilities(first: 10, ecosystem: MAVEN, package: "org.xerial:sqlite-jdbc") {
    nodes {
      advisory {
        summary
        severity
        publishedAt
      }
      vulnerableVersionRange
      firstPatchedVersion {
        identifier
      }
    }
  }
}'

Repository: nafg/slick-migration-api

Length of output: 382


🌐 Web query:

sqlite-jdbc latest version 2026

💡 Result:

The latest version of sqlite-jdbc is 3.51.3.0, released on March 16, 2026.

Citations:


🌐 Web query:

sqlite-jdbc 3.53.0.0 release notes

💡 Result:

No sqlite-jdbc 3.53.0.0 release exists as of 2026-04-15. SQLite 3.53.0 was released on 2026-04-09, but sqlite-jdbc latest release is 3.51.3.0 (2026-03-16), bundling SQLite 3.51.3 and 3.52.0. sqlite-jdbc follows SQLite versions with a fourth digit for project increments (e.g., 3.51.3.0), and no 3.53.x release found on GitHub releases page or searches.

Citations:


Use sqlite-jdbc version 3.51.3.0 instead—version 3.53.0.0 does not exist.

Version 3.53.0.0 is not available in any repository. The latest version is 3.51.3.0 (released March 16, 2026). Building against 3.53.0.0 will fail dependency resolution. Update the version and remove the misleading comment.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@build.sbt` at line 17, Update the libraryDependencies entry for "org.xerial"
% "sqlite-jdbc" in build.sbt to use the existing version "3.51.3.0" instead of
the non-existent "3.53.0.0", and remove the trailing "// latest version that
works" comment so the line reads with the correct version and no misleading
comment; locate and modify the dependency declaration that matches
libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.53.0.0" % "test".

@mergify
Copy link
Copy Markdown
Contributor

mergify Bot commented Apr 15, 2026

Merge Queue Status

  • Entered queue2026-04-15 17:59 UTC · Rule: default
  • Checks skipped · PR is already up-to-date
  • Merged2026-04-15 17:59 UTC · at 722346e5acb0ec5a153bb2f98f3ad23a30abedbd

This pull request spent 25 seconds in the queue, including 4 seconds running CI.

Required conditions to merge

@mergify mergify Bot merged commit 531a56b into nafg:master Apr 15, 2026
9 checks passed
@mergify mergify Bot removed the queued label Apr 15, 2026
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.

1 participant