Publ: Development Blog

Entries tagged release

Publ v0.7.18

Posted Tuesday, December 27 at 10:29 AM (a year ago)

0.7.17 had a critical bug in view.deleted where it wasn’t properly filtering query parameters, so that version has been yanked and 0.7.18 has been released in order to fix said bug.

Publ v0.7.17

Posted Monday, December 26 at 9:28 PM (a year ago)

Today marks the release of Publ v0.7.17. Aside from the usual upstream-dependency changes and progressive delinting, this release fixes a subtle but annoying issue with how View.link works. There’s a longer description of the issue on GitHub but the upshot of this is that now the parameters passed into a View object get properly validated, meaning that if you’re doing something like:

<a href="{{view.previous(template='bob')}}>">

this will fail, as the correct syntax is (and always has been)

<a href="{{view.previous.link(template='bob')}}>">

Publ v0.7.16 released

Posted Friday, December 2 at 5:22 PM (a year ago)

Minor release for Publ, wherein I fixed a single bug; namely, loading a category without the trailing / was causing an erroneous redirect, due to an apparent change in the depths of Flask.

This is one of those things where I really need to refactor Publ to make it properly unit-testable, gosh darnit.