-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCHANGES
87 lines (54 loc) · 1.66 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
1.2.0 (unreleased)
==================
- drop support for python 3.6, 3.7
- add support for 3.10, 3.11, 3.12
- drop support for SQLAlchemy < 1.4
- add support for SQLAlchemy >= 2.0
- add load_core(), support core SQLAlchemy without ORM
1.1.0 (2021-03-29)
==================
- add support for python 3.9.
- Fix for removal of `_decl_class_registry` in SQLAlchemy 1.4.
1.0.0 (2021-02-04)
==================
- drop support for python 2.7, 3.4 and 3.5.
- add support for python 3.7 and 3.8.
- Suppress YAML unsafe load warning, support specify different loader
0.9.1 (2018-07-26)
======================
- fix secondary relationships
0.9.0 (2018-07-24)
======================
- support loading many-to-many relationships (via secondary)
0.8.0 (2018-01-03)
======================
- fix loading many relationships without backref
0.7.0 (2017-09-01)
======================
- support to load custom fixtures with a custom model method
- use method `from_fixtures` if it exists to load model
0.6.0 (2017-08-24)
======================
- convert module to package
- add cmd line program
0.5.0 (2017-07-17)
======================
- Support nested list of objects
0.4.0 (2017-07-17)
======================
- Fix reporting error when model entry cotains more then one mapper
- Accept nested objects without a `backref`
0.3.0 (2017-06-28)
======================
- `load()` returns a Store instance
0.2.0 (2017-06-24)
======================
- Python 2 compat (issue #1)
- Top-level YAML must be sequence (i.s.o. mapping) (issue #2)
- Improve error messages (issue #4)
0.1.1 (2017-06-14)
==================
- convert README to ReST
0.1.0 (2017-06-14)
==================
- Initial release