File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
.. towncrier release notes start
6
6
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
+
7
27
0.1.0a0 (2023-02-27)
8
28
====================
9
29
Original file line number Diff line number Diff line change 14
14
from .types import Schema , UserDetails
15
15
16
16
__all__ = ("Permissions" , "Schema" , "UserDetails" , "setup" )
17
- __version__ = "0.1.0a0 "
17
+ __version__ = "0.1.0a1 "
18
18
19
19
20
20
@web .middleware
You can’t perform that action at this time.
0 commit comments