Skip to content

Commit 2cfabc6

Browse files
committed
Release 4.1.1
1 parent 67d75fb commit 2cfabc6

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG

+13
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1+
4.1.1:
2+
New features:
3+
- Use locally available info for remote server configuration page when
4+
possible (Julien Rouhaud)
5+
Bug fixes:
6+
- Fix per-query page for queries with identical query identifier executed on
7+
multiple remote servers (Julien Rouhaud)
8+
- Properly handle situation where the UI doesn't know the remote server
9+
PostgreSQL version (Julien Rouhaud)
10+
- Fix local server detection (Julien Rouhaud, thanks to github user
11+
alepaes1975 for the report)
112
4.1.0:
213
New features:
314
- Add compatibility with pg_stat_statements 1.8, and expose all new counters
415
(Julien Rouhaud)
516
- Add compatibility with pg_stat_kcache 2.2 (Julien Rouhaud)
17+
Performance improvements:
18+
- General performance improvement of per-database queries (Adrien Nayrat)
619
4.0.2:
720
New features:
821
- Add powa_coaslesce setting on config page (Adrien Nayrat)

powa/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import os
66
import re
77

8-
__VERSION__ = '4.1.0'
8+
__VERSION__ = '4.1.1'
99

1010
ver_tmp = re.sub("(alpha|beta)[0-9]*", "", __VERSION__)
1111
__VERSION_NUM__ = [int(part) for part in (ver_tmp.split('.'))]

0 commit comments

Comments
 (0)