File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This file documents any relevant changes.
4
4
5
+ ## [ 0.9.2] - 2022-07-25
6
+ - fix: dont unquote querystrings
7
+
5
8
## [ 0.9.1] - 2022-07-08
6
9
- fix: unicode urls
7
10
Original file line number Diff line number Diff line change 9
9
from werkzeug .utils import get_content_type
10
10
from werkzeug .http import http_date , is_resource_modified
11
11
from werkzeug ._internal import _logger
12
- from werkzeug .urls import uri_to_iri ,url_unquote
12
+ from werkzeug .urls import uri_to_iri , url_unquote
13
13
14
14
15
15
16
- __version__ = "0.9.1 "
16
+ __version__ = "0.9.2 "
17
17
18
18
subprocesses = []
19
19
@@ -103,10 +103,8 @@ def _set_defaults(opts):
103
103
}
104
104
105
105
def __call__ (self , environ : "WSGIEnvironment" , start_response : "StartResponse" ) -> t .Iterable [bytes ]:
106
-
107
- path = url_unquote (environ ["RAW_URI" ])
106
+ path = url_unquote (environ ["PATH_INFO" ])
108
107
app = self .app
109
-
110
108
for prefix , opts in self .targets .items ():
111
109
if path .startswith (prefix ):
112
110
app = self .proxy_to (opts , path , prefix )
You can’t perform that action at this time.
0 commit comments