All Versions
15
Latest Version
Avg Release Cycle
38 days
Latest Release
1229 days ago

Changelog History
Page 2

  • v0.12.3 Changes

    July 23, 2019

    [0.12.3] - 2019-07-23

    🛠 Fixed

    • ISSUE-267 - Input variables value at [] are now allowed on variables defined as [type!]
  • v0.12.2 Changes

    July 18, 2019

    [0.12.2] - 2019-07-18

    🛠 Fixed

    • ISSUE-265 - Now variables typed as list are correctly coerced to a list of size one when provided a non-null non-list value
  • v0.12.1 Changes

    July 17, 2019

    [0.12.1] - 2019-07-17

    🔄 Changed

    • ⚡️ Update pytest from 5.0.0 to 5.0.1

    🛠 Fixed

    • ISSUE-263 - Now variables typed as [any!] are correctly validated

    📜 > Note that this is a non complete fix, [[[any!]]!] like type will fail validation (but who uses this ?) it will be completly fixed in 1.0.0 with the completly rewrote parsing/validation/execution algo, stay tuned :p

  • v0.12.0 Changes

    July 03, 2019

    [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

  • v0.11.2 Changes

    June 28, 2019

    [0.11.2] - 2019-06-28

    🛠 Fixed

    • Engine: Old Engine API is back, cook will override engine saved parameters by it own if any are given