This repository was archived by the owner on Oct 10, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +18
-11
lines changed
{{cookiecutter.folder_name}} Expand file tree Collapse file tree 8 files changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ This file documents changes to [fastapi-mvc/cookiecutter](https://github.com/fas
77### Breaking Changes
88
99* Drop Python 3.7 support. PR [ #23 ] ( https://github.com/fastapi-mvc/cookiecutter/pull/23 )
10+
11+ ### Docs
12+
13+ * Extend project documentation [ #21 ] ( https://github.com/fastapi-mvc/cookiecutter/issues/21 ) . PR [ #20 ] ( https://github.com/fastapi-mvc/cookiecutter/pull/20 )
14+
15+ ### Internal
16+
17+ * Drop mock dev-dependency [ #12 ] ( https://github.com/fastapi-mvc/cookiecutter/issues/12 ) . PR [ #25 ] ( https://github.com/fastapi-mvc/cookiecutter/pull/25 )
1018* Update dependencies. PR [ #24 ] ( https://github.com/fastapi-mvc/cookiecutter/pull/24 )
1119 * fastapi (0.82.0 -> 0.85.0)
1220 * aiohttp (3.8.1 -> 3.8.3)
@@ -20,10 +28,6 @@ This file documents changes to [fastapi-mvc/cookiecutter](https://github.com/fas
2028 * Sphinx (4.5.0 -> 5.2.3)
2129 * myst-parser (0.17.2 -> 0.18.1)
2230
23- ### Docs
24-
25- * Extend project documentation [ #21 ] ( https://github.com/fastapi-mvc/cookiecutter/issues/21 ) . PR [ #20 ] ( https://github.com/fastapi-mvc/cookiecutter/pull/20 )
26-
2731## 0.2.0 (29.09.2022)
2832
2933### Features
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ requests = "~2.28.1"
3636{%- if cookiecutter.aiohttp == "yes" %}
3737aioresponses = " ~0.7.3"
3838{%- endif %}
39- mock = " ~4.0.3"
4039flake8 = " ~5.0.4"
4140flake8-docstrings = " ~1.6.0"
4241flake8-import-order = " ~0.18.1"
Original file line number Diff line number Diff line change 1+ from unittest import mock
2+
13import pytest
2- import mock
34from {{cookiecutter .package_name }}.app .exceptions import (
45 HTTPException ,
56 http_exception_handler ,
Original file line number Diff line number Diff line change 1- import mock
1+ from unittest import mock
2+
23from {{cookiecutter .package_name }}.config import settings
34from {{cookiecutter .package_name }}.app .router import root_api_router
45from {{cookiecutter .package_name }}.app .asgi import (
Original file line number Diff line number Diff line change 1- import mock
1+ from unittest import mock
2+
23import pytest
34from aioredis import Redis
45from aioredis .exceptions import RedisError
Original file line number Diff line number Diff line change 11import os
2+ from unittest import mock
23
3- import mock
44import pytest
55from {{cookiecutter .package_name }}.cli .serve import serve
66
Original file line number Diff line number Diff line change 11import os
2+ from unittest import mock
23
3- import mock
44import pytest
55from click import BadParameter
66from {{cookiecutter .package_name }}.cli .utils import validate_directory
Original file line number Diff line number Diff line change 1- import mock
1+ from unittest import mock
2+
23import pytest
34from gunicorn .app .base import BaseApplication
45from gunicorn .errors import ConfigError
You can’t perform that action at this time.
0 commit comments