summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 047db6472..2e2b2291d 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -16,6 +16,20 @@ Backwards Incompatibilities
- Pyramid no longer runs on Python 2.5 (which includes the most recent
release of Jython, and the current version of GAE).
+- The ``paster`` command is no longer the documented way to create projects,
+ start the server, or run debugging commands. To create projects from
+ scaffolds, ``paster create`` is replaced by the ``pcreate`` console script.
+ To serve up a project, ``paster serve`` is replaced by the ``pserve``
+ console script. New console scripts named ``pshell``, ``pviews``,
+ ``proutes``, and ``ptweens`` do what their ``paster <commandname>``
+ equivalents used to do. Rationale: the Paste and PasteScript packages do
+ not run under Python 3.
+
+- The default WSGI server run as the result of ``pserve`` from newly rendered
+ scaffolding is now the ``wsgiref`` WSGI server instead of the
+ ``paste.httpserver`` server. Rationale: Rationale: the Paste and
+ PasteScript packages do not run under Python 3.
+
Dependencies
------------
@@ -27,3 +41,6 @@ Dependencies
Python 3 compatibility purposes). It also, as a testing dependency,
depends on WebTest>=1.3.1 for the same reason.
+- Pyramid no longer depends on the Paste or PasteScript packages.
+
+