Skip to content

Commit

Permalink
Merge branch 'piccolo-orm:master' into pydantic_v2
Browse files Browse the repository at this point in the history
  • Loading branch information
sinisaos authored Sep 12, 2023
2 parents 94549f5 + 0bcf86f commit d26ee8c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
python-version: 3.11
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 16
- name: "Install dependencies"
run: |
pip install -r requirements/dev-requirements.txt
Expand Down
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changes
=======

0.58.0
------

The default rate limiting is now more aggressive. This can be overridden using
the ``rate_limit_provider`` argument of ``create_admin``.

-------------------------------------------------------------------------------

0.57.0
------

Expand Down
2 changes: 1 addition & 1 deletion piccolo_admin/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ def __init__(

if not rate_limit_provider:
rate_limit_provider = InMemoryLimitProvider(
limit=1000, timespan=300
limit=100, timespan=300
)

public_app.mount(
Expand Down
2 changes: 1 addition & 1 deletion piccolo_admin/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.57.0
0.58.0

0 comments on commit d26ee8c

Please sign in to comment.