-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reverted binary incompatible changes to generated parallel syntax #2702
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2702 +/- ##
==========================================
- Coverage 95.13% 95.11% -0.02%
==========================================
Files 365 365
Lines 6780 6781 +1
Branches 294 294
==========================================
Hits 6450 6450
- Misses 330 331 +1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
Just so that I know that the MimaException test still works, the test you added failed with the |
The problematic bit is the syntax ops extending AnyVal. With private[syntax] final class Tuple${arity}ParallelOps[M[_], ${`A..N`}](private val $tupleTpe) the test result is
but changing it to private[syntax] final class Tuple${arity}ParallelOps[M[_], ${`A..N`}](private val $tupleTpe) extends AnyVal the test fails
|
Ah didn't realize that it wasnt value class and you changed that. I think we should still make the call private. |
Makes sense. I will do it 👍 |
could the 2.13's travis job be restarted ?
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks so much @barambani!
👍 , sorry it took a double PR to finish this. |
In relation to this PR #2692, I realise only now that the same problem I had with the Semigroupal syntax is also affecting the boilerplate parallel syntax. I reverted the change to the generator and added a MimaExceptions test.