File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 9.5.6] - 2022-06-16
8
+
9
+ Fix cyclic imports caused by DRF importing external renderer classes during import
10
+
7
11
## [ 9.5.5] - 2022-06-13
8
12
9
13
Generate titles for dataclass-generated openapi schemas
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " winter"
3
- version = " 9.5.5 "
3
+ version = " 9.5.6 "
4
4
homepage = " https://github.com/WinterFramework/winter"
5
5
description = " Web Framework inspired by Spring Framework"
6
6
authors = [
" Alexander Egorov <[email protected] >" ]
Original file line number Diff line number Diff line change 3
3
from typing import Any
4
4
from typing import List
5
5
from typing import Type
6
+ from typing import TYPE_CHECKING
6
7
7
8
import django .http
8
9
import rest_framework .authentication
9
10
import rest_framework .response
10
- import rest_framework .views
11
11
from django .conf .urls import url
12
12
from rest_framework .permissions import IsAuthenticated
13
13
from rest_framework .request import Request
30
30
from winter .web .urls import rewrite_uritemplate_with_regexps
31
31
32
32
33
+ if TYPE_CHECKING :
34
+ import rest_framework .views
35
+
36
+
33
37
class SessionAuthentication (rest_framework .authentication .SessionAuthentication ):
34
38
"""SessionAuthentication with supporting 401 status code"""
35
39
@@ -51,7 +55,9 @@ def create_django_urls(controller_class: Type) -> List:
51
55
return django_urls
52
56
53
57
54
- def create_drf_view (controller_class : Type , routes : List [Route ]) -> rest_framework .views .APIView :
58
+ def create_drf_view (controller_class : Type , routes : List [Route ]) -> 'rest_framework.views.APIView' :
59
+ import rest_framework .views
60
+
55
61
component = get_component (controller_class )
56
62
57
63
class WinterView (rest_framework .views .APIView ):
You can’t perform that action at this time.
0 commit comments