-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGELOG.txt
37 lines (28 loc) · 1.17 KB
/
CHANGELOG.txt
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
**v0.7.0**
Updates:
1. Added support for latest version of parsimonious.
Library now works with Python 3.11.
**v0.6.0**
Features:
1. Added support for Encode ORM models https://github.com/encode/orm
2. Added support for Piccolo ORM models https://piccolo-orm.readthedocs.io/en/latest/piccolo/schema/defining.html
**v0.5.1**
Fixes:
1. Sometimes multiple parents names in "parents" output was joined in one string - fixed.
**v0.5.0**
1. Added base support for Pydal tables definitions
2. Added support for python list syntax like []
**v0.4.0**
1. return tuples (multiple values) is parsed correctly now
2. symbols like `*&^%$#!±~`§<>` now does not cause any errors
3. classes without any args does not cause an error anymore
**v0.3.0**
1. Added cli - `pmp` command with args -d, --dump
2. Added support for simple Django ORM models
3. Added base support for pure Python Classes
**v0.2.0**
1. Added support for Dataclasses
2. Added parse_from_file method
3. Added correct work with types with comma inside, like: Union[dict, list] or Union[dict, list, tuple, anything]
**v0.1.1**
1. Added base parser logic & tests for Pydantic, Enums, SQLAlchemy Models, GinoORM models, TortoiseORM models