goto-bus-stop
released this
29 Nov 09:02
·
574 commits
to main
since this release
BREAKING
-
make conversions from apollo-parser types fallible - goto-bus-stop, pull/371
The
parser-impl
feature flag contains conversion code from apollo-parser AST node types
to apollo-smith types. With this change, those conversions now use theTryFrom
trait
instead of theFrom
trait, and return errors instead of panicking.You now have to use the
try_from()
andtry_into()
methods instead offrom()
and
into()
.