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