summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2017-04-30 18:43:40 -0500
committerGitHub <noreply@github.com>2017-04-30 18:43:40 -0500
commite78aa24cda85368c3507c145e1e604e7335778dc (patch)
treee5c26bf68ff50158818e769df7eef2d33462f7ab /CHANGES.txt
parentab04b7be473d0145d9f306583c4d529ee8abbe02 (diff)
parentf454b80b0f6e6442fa27e48b7e1e38c5a7cbef03 (diff)
downloadpyramid-e78aa24cda85368c3507c145e1e604e7335778dc.tar.gz
pyramid-e78aa24cda85368c3507c145e1e604e7335778dc.tar.bz2
pyramid-e78aa24cda85368c3507c145e1e604e7335778dc.zip
Merge pull request #2985 from mmerickel/plaster
migrate pyramid to use plaster
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt28
1 files changed, 23 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index a2e2d6db1..075d3ffd9 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,14 +1,32 @@
unreleased
==========
-Features
---------
+Major Features
+--------------
+
+- The file format used by all ``p*`` command line scripts such as ``pserve``
+ and ``pshell``, as well as the ``pyramid.paster.bootstrap`` function
+ is now replaceable thanks to a new dependency on
+ `plaster <http://docs.pylonsproject.org/projects/plaster/en/latest/>`_.
+
+ For now, Pyramid is still shipping with integrated support for the
+ PasteDeploy INI format by depending on the ``plaster_pastedeploy`` binding.
+
+ See https://github.com/Pylons/pyramid/pull/2985
- Added an execution policy hook to the request pipeline. An execution
policy has the ability to control creation and execution of the request
- objects before they enter rest of the pipeline. This means for a given
- request that the policy may create more than one request for retry
- purposes. See https://github.com/Pylons/pyramid/pull/2964
+ objects before they enter the rest of the pipeline. This means for a single
+ request environ the policy may create more than one request object.
+
+ The first library to use this feature is
+ `pyramid_retry
+ <http://docs.pylonsproject.org/projects/pyramid-retry/en/latest/>`_.
+
+ See https://github.com/Pylons/pyramid/pull/2964
+
+Features
+--------
- Support an ``open_url`` config setting in the ``pserve`` section of the
config file. This url is used to open a web browser when ``pserve --browser``