File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 11Changes
22=======
33
4+ 0.22.0
5+ ------
6+ * An error is now raised if a user tries to create a Piccolo app using
7+ ``piccolo app new`` with the same name as a builtin Python module, as it
8+ will cause strange bugs.
9+ * Fixing a strange bug where using an expression such as
10+ ``Concert.band_1.manager.id`` in a query would cause an error. It only
11+ happened if multiple joins were involved, and the last column in the chain
12+ was ``id``.
13+ * ``where`` clauses can now accept ``Table`` instances. For example:
14+ ``await Band.select().where(Band.manager == some_manager).run()``, instead
15+ of having to explicity reference the ``id``.
16+
4170.21.2
518------
619Fixing a bug with serialising ``Enum`` instances in migrations. For example:
Original file line number Diff line number Diff line change 1- __VERSION__ = "0.21.2 "
1+ __VERSION__ = "0.22.0 "
You can’t perform that action at this time.
0 commit comments