renovate-bot opened a new pull request, #2953:
URL: https://github.com/apache/polaris/pull/2953

   This PR contains the following updates:
   
   | Package | Change | Age | Confidence |
   |---|---|---|---|
   | [org.scala-lang:scala-reflect](https://www.scala-lang.org/) 
([source](https://redirect.github.com/scala/scala)) | `2.12.19` -> `2.13.17` | 
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.scala-lang:scala-reflect/2.13.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
 | 
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.scala-lang:scala-reflect/2.12.19/2.13.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
 |
   | [org.scala-lang:scala-library](https://www.scala-lang.org/) 
([source](https://redirect.github.com/scala/scala)) | `2.12.19` -> `2.13.17` | 
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.scala-lang:scala-library/2.13.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
 | 
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.scala-lang:scala-library/2.12.19/2.13.17?slim=true)](https://docs.renovatebot.com/merge-confidence/)
 |
   
   ---
   
   ### Release Notes
   
   <details>
   <summary>scala/scala (org.scala-lang:scala-reflect)</summary>
   
   ### 
[`v2.13.17`](https://redirect.github.com/scala/scala/releases/tag/v2.13.17): 
Scala 2.13.17
   
   The Scala team at Akka is pleased to announce Scala 2.13.17.
   
   This release is compatible with the new JDK 25 LTS.
   
   See below for known issues / regressions in this release.
   
   The following are highlights of this release:
   
   ##### Compatibility
   
   - JDK 25 support in optimizer 
([#&#8203;11046](https://redirect.github.com/scala/scala/pull/11046))
   - Support Scala 3.7 in the TASTy reader 
([#&#8203;11100](https://redirect.github.com/scala/scala/pull/11100))
   - When parsing Java sources, skip JDK 21+’s JEP 445 compact compilation 
units ([#&#8203;11066](https://redirect.github.com/scala/scala/pull/11066))
   
   ##### Breaking changes
   
   - Mix in the `productPrefix` hash statically in case class `hashCode` 
([#&#8203;11023](https://redirect.github.com/scala/scala/pull/11023))
     - The synthetic `hashCode` method of a case class no longer calls 
`productPrefix`. This changes the hash code of case classes that override 
`productPrefix`.
   - Improve `scala.util.Using` suppression order (`NonFatal` suppresses 
`ControlThrowable`) 
([#&#8203;11000](https://redirect.github.com/scala/scala/pull/11000) by 
[@&#8203;NthPortal](https://redirect.github.com/NthPortal))
     - When multiple exceptions are thrown, a predefined order determines which 
exception is rethrown and which is attached as "suppressed"
     - Users of scala-collection-compat can upgrade to 
[2.14.0](https://redirect.github.com/scala/scala-collection-compat/releases/tag/v2.14.0)
 to get the same behavior change
     - If you use `Using` in a project that crossbuilds to Scala 3, you may 
wish to wait for a Scala 3 release that includes the 2.13.17 standard library, 
or use a dependency override to force the upgrade in your build
   
   ##### Features and notable changes
   
   - Fix `AnnotationInfo` when using named/default arguments, support custom 
annotation subclasses 
([#&#8203;10976](https://redirect.github.com/scala/scala/pull/10976))
     - Users can now define, for example, `class nodep extends 
annotation.nowarn("cat=deprecation")` and use `@nodep` to silence deprecations
   - Show `nowarn`/`-Wconf` filters for a warning with `@nowarn("verbose")` 
([#&#8203;10985](https://redirect.github.com/scala/scala/pull/10985))
   - Use `toVector` for XML literal sequences 
([#&#8203;11065](https://redirect.github.com/scala/scala/pull/11065))
   
   ##### Scala 3 compatibility and migration
   
   - Allow using `-Xsource-features` without `-Xsource:3` 
([#&#8203;11123](https://redirect.github.com/scala/scala/pull/11123))
   - Lint inferred structural types 
([#&#8203;10942](https://redirect.github.com/scala/scala/pull/10942))
     - In case this warning is undesired, it can be disabled using 
`-Xlint:_,-infer-structural`
   - Port `summonIgnoring` from 3.7 as `c.inferImplicitValueIgnoring` 
([#&#8203;11068](https://redirect.github.com/scala/scala/pull/11068) by 
[@&#8203;MateuszKubuszok](https://redirect.github.com/MateuszKubuszok))
   
   ##### Notable bug fixes
   
   - Allow optimizer use within Bazel (don't attempt inlining methods without 
instructions) 
([#&#8203;11016](https://redirect.github.com/scala/scala/pull/11016))
   - Reduce memory footprint of evaluated elements in `LazyList` 
([#&#8203;10937](https://redirect.github.com/scala/scala/pull/10937))
   - Deregister stale callbacks in `Future.firstCompletedOf` (prevents memory 
leaks) ([#&#8203;10927](https://redirect.github.com/scala/scala/pull/10927))
   - Require `-Xsource-features:eta-expand-always` for eta-expansion without an 
expected type 
([#&#8203;10907](https://redirect.github.com/scala/scala/pull/10907) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### More changes
   
   For the complete 2.13.17 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.17)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.17).
   
   ##### Known issues / regressions
   
   False positive lint warning: `a type was inferred to be kind-polymorphic`
   
   - A new warning was added to the existing `-Xlint:infer-any` flag (which is 
also enabled with plain `-Xlint`)
   - The implementation issues false positive warnings
   - To revert back to the behavior of Scala 2.13.16, add 
`-Wconf:cat=lint-infer-any&msg=kind-polymorphic:s`
   - See 
[scala/scala#13128](https://redirect.github.com/scala/bug/issues/13128#issuecomment-3422534271)
 for details
   
   Scaladoc `@define` no longer works if the doc comment is on an `object`
   
   - See [scala/bug#13129](https://redirect.github.com/scala/bug/issues/13129) 
for details and a workaround
   
   `-Wunused:privates` now warns about unused `private final val` declarations. 
When such a `val` is only referenced as argument to a Java annotation, it is 
incorrectly reported as unused
   
   - See [scala/bug#13130](https://redirect.github.com/scala/bug/issues/13130) 
for details
   - Workaround: add `@nowarn("cat=unused-privates")` to the `val` declaration
   
   Semantic change when passing a `null` sequence parameter in Scala 3, i.e., 
`foo((null: Array[T])*)`. Within `def foo(xs: T*)`, the value `xs` is no longer 
`null`.
   
   - Merely updating `scala-library` on the classpath to 2.13.17 can change the 
runtime behavior of previously compiled code
   - See [#&#8203;11165](https://redirect.github.com/scala/scala/pull/11165) 
for details
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.17 is 
[binary-compatible](https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html)
 with the whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   This release was brought to you by 23 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.16 ^2.12.x`. Thank you A. P. Marki, 
Lukas Rytz, Seth Tisue, Alec Theriault, Jason Zaugg, Sébastien Doeraene, Scala 
Steward, Bernhard, Tomasz Godzik, Vasil Vasilev, Arthur Soulié, Emil Ejbyfeldt, 
Hamza Remmal, Jiri Vanek, Kenji Yoshida, Lorenzo Gabriele, Marissa, Mateusz 
Kubuszok, Matthew Lutze, Philippus Baalman, Stefan Zeiger, philwalk, 虎鸣.
   
   Thanks to [Akka](https://akka.io) for their continued sponsorship of the 
Scala 2 team’s efforts. Akka offers commercial support for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `using scala` setting in your Scala-CLI project
   - Bump the `scalaVersion` setting in your sbt or Mill project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.17.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.17)
   
   ### 
[`v2.13.16`](https://redirect.github.com/scala/scala/releases/tag/v2.13.16): 
Scala 2.13.16
   
   The Scala team at Akka (formerly Lightbend) is pleased to announce Scala 
2.13.16.
   
   The following changes are highlights of this release:
   
   ##### Breaking change
   
   - On the empty string, `.tail` and `.init` now throw (instead of returning 
the empty string) 
([#&#8203;10851](https://redirect.github.com/scala/scala/pull/10851) by 
[@&#8203;sh0hei](https://redirect.github.com/sh0hei))
     - This is a bugfix, but be aware that existing code might, perhaps 
inadvertently, be relying on the old behavior
   
   ##### Compatibility
   
   - Support Scala 3.6 in TASTy reader 
([#&#8203;10893](https://redirect.github.com/scala/scala/pull/10893))
   - Support JDK 24 in optimizer (via ASM upgrade) 
([#&#8203;10888](https://redirect.github.com/scala/scala/pull/10888) by 
[@&#8203;Philippus](https://redirect.github.com/Philippus))
   
   ##### REPL
   
   - REPL: JLine 3.27.1 (was 3.26.3) and on Windows use JNI not JNA 
([#&#8203;10899](https://redirect.github.com/scala/scala/pull/10899), 
[#&#8203;10898](https://redirect.github.com/scala/scala/pull/10898), 
[#&#8203;10882](https://redirect.github.com/scala/scala/pull/10882))
     - These upgrades hopefully won't be noticed, but, REPL users on Windows 
take note
     - JNA is no longer a dependency of `scala-compiler.jar`
   
   ##### Align with Scala 3
   
   - Under `-Xsource:3`, deprecate infix named args 
([#&#8203;10857](https://redirect.github.com/scala/scala/pull/10857) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Errors and warnings
   
   - Fix 2.13.15-only false positives with `-Wunused:patvars` 
([#&#8203;10870](https://redirect.github.com/scala/scala/pull/10870) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Collections
   
   - Do not use `rangeHash` when `rangeDiff` is 0 
([#&#8203;10912](https://redirect.github.com/scala/scala/pull/10912) by 
[@&#8203;Friendseeker](https://redirect.github.com/Friendseeker))
     - This may affect fragile code relying on ordering of hash-based 
collections
   - Deprecate `collection.mutable.AnyRefMap` 
([#&#8203;10862](https://redirect.github.com/scala/scala/pull/10862) by 
[@&#8203;wangyum](https://redirect.github.com/wangyum))
     - Since Scala 2.13.0 it has no performance advantage over 
`collection.mutable.HashMap`
   
   ##### More changes
   
   For the complete 2.13.16 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.16)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.16).
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.16 is 
[binary-compatible](https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html)
 with the whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   We especially acknowledge and thank A. P. Marki, also known as Som Snytt, 
who is responsible for many of the improvements in this release.
   
   This release was brought to you by 19 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.15 ^2.12.x`. Thank you A. P. Marki, 
Seth Tisue, Scala Steward, Lukas Rytz, Friendseeker, Ondra Pelech, Philippus 
Baalman, Benjamin Maurer, Corey O'Connor, Eric Seidel2, Hamza Remmal, Jamie 
Thompson, João Costa, Kenji Yoshida, Mathias Kools, Rikito Taniguchi, Yuming 
Wang, rochala, sh0hei.
   
   Thanks to [Akka](https://akka.io) for their continued sponsorship of the 
Scala 2 team’s efforts. Akka offers commercial support for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `using scala` setting in your Scala-CLI project
   - Bump the `scalaVersion` setting in your sbt or Mill project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.16.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.16)
   
   ### 
[`v2.13.15`](https://redirect.github.com/scala/scala/releases/tag/v2.13.15): 
Scala 2.13.15
   
   The Scala team at Lightbend is pleased to announce Scala 2.13.15.
   
   The following changes are highlights of this release:
   
   ##### Breaking changes
   
   - `-Wconf:x,y` now means `-Wconf:x -Wconf:y`, with y overruling x, rather 
than the reverse (to align with Scala 3.4+ and with user intuition) 
([#&#8203;10708](https://redirect.github.com/scala/scala/pull/10708) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Compiler plugins: rework and improve phase assembly 
([#&#8203;10687](https://redirect.github.com/scala/scala/pull/10687) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
     - Plugin authors should check to see if they are affected
     - Plugin users may see strange errors if a plugin is affected and not 
adjusted by its author
     - Most plugins are not affected
   
   ##### Compatibility
   
   - Support JDK 23 in optimizer (via upgrade to patched ASM 9.7.0) 
([#&#8203;10744](https://redirect.github.com/scala/scala/pull/10744))
   - Support Scala 3.5 in TASTy reader 
([#&#8203;10811](https://redirect.github.com/scala/scala/pull/10811) by 
[@&#8203;bishabosha](https://redirect.github.com/bishabosha))
   - REPL: JLine 3.26.3 (was 3.25.1) 
([#&#8203;10827](https://redirect.github.com/scala/scala/pull/10827))
   
   ##### Features
   
   - Support alternative JVM system images (via `-system`, like javac) 
([#&#8203;10801](https://redirect.github.com/scala/scala/pull/10801) by 
[@&#8203;szeiger](https://redirect.github.com/szeiger))
   - Add `-Ycollect-statistics` for collecting statistics without printing them 
([#&#8203;10795](https://redirect.github.com/scala/scala/pull/10795) by 
[@&#8203;szeiger](https://redirect.github.com/szeiger))
   
   ##### Align with Scala 3
   
   - Add `-Xsource-features:double-definitions` to warn or error for double 
definitions 
([#&#8203;10846](https://redirect.github.com/scala/scala/pull/10846) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Under `-Xsource:3`, allow importing `given`, for cross-building 
([#&#8203;10786](https://redirect.github.com/scala/scala/pull/10786) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Under `-Xsource:3`, remove by-name restriction for case copy 
([#&#8203;10770](https://redirect.github.com/scala/scala/pull/10770) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Errors and warnings
   
   - Fix `-Wconf` and `-nowarn` to be more consistent 
([#&#8203;10750](https://redirect.github.com/scala/scala/pull/10750) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Add `-Wtostring-interpolated` to warn if interpolator uses `toString` 
([#&#8203;10776](https://redirect.github.com/scala/scala/pull/10776) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Improve inferred-`Any` lint (fixing false positives and false negatives) 
([#&#8203;9452](https://redirect.github.com/scala/scala/pull/9452) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Fix false-positive unused warnings in for comprehensions 
([#&#8203;10812](https://redirect.github.com/scala/scala/pull/10812) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
     - (Still seeing false positives, or new false positives? see 
[#&#8203;10870](https://redirect.github.com/scala/scala/pull/10870))
   - Fix false-positive by-name implicit warnings with `-Wmacros` 
([#&#8203;10781](https://redirect.github.com/scala/scala/pull/10781) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Mention if missing symbol is on the class path 
([#&#8203;10774](https://redirect.github.com/scala/scala/pull/10774) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Avoid unused import warnings in REPL 
([#&#8203;10769](https://redirect.github.com/scala/scala/pull/10769) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Add `-Vcyclic` to improve reporting of "cyclic reference" errors 
([#&#8203;10680](https://redirect.github.com/scala/scala/pull/10680) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### More changes
   
   For the complete 2.13.15 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.15)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.15).
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.15 is 
[binary-compatible](https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html)
 with the whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   We especially acknowledge and thank A. P. Marki, also known as Som Snytt, 
who is responsible for many of the improvements in this release.
   
   This release was brought to you by 13 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.14 ^2.12.x`. Thank you A. P. Marki, 
Lukas Rytz, Scala Steward, Seth Tisue, Jamie Thompson, Stefan Zeiger, Hamza 
Remmal, EnzeXing, Marissa, Philippus Baalman, Samuel Chassot, luozexuan, 
nbauma109.
   
   Thanks to [Lightbend](https://www.lightbend.com/scala) for their continued 
sponsorship of the Scala 2 team’s efforts. Lightbend offers [commercial 
support](https://www.lightbend.com/lightbend-platform-subscription) for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `using scala` setting in your Scala-CLI project
   - Bump the `scalaVersion` setting in your sbt or Mill project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.15.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.15)
   
   ### 
[`v2.13.14`](https://redirect.github.com/scala/scala/releases/tag/v2.13.14): 
Scala 2.13.14
   
   The Scala team at Lightbend is pleased to announce Scala 2.13.14.
   
   The following changes are highlights of this release:
   
   ##### Align with Scala 3
   
   - Introduce `-Xsource-features`, for customizing the behavior of 
`-Xsource:3` and `-Xsource:3-cross` 
([#&#8203;10709](https://redirect.github.com/scala/scala/pull/10709))
     - A section of the Scala 3 Migration Guide documents these flags: 
[documentation](https://docs.scala-lang.org/scala3/guides/migration/tooling-scala2-xsource3.html)
   
   ##### Regression fixes
   
   - Rename `-Xlint:named-booleans` to `-Wunnamed-boolean-literal` (and no 
longer include it in `-Xlint`) 
([#&#8203;10704](https://redirect.github.com/scala/scala/pull/10704) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Fix `ArrayBuilder` regression in Scala 2.13.13 (`OutOfMemoryError` when 
adding empty arrays) 
([#&#8203;10722](https://redirect.github.com/scala/scala/pull/10722) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Fix 2.13.13 regression in Scaladoc compilation when using Scala 3 
definitions 
([#&#8203;10700](https://redirect.github.com/scala/scala/pull/10700) by 
[@&#8203;bishabosha](https://redirect.github.com/bishabosha))
   
   ##### Other improvements
   
   - Unused warnings: for macros, by default, look for usages in expansion 
([#&#8203;10693](https://redirect.github.com/scala/scala/pull/10693) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - REPL: Upgrade to JLine 3.25.1 (was 3.24.1) 
([#&#8203;10717](https://redirect.github.com/scala/scala/pull/10717))
   - Remove `SHELLOPTS=vi` and `-Xjline support`; reinstate `-Xnojline` 
([#&#8203;10716](https://redirect.github.com/scala/scala/pull/10716) by 
[@&#8203;hvesalai](https://redirect.github.com/hvesalai))
   
   ##### More changes
   
   For the complete 2.13.14 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.14)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.14).
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.14 is 
[binary-compatible](https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html)
 with the whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   We especially acknowledge and thank A. P. Marki, also known as Som Snytt, 
who is responsible for many of the improvements in this release.
   
   This release was brought to you by 9 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.13 ^2.12.x`. Thank you A. P. Marki, 
Lukas Rytz, Seth Tisue, Scala Steward, Jamie Thompson, Antoine Amiguet, Heikki 
Vesalainen, Robert Stoll, guqicun.
   
   Thanks to [Lightbend](https://www.lightbend.com/scala) for their continued 
sponsorship of the Scala 2 team’s efforts. Lightbend offers [commercial 
support](https://www.lightbend.com/lightbend-platform-subscription) for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `using scala` setting in your Scala CLI project
   - Bump the `scalaVersion` setting in your sbt or Mill project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.14.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.14)
   
   ### 
[`v2.13.13`](https://redirect.github.com/scala/scala/releases/tag/v2.13.13): 
Scala 2.13.13
   
   The Scala team at Lightbend is pleased to announce Scala 2.13.13.
   
   The following changes are highlights of this release:
   
   ##### Language
   
   - Support binary integer literals using `0b`, as in Java 
([#&#8203;10656](https://redirect.github.com/scala/scala/pull/10656) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Compatibility
   
   - TASTy reader: support Scala 3.4 
([#&#8203;10670](https://redirect.github.com/scala/scala/pull/10670) by 
[@&#8203;bishabosha](https://redirect.github.com/bishabosha))
   - Support certain Java libraries compiled on JDK 21 
([#&#8203;10675](https://redirect.github.com/scala/scala/pull/10675) by 
[@&#8203;SethTisue](https://redirect.github.com/SethTisue))
   - For JDK 22 support, upgrade to ASM 9.6 
([#&#8203;10576](https://redirect.github.com/scala/scala/pull/10576) by 
[@&#8203;Philippus](https://redirect.github.com/Philippus))
   
   ##### Align with Scala 3
   
   - Allow either `-Xsource:3` (for preparing to switch to 3) or 
`-Xsource:3-cross` (for crossbuilding on 2 and 3); some existing users of 
`-Xsource:3` should switch to `-Xsource:3-cross` to avoid unwanted behavior 
changes ([#&#8203;10573](https://redirect.github.com/scala/scala/pull/10573) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
     - A new section in the Scala 3 Migration Guide documents `-Xsource:3` and 
`-Xsource:3-cross`: 
[documentation](https://docs.scala-lang.org/scala3/guides/migration/tooling-scala2-xsource3.html)
   - For migration to 3, accommodate case companion as function 
([#&#8203;10648](https://redirect.github.com/scala/scala/pull/10648) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Scala 3 migration warning for implicits found in package prefix 
([#&#8203;10621](https://redirect.github.com/scala/scala/pull/10621) by 
[@&#8203;lrytz](https://redirect.github.com/lrytz))
   
   ##### Other improvements
   
   - `-Yrelease` supplements `-release`, allows access to additional JVM 
packages ([#&#8203;10543](https://redirect.github.com/scala/scala/pull/10543) 
by [@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - `-Xlint` now enables `-Xlint:named-booleans` to lint unnamed boolean 
literal args 
([#&#8203;10612](https://redirect.github.com/scala/scala/pull/10612) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Respect `java.lang.Deprecated` annotation even in Scala sources 
([#&#8203;10517](https://redirect.github.com/scala/scala/pull/10517) by 
[@&#8203;kapunga](https://redirect.github.com/kapunga))
   - Optimize tail recursion on effectively final methods even when `final` 
keyword is absent 
([#&#8203;10629](https://redirect.github.com/scala/scala/pull/10629) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Add `-Xlint:pattern-shadow` to lint pattern varids which are backquotable 
([#&#8203;8806](https://redirect.github.com/scala/scala/pull/8806) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - In mixed compilation, allow Java sources to reference `MODULE$` 
([#&#8203;10644](https://redirect.github.com/scala/scala/pull/10644) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Scaladoc: re-align `-doc-source-url` behavior with 2.12 
([#&#8203;10581](https://redirect.github.com/scala/scala/pull/10581) by 
[@&#8203;lrytz](https://redirect.github.com/lrytz))
   
   ##### Known issues
   
   - When upgrading to 2.13.13, existing users of `-Xsource:3` should 
explicitly consider switching to `-Xsource:3-cross`. Some behaviors of 
`-Xsource:3` have changed, e.g. in result type inference for inherited methods; 
see [new doc 
page](https://docs.scala-lang.org/scala3/guides/migration/tooling-scala2-xsource3.html)
 for details
   - Some library authors who were already using `-Xsource:3` are getting MiMa 
failures when upgrading to 2.13.13 and switching from `-Xsource:3` to 
`-Xsource:3-cross`. If you’re in this situation, you may need to wait for 
2.13.14; see 
[scala/bug#12961](https://redirect.github.com/scala/bug/issues/12961)
   - Users of sbt must upgrade to sbt 1.9.9 to use the `console` task to access 
the 2.13.13 REPL 
([sbt/sbt#7502](https://redirect.github.com/sbt/sbt/issues/7502)); error 
message is `NoSuchMethodError: org.jline.utils.AttributedString.fromAnsi`
   - Regression: Scaladoc generation may fail if you are using the TASTy reader 
to access Scala 3 dependencies 
([scala/bug#12955](https://redirect.github.com/scala/bug/issues/12955)); error 
message is "Unsupported Scala 3 generic tuple type"; we'll fix it in 2.13.14
   - Regression: on JDK 11 (but not 8 or 17 or 21), the REPL prints a harmless 
"illegal reflective access" warning at startup 
([scala/bug#12957](https://redirect.github.com/scala/bug/issues/12957)); we'll 
fix it in 2.13.14
   - The inclusion of `-Xlint:named-booleans` in `-Xlint` 
([#&#8203;10612](https://redirect.github.com/scala/scala/pull/10612)) has 
already proved at least somewhat controversial, and will likely be adjusted for 
2.13.14;  you can leave feedback on this at 
[#&#8203;10704](https://redirect.github.com/scala/scala/pull/10704)
   
   ##### More changes
   
   For the complete 2.13.13 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.13)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.13).
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.13 is 
[binary-compatible](https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html)
 with the whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   We especially acknowledge and thank A. P. Marki, also known as Som Snytt, 
who is responsible for many of the improvements in this release.
   
   This release was brought to you by 23 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.12 ^2.12.x`. Thank you A. P. Marki, 
Lukas Rytz, Jamie Thompson, Seth Tisue, Scala Steward, friendseeker, Paul J 
Thordarson, Philippus Baalman, Shardul Chiplunkar, Stefan Zeiger, Dale Wijnand, 
Dmitry Komanov, Eugene Yokota, Georgi Krastev, GerretS, Jason Zaugg, Martijn, 
Mohammad Yousuf Minhaj Zia, Roberto Tyley, Ryan Scheidter, Trey Cahill, c, 
Dependabot.
   
   Thanks to [Lightbend](https://www.lightbend.com/scala) for their continued 
sponsorship of the Scala 2 team’s efforts. Lightbend offers [commercial 
support](https://www.lightbend.com/lightbend-platform-subscription) for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `using scala` setting in your Scala CLI project
   - Bump the `scalaVersion` setting in your sbt or Mill project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.13.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.13)
   
   ### 
[`v2.13.12`](https://redirect.github.com/scala/scala/releases/tag/v2.13.12): 
Scala 2.13.12
   
   The Scala team at Lightbend is pleased to announce Scala 2.13.12.
   
   The following changes are highlights of this release:
   
   ##### Feature: Quickfixes
   
   For some errors and warnings, the compiler now suggests an edit that could 
fix the issue. Tooling such as IDEs can then offer the edits, or the compiler 
itself will make the change if run again with `-quickfix`.
   
   - Implement quickfixes, aka actionable diagnostics (via `CodeAction`) 
([#&#8203;10406](https://redirect.github.com/scala/scala/pull/10406) by 
[@&#8203;eed3si9n](https://redirect.github.com/eed3si9n))
   - Add `-quickfix` compiler option to apply quickfixes to source files 
([#&#8203;10482](https://redirect.github.com/scala/scala/pull/10482) by 
[@&#8203;lrytz](https://redirect.github.com/lrytz))
   - Add quickfixes to some warnings and errors 
([#&#8203;10484](https://redirect.github.com/scala/scala/pull/10484) by 
[@&#8203;lrytz](https://redirect.github.com/lrytz))
   
   ##### Align with Scala 3
   
   - Emit migration warnings under `-Xsource:3` as fatal warnings, not errors 
([#&#8203;10439](https://redirect.github.com/scala/scala/pull/10439) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt), 
[#&#8203;10511](https://redirect.github.com/scala/scala/pull/10511))
     - `-Xmigration` will demote the errors to warnings
     - `-Wconf:cat=scala3-migration:s` will silence these errors/warnings 
altogether
   - Warn about `@elidable` under `-Xsource:3` 
([#&#8203;10377](https://redirect.github.com/scala/scala/pull/10377) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Collections
   
   - `IndexedSeq#head` now throws `NoSuchElementException` (not 
`IndexOutOfBoundsException`) 
([#&#8203;10392](https://redirect.github.com/scala/scala/pull/10392) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Regression fixes
   
   - Deduplicate `JavaDeprecatedAttr` in `ClassfileParser` 
([#&#8203;10422](https://redirect.github.com/scala/scala/pull/10422) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Avoid brittle flags encoding for Java enums 
([#&#8203;10424](https://redirect.github.com/scala/scala/pull/10424) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Scaladoc tool changes
   
   Library authors should be aware that the behavior of `-doc-source-url` has 
changed, as follows:
   
   - [scala/bug#12867](https://redirect.github.com/scala/bug/issues/12867)
   
   You may need to adjust your build accordingly, to avoid generating broken 
source links.
   
   ##### Tooling
   
   The following change is mainly of concern to tooling maintainers.
   
   - In-source sbt compiler bridge 
([#&#8203;10472](https://redirect.github.com/scala/scala/pull/10472) by 
[@&#8203;lrytz](https://redirect.github.com/lrytz))
   
   ##### Other notable changes
   
   For the complete 2.13.12 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.12)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.12).
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.12 is 
[binary-compatible](https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html)
 with the whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   We especially acknowledge and thank A. P. Marki, also known as Som Snytt, 
who is responsible for a large share of the improvements in this release.
   
   This release was brought to you by 12 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.11 ^2.12.x ^366ba2f`. Thank you A. P. 
Marki, Lukas Rytz, Seth Tisue, Scala Steward, Michel Davit, Nicolas Stucki, 
Alex Leigh, Eugene Yokota, Georgi Krastev, Jamie Willis, Julien Richard-Foy, 
NthPortal.
   
   Thanks to [Lightbend](https://www.lightbend.com/scala) for their continued 
sponsorship of the Scala 2 team’s efforts. Lightbend offers [commercial 
support](https://www.lightbend.com/lightbend-platform-subscription) for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `using scala` setting in your Scala CLI project
   - Bump the `scalaVersion` setting in your sbt or Mill project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.12.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.12)
   
   ### 
[`v2.13.11`](https://redirect.github.com/scala/scala/releases/tag/v2.13.11): 
Scala 2.13.11
   
   The Scala team at Lightbend is pleased to announce Scala 2.13.11.
   
   The following changes are highlights of this release:
   
   ##### Collections
   
   - Faster `Vector` concatenation 
([#&#8203;10159](https://redirect.github.com/scala/scala/pull/10159) by 
[@&#8203;ansvonwa](https://redirect.github.com/ansvonwa))
   - New `LinkedHashMap`/`LinkedHashSet` implementation 
([#&#8203;10221](https://redirect.github.com/scala/scala/pull/10221) by 
[@&#8203;liang3zy22](https://redirect.github.com/liang3zy22))
   
   ##### Compatibility
   
   - Support JDK 20 and 21 by upgrading to ASM 9.5 
([#&#8203;10363](https://redirect.github.com/scala/scala/pull/10363), 
[#&#8203;10184](https://redirect.github.com/scala/scala/pull/10184) by 
[@&#8203;Philippus](https://redirect.github.com/Philippus))
   - Fix crash reading JDK 21 classfiles 
([#&#8203;10397](https://redirect.github.com/scala/scala/pull/10397))
   - Support Java 17 `sealed` in Java sources and classfiles 
([#&#8203;10348](https://redirect.github.com/scala/scala/pull/10348), 
[#&#8203;10105](https://redirect.github.com/scala/scala/pull/10105) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Support Scala 3.3 in TASTy reader 
([#&#8203;10299](https://redirect.github.com/scala/scala/pull/10299) by 
[@&#8203;bishabosha](https://redirect.github.com/bishabosha))
   
   ##### Align with Scala 3
   
   - Accept `implicit _`, `implicit (x: Int)` in lambdas, like Scala 3 does 
([#&#8203;10327](https://redirect.github.com/scala/scala/pull/10327) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Deprecate infix type args, as they are dropped in Scala 3 
([#&#8203;10255](https://redirect.github.com/scala/scala/pull/10255) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Allow eta-expansion of methods with dependent types 
([#&#8203;10166](https://redirect.github.com/scala/scala/pull/10166))
   - Abstract parent `copy` does not suspend case `copy` 
([#&#8203;10085](https://redirect.github.com/scala/scala/pull/10085) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Don't GLB binders of type patterns, use the type directly 
([#&#8203;10247](https://redirect.github.com/scala/scala/pull/10247))
   - Under `-Xsource:3`, warn that inherited members no longer take precedence 
over outer definitions in Scala 3 
([#&#8203;10220](https://redirect.github.com/scala/scala/pull/10220), 
[#&#8203;10339](https://redirect.github.com/scala/scala/pull/10339))
   - Under `-Xsource:3`, adjust 2.13.9 change to ignore override type for 
whitebox macro expansion 
([#&#8203;10188](https://redirect.github.com/scala/scala/pull/10188) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Under `-Xsource:3`, use narrowest type for pt of override  
([#&#8203;10198](https://redirect.github.com/scala/scala/pull/10198) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Under `-Xsource:3`, warn about change to parenless lambda parens 
([#&#8203;10320](https://redirect.github.com/scala/scala/pull/10320) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Lints and warnings
   
   - Lint select from `Unit`, or `Int` that incurs widening 
([#&#8203;10372](https://redirect.github.com/scala/scala/pull/10372) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Lint for integral divisions that are widened to a float 
([#&#8203;10369](https://redirect.github.com/scala/scala/pull/10369) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Lint if args adapted to `Unit` and discarded 
([#&#8203;10150](https://redirect.github.com/scala/scala/pull/10150) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Warn that implicit should have explicit type 
([#&#8203;10083](https://redirect.github.com/scala/scala/pull/10083) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Other notable changes
   
   - Disallow mixins where super calls bind to vals 
([#&#8203;10268](https://redirect.github.com/scala/scala/pull/10268))
   - Make scalac's argument-file processing more like javac's in handling 
spaces and line breaks 
([#&#8203;10319](https://redirect.github.com/scala/scala/pull/10319) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Bump JLine and JNA versions 
([#&#8203;10318](https://redirect.github.com/scala/scala/pull/10318))
   - `javabootclasspath` supersedes `jrt` 
([#&#8203;10336](https://redirect.github.com/scala/scala/pull/10336) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Report total errors on stderr 
([#&#8203;10272](https://redirect.github.com/scala/scala/pull/10272) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Fix pathologically slow compilation of some pattern matches since 2.13.7 
([#&#8203;10258](https://redirect.github.com/scala/scala/pull/10258) by 
[@&#8203;KisaragiEffective](https://redirect.github.com/KisaragiEffective))
   - Provide `equals` and `hashCode` on `IterableWrapper` again (fixing 2.13.9 
regression) 
([#&#8203;10205](https://redirect.github.com/scala/scala/pull/10205) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Improvements to `-Vimplicits`; errors now show complete implicit search 
tree ([#&#8203;9944](https://redirect.github.com/scala/scala/pull/9944) by 
[@&#8203;tribbloid](https://redirect.github.com/tribbloid))
   - `-Vprint` defaults to `-Vprint:typer`; phases may be prefixed with `~` to 
mean "before and after" 
([#&#8203;10173](https://redirect.github.com/scala/scala/pull/10173) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   2.13.11 also includes the [changes from Scala 
2.12.18](https://redirect.github.com/scala/scala/releases/v2.12.18). (A few of 
the most significant, such as those involving JDK 20 and 21 compatibility, are 
listed above.)
   
   For the complete 2.13.11 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.11)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.11).
   
   #### Known issues
   
   A few regressions have been discovered:
   
   - Exhaustivity checker emits spurious warning when matching on Java enum 
type (2.13.11 regression) 
([scala/bug#12800](https://redirect.github.com/scala/bug/issues/12800))
   - Duplicated `@Deprecated` annotations when extending Java interface with 
deprecated default method cause `java.lang.annotation.AnnotationFormatError` 
when accessed via Java reflection (2.13.11 regression) 
([scala/bug#12799](https://redirect.github.com/scala/bug/issues/12799))
   
   We'll address these in Scala 2.13.12.
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.11 is 
[binary-compatible](https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html)
 with the whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   We especially acknowledge and thank A. P. Marki, also known as Som Snytt, 
who is responsible for a large share of the improvements in this release.
   
   This release was brought to you by 28 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.10 ^2.12.x`. Thank you A. P. Marki, 
Lukas Rytz, Seth Tisue, Anselm von Wangenheim, Scala Steward, Liang Yan, Jamie 
Thompson, jxnu-liguobin, AminMal, Jason Zaugg, Kenji Yoshida, Rituraj, ashish, 
Chris Kipp, Dale Wijnand, Francesco Kriegel, Georgi Chochov, Goooler, João 
Costa, Kisaragi Marine, Rafał Sumisławski, Ruslans Tarasovs, Simon R, Sébastien 
Doeraene, Tomasz Godzik, Zhang Zhipeng, danarmak, hepin.p.
   
   Thanks to [Lightbend](https://www.lightbend.com/scala) for their continued 
sponsorship of the Scala 2 team’s efforts. Lightbend offers [commercial 
support](https://www.lightbend.com/lightbend-platform-subscription) for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `scalaVersion` setting in your sbt project
   - Bump the `using scala` setting in your Scala-CLI project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.11.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.11)
   
   ### 
[`v2.13.10`](https://redirect.github.com/scala/scala/releases/tag/v2.13.10): 
Scala 2.13.10
   
   The Scala team at Lightbend is pleased to announce the availability of Scala 
2.13.10.
   
   The following changes are highlights of this release:
   
   ##### Binary compatibility regression fixed
   
   - Fix 2.13.9 regression which broke binary compatibility of case classes 
which are also value classes 
([#&#8203;10155](https://redirect.github.com/scala/scala/pull/10155))
   
   Library maintainers should avoid publishing libraries using Scala 2.13.9.
   
   ##### Other notable changes
   
   - Fix 2.13.9 regression in linting, causing spurious "variable x is never 
used" warnings 
([#&#8203;10154](https://redirect.github.com/scala/scala/pull/10154))
   - `-Xsource:3` now respects refinements by whitebox macro overrides 
([#&#8203;10160](https://redirect.github.com/scala/scala/pull/10160) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Scaladoc tool: fix parsing bug which could cause very slow performance or 
incorrect output 
([#&#8203;10175](https://redirect.github.com/scala/scala/pull/10175) by 
[@&#8203;liang3zy22](https://redirect.github.com/liang3zy22))
   - Restore `-Vprint-args`, for echoing arguments provided to compiler 
([#&#8203;10164](https://redirect.github.com/scala/scala/pull/10164) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   For the complete 2.13.10 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.10)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.10).
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.10 is 
[binary-compatible](https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html)
 with the whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   We especially acknowledge and thank A. P. Marki, also known as Som Snytt, 
who is responsible for an especially large share of the improvements in this 
release.
   
   This release was brought to you by 6 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.9 ^2.12.x`. Thank you A. P. Marki, 
Liang Yan, Seth Tisue, Antoine Parent, Luc Henninger, 梦境迷离.
   
   Thanks to [Lightbend](https://www.lightbend.com/scala) for their continued 
sponsorship of the Scala core team’s efforts. Lightbend offers [commercial 
support](https://www.lightbend.com/lightbend-platform-subscription) for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `scalaVersion` setting in your sbt-based project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.10.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.10)
   
   ### 
[`v2.13.9`](https://redirect.github.com/scala/scala/releases/tag/v2.13.9): 
Scala 2.13.9
   
   The following changes are highlights of this release:
   
   ##### Regression
   
   Library maintainers should avoid publishing libraries using Scala 2.13.9. 
Please use [2.13.10](https://redirect.github.com/scala/scala/releases/v2.13.10) 
instead. 2.13.9 has a 
[regression](https://redirect.github.com/scala/bug/issues/12650) where 
binary-incompatible bytecode is emitted for case classes which are also value 
classes (`case class ... extends AnyVal`).
   
   ##### Compatibility with Scala 3
   
   - Tasty Reader: Add support for Scala 3.2 
([#&#8203;10068](https://redirect.github.com/scala/scala/pull/10068))
   - Tasty Reader: Restrict access to experimental definitions 
([#&#8203;10020](https://redirect.github.com/scala/scala/pull/10020))
   - To aid cross-building, accept and ignore `using` in method calls 
([#&#8203;10064](https://redirect.github.com/scala/scala/pull/10064) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - To aid cross-building, allow `?` as a wildcard even without `-Xsource:3` 
([#&#8203;9990](https://redirect.github.com/scala/scala/pull/9990))
   - Make Scala-3-style implicit resolution explicitly opt-in rather than 
bundled in `-Xsource:3` 
([#&#8203;10012](https://redirect.github.com/scala/scala/pull/10012) by 
[@&#8203;povder](https://redirect.github.com/povder))
   - Prefer type of overridden member when inferring (under `-Xsource:3`) 
([#&#8203;9891](https://redirect.github.com/scala/scala/pull/9891) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### JDK version support
   
   - Make `-release` more useful, deprecate `-target`, align with Scala 3 
([#&#8203;9982](https://redirect.github.com/scala/scala/pull/9982) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Support JDK 19 
([#&#8203;10001](https://redirect.github.com/scala/scala/pull/10001) by 
[@&#8203;Philippus](https://redirect.github.com/Philippus))
   
   ##### Warnings and lints
   
   - Add `-Wnonunit-statement` to warn about discarded values in statement 
position ([#&#8203;9893](https://redirect.github.com/scala/scala/pull/9893) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Make unused-import warnings easier to silence (support filtering by 
`origin=`) ([#&#8203;9939](https://redirect.github.com/scala/scala/pull/9939) 
by [@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Add `-Wperformance` lints for `*Ref` boxing and nonlocal `return` 
([#&#8203;9889](https://redirect.github.com/scala/scala/pull/9889) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Language improvements
   
   - Improve support for Unicode supplementary characters in identifiers and 
string interpolation 
([#&#8203;9805](https://redirect.github.com/scala/scala/pull/9805) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   ##### Compiler options
   
   - Use subcolon args to simplify optimizer options 
([#&#8203;9810](https://redirect.github.com/scala/scala/pull/9810) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - For troubleshooting compiler, add `-Vdebug-type-error` (and remove 
`-Yissue-debug`) 
([#&#8203;9824](https://redirect.github.com/scala/scala/pull/9824) by 
[@&#8203;tribbloid](https://redirect.github.com/tribbloid))
   
   ##### Security
   
   - Error on source files with Unicode directional formatting characters 
([#&#8203;10017](https://redirect.github.com/scala/scala/pull/10017))
   - Prevent `Function0` execution during `LazyList` deserialization 
([#&#8203;10118](https://redirect.github.com/scala/scala/pull/10118))
   
   ##### Bugfixes
   
   - Emit all bridge methods non-final (perhaps affecting serialization compat) 
([#&#8203;9976](https://redirect.github.com/scala/scala/pull/9976))
   - Fix null-pointer regression in `Vector#prependedAll` and 
`Vector#appendedAll` 
([#&#8203;9983](https://redirect.github.com/scala/scala/pull/9983))
   - Improve concurrent behavior of Java `ConcurrentMap` wrapper
     ([#&#8203;10027](https://redirect.github.com/scala/scala/pull/10027) by 
[@&#8203;igabaydulin](https://redirect.github.com/igabaydulin))
   - Preserve null policy in wrapped Java `Map`s 
([#&#8203;10129](https://redirect.github.com/scala/scala/pull/10129) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   
   Changes that shipped in Scala 2.12.16 and 2.12.17 are also included in this 
release.
   
   For the complete 2.13.9 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.9)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.9).
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.9 is 
[binary-compatible](https://docs.scala-lang.org/overviews/core/binary-compatibility-of-scala-releases.html)
 with the whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   We especially acknowledge and thank A. P. Marki, also known as Som Snytt, 
who is responsible for an especially large share of the improvements in this 
release.
   
   This release was brought to you by 27 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.8 ^2.12.x`. Thank you A. P. Marki, 
Lukas Rytz, Seth Tisue, Jamie Thompson, Sébastien Doeraene, Scala Steward, 
Georgi Krastev, Jason Zaugg, Philippus, Balys Anikevicius, Gilad Hoch, 
NthPortal, Zhang Zhipeng, Arman Bilge, Dale Wijnand, Dominik Helm, Eric Huang, 
Guillaume Martres, Harrison Houghton, Krzysztof Pado, Michał Pałka, Zeeshan 
Arif, counter2015, jxnu-liguobin, mcallisto, naveen, philwalk.
   
   Thanks to [Lightbend](https://www.lightbend.com/scala) for their continued 
sponsorship of the Scala core team’s efforts. Lightbend offers [commercial 
support](https://www.lightbend.com/lightbend-platform-subscription) for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `scalaVersion` setting in your sbt-based project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.9.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.9)
   
   ### 
[`v2.13.8`](https://redirect.github.com/scala/scala/releases/tag/v2.13.8): 
Scala 2.13.8
   
   The Scala team at Lightbend is pleased to announce the availability of Scala 
2.13.8.
   
   This is a modest, incremental release focused on addressing regressions in 
2.13.7.
   
   ##### Highlights
   
   - Make REPL work again on Mac M1 (upgrade JLine & JNA) 
([#&#8203;9807](https://redirect.github.com/scala/scala/pull/9807) by 
[@&#8203;SethTisue](https://redirect.github.com/SethTisue))
   - Fix slicing of views of `IndexedSeq`s (including fixing 2.13.7 
`reverseIterator` regression) 
([#&#8203;9799](https://redirect.github.com/scala/scala/pull/9799) by 
[@&#8203;som-snytt](https://redirect.github.com/som-snytt))
   - Fix 2.13.7 regression in implicit resolution 
([#&#8203;9829](https://redirect.github.com/scala/scala/pull/9829) by 
[@&#8203;joroKr21](https://redirect.github.com/joroKr21))
   - Fix 2.13.7 `releaseFence` regression affecting GraalVM compatibility 
([#&#8203;9825](https://redirect.github.com/scala/scala/pull/9825) by 
[@&#8203;lrytz](https://redirect.github.com/lrytz))
   - Fix 2.13.7 regression affecting wildcards and F-bounded types 
([#&#8203;9806](https://redirect.github.com/scala/scala/pull/9806) by 
[@&#8203;joroKr21](https://redirect.github.com/joroKr21))
   
   A few small changes that will ship in 2.12.16 are also included in this 
release.
   
   For the complete 2.13.8 change lists, see [all merged 
PRs](https://redirect.github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.13.8)
 and [all closed 
bugs](https://redirect.github.com/scala/bug/issues?utf8=%E2%9C%93\&q=is%3Aclosed+milestone%3A2.13.8).
   
   #### Compatibility
   
   As usual for our minor releases, Scala 2.13.8 is binary-compatible with the 
whole Scala 2.13 series.
   
   Upgrading from 2.12? Enable `-Xmigration` while upgrading to request 
migration advice from the compiler.
   
   #### Contributors
   
   A big thank you to everyone who's helped improve Scala by reporting bugs, 
improving our documentation, spreading kindness in discussions around Scala, 
and submitting and reviewing pull requests! You are all magnificent.
   
   This release was brought to you by 8 contributors, according to `git 
shortlog -sn --no-merges @&#8203; ^v2.13.7 ^2.12.x`. Thank you A. P. Marki, 
Seth Tisue, Georgi Krastev, Jason Zaugg, Lukas Rytz, Martijn Hoekstra, 
Philippus Baalman, Chris Kipp.
   
   Thanks to [Lightbend](https://www.lightbend.com/scala) for their continued 
sponsorship of the Scala core team’s efforts. Lightbend offers [commercial 
support](https://www.lightbend.com/lightbend-platform-subscription) for Scala.
   
   #### Scala 2.13 notes
   
   The [release notes for Scala 
2.13.0](https://redirect.github.com/scala/scala/releases/v2.13.0) have 
important information applicable to the whole 2.13 series.
   
   #### Obtaining Scala
   
   Scala releases are available through a variety of channels, including (but 
not limited to):
   
   - Bump the `scalaVersion` setting in your sbt-based project
   - Download a distribution from 
[scala-lang.org](https://scala-lang.org/download/2.13.8.html)
   - Obtain JARs via [Maven 
Central](https://search.maven.org/search?q=g:org.scala-lang%20AND%20v:2.13.8)
   
   ### 
[`v2.13.7`](https://redirect.github.com/scala/scala/releases/tag/v2.13.7): 
Scala 2.13.7
   
   The Scala team at Lightbend is pleased to announce the availability of Scala 
2.13.7.
   
   ##### Align with Scala 3
   
   - Update TASTy reader to support Scala 3.1 
([#&#8203;9791](https://redirect.github.com/scala/scala/pull/9791) by [@&#8203;
   
   </details>
   
   ---
   
   ### Configuration
   
   📅 **Schedule**: Branch creation - At any time (no schedule defined), 
Automerge - At any time (no schedule defined).
   
   🚦 **Automerge**: Disabled by config. Please merge this manually once you are 
satisfied.
   
   ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry 
checkbox.
   
   🔕 **Ignore**: Close this PR and you won't be reminded about these updates 
again.
   
   ---
   
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this 
box
   
   ---
   
   This PR was generated by [Mend Renovate](https://mend.io/renovate/). View 
the [repository job log](https://developer.mend.io/github/apache/polaris).
   
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZS1wb2xhcmlzIl19-->
   


-- 
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