Skip to content

Commit edd1aa3

Browse files
Release v0.1.0a1 (#691)
1 parent 68e1723 commit edd1aa3

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGES.rst

+20
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ CHANGES
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+
727
0.1.0a0 (2023-02-27)
828
====================
929

aiohttp_admin/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from .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

0 commit comments

Comments
 (0)