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 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 From b7350ee78ad4101ea4112741ab26ce583b620ea7 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Wed, 21 Oct 2015 01:32:48 -0500 Subject: remove ipython and bpython from core --- CHANGES.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 4396c4356..8c1adc789 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,19 @@ 1.6 (2015-04-14) ================ +Backward Incompatibilities +-------------------------- + +- IPython and BPython support have been removed from pshell in the core. + To continue using them on Pyramid 1.6+ you must install the binding + packages explicitly:: + + $ pip install pyramid_ipython + + or + + $ pip install pyramid_bpython + Features -------- -- cgit v1.2.3 From a9e1ba4cf0a89583ebe6511fecb501dbb275cc0d Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Wed, 21 Oct 2015 01:39:02 -0500 Subject: update changelog to document preserving capitalization in pshell --- CHANGES.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 8c1adc789..8b63cf847 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -148,7 +148,8 @@ Features 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 + https://github.com/Pylons/pyramid/pull/1891 and + https://github.com/Pylons/pyramid/pull/2012 - The variables injected into ``pshell`` are now displayed with their docstrings instead of the default ``str(obj)`` when possible. @@ -226,6 +227,11 @@ Bug Fixes WebOb 1.5. See https://github.com/Pylons/pyramid/pull/1865 +- ``pshell`` will now preserve the capitalization of variables in the + ``[pshell]`` section of the INI file. This makes exposing classes to the + shell a little more straightfoward. + See https://github.com/Pylons/pyramid/pull/1883 + Deprecations ------------ -- cgit v1.2.3