Skip to content

Commit 0f1d2bc

Browse files
committed
Improved changelog and check-changelog.sh after review
Signed-off-by: Marco Pracucci <marco@pracucci.com>
1 parent 1b16c68 commit 0f1d2bc

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ instructions below to upgrade your PostgreSQL.
1212

1313
* [CHANGE] The frontend component now does not cache results if it finds a `Cache-Control` header and if one of its values is `no-store`. #1974
1414
* [CHANGE] Flags changed with transition to upstream Prometheus rules manager:
15-
* `ruler.client-timeout` is now `ruler.configs.client-timeout` in order to match `ruler.configs.url`
16-
* `ruler.group-timeout`has been removed
17-
* `ruler.num-workers` has been removed
18-
* `ruler.rule-path` has been added to specify where the prometheus rule manager will sync rule files
15+
* `ruler.client-timeout` is now `ruler.configs.client-timeout` in order to match `ruler.configs.url`.
16+
* `ruler.group-timeout`has been removed.
17+
* `ruler.num-workers` has been removed.
18+
* `ruler.rule-path` has been added to specify where the prometheus rule manager will sync rule files.
1919
* `ruler.storage.type` has beem added to specify the rule store backend type, currently only the configdb.
2020
* `ruler.poll-interval` has been added to specify the interval in which to poll new rule groups.
21-
* Ruler sharding requires a ring which can be configured via the ring flags prefixed by `ruler.ring.`
21+
* Ruler sharding requires a ring which can be configured via the ring flags prefixed by `ruler.ring.`. #1987
2222
* [CHANGE] Use relative links from /ring page to make it work when used behind reverse proxy. #1896
2323
* [CHANGE] Deprecated `-distributor.limiter-reload-period` flag. #1766
2424
* [CHANGE] Ingesters now write only normalised tokens to the ring, although they can still read denormalised tokens used by other ingesters. `-ingester.normalise-tokens` is now deprecated, and ignored. If you want to switch back to using denormalised tokens, you need to downgrade to Cortex 0.4.0. Previous versions don't handle claiming tokens from normalised ingesters correctly. #1809

tools/release/check-changelog.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
# Expect as input parameter the commits range to analyze.
44
if [ $# -ne 1 ]; then
5-
echo "Usage: $0 COMMIT-RANGE"
5+
echo "Usage: $0 range"
6+
echo ""
7+
echo " range The commit range to compare as documented at:"
8+
echo " https://git-scm.com/docs/gitrevisions"
9+
echo ""
10+
echo "Example:"
11+
echo " $0 v0.4.0...master"
12+
echo ""
613
exit 1
714
fi
815

0 commit comments

Comments
 (0)