dependabot[bot] opened a new pull request, #687:
URL: https://github.com/apache/tika/pull/687

   Bumps [sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) from 3.39.2.1 to 
3.39.3.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/xerial/sqlite-jdbc/releases";>sqlite-jdbc's 
releases</a>.</em></p>
   <blockquote>
   <h2>Release 3.39.3.0</h2>
   <h2>Changelog</h2>
   <h2>🚀 Features</h2>
   <ul>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/1cab301";>1cab301</a> [jdbc] 
support Statement.execute methods with autoGeneratedKeys parameter</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/954dd4c";>954dd4c</a> [jdbc] 
ResultSetMetaData.getColumnClassName returns more accurate type</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/0ede2be";>0ede2be</a> [jdbc] 
support for read-only transactions, fix timeout handling</li>
   </ul>
   <h2>🐛 Fixes</h2>
   <ul>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/f4eaac4";>f4eaac4</a> 
[native] JRE crash on connection close with CommitListener and auto commit 
disabled</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/7c3f7de";>7c3f7de</a> [jdbc] 
Statement.setEscapeProcessing should not throw unsupported exception</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/e14fcd0";>e14fcd0</a> [jdbc] 
throw SQLFeatureNotSupportedException instead of SQLException for unsupported 
features</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/09d4db2";>09d4db2</a> [jdbc] 
DatabaseMetaData.supportsFullOuterJoins returns true for SQLite 3.39+</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/bbb7d2c";>bbb7d2c</a> [jdbc] 
incorrect DatabaseMetaData JDBC version major/minor</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/bc5174b";>bc5174b</a> [jdbc] 
getDate, getTime, and getTimestamp crash on empty text</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/1c84e06";>1c84e06</a> [jdbc] 
ResultSetMetaData.getColumnType now returns BIGINT if the value is large</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/b7396a1";>b7396a1</a> [jdbc] 
detect TIMESTAMP stored in SQLITE_TEXT</li>
   </ul>
   <h2>🛠  Build</h2>
   <ul>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/eec8880";>eec8880</a> 
[native] update SQLite to 3.39.3</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/6117c94";>6117c94</a> fix 
build-native directory when downloading native libraries</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/628a38e";>628a38e</a> 
[native] update dockcross windows x86/x64 images</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/90550cc";>90550cc</a> 
[native] update dockcross images, fixes issue when running on Mac M1</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/0bfe4f0";>0bfe4f0</a> 
replace junit jupiter assumptions with assertJ</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/12263cd";>12263cd</a> test 
with external amalgamation</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/c408b8f";>c408b8f</a> add 
graalvm argument following assertj migration</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/f3ac947";>f3ac947</a> 
migrate to assertJ</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/487f225";>487f225</a> remove 
old travis files</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/ea3c662";>ea3c662</a> fix 
missing condition for build-native workflow</li>
   </ul>
   <h2>📝 Documentation</h2>
   <ul>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commits/4b5d0a6";>4b5d0a6</a> 
mention support of Linux musl 32bits</li>
   </ul>
   <h2>Contributors</h2>
   <p>We'd like to thank the following people for their contributions:
   GitHub, Gauthier Roebroeck, Martin, github-actions, Gauthier, 
martin.haeusler</p>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/c22c5c5f1db068ec91234170c9318b4fbc5b24b5";><code>c22c5c5</code></a>
 chore(release): 3.39.3.0 [skip ci]</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/975cd088708a468395410cccab7255d31d8de4df";><code>975cd08</code></a>
 chore: update native libraries</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/eec8880be98b114fd2f73ef24f9d439b6cb380bc";><code>eec8880</code></a>
 build(native): update SQLite to 3.39.3</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/0ede2be6c52085178d8a5d748643ac35c1d4db06";><code>0ede2be</code></a>
 feat(jdbc): support for read-only transactions, fix timeout handling</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/f4eaac42d12b5476e4a2fb7d24626b572286b423";><code>f4eaac4</code></a>
 fix(native): JRE crash on connection close with CommitListener and auto 
commi...</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/6117c94d3dd49d23a489de967db792bb1aa48355";><code>6117c94</code></a>
 ci: fix build-native directory when downloading native libraries</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/628a38e873e5cd5571a5629a9e188188a487ffc1";><code>628a38e</code></a>
 build(native): update dockcross windows x86/x64 images</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/90550cc5367fc4d739d9b594faa41c28944a7eb7";><code>90550cc</code></a>
 build(native): update dockcross images, fixes issue when running on Mac M1</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/7c3f7decb14a30bf55459b3da6a0b1c3171dc161";><code>7c3f7de</code></a>
 fix(jdbc): Statement.setEscapeProcessing should not throw unsupported 
exception</li>
   <li><a 
href="https://github.com/xerial/sqlite-jdbc/commit/e14fcd0daf81f45c4dc3d2cd98f6aa2b58f562dc";><code>e14fcd0</code></a>
 fix(jdbc): throw SQLFeatureNotSupportedException instead of SQLException for 
...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/xerial/sqlite-jdbc/compare/3.39.2.1...3.39.3.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.xerial:sqlite-jdbc&package-manager=maven&previous-version=3.39.2.1&new-version=3.39.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to