He-Pin opened a new pull request, #529:
URL: https://github.com/apache/pekko-projection/pull/529

   ### Motivation
   Scala 3.9.0-RC1 introduces stricter rules that cause compilation failures 
under `-Werror`:
   1. Type ascriptions after tuple destructuring patterns are no longer 
supported
   2. Negative literals like `-1.millis` are flagged as "Illegal literal"
   
   ### Modification
   - `SlickOffsetStore.scala`: Remove type ascription `(Dialect, Boolean)` from 
tuple destructuring pattern
   - `R2dbcProjectionSettings.scala`: Parenthesize negative literal `-1.millis` 
→ `(-1).millis`
   
   ### Result
   pekko-projection compiles cleanly with Scala 3.9.0-RC1.
   
   ### Tests
   - `sbt "++3.9.0-RC1!; compile; Test/compile"` passes
   
   ### References
   None - Scala 3.9 forward compatibility


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


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

Reply via email to