Skip to content

Commit 9db28c1

Browse files
authored
Prepare release 1.1 (#2613)
* Remove Experimental prefix from other WAL changelog entries. Signed-off-by: Peter Štibraný <[email protected]> * Update RELEASE.md Signed-off-by: Peter Štibraný <[email protected]> * Update version Signed-off-by: Peter Štibraný <[email protected]> * Added next release dates. Signed-off-by: Peter Štibraný <[email protected]> * Update version in docs and k8s files. Signed-off-by: Peter Štibraný <[email protected]> * Increase timeout for tests. (Already done on master) Signed-off-by: Peter Štibraný <[email protected]> * Update release date to Thursday Signed-off-by: Peter Štibraný <[email protected]>
1 parent a3ca74d commit 9db28c1

13 files changed

+20
-16
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 1.1.0-rc.0 / 2020-05-13
3+
## 1.1.0 / 2020-05-21
44

55
This release brings the usual mix of bugfixes and improvements. The biggest change is that WAL support for chunks is now considered to be production-ready!
66

@@ -21,10 +21,10 @@ Please make sure to review renamed metrics, and update your dashboards and alert
2121
* `cortex_querier_bucket_store_blocks_meta_sync_duration_seconds` > `cortex_querier_blocks_meta_sync_duration_seconds`
2222
* `cortex_querier_bucket_store_blocks_meta_sync_consistency_delay_seconds` > `cortex_querier_blocks_meta_sync_consistency_delay_seconds`
2323
* [CHANGE] Experimental TSDB: Modified default values for `compactor.deletion-delay` option from 48h to 12h and `-experimental.tsdb.bucket-store.ignore-deletion-marks-delay` from 24h to 6h. #2414
24-
* [CHANGE] Experimental WAL: Default value of `-ingester.checkpoint-enabled` changed to `true`. #2416
24+
* [CHANGE] WAL: Default value of `-ingester.checkpoint-enabled` changed to `true`. #2416
2525
* [CHANGE] `trace_id` field in log files has been renamed to `traceID`. #2518
2626
* [CHANGE] Slow query log has a different output now. Previously used `url` field has been replaced with `host` and `path`, and query parameters are logged as individual log fields with `qs_` prefix. #2520
27-
* [CHANGE] Experimental WAL: WAL and checkpoint compression is now disabled. #2436
27+
* [CHANGE] WAL: WAL and checkpoint compression is now disabled. #2436
2828
* [CHANGE] Update in dependency `go-kit/kit` from `v0.9.0` to `v0.10.0`. HTML escaping disabled in JSON Logger. #2535
2929
* [CHANGE] Experimental TSDB: Removed `cortex_<service>_` prefix from Thanos objstore metrics and added `component` label to distinguish which Cortex component is doing API calls to the object storage when running in single-binary mode: #2568
3030
- `cortex_<service>_thanos_objstore_bucket_operations_total` renamed to `thanos_objstore_bucket_operations_total{component="<name>"}`

RELEASE.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Our goal is to provide a new minor release every 6 weeks. This is a new process
1717
| v0.7.0 | 2020-03-09 | Marco Pracucci (@pracucci) |
1818
| v1.0.0 | 2020-03-31 | Goutham Veeramachaneni (@gouthamve) |
1919
| v1.1.0 | 2020-05-11 | Peter Štibraný (@pstibrany) |
20+
| v1.2.0 | 2020-06-22 | |
21+
| v1.3.0 | 2020-08-03 | |
2022

2123
## Release shepherd responsibilities
2224

@@ -61,6 +63,8 @@ To prepare release branch, first create new release branch (release-X.Y) in Cort
6163
* `[BUGFIX]`
6264
- Run `./tools/release/check-changelog.sh LAST-RELEASE-TAG...master` and add any missing PR which includes user-facing changes
6365

66+
Once your PR with release prepartion is approved, merge it to "release-X.Y" branch, and continue with publishing.
67+
6468
### Publish a release candidate
6569

6670
To publish a release candidate:
@@ -70,7 +74,7 @@ To publish a release candidate:
7074
3. Wait until CI pipeline succeeded (once a tag is created, the release process through CircleCI will be triggered for this tag)
7175
3. Create a pre-release in GitHub
7276
- Write the release notes (including a copy-paste of the changelog)
73-
- Build binaries with `make disk` and attach them to the release
77+
- Build binaries with `make dist` and attach them to the release
7478

7579
### Publish a stable release
7680

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0-rc.0
1+
1.1.0

docs/production/storage-cassandra.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ storage:
109109
```
110110

111111
The latest tag is not published for the Cortex docker image. Visit quay.io/repository/cortexproject/cortex
112-
to find the latest stable version tag and use it in the command bellow (currently it is `v1.0.1`).
112+
to find the latest stable version tag and use it in the command bellow (currently it is `v1.1.0`).
113113

114114
Run Cortex using the latest stable version:
115115

116116
```
117-
docker run -d --name=cortex -v $(pwd)/single-process-config.yaml:/etc/single-process-config.yaml -p 9009:9009 quay.io/cortexproject/cortex:v1.0.1 -config.file=/etc/single-process-config.yaml
117+
docker run -d --name=cortex -v $(pwd)/single-process-config.yaml:/etc/single-process-config.yaml -p 9009:9009 quay.io/cortexproject/cortex:v1.1.0 -config.file=/etc/single-process-config.yaml
118118
```
119119
In case you prefer to run the master version, please follow this [documentation](../getting-started/getting-started-chunks.md) on how to build Cortex from source.
120120

k8s/alertmanager-dep.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: alertmanager
18-
image: quay.io/cortexproject/cortex:v1.0.1
18+
image: quay.io/cortexproject/cortex:v1.1.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=alertmanager

k8s/configs-dep.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: configs
18-
image: quay.io/cortexproject/cortex:v1.0.1
18+
image: quay.io/cortexproject/cortex:v1.1.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=configs

k8s/distributor-dep.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: distributor
18-
image: quay.io/cortexproject/cortex:v1.0.1
18+
image: quay.io/cortexproject/cortex:v1.1.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=distributor

k8s/ingester-dep.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737

3838
containers:
3939
- name: ingester
40-
image: quay.io/cortexproject/cortex:v1.0.1
40+
image: quay.io/cortexproject/cortex:v1.1.0
4141
imagePullPolicy: IfNotPresent
4242
args:
4343
- -target=ingester

k8s/querier-dep.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: querier
18-
image: quay.io/cortexproject/cortex:v1.0.1
18+
image: quay.io/cortexproject/cortex:v1.1.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=querier

k8s/query-frontend-dep.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: query-frontend
18-
image: quay.io/cortexproject/cortex:v1.0.1
18+
image: quay.io/cortexproject/cortex:v1.1.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=query-frontend

k8s/ruler-dep.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: ruler
18-
image: quay.io/cortexproject/cortex:v1.0.1
18+
image: quay.io/cortexproject/cortex:v1.1.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=ruler

k8s/table-manager-dep.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: table-manager
18-
image: quay.io/cortexproject/cortex:v1.0.1
18+
image: quay.io/cortexproject/cortex:v1.1.0
1919
imagePullPolicy: IfNotPresent
2020
args:
2121
- -target=table-manager

tools/test

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ NO_GO_GET=true
88
TAGS=
99
PARALLEL=
1010
RACE="-race -covermode=atomic"
11-
TIMEOUT=1m
11+
TIMEOUT=5m
1212
VERBOSE=
1313

1414
usage() {

0 commit comments

Comments
 (0)