Skip to content

Commit

Permalink
Release v0.1.0a1 (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Apr 23, 2023
1 parent 68e1723 commit edd1aa3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ CHANGES

.. towncrier release notes start
0.1.0a1 (2023-04-23)
====================

- Removed ``auth_policy`` parameter from ``setup()``, this is no longer needed.
- Added a default ``identity_callback`` for simple applications, so it is no longer a required schema item.
- Added ``Permissions.all`` enum value (which should replace ``tuple(Permissions)``).
- Added validators to inputs (e.g. required, minValue etc. See examples/validators.py).
- Added extensive permission controls (see examples/permissions.py).
- Added ``admin["permission_re"]`` regex object to test if permission strings are valid.
- Added buttons for the user to change visible columns in the list view.
- Added initial support for ORM (1-to-many) relationships.
- Added option to add simple bulk update buttons.
- Added option to customise resource icons in sidebar.
- Added option to customise admin title and resource labels.
- Added support for non-id primary keys.
- Added default favicon.
- Included JS map file.
- Fixed autocomplete behaviour in reference inputs (e.g. for foreign keys).
- Fixed handling of date/datetime inputs.

0.1.0a0 (2023-02-27)
====================

Expand Down
2 changes: 1 addition & 1 deletion aiohttp_admin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .types import Schema, UserDetails

__all__ = ("Permissions", "Schema", "UserDetails", "setup")
__version__ = "0.1.0a0"
__version__ = "0.1.0a1"


@web.middleware
Expand Down

0 comments on commit edd1aa3

Please sign in to comment.