6 years agofix some pod formatting code errors
Graham Knop [Wed, 28 Mar 2018 02:25:59 +0000]
fix some pod formatting code errors

6 years agofix typo in Catalyst::Utils pod
Graham Knop [Wed, 28 Mar 2018 02:15:59 +0000]
fix typo in Catalyst::Utils pod

6 years agofix unit_stats.t for new Time::HiRes
Graham Knop [Tue, 27 Mar 2018 16:03:22 +0000]
fix unit_stats.t for new Time::HiRes

tv_interval has been implemented in XS rather than as a wrapper, so it
has to be mocked as well.

6 years agoadding comment with real version to unicode plugin
Graham Knop [Tue, 23 Jan 2018 21:03:12 +0000]
adding comment with real version to unicode plugin

Distar's version bumping script expects matching version numbers in all
files.  Including an artificial version declaration in a comment will
trick it into accepting the mismatched version.  And including the
dist's real version in the file aids clarity as well.

6 years agoreported errors 5.90117
John Napiorkowski [Sun, 21 Jan 2018 22:39:48 +0000]
reported errors

6 years agoset release date 5.90116
John Napiorkowski [Fri, 19 Jan 2018 20:49:38 +0000]
set release date

6 years agoremove a submodule from travis
John Napiorkowski [Thu, 18 Jan 2018 21:59:34 +0000]
remove a submodule from travis

6 years agotry and get more info from travis
John Napiorkowski [Thu, 18 Jan 2018 21:42:44 +0000]
try and get more info from travis

6 years agoupdated travis and restore some missing files
John Napiorkowski [Thu, 18 Jan 2018 21:29:45 +0000]
updated travis and restore some missing files

6 years agodocument changes
John Napiorkowski [Thu, 18 Jan 2018 20:41:30 +0000]
document changes

6 years agoMerge branch 'distar' into release-candidates/rc-5.90116
John Napiorkowski [Thu, 18 Jan 2018 20:32:28 +0000]
Merge branch 'distar' into release-candidates/rc-5.90116

6 years agoMerge branch 'pr/157' into release-candidates/rc-5.90116
Jay Hannah [Tue, 16 Jan 2018 22:46:29 +0000]
Merge branch 'pr/157' into release-candidates/rc-5.90116

6 years agoMerge branch 'pr/156' into release-candidates/rc-5.90116
Jay Hannah [Tue, 16 Jan 2018 22:45:50 +0000]
Merge branch 'pr/156' into release-candidates/rc-5.90116

6 years agoMerge branch 'pr/154' into release-candidates/rc-5.90116
Jay Hannah [Tue, 16 Jan 2018 22:43:48 +0000]
Merge branch 'pr/154' into release-candidates/rc-5.90116

Conflicts jhannah resolved manually:
  Makefile.PL
  lib/Catalyst.pm

6 years agoMerge branch 'pr/152' into release-candidates/rc-5.90116
Jay Hannah [Tue, 16 Jan 2018 22:41:17 +0000]
Merge branch 'pr/152' into release-candidates/rc-5.90116

6 years agoMerge branch 'pr/135' into release-candidates/rc-5.90116
Jay Hannah [Tue, 16 Jan 2018 22:36:20 +0000]
Merge branch 'pr/135' into release-candidates/rc-5.90116

6 years agoMerge remote-tracking branch 'write/jhannah/docs' into release-candidates/rc-5.90116
Jay Hannah [Tue, 16 Jan 2018 21:47:41 +0000]
Merge remote-tracking branch 'write/jhannah/docs' into release-candidates/rc-5.90116

6 years agoCatalyst::Test request() docs patch
Jay Hannah [Fri, 5 Jan 2018 16:22:13 +0000]
Catalyst::Test request() docs patch

This method also accepts HTTP::Request objects, and
HTTP::Request::Common objects are especially helpful if you need
to send additional headers in the request.

6 years agoremove my tab
LNATION [Wed, 3 Jan 2018 07:57:10 +0000]
remove my tab

6 years agomake the missing data handler exception slightly more useful
LNATION [Wed, 3 Jan 2018 07:55:31 +0000]
make the missing data handler exception slightly more useful

6 years agoMerge remote-tracking branch 'upstream/master'
Ferruccio Zamuner [Wed, 25 Oct 2017 10:00:31 +0000]
Merge remote-tracking branch 'upstream/master'

