From 134388a0157728b1f96daa09fb8bdfde6a1de209 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 19 Jan 2012 04:24:00 -0500 Subject: - When using a dotted name for a ``view`` argument to ``Configurator.add_view`` that pointed to a class with a ``view_defaults`` decorator, the view defaults would not be applied. See https://github.com/Pylons/pyramid/issues/396 . Fixes #396. --- CHANGES.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index ba90c3bad..bfafaaae3 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -21,6 +21,11 @@ Bug Fixes a different view that had the same predicate arguments. See https://github.com/Pylons/pyramid/pull/404 for more information. +- When using a dotted name for a ``view`` argument to + ``Configurator.add_view`` that pointed to a class with a ``view_defaults`` + decorator, the view defaults would not be applied. See + https://github.com/Pylons/pyramid/issues/396 . + 1.3a5 (2012-01-09) ================== -- cgit v1.2.3 From 05f462e9792d9b5f6560968503795dc162984408 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 19 Jan 2012 20:36:45 -0500 Subject: Backport fix for issue #407 to 1.3 branch. --- CHANGES.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index bfafaaae3..c1b6ae976 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -26,6 +26,9 @@ Bug Fixes decorator, the view defaults would not be applied. See https://github.com/Pylons/pyramid/issues/396 . +- Static URL paths were URL-quoted twice. See + https://github.com/Pylons/pyramid/issues/407 . + 1.3a5 (2012-01-09) ================== -- cgit v1.2.3 From a41c8ca521ba983594364b1eb1f6c6025149fbe7 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Fri, 20 Jan 2012 10:53:55 -0500 Subject: prep for 1.3a6 --- CHANGES.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index c1b6ae976..ea86526b0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ -Unreleased -========== +1.3a6 (2012-01-20) +================== Features -------- -- cgit v1.2.3 From ea68d2097e03ad2c9f93b4339ff0da1c9677e306 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 21 Jan 2012 16:56:46 -0500 Subject: - The process will now restart when ``pserve`` is used with the ``--reload`` flag when the ``development.ini`` file (any any other .ini file in use) is changed. See https://github.com/Pylons/pyramid/issues/377 and https://github.com/Pylons/pyramid/pull/411 Fixes #377. --- CHANGES.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index ea86526b0..5f55c7f72 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,14 @@ +Next release +============ + +Bug Fixes +--------- + +- The process will now restart when ``pserve`` is used with the ``--reload`` + flag when the ``development.ini`` file (any any other .ini file in use) is + changed. See https://github.com/Pylons/pyramid/issues/377 and + https://github.com/Pylons/pyramid/pull/411 + 1.3a6 (2012-01-20) ================== -- cgit v1.2.3 From 8a36219597ec555c4ed95561ada7e5682a1605f7 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 21 Jan 2012 17:25:19 -0500 Subject: - The ``prequest`` script would fail when used against URLs which did not return HTML or text. See https://github.com/Pylons/pyramid/issues/381 Fixes #381. --- CHANGES.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 5f55c7f72..c64ed47e7 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -9,6 +9,9 @@ Bug Fixes changed. See https://github.com/Pylons/pyramid/issues/377 and https://github.com/Pylons/pyramid/pull/411 +- The ``prequest`` script would fail when used against URLs which did not + return HTML or text. See https://github.com/Pylons/pyramid/issues/381 + 1.3a6 (2012-01-20) ================== -- cgit v1.2.3 From a3a71196b3f105b48caf0ce0f28e10cc02d9012e Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 21 Jan 2012 17:41:25 -0500 Subject: garden --- CHANGES.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index c64ed47e7..81f420a84 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,7 +5,7 @@ Bug Fixes --------- - The process will now restart when ``pserve`` is used with the ``--reload`` - flag when the ``development.ini`` file (any any other .ini file in use) is + flag when the ``development.ini`` file (or any other .ini file in use) is changed. See https://github.com/Pylons/pyramid/issues/377 and https://github.com/Pylons/pyramid/pull/411 -- cgit v1.2.3 From f8bfc6ceed3b6d059749c4baf2feec71a8211694 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 22 Jan 2012 00:28:47 -0500 Subject: - More informative error message when a ``config.include`` cannot find an ``includeme``. See https://github.com/Pylons/pyramid/pull/392. Closes #392. --- CHANGES.txt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'CHANGES.txt') diff --git a/CHANGES.txt b/CHANGES.txt index 81f420a84..2a8515d01 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,12 @@ Next release ============ +Features +-------- + +- More informative error message when a ``config.include`` cannot find an + ``includeme``. See https://github.com/Pylons/pyramid/pull/392. + Bug Fixes --------- -- cgit v1.2.3