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