6 years agoclean up travis config for distar
Graham Knop [Mon, 13 Feb 2017 23:43:54 +0000]
clean up travis config for distar

6 years agouse uniq from List::Util
Graham Knop [Mon, 13 Feb 2017 05:43:48 +0000]
use uniq from List::Util

This lets us drop the List::MoreUtils prereq.

6 years agoconvert to Distar
Graham Knop [Mon, 13 Feb 2017 05:41:54 +0000]
convert to Distar

6 years agouse different package name in autoflush log test
Graham Knop [Mon, 13 Feb 2017 08:59:34 +0000]
use different package name in autoflush log test

The log and log_autoflush tests were using duplicate packages for their
testing, so if they were run with Test::Aggregate it would cause
warnings and test failures.

6 years agostop using Moo as a test package
Graham Knop [Mon, 13 Feb 2017 05:50:39 +0000]
stop using Moo as a test package

Moo is a real module, and may be in our prerequisite list.  Stepping on
its namespace is confusing and could easily cause issues.

6 years agouse inlined module hiding in tests
Graham Knop [Mon, 13 Feb 2017 06:29:15 +0000]
use inlined module hiding in tests

Test::Without::Module and Devel::Hide both handle repeated module
loading wrong.  They also generate error messages that aren't compatible
with Class::Load.

Also add some module hiding for 'Foo' and 'Bar', as they may exist
locally, breaking tests.

6 years agoclean up contributors
Graham Knop [Mon, 13 Feb 2017 06:50:14 +0000]
clean up contributors

6 years agoFix double-encoding of spaces in query parameter keys in ->uri_for
Dagfinn Ilmari Mannsåker [Mon, 11 Sep 2017 14:19:44 +0000]
Fix double-encoding of spaces in query parameter keys in ->uri_for

Commit 5c779e9841d052721162a48ad96fdbda2acd1035 moved half of the key-
encoding part into the map over the values, but left the `s/ /+/g` in
place, causing spaces in query parameter keys to first be converted to
+, then to %2B.

This moves the current key encoding block out of the inner map and
removes the premature `s/ /+g/`.

6 years agoFix spelling test failures
Dagfinn Ilmari Mannsåker [Mon, 11 Sep 2017 14:08:09 +0000]
Fix spelling test failures

6 years agoAttempt to fix Travis build on 5.20 and 5.22
Aaron Crane [Thu, 11 May 2017 15:26:24 +0000]
Attempt to fix Travis build on 5.20 and 5.22

AFAICT, what's happening here is as follows.

The Travis build starts by installing Catalyst::Devel, which depends on
Catalyst, which is in the Catalyst-Runtime dist. So the latest released
version of Catalyst::Runtime gets installed to make that happen. The
release in question has an unversioned dependency on List::Util (well,
Scalar::Util), so that dep is met by the Perl core. Then the Travis build
runs the Makefile.PL, which prompts the user to install a newer version of
List::Util. Nothing attempts to answer that prompt, so the Travis build
times out.

Newer versions of Perl satisfy the 1.45 List::Util dependency natively.
For older versions of Perl, it seems to be the case that something else in
the dependency graph requires a newer version of List::Util than is shipped
with that Perl, and the latest version is selected automatically. So only
5.20 and 5.22 are affected by this.

We therefore change the Travis build so that, once the Makefile.PL has been
run (thus creating MYMETA.json) we try again to install any missing deps
using cpanm. Hopefully this will work!

6 years agoversions
John Napiorkowski [Mon, 1 May 2017 16:35:12 +0000]
versions

6 years agoremoved badges for now until I can make them work 5.90115
John Napiorkowski [Mon, 1 May 2017 16:14:37 +0000]
removed badges for now until I can make them work

6 years agoupdate readme
John Napiorkowski [Mon, 1 May 2017 16:03:28 +0000]
update readme

6 years agosync changes with patch
John Napiorkowski [Mon, 1 May 2017 15:42:54 +0000]
sync changes with patch

6 years agoMerge branch 'simonamor-master't push origin master
John Napiorkowski [Mon, 1 May 2017 15:42:11 +0000]
Merge branch 'simonamor-master't push origin master

6 years agoMerge branch 'master' of https://github.com/simonamor/catalyst-runtime into simonamor...
John Napiorkowski [Mon, 1 May 2017 15:41:49 +0000]
Merge branch 'master' of https://github.com/simonamor/catalyst-runtime into simonamor-master

