Skip to content

Commit

Permalink
merge release/1.3059_03
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Sukrieh committed Jun 11, 2011
2 parents a37ca92 + b34cb40 commit b106f91
Show file tree
Hide file tree
Showing 171 changed files with 2,527 additions and 2,675 deletions.
3 changes: 2 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The first version of Dancer was written by Alexis Sukrieh in summer 2009.
The project has evolved a lot since that time, and a huge and very active
community emerged to extend and improve Dancer..

The Project is now handled by a organised team of core developers, and many
The Project is now handled by an organised team of core developers, and many
valued contributions are sent by motivated developers around the globe.
This is what makes Dancer such a fun project to use - it's a living community
of motivated people.
Expand Down Expand Up @@ -65,6 +65,7 @@ A huge thank you to all of them!
Naveed <naveed@ironcamel.(none)>
Naveen <nmani@nashresearch.com>
Nicolas Oudard <noudard@weborama.com>
Niko <nikomomo@gmail.com>
Olivier Mengué <dolmen@cpan.org>
Paul Driver <frodwith@gmail.com>
Paul Tomlin <ptomli@gmail.com>
Expand Down
43 changes: 43 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@
1.3059_03 11.06.2011

[ BUG FIXES ]
* Fix for issue #539
https://github.com/sukria/Dancer/issues/539
Don't decode twice entries in the params hash table, file
uploads with UTF-8 characters in their name are now possible.
(Toby Corkindale, Alexis Sukrieh)
* Fix broken test with old version of HTTP::Parser::XS
(Franck Cuny)
* #492 - Don't run Test::TCP tests on win32
(Franck Cuny)
* Fix a bug that when forwarding a post with post data stalled the
code (read on no data handle). (Alberto Simões)
* Tweak tests regular expression to be more flexible (Pedro Melo)
* Require a recent Test::TCP (1.13) to run tests. (Alberto Simões)
* Fix hooks implementation that failed when user messes $_ (Pedro Melo)
* Fix broken params('query') and params('body') during forward and
dancer_request test function. (Alberto Simões and Squeek)

[ ENHANCEMENTS ]
* Fix for issue #516
https://github.com/sukria/Dancer/issues/516
No more legacy code in Dancer::Route to handle routes created
with the deprecated keyword "r". The related code is now more
concise and should be slightly more efficient.
(Alexis Sukrieh)
* Merge PR #541
https://github.com/sukria/Dancer/pull/541
New "param" accessor to retrieve a parameter easily.
(Alberto Simões)
* Implement session directory testing cache for Session::YAML
(Damien Krotkine)
* Tests rework (improve speed, remove useless tests, ...)
(Alberto Simões and Franck Cuny)
* Configuration for log_dir and log_file.
(Alberto Simões)
* Pass vars to templates automatically (David Precious)
* Support lexical prefix (Pedro Melo)

[ DOCUMENTATION ]
* Improve FileUtils documentation. (mokko)

1.3059_02 29.05.2011

