File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1- # 0.11.3
1+ # 0.11.4 - 2023/01/06
22
33* The proxy resolution is fixed and clarified. When compiling
44 a system, all proxies are actually replaced by their actual
55 Type instance. Only recursive types still keep ProxyType
66 instances (as sentinels) ; they are bound to their target
77 type and delete dress and include? to them.
88
9+ Given that ProxyType is a sentinel on recursive types, calls
10+ to generate_data and to_json_schema are not delegated to the
11+ target type, to avoid infinite recursions.
12+
13+ * Generated names of instantiated high order types are better
14+ (e.g. Collection<String >).
15+
916# 0.11.3 - 2023/01/06
1017
1118* Fix json_schema generation on unresolved ProxyTypes. We use
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module Version
33
44 MAJOR = 0
55 MINOR = 11
6- TINY = 3
6+ TINY = 4
77
88 def self . to_s
99 [ MAJOR , MINOR , TINY ] . join ( '.' )
You can’t perform that action at this time.
0 commit comments