summaryrefslogtreecommitdiff
path: root/CHANGES.txt
AgeCommit message (Collapse)Author
2013-12-13Update CHANGESBert JW Regeer
2013-12-12put change note in the right release sectionChris McDonough
2013-12-12add url to issueChris McDonough
2013-12-12Merge branch 'jsonp-syntax' of github.com:wichert/pyramid into ↵Chris McDonough
wichert-jsonp-syntax
2013-12-10prep for 1.5a3Chris McDonough
2013-12-10add note about non-bw-compat between SignedCookieSessionFactory and ↵Chris McDonough
UnencryptedCookieSessionFactory. Ref #1200.
2013-12-10Fix JSONP syntax errorWichert Akkerman
2013-12-10use CookieProfile from webob in authentication module, add support for new ↵Chris McDonough
domain attribute on dummy request, depend on webob 1.3 or better
2013-11-27revert my reversionChris McDonough
2013-11-27change the behavior of parse_url_overrides and resource_url to not quote a ↵Chris McDonough
_query/query argument supplied as a string and document in changelog
2013-11-27Merge branch 'feature.custom-query-strings'Chris McDonough
2013-11-18remove liesChris McDonough
2013-11-12update docsMichael Merickel
2013-11-09undeprecate remember/forget functions and remove ↵Chris McDonough
remember_userid/forget_userid methods from request
2013-10-28Bring change log, API docs, and deprecations in line with normal ↵Chris McDonough
policies/processes
2013-10-27Security APIs on pyramid.request.RequestMatt Russell
The pyramid.security Authorization API function has_permission is made available on the request. The pyramid.security Authentication API functions are now available as properties (unauthenticated_userid, authenticated_userid, effective_principals) and methods (remember_userid, forget_userid) on pyramid.request.Request. Backwards compatibility: For each of the APIs moved to request method or property, the original API in the pyramid.security module proxies to the request. Reworked tests to check module level b/c wrappers call through to mixins for each API. Tests that check no reg on request now do the right thing. Use a response callback to set the request headers for forget_userid and remember_userid. Update docs. Attempt to improve a documentation section referencing the pyramid.security.has_permission function in docs/narr/resources.rst Ensures backwards compatiblity for `pyramid.security.forget` and `pyramid.security.remember`.
2013-10-22update changelogMichael Merickel
2013-10-20fix merge conflict and prevent warning from showing up during testing (dont ↵Chris McDonough
import ITemplateRenderer)
2013-10-20Merge branch 'master' into fix.basic-authentication-encodingsChris McDonough
2013-10-20fix merge conflictChris McDonough
2013-10-20rewording about deprecation and cookie compatibilityChris McDonough
2013-10-19modify the docs for the renderer interfacesMichael Merickel
2013-10-19update changelogMichael Merickel
2013-10-19Merge branch 'master' into feature.signed-cookie-sessionMichael Merickel
2013-10-19reference github issuesMichael Merickel
2013-10-19update doc referencesMichael Merickel
2013-10-19updated changelogMichael Merickel
2013-10-19add deprecation for old cookie factoryMichael Merickel
2013-10-09update changelogMichael Merickel
2013-10-08remove unused renderer argChris McDonough
2013-10-02correct the explanation of the behavior changeChris McDonough
2013-10-02fix merge conflictChris McDonough
2013-10-02fix merge conflictChris McDonough
2013-10-02- Removed mention of ``pyramid_beaker`` from docs. Beaker is no longerChris McDonough
maintained. Point people at ``pyramid_redis_sessions`` instead.
2013-10-01- Fix the ``principals_allowed_by_permission`` method ofChris McDonough
``ACLAuthorizationPolicy`` so it anticipates a callable ``__acl__`` on resources. Previously it did not try to call the ``__acl__`` if it was callable.
2013-10-01- Fix the ``pcreate`` script so that when the target directory name ends with aChris McDonough
slash it does not produce a non-working project directory structure. Previously saying ``pcreate -s starter /foo/bar/`` produced different output than saying ``pcreate -s starter /foo/bar``. The former did not work properly.
2013-09-28set custom request methods when doing a pview lookupMichael Merickel
2013-09-27support a None value in query string parametersMichael Merickel
2013-09-24Added a note to CHANGES.txt, push the quick tutorial.Paul Everitt
2013-09-22fix rst rendering of changesChris McDonough
2013-09-22prep for 1.5a2Chris McDonough
2013-09-22better description of mako/chameleon bw incompat in changelog, update ↵Chris McDonough
whatsnew for 1.5
2013-09-22typoChris McDonough
2013-09-11wordingChris McDonough
2013-09-09- The ``pyramid.config.Configurator.set_request_property`` method now issuesChris McDonough
a deprecation warning when used. It had been docs-deprecated in 1.4 but did not issue a deprecation warning when used.
2013-09-09wordingChris McDonough
2013-09-09add note about requiring a later pyramid_debugtoolbar package if you use 1.5a2+Chris McDonough
2013-09-08- The ``renderer_globals_factory`` argument to theChris McDonough
``pyramid.config.Configurator` constructor and its ``setup_registry`` method has been removed. The ``set_renderer_globals_factory`` method of ``pyramid.config.Configurator`` has also been removed. The (internal) ``pyramid.interfaces.IRendererGlobals`` interface was also removed. These arguments, methods and interfaces had been deprecated since 1.1. Use a ``BeforeRender`` event subscriber as documented in the "Hooks" chapter of the Pyramid narrative documentation instead of providing renderer globals values to the configurator.
2013-09-08- Removed ancient backwards compatibily hack inChris McDonough
``pyramid.traversal.DefaultRootFactory`` which populated the ``__dict__`` of the factory with the matchdict values for compatibility with BFG 0.9.
2013-09-08- Removed the ability to influence and query a ``pyramid.request.Request``Chris McDonough
object as if it were a dictionary. Previously it was possible to use methods like ``__getitem__``, ``get``, ``items``, and other dictlike methods to access values in the WSGI environment. This behavior had been deprecated since Pyramid 1.1. Use methods of ``request.environ`` (a real dictionary) instead.