v2.3.0
Improvements:
- Support custom filename in
redmine.upload() - Support for
get()andupdate()operations for/my/accountendpoint which doesn't require admin privileges by usingmeas an id, i.e.redmine.user.get('me')orredmine.user.update('me', firstname='John')(requires Redmine >= 4.1.0) - News
create(),update(),delete()operations support (requires Redmine >= 4.1.0) - ResourceSet's
export()method now supportscolumnskeyword argument which can be either an iterable of column names, an "all" string which tells Python-Redmine to export all available columns, "all_gui" string for GUI like behaviour or iterable of elements with "all_gui" string and additional columns to export - Added support for special characters in WikiPage titles (Issue #222) (thanks to Radek Czajka)
- Added
return_responseandignore_responseparameters to engine which allow to skip response processing and speed up the create/update/delete operation in case response body isn't needed (see docs for details)
Changes:
- Backwards Incompatible: Requests version required >= 2.23.0
- Backwards Incompatible: Removed Python 3.4 support as it's not supported by Requests anymore
Bugfixes:
- User's
send_informationfield wasn't sent correctly to Redmine so account information emails were never sent (Issue #227) (thanks to wodny) - Project resource
default_versionattribute was returned as a dict instead of being converted to Resource object - Resource object was leaking memory during initialization (Issue #257) (thanks to yihli)
Documentation:
- Introduced detailed parameter list for
redmine.session - Mentioned support for
adminin User's resource create/update