- Add a
_depth
and_category
arguments to all of the venusian decorators. The_category
argument can be used to affect which actions are registered when performing aconfig.scan(..., category=...)
with a specific category. The_depth
argument should be used when wrapping the decorator in your own. This change affectspyramid.view.view_config
,pyramid.view.exception_view_config
,pyramid.view.forbidden_view_config
,pyramid.view.notfound_view_config
,pyramid.events.subscriber
andpyramid.response.response_adapter
decorators. See Pylons#3105 and Pylons#3122 - Fix the
pyramid.request.Request
class name after usingset_property
orconfig.add_request_method
such that thestr(request.__class__)
would appear aspyramid.request.Request
instead ofpyramid.util.Request
. See Pylons#3129 - In
cherrypy_server_runner
, prefer imports from thecheroot
package over the legacy imports from cherrypy.wsgiserver. See Pylons#3235 - Add a context manager
route_prefix_context
to thepyramid.config.Configurator
to allow for convenient setting of the route_prefix forinclude
andadd_route
calls inside the context. See Pylons#3279 - Modify the builtin session implementations to support
SameSite
options on cookies and set the default to'Lax'
. This affectspyramid.session.BaseCookieSessionFactory
,pyramid.session.SignedCookieSessionFactory
, andpyramid.session.UnencryptedCookieSessionFactoryConfig
. See Pylons#3300 - Modify
pyramid.authentication.AuthTktAuthenticationPolicy
andpyramid.csrf.CookieCSRFStoragePolicy
to support the SameSite option on cookies and set the default to'Lax'
. See Pylons#3319 - Added new
pyramid.httpexceptions.HTTPPermanentRedirect
exception/response object for a HTTP 308 redirect. See Pylons#3302 - Within
pshell
, allow the user-definedsetup
function to be a generator, in which case it may wrap the command's lifecycle. See Pylons#3318 - Within
pshell
, variables defined by the[pshell]
settings are available within the user-definedsetup
function. See Pylons#3318 - Add support for Python 3.7. Add testing on Python 3.8 with allowed failures. See Pylons#3333
- Set appropriate
code
andtitle
attributes on theHTTPClientError
andHTTPServerError
exception classes. This prevents inadvertently returning a 520 error code. See Pylons#3280 - Replace
webob.acceptparse.MIMEAccept
from WebOb withwebob.acceptparse.create_accept_header
in the HTTP exception handling code. The oldMIMEAccept
has been deprecated. The new methods follow the RFC's more closely. See Pylons#3251 - Catch extra errors like
AttributeError
when unpickling "trusted" session cookies with bad pickle data in them. This would occur when sharing a secret between projects that shouldn't actually share session cookies, like when reusing secrets between projects in development. See Pylons#3325
- On Python 3.4+ the
repoze.lru
dependency is dropped. If you were using this package directly in your apps you should make sure that you are depending on it directly within your project. See Pylons#3140 - Remove the
permission
argument frompyramid.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 Pylons#3299 - Modify the builtin session implementations to set
SameSite='Lax'
on cookies. This affectspyramid.session.BaseCookieSessionFactory
,pyramid.session.SignedCookieSessionFactory
, andpyramid.session.UnencryptedCookieSessionFactoryConfig
. See Pylons#3300 - Variables defined in the
[pshell]
section of the settings will no longer override those set by thesetup
function. See Pylons#3318 pyramid.config.Configurator.add_notfound_view
uses default redirect class exceptionpyramid.httpexceptions.HTTPTemporaryRedirect
instead of previouspyramid.httpexceptions.HTTPFound
. See Pylons#3328
- Add support for alembic to the pyramid-cookiecutter-alchemy cookiecutter and update the wiki2 tutorial to explain how it works. See Pylons#3307 and Pylons/pyramid-cookiecutter-alchemy#7
- Bump Sphinx to >= 1.7.4 in setup.py to support
emphasize-lines
in PDFs and to pave the way for xelatex support. See Pylons#3271, Pylons#667, and Pylons#2572