-
Notifications
You must be signed in to change notification settings - Fork 529
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
Remove workaround for Scala3
in Supervisor
#3650
Remove workaround for Scala3
in Supervisor
#3650
Conversation
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! This was on my mind but I was too lazy to go back to fix it 😛
build.sbt
Outdated
ProblemFilters.exclude[DirectMissingMethodProblem]( | ||
"cats.effect.std.Supervisor.apply$default$2") |
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.
This filter is highly unfortunate 🤔 if we ever add default parameters to the public API in the future then it will mask bincompat issues there.
Is it possible that this filter is needed only for Scala 3?
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.
Yep, it makes sense only for Scala3, I will fix it
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.
Also, sorry for stealing your fruit 😄
dca0da7
to
f69d693
Compare
Smth strange is going on with CI 😞 @armanbilge could you please trigger CI run once again? |
Argh, I've done smth stupid. Sorry! |
f69d693
to
cf5f7af
Compare
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.
Sorry that was a bit annoying, thank you! 😁
This is a follow-up to scala/scala3#15546.