This is an automated email from the ASF dual-hosted git repository.

He-Pin pushed a commit to branch add-future-lazy-vals
in repository https://gitbox.apache.org/repos/asf/pekko-connectors.git

commit 35c09ebf10db110be276d86277ee15aaecff5a26
Author: 虎鸣 <[email protected]>
AuthorDate: Sun Jun 14 18:25:49 2026 +0800

    feat: Add -Yfuture-lazy-vals for Scala 3.3.x builds
    
    Motivation:
    The Scala 3.3.8 compiler introduced the -Yfuture-lazy-vals flag to
    optionally use VarHandle instead of sun.misc.Unsafe for lazy val
    implementation. This prepares libraries for upcoming JDK releases
    that restrict sun.misc.Unsafe access.
    
    Modification:
    Add -Yfuture-lazy-vals to scalacOptions, conditionally applied only
    for Scala 3.3.x via CrossVersion.partialVersion or scalaBinaryVersion.
    
    Result:
    Scala 3.3.x build uses the future-proof VarHandle-based lazy val
    implementation, compatible with all JDK 9+ versions including future
    releases that restrict sun.misc.Unsafe.
    
    References:
    Refs scala/scala3-lts#637
    Refs apache/pekko#3059
---
 project/Common.scala | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/project/Common.scala b/project/Common.scala
index d75a307cd..61391a98a 100644
--- a/project/Common.scala
+++ b/project/Common.scala
@@ -67,6 +67,10 @@ object Common extends AutoPlugin {
       "-Wconf:cat=unused-nowarn:s",
       "-Wconf:msg=Prefer the Scala annotation over Java's `@Deprecated`:s",
       "-release:17"),
+    scalacOptions ++= {
+      if (isScala3.value) Seq("-Yfuture-lazy-vals")
+      else Seq.empty
+    },
     Compile / doc / scalacOptions := scalacOptions.value ++ Seq(
       "-doc-title",
       "Apache Pekko Connectors",


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to