Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ dependencies {
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.2',
'io.jsonwebtoken:jjwt-jackson:0.11.2'
implementation 'joda-time:joda-time:2.10.13'
implementation 'org.xerial:sqlite-jdbc:3.36.0.3'
implementation 'org.xerial:sqlite-jdbc:3.46.0.0'

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

🚩 Major version jump in sqlite-jdbc may warrant integration testing

The version bump from 3.36.0.3 to 3.46.0.0 spans 10 minor versions of the SQLite JDBC driver. While the sqlite-jdbc library generally maintains backward API compatibility, this is a significant jump that could include behavioral changes in SQLite's SQL dialect handling, WAL mode behavior, or connection pool interaction. The project uses Flyway migrations (build.gradle:65) and MyBatis with SQLite (application.properties:1-2), so any subtle behavioral changes in the JDBC driver could surface at runtime rather than compile time. The existing test suite (with 80% coverage requirement at build.gradle:42) should catch most regressions, but it's worth confirming all tests pass with the new version.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

All tests pass with the new version — ran ./gradlew clean test -x jacocoTestCoverageVerification locally with Java 11 before opening the PR, and CI also passed green.


compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
Expand Down
Loading