fix process#alive? to not raise on no such file
[god.git] / History.txt
blob87facfb61ae0a950a7be0ef73c0b018bcdda2db3
1 == 0.4.3
2 * Bug Fixes
3   * fix Process#alive? to not raise on no such file
5 == 0.4.2
6 * Bug Fixes
7   * fix netlink events [dkresge]
9 == 0.4.1
10 * Bug Fixes
11   * require 'stringio' for ruby 1.8.5
13 == 0.4.0
15 * Major Enhancements
16   * Add the ability for conditions to override transition state (for exceptional cases)
17   * Implement dynamic load of config files while god is running (god load <filename>)
18   * Add ability to save auto-daemonized process output to a log file
19   * Add robust default stop lambda command for auto-daemonized processes (inspired by _eric)
20   * Add status command for god binary (shows status of each watch)
21   * Create proper logger with timestamps
22   * Add log command to god binary to get real time logs for a specific watch from a running god instance
23   * Add terminate command for god binary (stop god and all watches)
24 * Minor Enhancements
25   * Enforce validity of Watches
26   * Enforce that God.init is not called after a Watch
27   * Move pid_file_directory creation and validation to God.start
28   * Remove check for at least one Watch during startup (now that dynamic loading exists)
29 * New Conditions
30   * Tries < PollCondition - triggers after the specified number of tries
31   * Add :notify_when_flapping behavior to check for oscillation [kevinclark]
32   * Add :degrading_lambda condition. [kevinclark]
33     It uses a decaying interval (1/2 rate) for 3 cycles before failing.
34 * Bug Fixes
35   * Use exit!(0) instead of exit! in god binary to exit with code 0 (instead of default -1)
36   * Command line group control fixed
37   * Fix cross-thread return problem (use exit instead)  
39 == 0.3.0 / 2007-08-17
41 * Fix netlink header problem on Ubuntu Edgy [Dan Sully]
42 * Add uid/gid setting for processes [kevinclark]
43 * Add autostart flag for watches so they don't necessarily startup with god [kevinclark]
44 * Change command line call options for god binary to accommodate watch start/stop functionality
45 * Add individual start/stop/restart grace periods for finer grained control
46 * Change default DRb port to 17165 ('god'.to_i(32))
47 * Implement command line control to start/restart/stop/monitor/unmonitor watches/groups by name
48 * Watches can now belong to a group that can be controlled as a whole
49 * Allow god to be installed (sans events) on systems that don't support events
50 * Daemonize and handle PID files for non-daemonizing scripts [kevinclark]
51 * Fix simple mode lifecycle gap
52 * Remove necessity to specify pid_file for conditions
53 * Change config file to use God.init and God.watch directly instead of God.meddle block
54 * Move god binary command logic to main library
55 * Enhance god binary with better reporting
56 * Fix synchronization bug in Timer (reported by Srini Panguluri)
57 * Add Lambda condition for easy custom conditions [Mike Mintz]
58 * Add sugar for numerics (seconds, minutes, kilobytes, megabytes, percent, etc)
59 * Add optional PID and log file generation to god binary for daemon mode
60 * Add God.load to do glob enabled loading
61 * Add -V option to god binary for detailed version/build info
63 == 0.2.0 / 2007-07-18
65 * Rewrote innards to use a state and event based lifecycle
66 * Basic support for events via kqueue (bsd/darwin) and netlink/pec (linux) [kevinclark]
67 * Added advanced syntax (simple syntax calls advanced api underneath)
68 * Condition returns have changed meaning. With simple syntax, a true return activates block
69 * Updated http://god.rubyforge.org with updated simple config and new advanced config
71 == 0.1.0 / 2007-07-07
73 * 1 major enhancement
74   * Birthday!