summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorCasey Duncan <casey.duncan@gmail.com>2010-11-17 22:42:47 -0700
committerCasey Duncan <casey.duncan@gmail.com>2010-11-17 22:42:47 -0700
commit42247963d8ddf569e0e73040d90bca7c803323c4 (patch)
treecbd3779c5f6cace9cd692b5e32328278794636f5 /CHANGES.txt
parent05354db0c0351a1f1543c9370c6e639d1fe5d1b5 (diff)
parent0511437d5250d249accda26ba6435ab737f8c0c5 (diff)
downloadpyramid-42247963d8ddf569e0e73040d90bca7c803323c4.tar.gz
pyramid-42247963d8ddf569e0e73040d90bca7c803323c4.tar.bz2
pyramid-42247963d8ddf569e0e73040d90bca7c803323c4.zip
Merge https://github.com/Pylons/pyramid
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt63
1 files changed, 60 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b9f6a69c7..604f28cf4 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,6 +4,63 @@ Next release
Features
--------
+- Add a ``pyramid.url.route_path`` API, allowing folks to generate relative
+ URLs. Calling ``route_path`` is the same as calling
+ ``pyramid.url.route_url`` with the argument ``_app_url`` equal to the empty
+ string.
+
+- Add a ``pyramid.request.Request.route_path`` API. This is a convenience
+ method of the request which calls ``pyramid.url.route_url``.
+
+Bug Fixes
+---------
+
+- Add deprecation warnings to import of ``pyramid.chameleon_text`` and
+ ``pyramid.chameleon_zpt`` of ``get_renderer``, ``get_template``,
+ ``render_template``, and ``render_template_to_response``.
+
+- Add deprecation warning for import of ``pyramid.zcml.zcml_configure`` and
+ ``pyramid.zcml.file_configure``.
+
+- The ``pyramid_alchemy`` paster template had a typo, preventing an import
+ from working.
+
+Backwards Incompatibilities
+---------------------------
+
+- The ``pyramid.testing.zcml_configure`` API has been removed. It had been
+ advertised as removed since 1.2a1, but hadn't actually been.
+
+Deprecations
+------------
+
+- The ``pyramid.settings.get_settings`` API is now deprecated. Use
+ ``pyramid.threadlocals.get_current_registry().settings`` instead or use the
+ ``settings`` attribute of the registry available from the request
+ (``request.registry.settings``).
+
+Documentation
+-------------
+
+- Removed ``zodbsessions`` tutorial chapter. It's still useful, but we now
+ have a SessionFactory abstraction which competes with it, and maintaining
+ documentation on both ways to do it is a distraction.
+
+Internal
+--------
+
+- Replace Twill with WebTest in internal integration tests (avoid deprecation
+ warnings generated by Twill).
+
+1.0a3 (2010-11-16)
+==================
+
+Features
+--------
+
+- Added Mako TemplateLookup settings for ``mako.error_handler``,
+ ``mako.default_filters``, and ``mako.imports``.
+
- Normalized all paster templates: each now uses the name ``main`` to
represent the function that returns a WSGI application, each now uses
WebError, each now has roughly the same shape of development.ini style.
@@ -13,9 +70,9 @@ Features
- New API method: ``pyramid.settings.asbool``.
-- New API methods for ``pyramid.request.Request``: ``model_url`` and
- ``route_url``. These are simple passthroughs for their respective
- functions in ``pyramid.url``.
+- New API methods for ``pyramid.request.Request``: ``model_url``,
+ ``route_url``, and ``static_url``. These are simple passthroughs for their
+ respective functions in ``pyramid.url``.
- The ``settings`` object which used to be available only when
``request.settings.get_settings`` was called is now available as