Skip to content

0.66.1

Choose a tag to compare

@dantownsend dantownsend released this 25 Jan 22:44
· 523 commits to master since this release

In Piccolo you can print out any query to see the SQL which will be generated:

>>> print(Band.select())
SELECT "band"."id", "band"."name", "band"."manager", "band"."popularity" FROM band

It didn't represent UUID and datetime values correctly, which is now fixed (courtesy @theelderbeever). See PR 405.