File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
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
+ ## [ 15.2.1] - 2023-02-16
8
+ ### Changed
9
+ - winter.messaging: set frozen=true for Event class
10
+
7
11
## [ 15.2.0] - 2023-02-15
8
12
### Added
9
13
- winter.web.throttling: function allows to reset the accumulated throttling state for a specific user and scope
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " winter"
3
- version = " 15.2.0 "
3
+ version = " 15.2.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 3
3
from winter .messaging import Event
4
4
5
5
6
- @dataclass
6
+ @dataclass ( frozen = True )
7
7
class Event1 (Event ):
8
8
x : int
9
9
10
10
11
- @dataclass
11
+ @dataclass ( frozen = True )
12
12
class Event2 (Event ):
13
13
x : int
14
14
15
15
16
- @dataclass
16
+ @dataclass ( frozen = True )
17
17
class Event3 (Event ):
18
18
x : int
Original file line number Diff line number Diff line change 1
1
from dataclasses import dataclass
2
2
3
3
4
- @dataclass
4
+ @dataclass ( frozen = True )
5
5
class Event :
6
6
pass
You can’t perform that action at this time.
0 commit comments