apollo-smith@0.3.0
·
656 commits
to main
since this release
BREAKING
-
make conversions from apollo-parser types fallible - goto-bus-stop, pull/371
The
parser-implfeature flag contains conversion code from apollo-parser AST node types
to apollo-smith types. With this change, those conversions now use theTryFromtrait
instead of theFromtrait, and return errors instead of panicking.You now have to use the
try_from()andtry_into()methods instead offrom()and
into().