Skip to content

Commit 29118cc

Browse files
committed
Update ChangeLog and version to 11.7
1 parent 14c1e42 commit 29118cc

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

ChangeLog

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
2022-01-23 - v11.7
2+
3+
This release of pgBadger fix some issues reported by users since past
4+
five months as well as some improvements:
5+
6+
* Add new option --no-progressbar option to not display it but keep the
7+
other outputs.
8+
* Add new option --day-report that can be used to rebuild an HTML report
9+
over the specified day. Like option --month-report but only for a day.
10+
It requires the incremental output directories and the presence of all
11+
necessary binary data files. The value is date in format: YYYY-MM-DD
12+
* Improve parsing of Heroku logplex and cloudsql json logs.
13+
14+
Here is the complete list of changes and acknowledgments:
15+
16+
- Update contribution guidelines and Makefile.PL to improve consistency,
17+
clarity, and dependencies. Thanks to diffuse for the patch.
18+
- Fix use of last parse file (--last-parsed) with binary mode. Thanks to
19+
wibrt for the report.
20+
- Add regression test for --last-parsed use and fix regression test on
21+
report for temporary files only.
22+
- Fix title for session per host graph. Thanks to Norbert Bede for the
23+
report.
24+
- Fix week number when computing weeks reports when --iso-week-number
25+
and --incremental options was enabled. Thanks to hansgv for the report.
26+
- Add --no-progressbar option to not display it and keep the other outputs.
27+
Thanks to seidlmic for the feature request.
28+
- Prevent too much unknown format line prints in debug mode for multi-line
29+
jsonlog.
30+
- Fix parsing of single line cloudsql json log. Thanks to Thomas Leclaire
31+
for the report.
32+
- Fix temporary files summary with log_temp_files only.
33+
- Print debug message with -v even if -q or --quiet is used.
34+
- Fix autodetection of jsonlog file.
35+
- Fix parsing of cloudsql log file. Thanks to Luc Lamarle for the report.
36+
- Fixes pid extraction in parse_json_input. Thanks to Francois Scala for
37+
the patch.
38+
- Add new option --day-report with value as date in format: YYYY-MM-DD
39+
that can be used to rebuild an HTML report over the specified day.
40+
Thanks to Thomas Leclaire for the feature request.
41+
- Fix query counter in progress bar. Thanks to Guillaume Lelarge for the
42+
report.
43+
- Fix incomplete queries stored for top bind and prepare reports.
44+
- Fix normalization of object identifier, in some case the numbers was
45+
replaced by a ?.
46+
- Fix unformatted normalized queries when there is a comment at beginning.
47+
- Fix multi-line in stderr format when --dbname is used. Thanks to
48+
Guillaume Lelarge for the report.
49+
- Fix not generated reports in incremental mode when --dbname is used.
50+
Thanks to Dudley Perkins for the report.
51+
- Do not die anymore if a binary file is not compatible, switch to next
52+
file. Thanks to Thomas Leclaire for the suggestion.
53+
- Fix Heroku logplex format change in pgbadger parser. Thanks to François
54+
Pietka for the report.
55+
156
2021-09-04 - v11.6
257

358
This release of pgBadger fix some issues reported by users since past

META.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: pgBadger
2-
version: 11.4
2+
version: 11.7
33
version_from: pgbadger
44
installdirs: site
55
recommends:

pgbadger

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ use Socket;
5252
use constant EBCDIC => "\t" ne "\011";
5353
use Encode qw(encode decode);
5454

55-
$VERSION = '11.6';
55+
$VERSION = '11.7';
5656

5757
$SIG{'CHLD'} = 'DEFAULT';
5858

0 commit comments

Comments
 (0)