Skip to content
Compare
Choose a tag to compare
@goto-bus-stop goto-bus-stop released this 29 Nov 09:02
· 574 commits to main since this release
06cd0a7

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 the TryFrom trait
    instead of the From trait, and return errors instead of panicking.

    You now have to use the try_from() and try_into() methods instead of from() and
    into().