Skip to content

Commit 77acea0

Browse files
committed
Release 4.0.2
1 parent 47366db commit 77acea0

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
4.0.2:
2+
New features:
3+
- Add powa_coaslesce setting on config page (Adrien Nayrat)
4+
Performance improvements:
5+
- Fix a cartesian product in the predicate view (Adrien Nayrat)
6+
- Fix multiple queries so they can use the existing indexes (Adrien Nayrat)
7+
- Multiple performance improvements on the per-predicate views (Adrien Nayrat
8+
and Julien Rouhaud)
9+
Bug fixes:
10+
- Properly ignore queries that weren't called on the given interval (Adrien
11+
Nayrat)
12+
- Don't display the last retrieved value on graphs, as the value is known to
13+
always be zero and lead to wrong graphs (Adrien Nayrat)
14+
- Fix links to documentation (Matthias Dötsch)
15+
- Fix collector worker status state when srvid greater than 9 (Julien
16+
Rouhaud, thanks to Adrien Nayrat for the report)
117
4.0.1:
218
Bug fixes:
319
- Fix per-query hypothetical index checking (Julien Rouhaud, thanks to github

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.0.1'
8+
__VERSION__ = '4.0.2'
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)