Skip to content

Commit

Permalink
Release 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rjuju committed Feb 11, 2021
1 parent 67d75fb commit 2cfabc6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
4.1.1:
New features:
- Use locally available info for remote server configuration page when
possible (Julien Rouhaud)
Bug fixes:
- Fix per-query page for queries with identical query identifier executed on
multiple remote servers (Julien Rouhaud)
- Properly handle situation where the UI doesn't know the remote server
PostgreSQL version (Julien Rouhaud)
- Fix local server detection (Julien Rouhaud, thanks to github user
alepaes1975 for the report)
4.1.0:
New features:
- Add compatibility with pg_stat_statements 1.8, and expose all new counters
(Julien Rouhaud)
- Add compatibility with pg_stat_kcache 2.2 (Julien Rouhaud)
Performance improvements:
- General performance improvement of per-database queries (Adrien Nayrat)
4.0.2:
New features:
- Add powa_coaslesce setting on config page (Adrien Nayrat)
Expand Down
2 changes: 1 addition & 1 deletion powa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
import re

__VERSION__ = '4.1.0'
__VERSION__ = '4.1.1'

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

0 comments on commit 2cfabc6

Please sign in to comment.