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