diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c93826b7b7..8a163a00e2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -169,7 +169,7 @@ repos: redis, ] - repo: https://github.com/RobertCraigie/pyright-python - rev: v1.1.274 + rev: v1.1.275 hooks: - id: pyright exclude: "tests" diff --git a/CHANGELOG.md b/CHANGELOG.md index 579130fe57..ab39484854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +[1.27.0] + +- add `url_for` function in templates. +- add `redis` cache backend. +- add `memcached` cache backend. + [1.26.1] - fix optional `UploadFile` not being allowed. diff --git a/poetry.lock b/poetry.lock index be05af6cf9..43eacb4d00 100644 --- a/poetry.lock +++ b/poetry.lock @@ -245,7 +245,7 @@ test = ["pytest (>=6)"] [[package]] name = "Faker" -version = "15.0.0" +version = "15.1.0" description = "Faker is a Python package that generates fake data for you." category = "main" optional = false @@ -1355,8 +1355,8 @@ exceptiongroup = [ {file = "exceptiongroup-1.0.0rc9.tar.gz", hash = "sha256:9086a4a21ef9b31c72181c77c040a074ba0889ee56a7b289ff0afb0d97655f96"}, ] Faker = [ - {file = "Faker-15.0.0-py3-none-any.whl", hash = "sha256:84c83f0ac1a2c8ecabd784c501aa0ef1d082d4aee52c3d797d586081c166434c"}, - {file = "Faker-15.0.0.tar.gz", hash = "sha256:245fc7d23470dc57164bd9a59b7b1126e16289ffcf813d88a6c8e9b8a37ea3fb"}, + {file = "Faker-15.1.0-py3-none-any.whl", hash = "sha256:920eadd234a30b9603f50d75ee0a5f37fc064f90ef9207c6d3d2c691b786c480"}, + {file = "Faker-15.1.0.tar.gz", hash = "sha256:bc2634053fd1fd82edd78e6b9bdcdcee19a0d9501227b6e0fc531c7b00b0e805"}, ] filelock = [ {file = "filelock-3.8.0-py3-none-any.whl", hash = "sha256:617eb4e5eedc82fc5f47b6d61e4d11cb837c56cb4544e39081099fa17ad109d4"}, diff --git a/pyproject.toml b/pyproject.toml index c7c8089f6a..049af879ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "starlite" -version = "1.26.1" +version = "1.27.0" description = "Light-weight and flexible ASGI API Framework" authors = ["Na'aman Hirschfeld "] maintainers = ["Na'aman Hirschfeld ", "Peter Schutt ", "Cody Fincher "]