Resolving deprecations when migrating 0.9.0 -> 1.2.0 #3302
Unanswered
sgolubovic-interventure
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a legacy project which is using Arrow 0.9.0 and I'm trying to migrate to 1.2.0. I managed to resolve all issues, except two.
Some parts of code have something like:
which I replaced with
but
map {}
seems like a workaround. Is there a better way to handlevoid
methods?Other situation is with
Either.cond
:which I replaced with
Either.conditionally
but
Either.conditionally
is deprecated and I couldn't find an equivalent. How to handle conditions in newer versions?Beta Was this translation helpful? Give feedback.
All reactions