forked from flasgger/flasgger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHISTORY
More file actions
110 lines (87 loc) · 3.12 KB
/
HISTORY
File metadata and controls
110 lines (87 loc) · 3.12 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
Changelog
=========
These are all the changes in Flasgger since the 0.6.0 release
0.8.3
-----
- Small update to release target (using twine)
0.8.2
-----
- Update index.html
- Update index.html
- Merge pull request #180 from anilpai/anilpai-patch-1
- Update jwt_auth.py
- Merge pull request #182 from anilpai/patch-1
- Avoid inclusion of empty definition dict
- Merge pull request #184 from mmichaels01/master
- Fix README.md error
- Merge pull request #186 from phylee/master
- Fix get_schema exception message
- Merge pull request #187 from boris-42/fix_get_schema_exc_message
- Fix erroneous extra definitions objects
- adding support for requestBody
- fixing python 2.7 incompliant syntax
- Merge pull request #191 from zrayn/add-requestBody-support
- Merge pull request #190 from abstiles/fix-extra-definitions
- Validate examples according to Swagger spec
- Correct example's declaration as OpenAPI 3.0
- Correct reference of invalid type int32
- Make example python filter more strict
- Fall back to simpler validation for OpenAPI 3
- Skip validation of intentionally invalid example
- Merge pull request #193 from abstiles/enhance-tests
0.8.1
-----
JWT - Flask_jwt support added
0.8.0
-----
- Reverted the automatic set of json_encoder and allowed user to import LAzyJSONEncoder (tks @SBillion)
0.7.0
-----
- Added support for LazyString https://github.com/rochacbruno/flasgger/issues/158
0.6.6
-----
- Support custom validation functions
- (TODO) Allow the caller to handle validation exceptions (solves #122)
- Swagger::get_schema method to get defined schemas as python dicts
- Updated static UI versions from latest github distribution
- Better test for `import` functionality
0.6.5
-----
- Suporting for decorating FlasggerViews (to protect with login etc)
- description and summary are now optional
- specs_route fix to be customized `/specs_route` to `/anything`
- enable/disable swagger UI (if you only need specs json)
- attempt to fix #102 allowing `import:` from subfolders
0.6.4
-----
- template_file argument added to Swagger class
0.6.3
-----
- HOTFIX: Support views using `decorator` package (#80)
0.6.2
-----
- introduced tests on Travis CI (examples apps as test cases)
- Fix blueprint support (examples/blueprint_example.py)
- Added `prefix_ids = True` for compat with <= 05.14 (see examples/compat.py)
- Added `import: another.yml` to inherit YAML files.
- Fix missing `lib` static folder
- Added support for Flask RESTful (examples/restful.py)
- Added APISpec support (examples/apispec.py)
- Fix error in case of empty MethodViews
0.6.1
-----
- HOTFIX: added six (missing requirement)
0.6.0
-----
- Fixed support for MethodViews
- Added swag.definition to class based definitions
- Added support for docs in dispatch_request (for FlaskRESTful compat)
- Upgrades Swagger UI
- Added `uiversion = 3` to support new experimental swagger UI
- Improved `validate` to abort with error so no need for try: validate...
- `validate` does not require `root` argument
- Definitions is no more prefixed with fucntion and http method names
- Dictionary can be used as specs in `@swag_from`
0.5.14
------
No history for older versions