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

   Bumps [com.mchange:c3p0](https://github.com/swaldman/c3p0) from 0.9.5.5 to 
0.10.0-pre6.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/swaldman/c3p0/blob/0.10.x/CHANGELOG";>com.mchange:c3p0's
 changelog</a>.</em></p>
   <blockquote>
   <p>c3p0-0.10.0-pre6
   -- Lots of documentation work.
   -- Implement attemptResurrectOnCheckin config parameter.
   See <a 
href="https://redirect.github.com/swaldman/c3p0/issues/47";>swaldman/c3p0#47</a>
   Thanks Bartosz Radaczyński and Igor Khromov!
   -- Add guard to automaticTestTable preventing use of weird or potentially 
malicious table names.
   Thanks to Andy at Privitar
   -- Pick up com.mchange.v2.c3p0.impl.DefaultConnectionTester.isValidTimeout 
as default
   value of new connectionIsValidTimeout property, so that users upgrading from 
previous
   version still capture the setting from the old config, even as their 
ConnectionTester
   now falls back to null.
   c3p0-0.10.0-pre5
   -- Lots of documenting, condensing, clean-up, etc.
   -- Define connectionIsValidTimeout as an ordinary bean-style config 
parameter.
   Previously users had to set a universal property (in c3p0.properties or 
System
   properties) to set this timeout.
   -- Use simplified isValid(...) based timeout by default, use traditional
   ConnectionTester logic only when users specify or force a ConnectionTester
   c3p0-0.10.0-pre4
   -- Define (in a separate, Java 21, project) a loom virtual-threads based
   TaskRunnerFactory, VirtualThreadPerTaskExecutorTaskRunnerFactory.
   See <a 
href="https://github.com/swaldman/c3p0-loom";>https://github.com/swaldman/c3p0-loom</a>
   -- DefineFixedThreadPoolExecutorTaskRunnerFactory, a simple example that
   replaces c3p0's traditional Thread pool with an unshared ThreadPoolExecutor
   of size numHelperThreads.
   -- Define AbstractExecutorTaskRunnerFactory, which users can extend to use or
   share java.util.concurrent.Executor instances rather than c3p0's traditional
   hand-rolled Thread pool.
   See <a 
href="https://redirect.github.com/swaldman/c3p0/issues/76";>swaldman/c3p0#76</a>
   <a 
href="https://redirect.github.com/swaldman/c3p0/issues/41";>swaldman/c3p0#41</a>
   Thanks Michele Rossi, and mysterious GitHub <a 
href="https://github.com/ghost";><code>@​ghost</code></a>.
   -- Define TaskRunnerFactory, and config param TaskRunnerFactoryClassName.
   Users can provide implementations of TaskRunnerFactory with a public no-arg
   constructor to take full control of threading, thread-pooling, etc.
   -- Support SOURCE_DATE_EPOCH for deterministic builds.
   (Here and in mchange-commons-java.)
   See <a 
href="https://redirect.github.com/swaldman/c3p0/issues/163";>swaldman/c3p0#163</a>
   <a 
href="https://reproducible-builds.org/docs/source-date-epoch/";>https://reproducible-builds.org/docs/source-date-epoch/</a>
   <a 
href="https://github.com/swaldman/mchange-commons-java/commit/09480482ddde70b98baf8437e66c5e3bba9ae3e2";>https://github.com/swaldman/mchange-commons-java/commit/09480482ddde70b98baf8437e66c5e3bba9ae3e2</a>
   Thanks Bernhard M. Wiedemann!
   -- Eliminate support for traditional reflective proxies.
   -- Fix bad anchor in docs, thanks Hakan!
   -- Relicense to allow users to opt for LGPL-2.1 or later, rather than 
LGPL-2.1-only.
   (Here and in mchange-commons-java.)
   See <a 
href="https://redirect.github.com/swaldman/c3p0/issues/133";>swaldman/c3p0#133</a>
   Thanks Bernhard E. Reiter!
   -- Update to mchange-commons-java 0.3.0
   c3p0-0.10.0-pre3
   -- Have build fail if we try to build with an unexpected JVM version.
   We want to use a consistent JVM version (currently 11) and target version 
(currently 7)</p>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/82b5bf58036d8e8f24f632c56e521b20ef67a343";><code>82b5bf5</code></a>
 Bump version, cap CHANGELOG, for v0.10.0-pr6</li>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/016b1e1c67b27de224cd4320c0bcb567e69c2b3f";><code>016b1e1</code></a>
 Bring JndiRefConnectionPoolDataSource up to date with more recent property 
ad...</li>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/f81882bde090db0d4c9c63317e13f26dee360cbd";><code>f81882b</code></a>
 Documentation touchups.</li>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/d78e6886abbe1071e39947bd490fd1bb9e0a9403";><code>d78e688</code></a>
 Documentation touchups.</li>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/b9c4ee30f57d7d47c1e1839e41ef824d7fd23c88";><code>b9c4ee3</code></a>
 Document attemptResurrectOnCheckin.</li>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/a6013211eabb081099f40601fc97f3bad21350f1";><code>a601321</code></a>
 Don't cache ConnectionTester in, clean up sloppiness in, 
WrapperConnectionPoo...</li>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/5586c3cd1b0a63127ccbfe5baec29e8e848bb041";><code>5586c3c</code></a>
 Define attemptResurrectOnCheckin config param, and implement 
functionality.</li>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/7b46c5044144eba4a7115c43297c095202b163d4";><code>7b46c50</code></a>
 Be careful to initialize ConnectionTester to configured class or (now 
default...</li>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/c1af7bb2991a1fe83247c0878c6fc44556a3b6e5";><code>c1af7bb</code></a>
 Delete erroneously committed junk file.</li>
   <li><a 
href="https://github.com/swaldman/c3p0/commit/a7b61398afbff724447e39f738b91b394dd900fc";><code>a7b6139</code></a>
 RELEASE_NOTES updates.</li>
   <li>Additional commits viewable in <a 
href="https://github.com/swaldman/c3p0/compare/c3p0-0.9.5.5...v0.10.0-pre6";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.mchange:c3p0&package-manager=maven&previous-version=0.9.5.5&new-version=0.10.0-pre6)](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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: dev-unsubscr...@tika.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to