summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2015-09-29 20:25:31 -0400
committerChris McDonough <chrism@plope.com>2015-09-29 20:25:31 -0400
commit20d9350e61bc86e019c42b866c0b85cd274438bb (patch)
treefefd399f5b089f5edb7bafc7d07d4cf3598a0fc4 /CHANGES.txt
parentb9b68fed103b18a19a0c0935365abbdd4a720dbc (diff)
parent7d5d899f5043b381348bd349792fda6da957ab50 (diff)
downloadpyramid-20d9350e61bc86e019c42b866c0b85cd274438bb.tar.gz
pyramid-20d9350e61bc86e019c42b866c0b85cd274438bb.tar.bz2
pyramid-20d9350e61bc86e019c42b866c0b85cd274438bb.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 98fa7f85a..7c8a9080a 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -209,6 +209,17 @@ Bug Fixes
Deprecations
------------
+- The ``pserve`` command's daemonization features have been deprecated. This
+ includes the ``[start,stop,restart,status]`` subcommands as well as the
+ ``--daemon``, ``--stop-server``, ``--pid-file``, and ``--status`` flags.
+
+ Please use a real process manager in the future instead of relying on the
+ ``pserve`` to daemonize itself. Many options exist including your Operating
+ System's services such as systemd or upstart, as well as the excellent
+ and simple supervisord.
+
+ See https://github.com/Pylons/pyramid/pull/1641
+
- Renamed the ``principal`` argument to ``pyramid.security.remember()`` to
``userid`` in order to clarify its intended purpose.
See https://github.com/Pylons/pyramid/pull/1399