2017-03-11 11:04:50 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.205000
Upstream changes: 0.205000 2017-03-10 15:37:52-06:00 America/Chicago
[ BUG FIXES ]
* GH #1325: Support multi-value cookies when using HTTP::XSCookies.
(James Raspass)
* GH #1303: Read configuration options when send_as() creates a new
serializer (Paul Williams)
* GH #1290: Properly check buffer length in _read_to_end() (Marketa
Wachtlova)
* GH #1322: Deprecate broken request->dispatch_path in favor of
request->path. Warn the developer of the deprecation (Russell
@veryrusty Jenkins).
[ ENHANCEMENTS ]
* GH #1326: Speed up by using Type::Tiny, again. (Pete SysPete Mottram)
* GH #1318: Add support for the SameSite cookie attribute. (James Raspass)
* GH #1283: Skeleton now provides an example of setting the appdir.
(Jason Lewis)
* GH #1315: Adjust dist.ini to set "build_requires" for
ExtUtils::MakeMaker. (Atoomic)
* GH #1331: Preliminary prepare_app() work (Sawyer X)
[ DOCUMENTATION ]
* GH #1324: Fix broken link to send_file. (Fabrice Gabolde)
* GH #1311: Typo and link fixes. (Breno G. de Oliveira - @garu)
* GH #1310: Document query string parameters in uri_for. (Michael J South)
* GH #1329: Remove dead code from file upload example (Stefan Hornburg -
Racke)
* GH #1256: Additions to migration manual (Daniel Perrett)
* GH #1330: Add middleware examples to scaffolder (David - sbts)
|
2017-01-28 13:26:57 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.204004
Add missing DEPENDS
Upstream changes:
0.204004 2017-01-26 18:29:34+01:00 Europe/Amsterdam
[ BUG FIXES ]
* GH #1307: Fix breakage of Template::Toolkit, caused by
previous release. (Peter SysPete Mottram)
0.204003 2017-01-25 15:21:40-06:00 America/Chicago
[ BUG FIXES ]
* GH #1299: Fix missing CPANTS prereqs (Mohammad S. Anwar)
[ ENHANCEMENTS ]
* GH #1249: Improve consistency with Template::Toolkit,
using correct case for 'include_path', 'stop_tag', 'end_tag',
and 'start_tag', removing ANYCASE option.
(Klaus Ita)
* Call route exception hook before logging an error, allowing devs to
raise their own errors bedore D2 logging takes over. (Andy Beverley)
[ DOCUMENTATION ]
* Add another example of the delayed asynchronous mechanism
(Ed @mohawk2 J., Sawyer X)
* GH #1291: Document 'change_session_id' in Dancer2::Core::App.
(Peter SysPete Mottram)
* Fix typo in Dancer2::Core::Response (Gregorr Herrmann)
* Document Dancer2::Plugin::RootURIFor (Mario Zieschang)
|
2017-01-02 02:29:37 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.204002
Upstream changes:
0.204002 2016-12-21 15:40:02-06:00 America/Chicago
[ BUG FIXES ]
* GH #975: Fix "public_dir" configuration to work, just like
DANCER_PUBLIC. (Sawyer X)
[ ENHANCEMENTS ]
* You can now call '$self->find_plugin(...)' within a plugin
in order to find a plugin, in order to use its DSL in your
custom plugin. (Sawyer X)
[ DOCUMENTATION ]
* GH #1282: Typo in Cookbook. (Kurt Edmiston)
* GH #1214: Update Migration document. (Sawyer X)
* GH #1286: Clarify hook behavior when disabling layout (biafra)
* GH #1280: Update documentation to use specific parameter
keywords (Hunter McMillen)
|
2016-10-21 02:44:40 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.204001
Upstream changes:
0.204001 2016-10-17 08:29:00-05:00 America/Chicago
[ BUG FIXES ]
* Restore 5.8 support (fix test which required captures).
(Russell @veryrusty Jenkins)
* PR #1271: fix wrong regex check against $_ (Mickey Nasriachi)
[ ENHANCEMENTS ]
* GH #1262: Add 'encode_json' and 'decode_json' DSL, which are
recommended instead of 'to_json' and 'from_json'.
(Dennis @episodeiv lichtenthç£ler)
[ DOCUMENTATION ]
* Fix some typos.(Dennis @episodeiv lichtenthç£ler)
* GH #1031: Remove D2::Core::Context remnants from docs.
(Sawyer X)
[ PACKAGING ]
* GH #1273: Do not require Test::Perl::Critic to install.
(Dennis lichtenthç£ler)
|
2016-10-13 14:36:39 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.204000
Upstream changes:
0.204000 2016-10-10 20:56:51-05:00 America/Chicago
[ BUG FIXES ]
* GH #1255: Fix hook overriding in plugin. (Yves Orton)
* GH #1191: Named capture prior to dispatch breaks dispatch.
(Yves Orton)
* GH #1235: Clean up descriptions for HTTP codes 303 and 305.
(Yanick Champoux)
* Remove duplicate (and errornous) 451 error message.
(Sawyer X)
* GH #1116, #1245: Ensure cached Hash::MultiValue parameters are cloned
into the new request. (Russell @veryrusty Jenkins)
[ ENHANCEMENTS ]
* You can now provide a $EVAL_SHIM to Dancer2::Core::App in order
to have custom code run on eval{} calls. One example of this
is to handle proper counting of stack frames when you want to
unwind/unroll the stack for custom error reporting.
(Yves Orton)
* Added a cpanfile to allow installing local dependencies with
carton. (Mickey Nasriachi)
* GH #1260: Specify optional charset to send_file and send_as
(Russell @veryrusty Jenkins)
* PR #1162: Change skeleton template tags so skeletons can generate
applications that use Template Toolkit default tags (Jason Lewis)
* GH #1149: Fix config loading inconsistencies, support local config
files in addition to standard Dancer conf files (Jonathan Scott Duff)
* PR #1269: Stash decoded body_parameters separately from those
in Plack::Request (Russell @veryrusty Jenkins)
* GH #1253: Static middleware should send 304 Not Modified to enable
intermediate level caching. (Russell @veryrusty Jenkins)
[ DOCUMENTATION ]
* GH #608: Remove extra general COPYRIGHT notice in Tutorial.
(Sawyer X)
* Simplify upload example. (Alberto Simç¹es, Sawyer X)
0.203001 2016-09-03 20:59:47-05:00 America/Chicago
[ BUG FIXES ]
* GH #1237: Specify minimum version of List::Util required for pair*
functionals. (Russell @veryrusty Jenkins)
[ ENHANCEMENTS ]
* PR #1242: Replace Class::Load with Module::Runtime (Russell
Jenkins - @veryrusty)
|
2016-08-26 09:37:30 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.203000
Add p5-ExtUtils-MakeMaker as BUILD_DEPENDS
Upstream changes:
0.203000 2016-08-24 22:09:56-05:00 America/Chicago
[ BUG FIXES ]
* GH #1232: Force deserialization of body data even when an existing
Plack::Request object has already parsed request body. Don't double
decode deserialized data. (Russell Jenkins - @veryrusty)
[ ENHANCEMENTS ]
* GH #1195: Add change_session_id() method - both as a good security
practice and to comply with other established security standards.
(Peter Mottram)
* GH #1234: Add convenience functions to access Dancer's HTTP_CODES
table. (Yanick Champoux)
[ DOCUMENTATION ]
* Fix Typo (Stefan Hornburg - Racke)
* Document $session->data (Stefan Hornburg - Racke)
|
2016-08-16 02:34:14 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.202000
Upstream changes:
0.202000 2016-08-13 13:50:30-05:00 America/Chicago
[ BUG FIXES ]
* Fix memory leak in plugins. (Sawyer X)
* GH #1180, #1220: Revert (most of) GH #1120. Change back to using
MooX::Types::MooseLike until issues around Type::Tiny are resolved.
Peter (@SysPete) Mottram
* GH #1192: Decode body|query|request_parameters (Peter Mottram)
* GH #1224: Plugins defined with :PluginKeyword attribute are now
exported. (Yanick Champoux)
* GH #1226: Plugins can now call the DSL of the app via $self->dsl
(Sawyer X)
[ ENHANCEMENTS ]
* PR #1223: Add YAML::XS to Recommends (Peter Mottram)
* PR #1117: If installed, use HTTP::XSCookies and all cookie operations
will be faster (Peter Mottram)
* PR #1228: Allow register_plugin() to pass @_ properly (Sawyer X)
* PR #1231: Plugins can now call the syntax of plugins they loaded
(Sawyer X)
[ DOCUMENTATION ]
* PR #1151: Note that config is immutable after first read (Peter Mottram)
* PR #1222: Update list of files generated by `dancer2 -a`, make name of
sample app consistent (Daniel Perrett)
|
2016-07-24 01:45:00 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.201000
Upstream changes:
0.201000 2016-07-22 08:26:18-05:00 America/Chicago
0.200004 2016-07-21 23:39:23-05:00 America/Chicago
[ BUG FIXES ]
* GH #1216: Make DSL work in edge-case of plugins calling DSL before the
app class loaded Dancer2. (Sawyer X)
* GH #1210: Show proper module/line number in log output (Masaaki Saito)
[ ENHANCEMENTS ]
* GH #900: Switch from to_json to encode/encode_json (Nuno Ramos Carvalho)
* GH #1196: Move serializer from JSON to JSON::MaybeXS (Nuno Ramos Carvalho)
* GH #1215: Remove unused DANCER2_SHARE_DIR env variable (Jason A. Crome)
[ DOCUMENTATION ]
* PR #1213: Clarify params merging docs and related examples
(Daniel Perrett)
* Add Peter Mottram (@SysPete) to list of core developers. (Russell Jenkins)
* PR #1208: Introduce appdir before it's used; simplify description of what
a view is (James E Keenan)
* GH #1218: By request, remove David Golden from list of core developers.
Created "emeritus" section to honor the contributions of former core
developers. Thanks, xdg!
0.200003 2016-07-11 17:17:57+02:00 Europe/Amsterdam
[ BUG FIXES ]
* PR #1198: Session::YAML should not accept bad session cookie value
from client (Peter Mottram)
* Require minimum version of YAML of 0.86 (to satisfy GH #899) and a
maximum version of YAML 1.15. YAML 1.16 causes test failures as
reported by CPAN Testers.
* Remove session test data from builds. (Peter Mottram)
[ ENHANCEMENTS ]
* Require minimum version of ExtUtils::MakeMaker of 7.1101 to support
a range of prereq version numbers (rjbs, Jason Crome, Sawyer X)
* GH #1188: Add error message to open_file (exercism-1)
* Support showing private variables in templates under
Template::Toolkit. (Alberto Simç¹es)
[ DOCUMENTATION ]
* GH #1193: Spelling correction (Gregor Herrmann)
* Fix typo of config option in Pod. (Nuno Carvalho)
* Fix POD syntax error. (Nuno Carvalho)
* Fix Manual error. (James E Keenan)
* Move documentation index to dancer2. (Alan Berndt)
* GH #1209: Clean up examples for 'set views' and 'set public_dir'
in Dancer2::Manual (James E Keenan)
0.200002 2016-06-22 16:39:13+02:00 Europe/Amsterdam
[ BUG FIXES ]
* Using `var` with a `forward`ed request now works.
(Sawyer X, Jason Crome)
0.200001 2016-06-16 15:51:04+02:00 Europe/Amsterdam
[ BUG FIXES ]
* GH #1175: Plugins are not required to be in the Dancer2::Plugin
namespace. (Russell @veryrusty Jenkins)
* GH #1176, #1177: Remove Test::Deep as a test dependency.
(Nuno Carvalho, Peter Mottram)
* GH #1185: Fails on 5.25.1. (Tony Cook)
[ DOCUMENTATION ]
* GH #1178: Update D2::Manual with links to new plugin architecture.
(Joel Berger, Jason A. Crome)
* GH #1184: Use 'before_template_render' rather than the special case
'before_template' in D2::Manual and D2::Tutorial (Philippe Bricout)
[ ENHANCEMENTS ]
* GH #1018: Additional plugin hook tests (Ruben Amortegui)
|
2016-06-08 21:25:20 by Thomas Klausner | Files touched by this commit (2236) |
Log message:
Bump PKGREVISION for perl-5.24.
|
2016-06-01 03:13:06 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.200000
Update DEPENDS
Upstream changes:
0.200000 2016-05-31 15:05:46+02:00 Europe/Amsterdam
[ BUG FIXES ]
* GH #1174: Update plugin tests to stop deprecation warnings
(Peter Mottram)
* GH #1173: Reword error when serialization / deserialization fails
to be more generic (Russell @veryrusty Jenkins)
[ ENHANCEMENTS ]
* Introduce an improved variation of the Dancer2::Plugin::SendAs
into core. You can now override the serializer (or lack thereof)
at any point in time for a response by calling `send_as`. You
can also send the options of `send_file` (like the Content-Type)
and the charset for the app is also respected.
(Russell @veryrusty Jenkins)
0.166001_04 2016-05-27 14:54:53+02:00 Europe/Amsterdam (TRIAL RELEASE)
[ BUG FIXES ]
* GH #1171: Ensure request query parameter parsing is independent of
Plack version (Russell Jenkins)
0.166001_03 2016-05-27 13:23:52+02:00 Europe/Amsterdam (TRIAL RELEASE)
[ BUG FIXES ]
* GH #1165, #1167: Copy is_behind_proxy attribute into new request
on forward. (Russell Jenkins)
[ ENHANCEMENTS ]
* GH #1120: Move from MooX::Types::MooseLike to Type::Tiny for
performance. (Peter Mottram)
* GH #1145, #1164: Replace Class::Load with Module::Runtime
(Sawyer X)
* GH #1159, #1163: Make template keyword global.
(Sawyer X, Russell Jenkins)
[ DOCUMENTATION ]
* GH #1158: List both static and shared modules in Apache's deploy
instructions. (Varadinsky)
0.166001_02 2016-04-29 16:42:54+02:00 Europe/Amsterdam (TRIAL RELEASE)
[ BUG FIXES ]
* GH #1160: Engines receive correct log callback on build
(Peter Mottram)
* GH #1148: Ensure request body parameter parsing is independent of
Plack version (Russell Jenkins)
0.166001_01 2016-04-19 21:50:35+02:00 Europe/Amsterdam (TRIAL RELEASE)
[ BUG FIXES ]
* GH #1102: Handle multiple '..' in file path utilities.
(Oleg A. Mamontov, Peter Mottram)
* GH #1114: Fix missing prereqs as reported by CPANTS.
(Mohammad S Anwar)
* GH #1128: Shh warning if optional megasplat is not present.
(David Precious)
* GH #1139: Fix incorrect Content-Length header added by AutoPage
handler (Michael Kræll, Russell Jenkins)
* GH #1144: Change tt tags to span in skel (Jason Lewis)
* GH #1046: "no_server_tokens" configuration option doesn't work.
(Sawyer X)
# GH #1155, #1157: Fix megasplat value splitting when there are empty
trailing path segments. (Tatsuhiko Miyagawa, Russell Jenkins)
NOTE: Paths matching a megasplat that end with a '/' will now include
an empty string as the last value. For the route pattern '/foo/**',
the path '/foo/bar', the megasplat gives ['bar'], whereas '/foo/bar/'
now gives ['bar','']. Joining the array of megasplat values will now
always be the string matched against for the megasplit.
[ DOCUMENTATION ]
* GH #1119: Improve the deployment documentation. (Andrew Beverley)
* GH #1123: Document import of utf8 pragma. (Victor Adam)
* GH #1132: Fix spelling mistakes in POD (Gregor Herrmann)
* GH #1134: Fix spelling errors detected by codespell (James McCoy)
* GH #1153: Fix POD rendering error. (Sawyer X)
[ ENHANCEMENTS ]
* GH #1129: engine.logger.* hooks are called around logging a message.
(Russell @veryrusty Jenkins)
* GH #1146: Cleaner display of error context (Vernon Lyon)
* GH #1085: Add consistent keywords for accessing headers;
'request_header' for request, 'response_header', 'response_headers'
and 'push_response_header' for response. (Russell @veryrusty Jenkins)
* GH #1010: New Dancer2::Plugin architecture, includes support for
plugins using other plugins. (Yanick Champoux, Russell Jenkins,
Sawyer X, Damien Krotkine, Stefan @racke Hornburg, Peter Mottram)
Note: Considerable effort has gone into working with the authors
of existing plugins to ensure their plugins are compatible with both
the 'old' and the new reworked plugin architecture. Please upgrade
your plugins to a recent release.
(Special thanks to Peter @SysPete Mottram)
|