From 75f05a60f8754c9c5c234b9731dbc08646ba89a9 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 6 Oct 2011 05:40:47 -0400 Subject: document glue changes --- CHANGES.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'CHANGES.txt') 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 `` + 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. + + -- cgit v1.2.3