diff --git a/CHANGES b/CHANGES index 71d9f66f..e715eec8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,19 @@ Changes ======= +0.29.1 +------ +The ``__visible_fields`` filter on PiccoloCRUD now works on the detail endpoint +(courtesy @sinisaos). For example: + +.. code-block:: text + + GET /1/?__visible_fields=id,name,director.name + +We also modified a type annotation in ``FastAPIWrapper``, so you can use it +with FastAPI's ``APIRouter`` without getting a type warning. Thanks to @gmos +for reporting this issue. + 0.29.0 ------ Added a ``__visible_fields`` filter to ``PiccoloCRUD``. It's a very powerful diff --git a/piccolo_api/__init__.py b/piccolo_api/__init__.py index 867709bf..985b55a2 100644 --- a/piccolo_api/__init__.py +++ b/piccolo_api/__init__.py @@ -1 +1 @@ -__VERSION__ = "0.29.0" +__VERSION__ = "0.29.1"