You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.