Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldziher committed Jan 19, 2022
1 parent 73f3bf7 commit cb52319
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,17 @@

[0.4.1]
- fixed sql_alchemy requirement not being isolated to the plugin only

- add support for `before_request` and `after_request` hooks

[0.4.2]
- fixed Parameter default not being respected


[0.4.3]
- fixed dto factory handling of forward refs


[0.5.0]
- updated base path handling in controllers @vincentsarago
- changed RouteHandlers from being pydantic models to being custom classes, allowing for optimization using `_slots_`
- changed BaseRoute to not inherit from Starlette, allowing for optimization using `_slots_`
14 changes: 7 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "starlite"
version = "0.4.3"
version = "0.5.0"
description = "Light-weight and flexible ASGI API Framework"
authors = ["Na'aman Hirschfeld <[email protected]>"]
maintainers = ["Na'aman Hirschfeld <[email protected]>"]
Expand Down Expand Up @@ -97,3 +97,7 @@ good-names = "_,i,e,fn"

[tool.coverage.run]
omit = ["*/tests/*"]


[tool.pytest.ini_options]
asyncio_mode = "auto"

0 comments on commit cb52319

Please sign in to comment.