summaryrefslogtreecommitdiff
path: root/docs/whatsnew-1.10.rst
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2018-10-17 20:41:02 -0500
committerMichael Merickel <michael@merickel.org>2018-10-17 20:45:01 -0500
commitd3fe14781747539c470089208fa7aeb1b2cbbd6f (patch)
tree7bdd86bbe7b2526805b1aa11a485f00159be8cb9 /docs/whatsnew-1.10.rst
parent66a767f0e1911543b77a4dd768821ee2ed40390a (diff)
downloadpyramid-d3fe14781747539c470089208fa7aeb1b2cbbd6f.tar.gz
pyramid-d3fe14781747539c470089208fa7aeb1b2cbbd6f.tar.bz2
pyramid-d3fe14781747539c470089208fa7aeb1b2cbbd6f.zip
fix the dummy request to support the new accept apis
Diffstat (limited to 'docs/whatsnew-1.10.rst')
-rw-r--r--docs/whatsnew-1.10.rst13
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/whatsnew-1.10.rst b/docs/whatsnew-1.10.rst
index b14771c9d..53eed6f87 100644
--- a/docs/whatsnew-1.10.rst
+++ b/docs/whatsnew-1.10.rst
@@ -87,14 +87,19 @@ Deprecations
Backward Incompatibilities
--------------------------
-- 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.
+- Removed ``pyramid.config.Configurator.set_request_property`` which had been deprecated since :app:`Pyramid` 1.5.
+ Instead use :meth:`pyramid.config.Configurator.add_request_method` with ``reify=True`` or ``property=True``.
+ See https://github.com/Pylons/pyramid/pull/3368
+
+- 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 https://github.com/Pylons/pyramid/pull/3140
- Remove the ``permission`` argument from :meth:`pyramid.config.Configurator.add_route`.
This was an argument left over from a feature removed in :app:`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.
+- Modified the builtin session implementations to set ``SameSite='Lax'`` on cookies.
This affects :func:`pyramid.session.BaseCookieSessionFactory`, :func:`pyramid.session.SignedCookieSessionFactory`, and :func:`pyramid.session.UnencryptedCookieSessionFactoryConfig`.
See https://github.com/Pylons/pyramid/pull/3300
@@ -104,10 +109,6 @@ Backward Incompatibilities
- :meth:`pyramid.config.Configurator.add_notfound_view` uses default redirect class exception :class:`pyramid.httpexceptions.HTTPTemporaryRedirect` instead of previous :class:`pyramid.httpexceptions.HTTPFound`.
See https://github.com/Pylons/pyramid/pull/3328
-- Removed ``pyramid.config.Configurator.set_request_property`` which had been deprecated since :app:`Pyramid` 1.5.
- Instead use :meth:`pyramid.config.Configurator.add_request_method` with ``reify=True`` or ``property=True``.
- See https://github.com/Pylons/pyramid/pull/3368
-
- Removed the ``principal`` keyword argument from :func:`pyramid.security.remember` which had been deprecated since :app:`Pyramid` 1.6 and replaced by the ``userid`` argument.
See https://github.com/Pylons/pyramid/pull/3369