diff options
| author | Michael Merickel <michael@merickel.org> | 2017-06-18 00:18:13 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2017-06-18 00:18:13 -0500 |
| commit | 5c437abba0926f6093efbd481e49763de2436665 (patch) | |
| tree | c75e6fc6a54e8cb8b3a9065e7da822dcc00fff01 | |
| parent | 83a3fcec68bfa998bce7f69f61bc2e4ec4a31da1 (diff) | |
| download | pyramid-5c437abba0926f6093efbd481e49763de2436665.tar.gz pyramid-5c437abba0926f6093efbd481e49763de2436665.tar.bz2 pyramid-5c437abba0926f6093efbd481e49763de2436665.zip | |
add changelog for #3088
| -rw-r--r-- | CHANGES.txt | 4 | ||||
| -rw-r--r-- | docs/whatsnew-1.9.rst | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index fdd9dd884..939b777ab 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -27,6 +27,10 @@ unreleased subclass of ``pyramid.security.Denied``. See https://github.com/Pylons/pyramid/pull/3084 +- Add a ``quote_via`` argument to ``pyramid.encode.urlencode`` to follow + the stdlib's version and enable custom quoting functions. + See https://github.com/Pylons/pyramid/pull/3088 + 1.9a2 (2017-05-09) ================== diff --git a/docs/whatsnew-1.9.rst b/docs/whatsnew-1.9.rst index 0c3385a66..9e9c1614d 100644 --- a/docs/whatsnew-1.9.rst +++ b/docs/whatsnew-1.9.rst @@ -41,6 +41,8 @@ Minor Feature Additions - Normalize the permission results to a proper class hierarchy. :class:`pyramid.security.ACLAllowed` is now a subclass of :class:`pyramid.security.Allowed` and :class:`pyramid.security.ACLDenied` is now a subclass of :class:`pyramid.security.Denied`. See https://github.com/Pylons/pyramid/pull/3084 +- Add a ``quote_via`` argument to :func:`pyramid.encode.urlencode` to follow the stdlib's version and enable custom quoting functions. See https://github.com/Pylons/pyramid/pull/3088 + Deprecations ------------ |
