up to 0.6.2
[god.git] / History.txt
blobac3f3c90c9b2cec97ce1c7bb601a954188740dad
1 == 0.6.2 / 2007-12-17
2   * Minor Enhancements
3     * Output registered PID for ProcessExits
4   * Bug Fixes
5     * Fix `god remove <group>` not working for unmonitored watches
7 == 0.6.1 / 2007-12-14
9 * Minor Enhancement
10   * Log when state change is complete
12 == 0.6.0 / 2007-12-4
14 * Minor Enhancement
15   * Move Syslog calls into God::Logger and clean up all calling code
16   * Remove god's pid file on user requested termination
17   * Better handling and cleanup of DRb server's unix domain socket
18   * Allow shorthand for requesting a god log
19   * Add `god check` to make it easier to diagnose event problems
20   * Refactor god binary into class/method structure
21   * Implement `god remove` to remove a Task altogether
22 * New Conditions
23   * DiskUsage < PollCondition - trigger if disk usage is above limit on mount [Rudy Desjardins]
25 == 0.5.2 / 2007-10-10
27 * Minor Enhancement
28   * Allow extra args to pass through to config file
29   
30 == 0.5.1 / 2007-10-08
32 * Bug Fixes
33   * Rescue connection refused in http response code condition
35 == 0.5.0 / 2007-10-05
37 * Major Enhancements
38   * Implement lifecycle scoped metric to allow for cross-state conditions
39   * Add TriggerCondition for conditions that need info about state changes
40   * Implement notification system
41   * Add Tasks (a generalization of Watches) to do non-process related tasks
42   * Add example init.d file in GOD_INSTALL_DIR/init/god [scott becker]
43   * Add human readable info to conditions (and make low level log lines debug)
44   * Switch DRb to use a unix domain socket for security reasons
45 * Minor Enchancements
46   * Allow EventConditions to do transition overloading
47   * Report errors during god startup instead of failing silently
48   * Make transition block optional (default to Always condition returning true)
49   * Better usage info for `god --help`
50   * Explain what's going on when attempting to rebind to an in-use port
51   * Add -b option to god binary to auto-bind to an unused port
52   * Add `god quit` to stop god without stopping any tasks
53   * Make self-daemonized Watch commands synchronous (as they should be)
54   * Allow self-daemonized Watches to specify a log (could be useful)
55   * Check for existence of config file if specified
56   * Robustify `god load` and report errors back to the command issuer
57   * Warn when `god load` tries to set global options
58   * Add Configurable.clear method and make built-in conditions clear on entry
59 * New Conditions
60   * Flapping < TriggerCondition - trigger on state change
61   * HttpResponseCode < PollCondition - trigger on http response code or timeout (thx scott becker)
62 * New Contacts
63   * Email < Contact - notify via email (smtp)
64 * Bug Fixes
65   * Fix abort not aborting problem
66   * Fix -p option not working for god binary
67   * Fix God.init not accepting block (thx _eric)
68   * Fix SIGHUP ignore (thx _eric)
69   * Fix error reporting on `god --help` (don't error report a normal SystemExit)
71 == 0.4.3 / 2007-09-10
72 * Bug Fixes
73   * fix Process#alive? to not raise on no such file (affects `god terminate`)
75 == 0.4.2 / 2007-09-10
76 * Bug Fixes
77   * fix netlink buffer issue that prevented events on Linux from working consistently [dkresge]
79 == 0.4.1 / 2007-09-10
80 * Bug Fixes
81   * require 'stringio' for ruby 1.8.5
83 == 0.4.0 / 2007-09-10
85 * Major Enhancements
86   * Add the ability for conditions to override transition state (for exceptional cases)
87   * Implement dynamic load of config files while god is running (god load <filename>)
88   * Add ability to save auto-daemonized process output to a log file
89   * Add robust default stop lambda command for auto-daemonized processes (inspired by _eric)
90   * Add status command for god binary (shows status of each watch)
91   * Create proper logger with timestamps
92   * Add log command to god binary to get real time logs for a specific watch from a running god instance
93   * Add terminate command for god binary (stop god and all watches)
94 * Minor Enhancements
95   * Enforce validity of Watches
96   * Enforce that God.init is not called after a Watch
97   * Move pid_file_directory creation and validation to God.start
98   * Remove check for at least one Watch during startup (now that dynamic loading exists)
99 * New Conditions
100   * Tries < PollCondition - triggers after the specified number of tries
101   * Add :notify_when_flapping behavior to check for oscillation [kevinclark]
102   * Add :degrading_lambda condition. [kevinclark]
103     It uses a decaying interval (1/2 rate) for 3 cycles before failing.
104 * Bug Fixes
105   * Use exit!(0) instead of exit! in god binary to exit with code 0 (instead of default -1)
106   * Command line group control fixed
107   * Fix cross-thread return problem
109 == 0.3.0 / 2007-08-17
111 * Fix netlink header problem on Ubuntu Edgy [Dan Sully]
112 * Add uid/gid setting for processes [kevinclark]
113 * Add autostart flag for watches so they don't necessarily startup with god [kevinclark]
114 * Change command line call options for god binary to accommodate watch start/stop functionality
115 * Add individual start/stop/restart grace periods for finer grained control
116 * Change default DRb port to 17165 ('god'.to_i(32))
117 * Implement command line control to start/restart/stop/monitor/unmonitor watches/groups by name
118 * Watches can now belong to a group that can be controlled as a whole
119 * Allow god to be installed (sans events) on systems that don't support events
120 * Daemonize and handle PID files for non-daemonizing scripts [kevinclark]
121 * Fix simple mode lifecycle gap
122 * Remove necessity to specify pid_file for conditions
123 * Change config file to use God.init and God.watch directly instead of God.meddle block
124 * Move god binary command logic to main library
125 * Enhance god binary with better reporting
126 * Fix synchronization bug in Timer (reported by Srini Panguluri)
127 * Add Lambda condition for easy custom conditions [Mike Mintz]
128 * Add sugar for numerics (seconds, minutes, kilobytes, megabytes, percent, etc)
129 * Add optional PID and log file generation to god binary for daemon mode
130 * Add God.load to do glob enabled loading
131 * Add -V option to god binary for detailed version/build info
133 == 0.2.0 / 2007-07-18
135 * Rewrote innards to use a state and event based lifecycle
136 * Basic support for events via kqueue (bsd/darwin) and netlink/pec (linux) [kevinclark]
137 * Added advanced syntax (simple syntax calls advanced api underneath)
138 * Condition returns have changed meaning. With simple syntax, a true return activates block
139 * Updated http://god.rubyforge.org with updated simple config and new advanced config
141 == 0.1.0 / 2007-07-07
143 * 1 major enhancement
144   * Birthday!