You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+120Lines changed: 120 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,126 @@ Releases prior to 0.3.0 were “best effort” filled out, but are missing
25
25
some info. If you see your contribution missing info, please open a PR
26
26
on the Changelog!
27
27
28
+
.. _section-1.3.3:
29
+
1.3.3
30
+
-----
31
+
.. _enhancements-1.3.3
32
+
Enhancements
33
+
~~~~~~~~~~~~
34
+
35
+
::
36
+
37
+
* Drop support for Python 3.9 (EOL); require Python 3.10 or newer. [python-restx]
38
+
* Declare and test support for Python 3.13 and 3.14 (CPython). [python-restx]
39
+
* Expand GitHub Actions and tox coverage: PyPy 3.11 with both Flask 2.x and Flask 3.x; exclude Flask 2 on 3.13/3.14 where unsupported. [python-restx]
40
+
* Refresh test and release tooling (pytest, pytest-benchmark, pytest-profiling, twine) for newer interpreters. GitHub Actions pre-installs compatible ``rpds-py`` (and ``readme-renderer`` for PyPy 3.11) for PyPy jobs; tox pins ``rpds-py`` for local PyPy envs. [python-restx]
41
+
42
+
.. _bug_fixes-1.3.3
43
+
Bug Fixes
44
+
~~~~~~~~~
45
+
46
+
::
47
+
48
+
* Adjust field tests for Python 3.14 (``staticmethod`` around ``functools.partial`` used as a class attribute). [python-restx]
49
+
50
+
.. _section-1.3.1:
51
+
1.3.1
52
+
-----
53
+
.. _bug_fixes-1.3.1
54
+
Bug Fixes
55
+
~~~~~~~~~
56
+
57
+
::
58
+
59
+
* Add python version requirement on setup.py (#586) [jason-the-j]
60
+
* Add a thread lock to avoid concurrent schema construction. (#545) [peter-doggart]
61
+
* Fix Nested field schema generation for nullable fields. (#638) [peter-doggart]
62
+
* Fix reference resolution for definitions in schema. (#553) [peter-doggart]
63
+
64
+
.. _section-1.3.0:
65
+
1.3.0
66
+
-----
67
+
.. _bug_fixes-1.3.0
68
+
Bug Fixes
69
+
~~~~~~~~~
70
+
71
+
::
72
+
73
+
* Fixing werkzeug 3 deprecated version import. Import is replaced by new style version check with importlib (#573) [Ryu-CZ]
74
+
* Fixing flask 3.0+ compatibility of `ModuleNotFoundError: No module named 'flask.scaffold'` Import error. (#567) [Ryu-CZ]
75
+
* Fix wrong status code and message on responses when handling `HTTPExceptions` (#569) [lkk7]
76
+
* Add flask 2 and flask 3 to testing matrix. [foarsitter]
77
+
* Update internally pinned pytest-flask to 1.3.0 for Flask >=3.0.0 support. [peter-doggart]
78
+
* Python 3.12 support. [foarsitter]
79
+
* Fix wrong status code and message on responses when handling HTTPExceptions. [ikk7]
80
+
* Update changelog Flask version table. [peter-doggart]
81
+
* Remove temporary package version restrictions for flask < 3.0.0, werkzeug and jsonschema (jsonschema future deprecation warning remains. See #553). [peter-doggart]
82
+
83
+
.. _section-1.2.0:
84
+
1.2.0
85
+
-----
86
+
.. _bug_fixes-1.2.0
87
+
Bug Fixes
88
+
~~~~~~~~~
89
+
90
+
::
91
+
92
+
* Fixing test as HTTP Header MIMEAccept expects quality-factor number in form of `X.X` (#547) [chipndell]
93
+
* Introduce temporary restrictions on some package versions. (`flask<3.0.0`, `werkzeug<3.0.0`, `jsonschema<=4.17.3`) [peter-doggart]
94
+
95
+
96
+
.. _enhancements-1.2.0:
97
+
98
+
Enhancements
99
+
~~~~~~~~~~~~
100
+
101
+
::
102
+
103
+
* Drop support for python 3.7
104
+
105
+
106
+
.. _section-1.1.0:
107
+
1.1.0
108
+
-----
109
+
110
+
.. _bug_fixes-1.1.0
111
+
Bug Fixes
112
+
~~~~~~~~~
113
+
114
+
::
115
+
116
+
* Update Swagger-UI to latest version to fix several security vulnerabiltiies. [peter-doggart]
117
+
* Add a warning to the docs that nested Blueprints are not supported. [peter-doggart]
118
+
* Add a note to the docs that flask-restx always registers the root (/) path. [peter-doggart]
119
+
120
+
.. _section-1.0.6:
121
+
1.0.6
122
+
-----
123
+
124
+
.. _bug_fixes-1.0.6
125
+
Bug Fixes
126
+
~~~~~~~~~
127
+
128
+
::
129
+
130
+
* Update Black to 2023 version [peter-doggart]
131
+
* Fix minor bug introduced in 1.0.5 that changed the behaviour of how flask-restx propagates exceptions. (#512) [peter-doggart]
132
+
* Update PyPi classifer to Production/Stable. [peter-doggart]
133
+
* Add support for Python 3.11 (requires update to invoke ^2.0.0) [peter-doggart]
134
+
135
+
.. _section-1.0.5:
136
+
1.0.5
137
+
-----
138
+
139
+
.. _bug_fixes-1.0.5
140
+
Bug Fixes
141
+
~~~~~~~~~
142
+
143
+
::
144
+
145
+
* Fix failing pypy python setup in github actions
146
+
* Fix compatibility with upcoming release of Flask 2.3+. (#485) [jdieter]
0 commit comments