Releases: piccolo-orm/piccolo_admin
Releases Β· piccolo-orm/piccolo_admin
1.1.2
The sidebar styles were improved (see this issue for more info).
1.1.1
Fixed a regression in Piccolo Admin v1, where nullable boolean fields defaulted to null
instead of all
in the filter sidebar. This was caused by changes in Pydantic v2, where the JSON schema changed.

1.1.0
Big improvements to Timestamptz
columns:
- Piccolo Admin now displays the timezone in the UI.
- The resolution of the widget can be specified using
TableConfig.time_resolution
, so you can decide if the user can pick seconds / milliseconds.

1.0.0
Updated to work with Piccolo v1 (which uses Pydantic v2).
The front end code has also been substantially upgraded to use Vue 3.
0.58.0
The default rate limiting is now more aggressive. This can be overridden using the rate_limit_provider
argument of create_admin
.
0.57.0
Improved the handling of nullable Varchar
/ Text
columns in the UI.
0.56.0
Improved the handling of nullable JSON
/ JSONB
columns in the UI.
0.55.0
When deleting a row, if a problem is encountered then an error message is now shown in the UI.
This is useful if we have constraints on the table (for example ON DELETE RESTRICT
).
Support for Python 3.7 was dropped as it's now end of life.
0.54.0
Improved the behaviour of the referencing tables
links on the detail page (see #321 for more info).

0.53.0
Improved the UI for JSON fields (the cursor would sometimes jump to the bottom).