[ BUG FIXES ]
Expand Down
66 changes: 20 additions & 46 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,11 @@ t/00_base/11_file_utils.t
t/00_base/12_utf8_charset.t
t/00_base/13_dancer_singleton.t
t/00_base/14_changelog.t
t/00_base/15_dependent_modules.t
t/00_base/config.t
t/00_base/lib/AppWithError.pm
t/00_base/lib/WorkingApp.pm
t/00_base/optional-module-versions.t
t/00_base/uri_for.t
t/00_base/utf8.tt
t/00_base/views/unicode.tt
Expand All @@ -116,8 +118,6 @@ t/01_config/environments/development.pl
t/01_config/yaml_dependency.t
t/02_request/000_create_fake_env.t
t/02_request/01_load.t
t/02_request/02_get_params.t
t/02_request/03_post_params.t
t/02_request/04_custom.t
t/02_request/04_forward.t
t/02_request/05_cgi_pm_compat.t
Expand All @@ -132,53 +132,42 @@ t/02_request/14_uploads.t
t/02_request/15_headers.t
t/02_request/16_delete.t
t/02_request/17_uri_base.t
t/03_route_handler/000_create_fake_env.t
t/03_route_handler/00_http_methods.t
t/03_route_handler/00_route_object.t
t/03_route_handler/01_params.t
t/03_route_handler/03_passing.t
t/03_route_handler/04_wildcards.t
t/02_request/18_param_accessor.t
t/03_route_handler/01_http_methods.t
t/03_route_handler/02_params.t
t/03_route_handler/03_routes_api.t
t/03_route_handler/04_routes_matching.t
t/03_route_handler/04_wildcards_megasplat.t
t/03_route_handler/05_filter.t
t/03_route_handler/05_unicode.t
t/03_route_handler/06_regexp.t
t/03_route_handler/06_redirect.t
t/03_route_handler/07_compilation_warning.t
t/03_route_handler/08_errors.t
t/03_route_handler/09_status.t
t/03_route_handler/11_redirect.t
t/03_route_handler/11_redirect_absolute.t
t/03_route_handler/11_redirect_no_content.t
t/03_route_handler/12_response.t
t/03_route_handler/13_any_route_handler.t
t/03_route_handler/14_options.t
t/03_route_handler/15_prefix.t
t/03_route_handler/16_caching.t
t/03_route_handler/18_auto_page.t
t/03_route_handler/19_filters_and_params.t
t/03_route_handler/20_params_multiple_tokens.t
t/03_route_handler/21_ajax.t
t/03_route_handler/22_filter_halt.t
t/03_route_handler/23_filter_error_catching.t
t/03_route_handler/24_multiple_params.t
t/03_route_handler/24_named_captures.t
t/03_route_handler/27_issue_77_pass_breaks_routes.t
t/03_route_handler/28_plack_mount.t
t/03_route_handler/29_forward.t
t/03_route_handler/29_redirect_immediately.t
t/03_route_handler/30_bug_gh190.t
t/03_route_handler/31_infinite_loop.t
t/03_route_handler/32_gh_393.t
t/03_route_handler/33_vars.t
t/03_route_handler/34_forward_body_post.t
t/03_route_handler/99_bugs.t
t/03_route_handler/public/404.html
t/03_route_handler/public/utf8file.txt
t/03_route_handler/views/error.tt
t/03_route_handler/views/hello.tt
t/04_static_file/001_base.t
t/04_static_file/002_mime_types.t
t/04_static_file/003_mime_types_reinit.t
t/04_static_file/03_get_mime_type.t
t/04_static_file/01_mime_types.t
t/04_static_file/static/hello.foo
t/04_static_file/static/hello.txt
t/05_views/001_settings.t
t/05_views/002_view_rendering.t
t/05_views/03_layout.t
t/05_views/views/clock.tt
Expand All @@ -187,6 +176,7 @@ t/05_views/views/layouts/custom.tt
t/05_views/views/layouts/main.tt
t/05_views/views/request.tt
t/05_views/views/t03.tt
t/05_views/views/vars.tt
t/06_helpers/000_create_fake_env.t
t/06_helpers/01_send_file.t
t/06_helpers/02_http_status.t
Expand Down Expand Up @@ -263,25 +253,14 @@ t/12_response/09_headers_to_array.t
t/12_response/10_error_dumper.t
t/13_engines/00_load.t
t/13_engines/02_template_init.t
t/14_serializer/000_create_fake_env.t
t/14_serializer/01_basic.t
t/14_serializer/02_json.t
t/14_serializer/03_yaml.t
t/14_serializer/04_mutable.t
t/14_serializer/05_live.t
t/14_serializer/06_serialize_response.t
t/14_serializer/07_bug_57805.t
t/14_serializer/08_error.t
t/14_serializer/09_abstract.t
t/14_serializer/10_dumper.t
t/14_serializer/11_bug_57829.t
t/14_serializer/12_bug_gh106.t
t/14_serializer/13_xml.t
t/14_serializer/14_api.t
t/14_serializer/14_show_errors.t
t/14_serializer/16_bug_gh_299.t
t/14_serializer/01_helpers.t
t/14_serializer/02_request_json.t
t/14_serializer/03_request_yaml.t
t/14_serializer/04_request_xml.t
t/14_serializer/05_request_mutable.t
t/14_serializer/06_api.t
t/14_serializer/17_clear_serializer.t
t/14_serializer/handler-helper.t
t/14_serializer/99_bugs.t
t/15_plugins/000_create_fake_env.t
t/15_plugins/01_register.t
t/15_plugins/02_config.t
Expand All @@ -291,17 +270,13 @@ t/15_plugins/05_keywords.t
t/15_plugins/05_plugins_and_OO.t
t/15_plugins/06_hook.t
t/16_timer/00_base.t
t/16_timer/02_hires.t
t/17_apps/000_create_fake_env.t
t/17_apps/00_base.t
t/17_apps/01_settings.t
t/17_apps/02_load_app.t
t/17_apps/03_prefix.t
t/17_apps/04_issue_91.t
t/17_apps/05_api.t
t/18_main_dsl/000_create_fake_env.t
t/18_main_dsl/01_config.t
t/18_main_dsl/uri_for.t
t/19_dancer/01_script.t
t/19_dancer/02_script_version_from.t
t/20_deprecation/01_api.t
Expand All @@ -328,7 +303,6 @@ t/lib/TestApp.pm
t/lib/TestAppUnicode.pm
t/lib/TestPlugin.pm
t/lib/TestPlugin2.pm
t/lib/TestSerializer.pm
t/lib/TestUtils.pm
t/manifest.t
t/pod.t
Expand Down
1 change: 0 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ WriteMakefile1(

BUILD_REQUIRES => {
'Test::More' => '0.94',
'Tie::Hash::NamedCapture' => '0',
},

PREREQ_PM => {
Expand Down
Loading

0 comments on commit b106f91

Please sign in to comment.