1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
$Id: CHANGES,v 1.1.1.1.4.1 2007/06/25 13:09:19 trockij Exp $
$Name: mon-client-1-2-0-release $
CHANGELOG
Mon Jun 25 09:08:37 EDT 2007
----------------------------
For use with mon-1.2.x, see:
http://www.kernel.org/software/mon/
Differences between 0.9901 and 1.0000:
Fri Jun 18 09:38:01 EDT 2004
--------------------------------------
-slight change in _esc_str and _un_esc_str to allow opstatus to
be handled by split on whitespace instead of requiring Text::Parsewords,
which has in the past shown to be buggy.
Differences between Mon-0.11 and 0.9901:
Fri Apr 5 12:17:49 EST 2002
--------------------------------------
-win32 fixes submitted by andrew ryan
-changed versioning to correspond with mon-0.99.1
-removed "quotewords" because it was causing a segfault
when processing some opstatus lines. i believe perl 5.6.1 fixed the
regexp processing bug which this was tripping, but sometimes it make
more sense to make a workaround in 1 tiny library then to upgrade and
test perl and all associated modules on a production machine.
-use strict, fixed a couple bugs that uncovered
Differences between Mon-0.10 and 0.11:
Sun Oct 29 12:16:43 PST 2000
--------------------------------------
-incorporated Andrew Ryan's "test config" patch
Differences between Mon-0.8 and 0.9:
Mon Feb 28 04:59:39 PST 2000
------------------------------------
-removed prot_cmp functions and no more support
for talking with 0.37 servers. prot_cmp was making
monshow fail with "unknown protocol" error.
Differences between Mon-0.7 and 0.8:
Tue Feb 22 08:51:42 PST 2000
------------------------------------
-fixed the operation of the "test" command
-list_opstatus now accepts ([group, service], ...)
-version is now set properly
-added list_watch
-added protid, and optionally verify protocol ID upon
connect (can be disabled, read the man page).
Differences between Mon-0.6 and 0.7:
Sun Feb 6 13:07:57 PST 2000
------------------------------------
-Fixed a problem with the "test" function. It now requires
the type of test as the first argument. Bug reported by
andrewr@myCFO.com and rjentsch@electronicpartner.de.
-reload accepts arguments such as "reload auth"
-fix "list pids" output parsing to match what mon-0.38.16 does.
-list_dtlog submitted by Martha H Greenberg <marthag@mit.edu>
Differences between Mon-0.5 and 0.6:
Tue Nov 16 10:51:26 PST 1999
------------------------------------
-Added Mon::Protocol.
-Some code cleanups
-Added new quoting rules for mon-0.38.15
-implemented get and set
-supports escaped values
Differences between Mon-0.4 and 0.5:
------------------------------------
-Fixed bug in old (before 0.38) opstatus parsing for Client.pm
Differences between Mon-0.3 and 0.4:
------------------------------------
-Changed argument format for "prot", and added "prot_cmp", and
made appropriate documentation updates.
-$self->{"VERSION"} now defaults to undef (like it should),
since it is not the _requested_ protocol version, it is the
version obtained by asking the server. The _requested_ protocol
version is specified via $self->prot().
-_list_opstatus now uses $self->prot() to figure out how to behave
when talking to the server.
-Export %OPSTAT for use by clients
Differences between Mon-0.1 and 0.3:
------------------------------------
-Added send_trap, submitted by Lars Marowsky-Bree <lmb@teuto.net>.
-new now lets you initialize variables.
-Updated docs.
|