6 years agosync changes with patch
John Napiorkowski [Mon, 1 May 2017 14:36:19 +0000]
sync changes with patch

6 years agoMerge branch 'tremor69-master't push origin master
John Napiorkowski [Mon, 1 May 2017 14:34:37 +0000]
Merge branch 'tremor69-master't push origin master

6 years agoMerge branch 'master' of https://github.com/tremor69/catalyst-runtime into tremor69...
John Napiorkowski [Mon, 1 May 2017 14:34:20 +0000]
Merge branch 'master' of https://github.com/tremor69/catalyst-runtime into tremor69-master

6 years agoMerge branch 'melmott push origin masterhx-abort-chain-doc-and-test'
John Napiorkowski [Mon, 1 May 2017 14:24:45 +0000]
Merge branch 'melmott push origin masterhx-abort-chain-doc-and-test'

6 years agoMerge branch 'abort-chain-doc-and-test' of https://github.com/melmothx/catalyst-runti...
John Napiorkowski [Mon, 1 May 2017 14:24:39 +0000]
Merge branch 'abort-chain-doc-and-test' of https://github.com/melmothx/catalyst-runtime into melmothx-abort-chain-doc-and-test

6 years agosync changes with patch
John Napiorkowski [Mon, 1 May 2017 14:13:35 +0000]
sync changes with patch

6 years agot push origin masterMerge branch 'colinnewell-colin/encoding_doc'
John Napiorkowski [Mon, 1 May 2017 14:12:35 +0000]
t push origin masterMerge branch 'colinnewell-colin/encoding_doc'

6 years agoMerge branch 'colin/encoding_doc' of https://github.com/colinnewell/catalyst-runtime...
John Napiorkowski [Mon, 1 May 2017 14:12:25 +0000]
Merge branch 'colin/encoding_doc' of https://github.com/colinnewell/catalyst-runtime into colinnewell-colin/encoding_doc

6 years agocatch Changes up to date with master changes
John Napiorkowski [Mon, 1 May 2017 13:34:36 +0000]
catch Changes up to date with master changes

7 years agoadd comment for web UI to git repo
Karen Etheridge [Tue, 28 Mar 2017 21:41:11 +0000]
add comment for web UI to git repo

7 years agodo not require MXRWO if Moose is new enough to have cored it
Karen Etheridge [Mon, 7 Sep 2015 00:50:30 +0000]
do not require MXRWO if Moose is new enough to have cored it

7 years agouse simpler code syntax in pod
Karen Etheridge [Mon, 7 Sep 2015 00:44:27 +0000]
use simpler code syntax in pod

7 years agoAvoid List::MoreUtils
Aaron Crane [Thu, 23 Mar 2017 10:16:31 +0000]
Avoid List::MoreUtils

The latest version of this module has a confusing and hard-to-honour set of
licences, with different terms for code added in different versions.

The only use we make of it is the uniq() function. A routine with the same
behaviour is available in newer versions of List::Util, and we already
depend on older versions of *that* module. So depending on a recent enough
version of List::Util means that this change actually reduces the number of
non-core dependencies for users with a new enough version of Perl.

7 years agoFix ensure_class_loaded in Catalyst::ScriptRole
Andrew Rodland [Sun, 19 Mar 2017 20:07:02 +0000]
Fix ensure_class_loaded in Catalyst::ScriptRole

