repository moved to https://github.com/moose/MooseX-Daemonize
[gitmo/MooseX-Daemonize.git] / Changes
CommitLineData
bf15ebcc 1Revision history for {{$dist->name}}
1d85c76d 2
bf15ebcc 3{{$NEXT}}
de7ff63e 4 - fix buggy test that does not try hard enough to look for a nonexistent
5 pid (ether)
f11ff7dd 6 - repository moved to github moose organization
8290606d 7
bf15ebcc 80.18 2013-05-13 19:34:52Z
f39d1775 9 - make tests a bit more tolerant of slow systems, by waiting longer for
10 processes to die (RT#85229, Chisel Wright)
11
a83c1add 120.17 2013-04-20
13 - Makefile.PL now prevents installation on MSWin32
14
61d0473c 150.16 2013-04-14
975de01f 16 - fix incompatibilities with Test::Builder 1.005+ (schwern, RT#76523)
f6bb8484 17 - add missing dependency on the version of File::Path which added
18 make_path (RT#79169, Jonathan Sailor)
c3be5936 19 - add missing test dependency on Test::Exception (RT#70382)
f453ca7b 20 - document the 'basedir' attribute and its behaviour (RT#83055)
399854a3 21 - add 'documentation' keys for public attributes, to be used when
22 displaying --help (RT#54295)
975de01f 23
f4d68418 240.15 2012-05-31
62b880da 25 - fix versions
26
f4d68418 270.14 2012-05-30
2358b232 28 - recommend Daemon::Control instead
29 - fix bug with pidbase dir not being created
30 if it doesn't already exist
31
f4d68418 320.13 2011-07-06
05b96f4d 33 - adding docs related to closing all
34 filehandles and the issues that can
35 cause with things like Log::Log4Perl
36 (thanks to Maik Hentsche via RT #67016)
37 - updating copyright dates
38
f4d68418 390.12 2010-07-11
8625135b 40 - release without the .git directory in it
41
f4d68418 420.11 2010-07-10
2ecc2ccb 43 * MooseX::Daemonize::Core
44 - make the options to daemonize()
45 into proper attributes but still
46 retained back-compat (Thanks to Magnus Erixzon)
47 - adjusted docs and tests
48
49 - removed the pod.t and pod-coverage.t tests
50
f4d68418 510.10 2010-04-17
1d85c76d 52 - updated copyrights
53 - removed the POE test because it was causing
54 random failures when installing from CPAN
55 and not adding enough value to keep around
56 - applied POD corrections from RT #50091
57 (thanks to Kostyuk Oleg)
58
f4d68418 590.09 2009-10-05
69186a48 60 * s/no_plan => 1/'no_plan'/g (Dave Rolsky)
61 * Synchronize Version numbers
a4952679 62
f4d68418 630.08 2008-09-07
f4896eec 64 * t/
65 - Removed usage of Cwd in favour of a temporary dir to prevent test fails
66 when running in an unwritable dir
91e059f2 67 - patch to ensure that t/01.filecreate.t passes (thanks to Jose Luis Rey)
f4896eec 68
f4d68418 690.07 2008-05-24
b38ab84f 70 * MooseX::Daemonize
1d85c76d 71 - Made default pidbase '/var/run' rather
df3c463b 72 than './var/run'
1d85c76d 73
df3c463b 74 * t/
1d85c76d 75 - Small fixups to pidfile testing in
df3c463b 76 t/31.with_pid_file_and_poe.t
77
78 ~ Removed the Build.PL since Module::Install
79 has removed their support
b38ab84f 80
f4d68418 810.06 2007-12-21
2eced271 82 * MooseX::Daemonize
1d85c76d 83 - Fix logic that kills process so it doens't always warn
8ac4733f 84 about undead process
2eced271 85 - Added stop_timeout to allow user to control timings.
8ac4733f 86 - Refactored to roles
fe0eeebc 87 - removed Proc::Daemon dependency
88 - removed File::Pid dependency
1d85c76d 89 - added exit_code and status_message to capture the
92cf56b7 90 exit code and a status message :)
91 - refactored start/stop/restart to use these
92 - added tests for this
93 - added a &status command which returns a bool telling
94 you if the daemon is running or not
95 - added tests for this
1d85c76d 96
fe0eeebc 97 * Test::MooseX::Daemonize
1d85c76d 98 - updated docs
fe0eeebc 99 - removed Proc::Daemon dependency
8ac4733f 100
101 * MooseX::Daemonize::Core
102 - the core daemonization methods are here
103 - added tests for this
8ac4733f 104
105 * MooseX::Daemonize::WithPidFile
8a4b7cfc 106 - the PID file handling is added to the core here
107 - added tests for this
8ac4733f 108
109 * MooseX::Daemonize::Pid
110 - added this package to replace the File::Pid stuff
1d85c76d 111
d8985b7d 112 * MooseX::Daemonize::Pid::File
8ac4733f 113 - added this package to replace the File::Pid stuff, it is a subclass
114 of MooseX::Daemonize::Pid (stevan)
2eced271 115 - added tests for this (stevan)
b916501e 116
f4d68418 1170.05 2007-11-18
1d85c76d 118 - Fix logic that kills process so it doens't always warn
2a0d9919 119 about undead process
120 - Added stop_timeout to allow user to control timings.
121
f4d68418 1220.04 2007-11-11
1d85c76d 123 - Fix stupid perlcritic.t cause the Module::Starter::PBP tests were
fe0eeebc 124 stupid but I didn't realize it.
b916501e 125
f4d68418 1260.03 2007-10-22
b916501e 127 - Add File::Slurp to dependencies so our tests pass better
128
f4d68418 1290.02 2007-09-19
1d85c76d 130 - Fixed bug where sometimes the pidfile is writeable but pidbase is not -- reported by dec
131 - Fixed bug where the pidfile wasn't being updated properly -- reported by dec
b916501e 132 - Added is_daemon attribute
133 - Added another fork to make sure we short circuit out of the daemonize process properly
134 - Switch to File::Pid
7ada91b8 135 - Add the GetOpt prereq
b916501e 136 - Adjust the kill timings
137 - Added THANKS to pod
7ada91b8 138
f4d68418 1390.0.1 2007-05-16
a4952679 140 Initial release.
141