Releases: swistakm/graceful
Releases · swistakm/graceful
0.6.3
0.6.1
0.6.0
0.5.0
0.4.1
0.4.0
0.3.0
New features:
- Bulk resource creation added (see #30)
- Support for optional contexts (see design issue, #33)
Backwards-compatible API changes:
- All resource classes are by default non-context-aware.
Other changes:
- Documentation cleanup and reorganisation
Notes: Starting from 0.3.0
version the implicit declarations of non-context-aware resource classes raise FutureWarning
. Till 1.0.0
all resource classes should explicitly state if they are context-aware or not using the with_context
class definition keyword (similar to metaclass
Python 3 keyword). After 1.0.0
graceful version release all resource classes will be context-aware by default and implicit declaration will not raise any warnings. See documentation on working with falcon context objects.
0.2.0
New features:
BoolParam
parameter class added (thanks to @tomislater, #25)- Parameter classes now support validation in same manner as field classes (see param validation docs)
- Parameters with
many=True
option got support for custom containers (see custom containers docs, #16)
Backwards compatible API changes:
req
andresp
arguments fordescribe()
method of resource classes are now optional to ease process of documentation generation (#10)
Improvements: