File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55.. towncrier release notes start
66
7+ 0.1.0a1 (2023-04-23)
8+ ====================
9+
10+ - Removed ``auth_policy `` parameter from ``setup() ``, this is no longer needed.
11+ - Added a default ``identity_callback `` for simple applications, so it is no longer a required schema item.
12+ - Added ``Permissions.all `` enum value (which should replace ``tuple(Permissions) ``).
13+ - Added validators to inputs (e.g. required, minValue etc. See examples/validators.py).
14+ - Added extensive permission controls (see examples/permissions.py).
15+ - Added ``admin["permission_re"] `` regex object to test if permission strings are valid.
16+ - Added buttons for the user to change visible columns in the list view.
17+ - Added initial support for ORM (1-to-many) relationships.
18+ - Added option to add simple bulk update buttons.
19+ - Added option to customise resource icons in sidebar.
20+ - Added option to customise admin title and resource labels.
21+ - Added support for non-id primary keys.
22+ - Added default favicon.
23+ - Included JS map file.
24+ - Fixed autocomplete behaviour in reference inputs (e.g. for foreign keys).
25+ - Fixed handling of date/datetime inputs.
26+
7270.1.0a0 (2023-02-27)
828====================
929
Original file line number Diff line number Diff line change 1414from .types import Schema , UserDetails
1515
1616__all__ = ("Permissions" , "Schema" , "UserDetails" , "setup" )
17- __version__ = "0.1.0a0 "
17+ __version__ = "0.1.0a1 "
1818
1919
2020@web .middleware
You can’t perform that action at this time.
0 commit comments