Patchwork v2.0.0-rc3 Available

2017-05-30 Thread Stephen Finucane
The third release candidate of the upcoming Patchwork v2.0.0 release is now available: https://github.com/getpatchwork/patchwork/releases/tag/v2.0.0-rc3 This release introduces a number of fixes on top of rc2 that were found during testing of same: - [SECURITY] The

Re: [PATCH 0/3] Allow downloading of cover letter mboxes

2017-05-30 Thread Stephen Finucane
On Fri, 2017-05-26 at 09:34 +0100, Stephen Finucane wrote: > While we haven't totally integrated cover letters in the web UI yet > (planned for 2.1), we do expose these in a limited way and fully > expose them via the REST API. For the latter case, it should be > possible to download cover letters

Re: [PATCH 0/4] Resolve some issues with series-ification

2017-05-30 Thread Stephen Finucane
On Wed, 2017-05-24 at 07:02 +0100, Stephen Finucane wrote: > After watching the LKML mails pouring into daxten's Patchwork > instance [1] for a few days, I've seen a couple of oddities that have > broken series support in various ways. This series seeks to address > the two biggest issues: mails

Re: [PATCH] docs: Document the various management commands available

2017-05-30 Thread Thomas Monjalon
30/05/2017 17:15, Stephen Finucane: > As requested. > > Signed-off-by: Stephen Finucane > Reported-by: Thomas Monjalon > Closes-bug: #77 Thanks Stephen > + ./manage.py cron > + > +Run periodic Patchwork functions: send notifications and expire

Re: [PATCH] docs: Document the various management commands available

2017-05-30 Thread Stephen Finucane
On Tue, 2017-05-30 at 16:15 +0100, Stephen Finucane wrote: > As requested. > > Signed-off-by: Stephen Finucane > Reported-by: Thomas Monjalon > Closes-bug: #77 As a docs patch, I'm going to go right ahead and merge this. Stephen

[PATCH] docs: Document the various management commands available

2017-05-30 Thread Stephen Finucane
As requested. Signed-off-by: Stephen Finucane Reported-by: Thomas Monjalon Closes-bug: #77 --- docs/deployment/installation.rst | 6 ++ docs/deployment/management.rst| 134 ++ docs/index.rst

Re: [RFC PATCH] REST: enable token authentication

2017-05-30 Thread Stephen Finucane
On Tue, 2017-05-30 at 16:35 +1000, Andrew Donnellan wrote: > On 30/05/17 16:26, Russell Currey wrote: > > What exactly does BA get used for at the moment? > > REST requests that update status, e.g. sending a PATCH request on a  > patch to change status from "new" to "under-review", or something >

Re: [RFC PATCH] REST: enable token authentication

2017-05-30 Thread Andrew Donnellan
On 30/05/17 16:26, Russell Currey wrote: What exactly does BA get used for at the moment? REST requests that update status, e.g. sending a PATCH request on a patch to change status from "new" to "under-review", or something like that. -- Andrew Donnellan OzLabs, ADL Canberra

Re: [RFC PATCH] REST: enable token authentication

2017-05-30 Thread Russell Currey
On Thu, 2017-05-25 at 22:26 +0100, Stephen Finucane wrote: > On Thu, 2017-05-25 at 18:47 +1000, Andrew Donnellan wrote: > > Token authentication is generally viewed as a more secure option for > > API > > authentication than storing a username and password. > > > > Django REST Framework gives us