it was trying to import ensure_class_loaded from Catalyst::Utils, but
Catalyst::Utils doesn't export. On current perls the import silently
fails, and the coercion for loader_class would have failed at runtime
if anyone actually tried to pass a non-loaded class as loader_class.
But with a sufficiently old version of UNIVERSAL it fails at compile
time instead (http://stackoverflow.com/q/42883017). Also the return
value of the via was 1, so no one could have ever been using this
thing. Fix it up.

While we're there, replace a usage of Class::Load::load_class with
ensure_class_loaded, because we don't really need two.

7 years agoAdded a further hint for how to turn off automatic encoding.
Colin Newell [Fri, 3 Mar 2017 15:50:06 +0000]
Added a further hint for how to turn off automatic encoding.

There is lots of documentation, but when you're knee deep in code
it can be hard to spot.

7 years agoAdd support for HTTP PATCH for body_data
Peter Mottram [Mon, 30 Jan 2017 18:03:24 +0000]
Add support for HTTP PATCH for body_data

7 years agoChange behaviour for terminal width detection
Simon Amor [Fri, 27 Jan 2017 15:45:13 +0000]
Change behaviour for terminal width detection

Sometimes Term::Size::Any is installed but can return a width of
undef. This causes the eval to succeed but then it falls back to
using 80 characters.

This change allows it to look at $ENV{COLUMNS} for a hint if the
width isn't defined or if the eval fails due to a missing module
instead of just if the eval returns an error.

7 years agofixes debug output of body and query parameters with multiple values
Tobias Klug [Fri, 23 Dec 2016 09:43:27 +0000]
fixes debug output of body and query parameters with multiple values
when use_hash_multivalue_in_request is used.

7 years agoupdate changlog
John Napiorkowski [Mon, 19 Dec 2016 15:47:47 +0000]
update changlog

7 years agoinvestigage SSimple
John Napiorkowski [Mon, 19 Dec 2016 15:45:14 +0000]
investigage SSimple

7 years agoproposed new release
John Napiorkowski [Mon, 19 Dec 2016 15:24:04 +0000]
proposed new release

7 years agoproposed fix to endless bug
John Napiorkowski [Mon, 19 Dec 2016 15:10:29 +0000]
proposed fix to endless bug

7 years agoMerge branch 'jegade-master'
John Napiorkowski [Mon, 19 Dec 2016 15:07:26 +0000]
Merge branch 'jegade-master'

7 years ago Modify travis.yml
Jens Gassmann [Sun, 18 Dec 2016 21:49:05 +0000]
 Modify travis.yml

7 years agoAdd Travis Perl 5.22 and 5.24
Jens Gassmann [Sun, 18 Dec 2016 21:44:06 +0000]
Add Travis Perl 5.22 and 5.24

7 years ago Tests for double dot bug
Jens Gassmann [Sun, 18 Dec 2016 21:39:38 +0000]
 Tests for double dot bug

7 years agoweaken evil hack 5.90113
John Napiorkowski [Thu, 15 Dec 2016 20:03:50 +0000]
weaken evil hack

7 years agodocumented changes
John Napiorkowski [Thu, 15 Dec 2016 19:21:00 +0000]
documented changes

7 years agoMerge branch 'topic/evilstash'
John Napiorkowski [Thu, 15 Dec 2016 19:12:53 +0000]
Merge branch 'topic/evilstash'

7 years agodocs and allow ../
John Napiorkowski [Thu, 15 Dec 2016 15:24:57 +0000]
docs and allow ../

7 years agotest case and proposed fix
John Napiorkowski [Thu, 15 Dec 2016 01:52:56 +0000]
test case and proposed fix

7 years agofix the POD for finalize_headers
Ferruccio Zamuner [Wed, 12 Oct 2016 13:18:09 +0000]
fix the POD for finalize_headers

7 years agofor people that do silly things
John Napiorkowski [Wed, 21 Sep 2016 10:24:40 +0000]
for people that do silly things

7 years agosort controllers in setup_actions
Matt S Trout [Sat, 3 Sep 2016 18:16:25 +0000]
sort controllers in setup_actions

7 years agoUpdated doc and provided tests for abort_chain_on_error_fix
Marco Pessotto [Tue, 30 Aug 2016 12:18:43 +0000]
Updated doc and provided tests for abort_chain_on_error_fix

There is too much copypasta for my liking here, because there is the
same app with just a different setting in all of the 3 test files,
which are basically the same (save for the config), but it does the job.

7 years agospeeling fixes from Debian 5.90112
John Napiorkowski [Mon, 25 Jul 2016 20:47:42 +0000]
speeling fixes from Debian

7 years agoPrevent error on param encoding if encoding is not specified
James Chao [Thu, 21 Jul 2016 16:41:57 +0000]
Prevent error on param encoding if encoding is not specified

7 years agotest case for reported regression
John Napiorkowski [Mon, 25 Jul 2016 20:39:15 +0000]
test case for reported regression

7 years agoversion info for release
John Napiorkowski [Wed, 20 Jul 2016 20:09:33 +0000]
version info for release

7 years agoMerge pull request #144 from melmothx/unicode-exceptions 5.90111
John Napiorkowski [Wed, 20 Jul 2016 19:12:24 +0000]
Merge pull request #144 from melmothx/unicode-exceptions

Document and test what handle_unicode_exception is supposed to return

7 years agoprep release 5.90110
John Napiorkowski [Wed, 20 Jul 2016 18:46:03 +0000]
prep release

7 years agoBe clearer about the return value of handle_unicode_exception
Marco Pessotto [Wed, 20 Jul 2016 07:51:11 +0000]
Be clearer about the return value of handle_unicode_exception

7 years agoDocument and test what handle_unicode_exception is supposed to return
Marco Pessotto [Wed, 20 Jul 2016 07:45:05 +0000]
Document and test what handle_unicode_exception is supposed to return

7 years agomake sure we are explicit in the return
John Napiorkowski [Tue, 19 Jul 2016 20:47:04 +0000]
make sure we are explicit in the return

7 years agoquery not checks unicode like post and args
John Napiorkowski [Mon, 18 Jul 2016 21:57:48 +0000]
query not checks unicode like post and args

7 years agoMerge branch 'melmothx-invalid-get-param-unicode' into unicode-exception-issue
John Napiorkowski [Mon, 18 Jul 2016 21:00:43 +0000]
Merge branch 'melmothx-invalid-get-param-unicode' into unicode-exception-issue

7 years agodocumentation patch (edited by jnap)
Marco Pessotto [Mon, 18 Jul 2016 20:58:18 +0000]
documentation patch (edited by jnap)

7 years agoAdded failing tests for invalid UTF-8
Marco Pessotto [Mon, 18 Jul 2016 08:06:46 +0000]
Added failing tests for invalid UTF-8

7 years agotrap http exceptions in prepare response phase
John Napiorkowski [Fri, 15 Jul 2016 17:55:00 +0000]
trap http exceptions in prepare response phase

7 years agoexample short circuit prepare phase
John Napiorkowski [Wed, 6 Jul 2016 14:08:05 +0000]
example short circuit prepare phase

7 years agorelease 5.90106
John Napiorkowski [Wed, 6 Jul 2016 13:13:23 +0000]
release

7 years agofix for debug regression caused by commit 5dd46e24eedec447bdfbc4061ed683b5a17a7b0c
John Napiorkowski [Wed, 6 Jul 2016 00:47:12 +0000]
fix for debug regression caused by commit 5dd46e24eedec447bdfbc4061ed683b5a17a7b0c

7 years agoset correct %INC
John Napiorkowski [Mon, 20 Jun 2016 16:35:17 +0000]
set correct %INC

7 years agoadded info to Delta file
John Napiorkowski [Wed, 8 Jun 2016 19:45:19 +0000]
added info to Delta file

7 years agocompose req/res/stats class much much ;ater
John Napiorkowski [Wed, 8 Jun 2016 19:26:51 +0000]
compose req/res/stats class much much ;ater

7 years agofix noisy logs with header set aftger finalize 5.90105
John Napiorkowski [Wed, 8 Jun 2016 17:57:15 +0000]
fix noisy logs with header set aftger finalize

7 years agoset new version for release
John Napiorkowski [Wed, 8 Jun 2016 15:37:42 +0000]
set new version for release

7 years agofixed reported c->state regression
John Napiorkowski [Wed, 8 Jun 2016 15:32:19 +0000]
fixed reported c->state regression

7 years agoMerge branch 'cventers-execute_exception'
John Napiorkowski [Wed, 8 Jun 2016 14:37:13 +0000]
Merge branch 'cventers-execute_exception'

7 years agoMerge branch 'execute_exception' of https://github.com/cventers/catalyst-runtime...
John Napiorkowski [Wed, 8 Jun 2016 14:37:01 +0000]
Merge branch 'execute_exception' of https://github.com/cventers/catalyst-runtime into cventers-execute_exception

7 years agoimproved req/res/stats trait composing
John Napiorkowski [Wed, 8 Jun 2016 14:34:48 +0000]
improved req/res/stats trait composing

7 years agolets see if we can silence the error strawberry perl is upchucking
John Napiorkowski [Wed, 8 Jun 2016 13:36:11 +0000]
lets see if we can silence the error strawberry perl is upchucking

7 years agoAdd test case for $c->state and exceptions inside $c->execute
Chase Venters [Tue, 7 Jun 2016 14:55:21 +0000]
Add test case for $c->state and exceptions inside $c->execute

See: https://github.com/perl-catalyst/catalyst-runtime/issues/136

Signed-off-by: Chase Venters <chase.venters@gmail.com>