From f827882a98881c81794ceebe22c63c98f140145a Mon Sep 17 00:00:00 2001 From: Igor Stroh Date: Thu, 11 Jun 2015 00:49:06 +0200 Subject: added appropriate contributors and changes entries --- CHANGES.txt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 87e9f1f3a..9ed486b26 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -4,6 +4,12 @@ Features -------- +- pcreate will now ask for confirmation if invoked with + an argument for a project name that already exists or + is importable in the current environment. + See https://github.com/Pylons/pyramid/issues/1357 and + https://github.com/Pylons/pyramid/pull/1837 + - Make it possible to subclass ``pyramid.request.Request`` and also use ``pyramid.request.Request.add_request.method``. See https://github.com/Pylons/pyramid/issues/1529 -- cgit v1.2.3 From e0a230a8006c11097469510c47a84fd9b107b748 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Mon, 31 Aug 2015 10:09:27 -0500 Subject: update changelog --- CHANGES.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 9ed486b26..98fa7f85a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -201,6 +201,11 @@ Bug Fixes default to an iterable instead of ``None``. It may be checked for a length of 0. This was the behavior in 1.5. +- ``pyramid.httpexceptions.HTTPException`` now defaults to + ``520 Unknown Error`` instead of ``None None`` to conform with changes in + WebOb 1.5. + See https://github.com/Pylons/pyramid/pull/1865 + Deprecations ------------ -- cgit v1.2.3 From e0a40abac5322f06022799f55f339d6f49b5abd8 Mon Sep 17 00:00:00 2001 From: John Anderson Date: Sun, 6 Sep 2015 15:35:10 -0700 Subject: Added an entry to changelog --- CHANGES.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 98fa7f85a..060af5bdb 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -134,6 +134,9 @@ Features that as the response class instead of the default ``HTTPFound``. See https://github.com/Pylons/pyramid/pull/1610 +- Additional shells for ``pshell`` can now be registered as entrypoints. See + https://github.com/Pylons/pyramid/pull/1891 + Bug Fixes --------- -- cgit v1.2.3 From 1363db83ae9fb02c50c700691ee0ba75b604960a Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Mon, 20 Apr 2015 01:37:38 -0500 Subject: deprecate pserve daemonization --- CHANGES.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'CHANGES.txt') 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 -- cgit v1.2.3 From 9a68d072a440e91f5ada180404c6654e3eae93ae Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Thu, 1 Oct 2015 14:18:10 -0700 Subject: Mention Circus as a pserve --daemon replacement. Refs #1554, #1641 --- CHANGES.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 7c8a9080a..2f8c455d4 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -215,8 +215,8 @@ Deprecations 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. + System's services such as Systemd or Upstart, as well as Python-based + solutions like Circus and Supervisor. See https://github.com/Pylons/pyramid/pull/1641 -- cgit v1.2.3 From e9637c7f521c1f499e12115fa035a55d15ce65e8 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Wed, 14 Oct 2015 22:46:06 -0500 Subject: update changelog for #1929 --- CHANGES.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index b71af30cb..4396c4356 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -137,6 +137,10 @@ Features - Additional shells for ``pshell`` can now be registered as entrypoints. See https://github.com/Pylons/pyramid/pull/1891 +- The variables injected into ``pshell`` are now displayed with their + docstrings instead of the default ``str(obj)`` when possible. + See https://github.com/Pylons/pyramid/pull/1929 + Bug Fixes --------- -- cgit v1.2.3