-
Notifications
You must be signed in to change notification settings - Fork 20
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
Cross-compile for Scala 3 #388
Cross-compile for Scala 3 #388
Conversation
modules/play-json/src/test/scala/com/evolutiongaming/skafka/producer/JsonProducerSpec.scala
Outdated
Show resolved
Hide resolved
} yield (a, b) | ||
.traverseFilter { case (k, v) => | ||
if (k != null && (keepNullValues || v != null)) (ka(k), vb(v)).mapN((_, _).some) | ||
else none[(A, B)].pure[F] |
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.
Due to Scala 3 bug compiler crashed here, so I rewrote it without partial function.
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.
please add comment about this bug.
Pull Request Test Coverage Report for Build 6781722747
💛 - Coveralls |
modules/play-json/src/test/scala/com/evolutiongaming/skafka/producer/JsonProducerSpec.scala
Outdated
Show resolved
Hide resolved
skafka/src/main/scala/com/evolutiongaming/skafka/consumer/RebalanceCallback.scala
Outdated
Show resolved
Hide resolved
skafka/src/main/scala/com/evolutiongaming/skafka/producer/ProducerRecord.scala
Show resolved
Hide resolved
95c965e
to
1951861
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.
LGTM
skafka/src/main/scala/com/evolutiongaming/skafka/OffsetAndMetadata.scala
Show resolved
Hide resolved
Thanks, overall it looks nice! |
Updated all deps (besides
kafka-clients
) and cross compiled against3.3.1
,2.13.12
and2.12.18
.TODO:
RebalanceConsumerSpec