Skip to content

py-v1.11.0 - django-taggit's TaggableManager is a many-to-many relation now

Latest

Choose a tag to compare

@github-actions github-actions released this 31 Jul 17:42

Added

  • django-taggit's TaggableManager is a many-to-many relation now. It
    declares itself like an ordinary field, but the relation it creates runs
    through taggit.TaggedItem to taggit.Tag. The parser saw a field type it
    did not know and dropped the edge, so every tagged model showed one relation
    fewer than it has — on the Read the Docs golden fixture the tags field was
    absent outright, which is why that snapshot gains an entry rather than
    changing one. Explicit through= overrides are honoured. Both parsers are
    updated, Python and TypeScript, so the CLI and the extension keep answering
    identically. Contributed by @Guflly in
    #63, closing
    #50.