Skip to content

Commit d8a1a5a

Browse files
jtlisireplay
andauthored
feat: add changelog for 0.4.1 release (#106)
* feat: add changelog for 0.4.1 release Signed-off-by: Jacob Lisi <[email protected]> * chore: tidy/vendor deps Signed-off-by: Jacob Lisi <[email protected]> * Update changelogs/v0.4.1.md Co-authored-by: Mauro Stettler <[email protected]> Co-authored-by: Mauro Stettler <[email protected]>
1 parent dbb152d commit d8a1a5a

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

changelogs/v0.4.1.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# v0.4.1 Release
2+
3+
## Changes
4+
5+
* [ENHANCEMENT] Upgrade the Go version used in build images and tests to golang 1.14.9 to match upstream Cortex. #104
6+
* [FEATURE] Add `chunktool chunk validate-index` and `chunktool chunk clean-index` commands to the chunktool. These commands are used to scan Cortex index backends for invalid index entries and to clean the invalid entries up if there are any. #104
7+
8+
## Installation
9+
10+
## cortextool
11+
12+
```console
13+
# download the binary (adapt os and arch as needed)
14+
$ curl -fSL -o "/usr/local/bin/cortextool" "https://github.com/grafana/cortex-tools/releases/download/v0.4.1/cortextool_0.4.1_linux_x86_64"
15+
16+
# make it executable
17+
$ chmod a+x "/usr/local/bin/cortextool"
18+
19+
# have fun :)
20+
$ cortextool --help
21+
```
22+
23+
## chunktool
24+
25+
```console
26+
# download the binary (adapt os and arch as needed)
27+
$ curl -fSL -o "/usr/local/bin/chunktool" "https://github.com/grafana/cortex-tools/releases/download/v0.4.1/chunktool_0.4.1_linux_x86_64"
28+
29+
# make it executable
30+
$ chmod a+x "/usr/local/bin/chunktool"
31+
32+
# have fun :)
33+
$ chunktool --help
34+
```

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ require (
2424
github.com/prometheus/prometheus v1.8.2-0.20200819132913-cb830b0a9c78
2525
github.com/sirupsen/logrus v1.6.0
2626
github.com/stretchr/testify v1.6.1
27+
go.uber.org/atomic v1.6.0
2728
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
2829
google.golang.org/api v0.29.0
2930
gopkg.in/alecthomas/kingpin.v2 v2.2.6

vendor/modules.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -942,6 +942,7 @@ go.opentelemetry.io/otel/codes
942942
go.opentelemetry.io/otel/internal
943943
go.opentelemetry.io/otel/label
944944
# go.uber.org/atomic v1.6.0
945+
## explicit
945946
go.uber.org/atomic
946947
# go.uber.org/goleak v1.0.0
947948
go.uber.org/goleak

0 commit comments

Comments
 (0)