File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
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.6.1] - 2022-07-04
8
+
9
+ Return 400 Bad Request instead of 500 if UUID request parameter has a newline character in the end
10
+
7
11
## [ 9.6.0] - 2022-06-22
8
12
9
13
Return 400 Bad Request instead of 500 if UUID request parameter is malformed
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " winter"
3
- version = " 9.6.0 "
3
+ version = " 9.6.1 "
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 25
25
_decoders = {}
26
26
27
27
Item = TypeVar ('Item' )
28
- uuid_regexp = re .compile (r'^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$ ' )
28
+ uuid_regexp = re .compile (r'^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\Z ' )
29
29
30
30
31
31
class _MissingException (Exception ):
You can’t perform that action at this time.
0 commit comments