From 617b2daca6ea22a43ad95f807c7957fe19016d85 Mon Sep 17 00:00:00 2001 From: Friedrich Gonzalez Date: Thu, 9 May 2024 15:35:51 +0200 Subject: [PATCH] Prepare v0.14.1 Signed-off-by: Friedrich Gonzalez --- CHANGELOG.md | 9 +++++---- changelogs/v0.13.2.md | 2 +- changelogs/v0.14.1.md | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+), 5 deletions(-) create mode 100644 changelogs/v0.14.1.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a4b9f3db..f4eb4f5e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,13 @@ Order should be `CHANGE`, `FEATURE`, `ENHANCEMENT`, and `BUGFIX` -## unreleased/master -* [CHANGE] Upgrade to v1.14.1 -* [CHANGE] Remove chunktool and rules-migrator +## v0.14.1 +* [CHANGE] Upgrade cortex to v1.14.1 +* [CHANGE] Remove chunktool and rules-migrator. Dependent on deprecated chunks storage. +* [CHANGE] Remove cortex-overrides. This function mas been merged to cortex binary. ## v0.13.2 -* [CHANGE] Upgrade to v1.13.2 +* [CHANGE] Upgrade cortex 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 diff --git a/changelogs/v0.13.2.md b/changelogs/v0.13.2.md index facca59f3..8613958bf 100644 --- a/changelogs/v0.13.2.md +++ b/changelogs/v0.13.2.md @@ -2,7 +2,7 @@ ## Changes -* [CHANGE] Upgrade to v1.13.2 +* [CHANGE] Upgrade cortex 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 diff --git a/changelogs/v0.14.1.md b/changelogs/v0.14.1.md new file mode 100644 index 000000000..880153229 --- /dev/null +++ b/changelogs/v0.14.1.md @@ -0,0 +1,36 @@ +# v0.14.1 Release + +## Changes + +* [CHANGE] Upgrade cortex to v1.14.1 +* [CHANGE] Remove chunktool and rules-migrator. Dependent on deprecated chunks storage. +* [CHANGE] Remove cortex-overrides. This function mas been merged to cortex binary. + + +## 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.14.1/cortextool_0.14.1_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.14.1/benchtool_0.14.1_linux_x86_64" + +# make it executable +$ chmod a+x "benchtool" + +# have fun :) +$ ./benchtool --help +```