dependabot[bot] opened a new pull request, #15328: URL: https://github.com/apache/pinot/pull/15328
Bumps [org.apache.commons:commons-csv](https://github.com/apache/commons-csv) from 1.13.0 to 1.14.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/apache/commons-csv/blob/master/RELEASE-NOTES.txt">org.apache.commons:commons-csv's changelog</a>.</em></p> <blockquote> <p>Apache Commons CSV 1.14.0 Release Notes</p> <p>This document contains the release notes for the 1.14.0 version of Apache Commons CSV. Commons CSV reads and writes files in variations of the Comma Separated Value (CSV) format.</p> <p>Commons CSV requires at least Java 8.</p> <p>The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types.</p> <p>This is a feature and maintenance release. Java 8 or later is required.</p> <p>Changes in this version include:</p> <h2>New Features</h2> <ul> <li> <pre><code> Define and use Maven property commons.jmh.version. Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> Add CSVFormat.Builder.setMaxRows(long). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> Add CSVFormat.getMaxRows(). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVPrinter.printRecords(ResultSet) knows how to use CSVFormat's maxRows. Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVPrinter.printRecords(Iterable) knows how to use CSVFormat's maxRows. Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVPrinter.printRecords(Stream) knows how to use CSVFormat's maxRows. Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVParser.stream() knows how to use CSVFormat's maxRows. Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVParser.getRecords() knows how to use CSVFormat's maxRows. Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVParser.iterator() knows how to use CSVFormat's maxRows. Thanks to Gary Gregory. </code></pre> </li> </ul> <h2>Fixed Bugs</h2> <ul> <li>CSV-317: Release history link changed from changes-report.html to changes.html <a href="https://redirect.github.com/apache/commons-csv/issues/516">#516</a>. Thanks to Filipe Roque.</li> <li> <pre><code> Remove -nouses directive from maven-bundle-plugin. OSGi package imports now state 'uses' definitions for package imports, this doesn't affect JPMS (from org.apache.commons:commons-parent:80). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVParser.parse(URL, Charset, CSVFormat) with a null CSVFormat maps to CSVFormat.DEFAULT (like CSVParser.parse(Reader, CSVFormat)). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVParser.parse(String, CSVFormat) with a null CSVFormat maps to CSVFormat.DEFAULT (like CSVParser.parse(Reader, CSVFormat)). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVParser.parse(File, Charset, CSVFormat) with a null CSVFormat maps to CSVFormat.DEFAULT (like CSVParser.parse(Reader, CSVFormat)). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVParser.parse(Path, Charset, CSVFormat) with a null CSVFormat maps to CSVFormat.DEFAULT (like CSVParser.parse(Reader, CSVFormat)). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVParser.parse(InputStream, Charset, CSVFormat) with a null CSVFormat maps to CSVFormat.DEFAULT (like CSVParser.parse(Reader, CSVFormat)). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> CSVParser.parse(*) methods with a null Charset maps to Charset.defaultCharset(). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> Fix possible NullPointerException in Token.toString(). Thanks to Gary Gregory. </code></pre> </li> </ul> <h2>Changes</h2> <ul> <li> <pre><code> Bump com.opencsv:opencsv from 5.9 to 5.10. Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> Bump commons-codec:commons-codec from 1.17.2 to 1.18.0 [#522](https://github.com/apache/commons-csv/issues/522). Thanks to Gary Gregory. </code></pre> </li> <li> <pre><code> Bump org.apache.commons:commons-parent from 79 to 81. Thanks to Gary Gregory. </code></pre> </li> </ul> <p>Historical list of changes: <a href="https://commons.apache.org/proper/commons-csv/changes.html">https://commons.apache.org/proper/commons-csv/changes.html</a></p> <p>For complete information on Apache Commons CSV, including instructions on how to submit bug reports,</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/apache/commons-csv/commit/969d42a1e12942d52727b6d2d4f330303755e85d"><code>969d42a</code></a> Prepare for the next release candidate</li> <li><a href="https://github.com/apache/commons-csv/commit/03ae77d6dce86ba6c34d70704c5a5513cd75821c"><code>03ae77d</code></a> Prepare for the next release candidate</li> <li><a href="https://github.com/apache/commons-csv/commit/42f9de51e9bad83c7700d58552ce17c52d51458e"><code>42f9de5</code></a> Prepare for the next release candidate</li> <li><a href="https://github.com/apache/commons-csv/commit/da62d922098c4782bbc63c2ad7298fb93b3b6421"><code>da62d92</code></a> Raise the bar for code coverage checks</li> <li><a href="https://github.com/apache/commons-csv/commit/61878d773d74b2e2ab1b2bb7ed3519bd47e1fc58"><code>61878d7</code></a> Add missing test cases for CSVFormat.CSVFormat(char|String)</li> <li><a href="https://github.com/apache/commons-csv/commit/054dc9140ddfba0f4e3f4a0243b7ce1a0b934e51"><code>054dc91</code></a> Remove unused private method</li> <li><a href="https://github.com/apache/commons-csv/commit/42ded1cf3a29f511264c76e5e3380006957f8921"><code>42ded1c</code></a> Fix possible NullPointerException in Token.toString()</li> <li><a href="https://github.com/apache/commons-csv/commit/5d4a5ac88a8979e2093c7879a13b35ff9e7a8780"><code>5d4a5ac</code></a> Javadoc</li> <li><a href="https://github.com/apache/commons-csv/commit/5674be4c7549863ed65315060232085c3d2d8a92"><code>5674be4</code></a> Javadoc</li> <li><a href="https://github.com/apache/commons-csv/commit/77a19dc6ba3a79a65348681200b5c7fa6550d00a"><code>77a19dc</code></a> Javadoc</li> <li>Additional commits viewable in <a href="https://github.com/apache/commons-csv/compare/rel/commons-csv-1.13.0...rel/commons-csv-1.14.0">compare view</a></li> </ul> </details> <br /> [](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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org