diff options
| -rw-r--r-- | CHANGES.rst | 11 | ||||
| -rw-r--r-- | pyramid/config/routes.py | 1 |
2 files changed, 8 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 7c442aa1a..aeb7c3f9a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -40,9 +40,9 @@ Features Bug Fixes --------- -- Set appropriate ``code`` and ``title`` attributes on the ``HTTPClientError`` and - ``HTTPServerError`` exception classes. This prevents inadvertently returning a 520 - error code. +- Set appropriate ``code`` and ``title`` attributes on the ``HTTPClientError`` + and ``HTTPServerError`` exception classes. This prevents inadvertently + returning a 520 error code. See https://github.com/Pylons/pyramid/pull/3280 - Replace ``webob.acceptparse.MIMEAccept`` from WebOb with @@ -61,6 +61,11 @@ Backward Incompatibilities depending on it directly within your project. See https://github.com/Pylons/pyramid/pull/3140 +- Remove the ``permission`` argument from + ``pyramid.config.Configurator.add_route``. This was an argument left over + from a feature removed in Pyramid 1.5 and has had no effect since then. + See https://github.com/Pylons/pyramid/pull/3299 + - Modify the builtin session implementations to set ``SameSite='Lax'`` on cookies. This affects ``pyramid.session.BaseCookieSessionFactory``, ``pyramid.session.SignedCookieSessionFactory``, and diff --git a/pyramid/config/routes.py b/pyramid/config/routes.py index 598af300f..b00886e5d 100644 --- a/pyramid/config/routes.py +++ b/pyramid/config/routes.py @@ -24,7 +24,6 @@ class RoutesConfiguratorMixin(object): def add_route(self, name, pattern=None, - permission=None, factory=None, for_=None, header=None, |
