Update ChangeLog and upgrade version to 5.1.
This commit is contained in:
parent
f9f6e71b1d
commit
83f0e31cea
35
ChangeLog
35
ChangeLog
|
@ -1,7 +1,13 @@
|
|||
Revision history for SquidAnalyzer
|
||||
|
||||
5.1-alpha
|
||||
5.1 - Wed Jan 30 00:11:57 CET 2013
|
||||
|
||||
- Add squid-analyzer usage information into documentation.
|
||||
- Update INSTALL file about FreeBSD issue.
|
||||
- Add -v | --version and -d | --debug command line options.
|
||||
- Add support to automatic deletion of obsolete statistics and data.
|
||||
- Add -p | --preserve option to allow automatic removing of obsolete
|
||||
statistic. Thanks to ammdispose for the feature request.
|
||||
- Fix documentation about OrderUrl that is limited to User detailed Urls
|
||||
reports, not Top Url and Top domain.
|
||||
- Set default sorttable sort in descending order first.
|
||||
|
@ -40,6 +46,21 @@ Revision history for SquidAnalyzer
|
|||
- Add missing class CSS style to user graphs table. Thanks to Nathanael
|
||||
Bonin for the report.
|
||||
|
||||
UPGRADE: You must reinstall all. Backward compatibility is preserved on data
|
||||
files, but the HTML reports have changed, so after re-installing SquidAnalyzer
|
||||
you may want to run manually squid-analyzer with the --rebuild command line
|
||||
option to regenerate those files. So run the following commands:
|
||||
|
||||
tar xzf SquidAnalyzer-5.1.tar.gz
|
||||
cd SquidAnalyzer-5.1/
|
||||
perl Makefile.PL HTMLDIR=/var/www/squidanalyzer
|
||||
make && make install
|
||||
/usr/local/bin/squid-analyzer --rebuild
|
||||
|
||||
should be the normal procedure to upgrade. Change the path to the HTML output
|
||||
dir if required.
|
||||
|
||||
|
||||
5.0 - Mon Dec 10 22:24:23 CET 2012
|
||||
|
||||
Thanks to the great work of Nathanael Bonin, SquidAnalyzer has now a new design.
|
||||
|
@ -88,10 +109,11 @@ SquidAnalyzer.
|
|||
file can be overriden at upgrade. Thanks to Klaus Tachtler for the
|
||||
report.
|
||||
|
||||
UPGRADE: You must reinstall all but backward compatibility is fully preserved. Even
|
||||
if backward compatibility is preserved on data files, the HTML and graph have changed,
|
||||
so after re-installing SquidAnalyzer you may want to run squid-analyzer with the
|
||||
--rebuild command line option to regenerate those files. So run the following commands:
|
||||
UPGRADE: You must reinstall all but backward compatibility is fully preserved.
|
||||
Even if backward compatibility is preserved on data files, the HTML and graph
|
||||
have changed, so after re-installing SquidAnalyzer you may want to run manually
|
||||
squid-analyzer with the --rebuild command line option to regenerate those files.
|
||||
So run the following commands:
|
||||
|
||||
tar xzf SquidAnalyzer-5.0.tar.gz
|
||||
cd SquidAnalyzer-5.0/
|
||||
|
@ -99,7 +121,8 @@ so after re-installing SquidAnalyzer you may want to run squid-analyzer with the
|
|||
make && make install
|
||||
/usr/local/bin/squid-analyzer --rebuild
|
||||
|
||||
should be the normal procedure to upgrade. Change the path to the HTML output dir if required.
|
||||
should be the normal procedure to upgrade. Change the path to the HTML output
|
||||
dir if required.
|
||||
|
||||
4.4 - Tue Aug 21 21:01:43 CEST 2012
|
||||
|
||||
|
|
7
META.yml
7
META.yml
|
@ -1,13 +1,8 @@
|
|||
# http://module-build.sourceforge.net/META-spec.html
|
||||
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
|
||||
name: SquidAnalyzer
|
||||
version: 5.0
|
||||
version: 5.1
|
||||
version_from: SquidAnalyzer.pm
|
||||
installdirs: site
|
||||
requires:
|
||||
GD: 0
|
||||
GD::Graph: 0
|
||||
GD::Graph3d: 0
|
||||
|
||||
distribution_type: module
|
||||
generated_by: ExtUtils::MakeMaker version 6.17
|
||||
|
|
|
@ -20,7 +20,7 @@ BEGIN {
|
|||
use IO::File;
|
||||
|
||||
# Set all internal variable
|
||||
$VERSION = '5.0';
|
||||
$VERSION = '5.1';
|
||||
$COPYRIGHT = 'Copyright (c) 2001-2013 Gilles Darold - All rights reserved.';
|
||||
$AUTHOR = "Gilles Darold - gilles _AT_ darold _DOT_ net";
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
Summary: Squid proxy log analyzer and report generator
|
||||
Name: squidanalyzer
|
||||
Version: 5.0
|
||||
Version: 5.1
|
||||
Release: %mkrel 1
|
||||
License: GPLv3
|
||||
Group: Monitoring
|
||||
|
|
Loading…
Reference in New Issue