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
Fixes #203: subtranslator should use argnames from parent translator
Change a way aliases in SQL query are generated in order to fix a problem when a subquery alias masks a base query alias
Volatile attribute bug fixed
Fix creation of self-referenced foreign keys - before this Pony didn't create the foreign key for self-referenced attributes
Bug fixed: when required attribute is empty the loading from the database shouldn't raise the validation error. Now Pony raises the warning DatabaseContainsIncorrectEmptyValue
Throw an error with more clear explanation when a list comprehension is used inside a query instead of a generator expression: "Use generator expression (... for ... in ...) instead of list comprehension [... for ... in ...] inside query"