From 8fab63e91825fe4ca339e524f1cd78ca3c3f68fd Mon Sep 17 00:00:00 2001 From: Friedrich Gonzalez Date: Wed, 8 May 2024 21:17:35 +0200 Subject: [PATCH] Update changelog Signed-off-by: Friedrich Gonzalez --- CHANGELOG.md | 4 ++++ changelogs/v0.13.2.md | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 changelogs/v0.13.2.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dbf05988..8a4b9f3db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Order should be `CHANGE`, `FEATURE`, `ENHANCEMENT`, and `BUGFIX` +## unreleased/master +* [CHANGE] Upgrade to v1.14.1 +* [CHANGE] Remove chunktool and rules-migrator + ## v0.13.2 * [CHANGE] Upgrade to v1.13.2 * [CHANGE] Updates version of Go to 1.22 and Alpine to 3.19.1 in Dockerfiles diff --git a/changelogs/v0.13.2.md b/changelogs/v0.13.2.md new file mode 100644 index 000000000..e1dd205e8 --- /dev/null +++ b/changelogs/v0.13.2.md @@ -0,0 +1,39 @@ +# v0.13.2 Release + +## Changes + +## v0.13.2 +* [CHANGE] Upgrade to v1.13.2 +* [CHANGE] Updates version of Go to 1.22 and Alpine to 3.19.1 in Dockerfiles +* [FEATURE] Make rulerAPI Path configurable +* [FEATURE] Add tool to deserialize alertmanager state file +* [ENHANCEMENT] Support loading alertmanager templates from different directories +* [BUGFIX] Set tenant id in prom analyse command + +## Installation + +## cortextool + +```console +# download the binary (adapt os and arch as needed) +$ curl -fSL -o "cortextool" "https://github.com/cortexproject/cortex-tools/releases/download/v0.13.2/cortextool_0.13.2_linux_x86_64" + +# make it executable +$ chmod a+x "cortextool" + +# have fun :) +$ ./cortextool --help +``` + +## benchtool + +```console +# download the binary (adapt os and arch as needed) +$ curl -fSL -o "benchtool" "https://github.com/cortexproject/cortex-tools/releases/download/v0.13.2/benchtool_0.13.2_linux_x86_64" + +# make it executable +$ chmod a+x "benchtool" + +# have fun :) +$ ./benchtool --help +```