summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorBlaise Laflamme <blaise@laflamme.org>2011-11-26 18:31:22 -0500
committerBlaise Laflamme <blaise@laflamme.org>2011-11-26 18:31:22 -0500
commit7613a6441f273ccc5642e20b2ce5788d01291466 (patch)
tree8de6ce23bf54325b8524c50336020cb509ce1b16 /CHANGES.txt
parent11129ca073b4926037368d9a0bf079dc422e28f7 (diff)
parent50e89abccc9c23949fb7cdd928a865712c34aa75 (diff)
downloadpyramid-7613a6441f273ccc5642e20b2ce5788d01291466.tar.gz
pyramid-7613a6441f273ccc5642e20b2ce5788d01291466.tar.bz2
pyramid-7613a6441f273ccc5642e20b2ce5788d01291466.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt19
1 files changed, 15 insertions, 4 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 42f07a275..effce62b9 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -14,6 +14,9 @@ Features
spec. An entire application can be written with such asset specs,
requiring no ordered lookup path.
+- ``bpython`` interpreter compatibility in ``pshell``. See the "Command-Line
+ Pyramid" narrative docs chapter for more information.
+
Bug Fixes
---------
@@ -33,11 +36,15 @@ Bug Fixes
- The DummySession in ``pyramid.testing`` now generates a new CSRF token if
one doesn't yet exist.
+- ``request.static_url`` now generates URL-quoted URLs when fed a ``path``
+ argument which contains characters that are unsuitable for URLs. See
+ https://github.com/Pylons/pyramid/issues/349 for more info.
+
Backwards Incompatibilities
---------------------------
- Pyramid no longer runs on Python 2.5 (which includes the most recent
- release of Jython, and the current version of GAE as of this writing).
+ release of Jython and the Python 2.5 version of GAE as of this writing).
- The ``paster`` command is no longer the documented way to create projects,
start the server, or run debugging commands. To create projects from
@@ -53,6 +60,11 @@ Backwards Incompatibilities
``paste.httpserver`` server. Rationale: Rationale: the Paste and
PasteScript packages do not run under Python 3.
+- The ``pshell`` command (see "paster pshell") no longer accepts a
+ ``--disable-ipython`` command-line argument. Instead, it accepts a ``-p``
+ or ``--python-shell`` argument, which can be any of the values ``python``,
+ ``ipython`` or ``bpython``.
+
Dependencies
------------
@@ -73,7 +85,6 @@ Scaffolds
- Rendered scaffolds have now been changed to be more relocatable (fewer
mentions of the package name within files in the package).
-- The ``alchemy`` scaffold has been removed.
-
-- The ``routesalchemy`` scaffold has been renamed ``alchemy``.
+- The ``routesalchemy`` scaffold has been renamed ``alchemy``, replacing the
+ older (traversal-based) ``alchemy`` scaffold (which has been retired).