tartiflette v0.12.0 Release Notes

Release Date: 2019-07-03 // almost 5 years ago
  • [0.12.0] - 2019-07-03

    โž• Added

    • SchemaRegistry.clean() class method, it's wipping the registry of every known schema. (thanks @florimondmanca)

    ๐Ÿ”„ Changed

    • engine.cook() is now a no-op if the engine has already been cooked.
    • โšก๏ธ Updated dev dependancies
    • โšก๏ธ Update import using isort.
    • Public classes should be import through from tartiflette import <>

    Beware that you'll may have to change your imports

    Before:

    from tartiflette.directive import Directivefrom tartiflette.resolver import Resolverfrom tartiflette.scalar import Scalarfrom tartiflette.subscription import Subscription
    

    After:

    from tartiflette import ( Directive, Resolver, Scalar, Subscription )
    
    • ๐Ÿ—„ GrapQLError is marked as deprecated in favor of TartifletteError, importable through from tartiflette import TartifletteError
    • ๐Ÿšš @non_introspectable is removed in favor of @nonIntrospectable as advertised in 0.11.x

    ๐Ÿ›  Fixed