You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by GitBox <gi...@apache.org> on 2022/09/30 17:30:31 UTC

[GitHub] [druid] dependabot[bot] opened a new pull request, #13162: Bump scala-library from 2.13.3 to 2.13.9 in /extensions-core/kafka-indexing-service

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

   Bumps [scala-library](https://github.com/scala/scala) from 2.13.3 to 2.13.9.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/scala/scala/releases">scala-library's releases</a>.</em></p>
   <blockquote>
   <h2>Scala 2.13.9</h2>
   <p>The following changes are highlights of this release:</p>
   <h3>Compatibility with Scala 3</h3>
   <ul>
   <li>Tasty Reader: Add support for Scala 3.2 (<a href="https://github-redirect.dependabot.com/scala/scala/pull/10068">#10068</a>)</li>
   <li>Tasty Reader: Restrict access to experimental definitions (<a href="https://github-redirect.dependabot.com/scala/scala/pull/10020">#10020</a>)</li>
   <li>To aid cross-building, accept and ignore <code>using</code> in method calls (<a href="https://github-redirect.dependabot.com/scala/scala/pull/10064">#10064</a> by <a href="https://github.com/som-snytt"><code>@​som-snytt</code></a>)</li>
   <li>To aid cross-building, allow <code>?</code> as a wildcard even without <code>-Xsource:3</code> (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9990">#9990</a>)</li>
   <li>Make Scala-3-style implicit resolution explicitly opt-in rather than bundled in <code>-Xsource:3</code> (<a href="https://github-redirect.dependabot.com/scala/scala/pull/10012">#10012</a> by <a href="https://github.com/povder"><code>@​povder</code></a>)</li>
   <li>Prefer type of overridden member when inferring (under <code>-Xsource:3</code>) (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9891">#9891</a> by <a href="https://github.com/som-snytt"><code>@​som-snytt</code></a>)</li>
   </ul>
   <h3>JDK version support</h3>
   <ul>
   <li>Make <code>-release</code> more useful, deprecate <code>-target</code>, align with Scala 3 (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9982">#9982</a> by <a href="https://github.com/som-snytt"><code>@​som-snytt</code></a>)</li>
   <li>Support JDK 19 (<a href="https://github-redirect.dependabot.com/scala/scala/pull/10001">#10001</a> by <a href="https://github.com/Philippus"><code>@​Philippus</code></a>)</li>
   </ul>
   <h3>Warnings and lints</h3>
   <ul>
   <li>Add <code>-Wnonunit-statement</code> to warn about discarded values in statement position (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9893">#9893</a> by <a href="https://github.com/som-snytt"><code>@​som-snytt</code></a>)</li>
   <li>Make unused-import warnings easier to silence (support filtering by <code>origin=</code>) (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9939">#9939</a> by <a href="https://github.com/som-snytt"><code>@​som-snytt</code></a>)</li>
   <li>Add <code>-Wperformance</code> lints for <code>*Ref</code> boxing and nonlocal <code>return</code> (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9889">#9889</a> by <a href="https://github.com/som-snytt"><code>@​som-snytt</code></a>)</li>
   </ul>
   <h3>Language improvements</h3>
   <ul>
   <li>Improve support for Unicode supplementary characters in identifiers and string interpolation (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9805">#9805</a> by <a href="https://github.com/som-snytt"><code>@​som-snytt</code></a>)</li>
   </ul>
   <h3>Compiler options</h3>
   <ul>
   <li>Use subcolon args to simplify optimizer options (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9810">#9810</a> by <a href="https://github.com/som-snytt"><code>@​som-snytt</code></a>)</li>
   <li>For troubleshooting compiler, add <code>-Vdebug-type-error</code> (and remove <code>-Yissue-debug</code>) (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9824">#9824</a> by <a href="https://github.com/tribbloid"><code>@​tribbloid</code></a>)</li>
   </ul>
   <h3>Security</h3>
   <ul>
   <li>Error on source files with Unicode directional formatting characters (<a href="https://github-redirect.dependabot.com/scala/scala/pull/10017">#10017</a>)</li>
   <li>Prevent <code>Function0</code> execution during <code>LazyList</code> deserialization (<a href="https://github-redirect.dependabot.com/scala/scala/pull/10118">#10118</a>)</li>
   </ul>
   <h3>Bugfixes</h3>
   <ul>
   <li>Emit all bridge methods non-final (perhaps affecting serialization compat) (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9976">#9976</a>)</li>
   <li>Fix null-pointer regression in <code>Vector#prependedAll</code> and <code>Vector#appendedAll</code> (<a href="https://github-redirect.dependabot.com/scala/scala/pull/9983">#9983</a>)</li>
   <li>Improve concurrent behavior of Java <code>ConcurrentMap</code> wrapper
   (<a href="https://github-redirect.dependabot.com/scala/scala/pull/10027">#10027</a> by <a href="https://github.com/igabaydulin"><code>@​igabaydulin</code></a>)</li>
   <li>Preserve null policy in wrapped Java <code>Map</code>s (<a href="https://github-redirect.dependabot.com/scala/scala/pull/10129">#10129</a> by <a href="https://github.com/som-snytt"><code>@​som-snytt</code></a>)</li>
   </ul>
   <p>Changes that shipped in Scala 2.12.16 and 2.12.17 are also included in this release.</p>
   <p>For the complete 2.13.9 change lists, see <a href="https://github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.9">all merged PRs</a> and <a href="https://github.com/scala/bug/issues?utf8=%E2%9C%93&amp;q=is%3Aclosed+milestone%3A2.13.9">all closed bugs</a>.</p>
   <h2>Compatibility</h2>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a href="https://github.com/scala/scala/commit/986dcc160aab85298f6cab0bf8dd0345497cdc01"><code>986dcc1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/scala/scala/issues/10129">#10129</a> from som-snytt/followup/12586-preserve-NPE</li>
   <li><a href="https://github.com/scala/scala/commit/b824b84c4ea93cc1490b3172b0684539fcd99a25"><code>b824b84</code></a> Preserve null policy in wrapped Java Map</li>
   <li><a href="https://github.com/scala/scala/commit/d578a02ea6b41b662072759c82c19f9309a15176"><code>d578a02</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/scala/scala/issues/10128">#10128</a> from SethTisue/revert-10114-10123</li>
   <li><a href="https://github.com/scala/scala/commit/e5fe9193d520f8e611244101e95a85a51067f79d"><code>e5fe919</code></a> Revert &quot;Args files are 1 arg per line, fix -Vprint-args -&quot;</li>
   <li><a href="https://github.com/scala/scala/commit/362c5d1a52060374450274ff6bcd8773af8ddd07"><code>362c5d1</code></a> Revert &quot;Trim and filter empties in arg files&quot;</li>
   <li><a href="https://github.com/scala/scala/commit/864148d9f0ffa01e835e866a9e0803bb9ea7d037"><code>864148d</code></a> Revert &quot;process.Parser strips escaping backslash&quot;</li>
   <li><a href="https://github.com/scala/scala/commit/f69fe8bc88a2cb032162be6de9a3242eed909fb2"><code>f69fe8b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/scala/scala/issues/10127">#10127</a> from scalacenter/tasty/support-3.2.0-final</li>
   <li><a href="https://github.com/scala/scala/commit/0aa6bd497891e1c556046ba1715de6b2a3793878"><code>0aa6bd4</code></a> remove tasty escape hatch for 3.2.0-RC4</li>
   <li><a href="https://github.com/scala/scala/commit/af56abcbe03571c92897ebfaebdfe52cf8275304"><code>af56abc</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/scala/scala/issues/10123">#10123</a> from som-snytt/dev/814-window-cmd-escapes</li>
   <li><a href="https://github.com/scala/scala/commit/7e844a5c9ec821de378808cd3806967ec7026cc9"><code>7e844a5</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/scala/scala/issues/10121">#10121</a> from scala-steward/update/slf4j-nop-2.0.0</li>
   <li>Additional commits viewable in <a href="https://github.com/scala/scala/compare/v2.13.3...v2.13.9">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.scala-lang:scala-library&package-manager=maven&previous-version=2.13.3&new-version=2.13.9)](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)
   You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/apache/druid/network/alerts).
   
   </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-unsubscribe@druid.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] xvrl commented on pull request #13162: Bump scala-library from 2.13.3 to 2.13.9 in /extensions-core/kafka-indexing-service

Posted by GitBox <gi...@apache.org>.
xvrl commented on PR #13162:
URL: https://github.com/apache/druid/pull/13162#issuecomment-1273576772

   @FrankChen021 some of the tests rely on internal Kafka interfaces (which is something we should probably avoid, since those APIs often break between releases) but until we fix that we have a scala dependency.


-- 
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-unsubscribe@druid.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] FrankChen021 closed pull request #13162: Bump scala-library from 2.13.3 to 2.13.9 in /extensions-core/kafka-indexing-service

Posted by GitBox <gi...@apache.org>.
FrankChen021 closed pull request #13162: Bump scala-library from 2.13.3 to 2.13.9 in /extensions-core/kafka-indexing-service
URL: https://github.com/apache/druid/pull/13162


-- 
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-unsubscribe@druid.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] dependabot[bot] commented on pull request #13162: Bump scala-library from 2.13.3 to 2.13.9 in /extensions-core/kafka-indexing-service

Posted by GitBox <gi...@apache.org>.
dependabot[bot] commented on PR #13162:
URL: https://github.com/apache/druid/pull/13162#issuecomment-1273249608

   OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. You can also ignore all major, minor, or patch releases for a dependency by adding an [`ignore` condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore) with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts on it.


-- 
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-unsubscribe@druid.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org


[GitHub] [druid] FrankChen021 commented on pull request #13162: Bump scala-library from 2.13.3 to 2.13.9 in /extensions-core/kafka-indexing-service

Posted by GitBox <gi...@apache.org>.
FrankChen021 commented on PR #13162:
URL: https://github.com/apache/druid/pull/13162#issuecomment-1273249550

   Fixed in #13194


-- 
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-unsubscribe@druid.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org