diff --git a/CHANGES.txt b/CHANGES.txt index a6078f0..c79bea3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,23 @@ +0.1a25 +------ + +- [feature] Added "sqlerror" tween which, in combination with ``pyramid_tm``, + can allow Pyramid apps to gracefully handle database server restarts. Any + transaction which fails due to a disconnection from the server may be + attempted more than once. The assumption is that the second attempt will + succeed, since the underlying connection pool will have been invalidated upon + the first failure. + +- [feature] Added ``PHONE_TYPE`` enumeration. + +- [general] Added some ``__unicode__()`` methods to database models. + +- [bug] Fixed CSS in the ``progress.mako`` template. + +- [feature] Improved the ``load_spec()`` function so that it raises an + ``InvalidSpec`` exception if the spec doesn't contain exactly one colon. + 0.1a24 ------