-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
66 lines (53 loc) · 1.87 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
2024-10-15 v0.6.0
--------------------
* Bug fix: autoloading in data section with namespace
* Add support for Time conversion
* Remove use of deprecated Fixnum
2020-04-24 v0.5.2
--------------------
* Bug fix: Fix NoMethodError in ActiveSupport 6's Module.parent
2018-06-26 v0.5.1
--------------------
* Bug fix: autoload backtrace search "improvemnts"
2018-06-07 v0.5.0
--------------------
* Add support for autoloading class definitions from JSON in a DATA section
2018-05-29 v0.4.1
--------------------
* Fix a namespace'd class from not being defined if top-level class exists
2018-05-27 v0.4.0
--------------------
* Bug fix: conversion bug when a module is used as a type specifier
* Bug fix: Fixnum deprecation
* Add support for JSON serialization and accessor formats that differ from definition
* Add method that modules can use for initialization
2017-12-04 v0.3.0
--------------------
* For attributes with a type of String don't convert nil to an empty string
2017-10-22 v0.2.4
--------------------
* Add class2 filename and linenum to generated classes
* Bug fix: use the correct class name when instantiating a default nested instance
2017-10-11 v0.2.3
--------------------
* Bug fix: don't try to convert to Float, Fixnum, Date, DateTime when nil
* Bug fix: more constant checking before creating
2017-09-28 v0.2.2
--------------------
* Bug fix: check constant existance before creating
2017-09-23 v0.2.1
--------------------
* Bug fix: to_h values should not always be a Hash
2017-09-14 v0.2.0
--------------------
* Add class2 method
2017-08-15 v0.1.0
--------------------
* Add support for blocks
* Add Class2::StrictConstructor
* Bug fix: to_h conversion failure caused element to be skipped
2017-08-10 v0.0.2
--------------------
* Add support for types
* Bug fix: don't attempt to create invalid method names
* Bug fix: don't assume constructor arg is a Hash