Skip to content

Commit

Permalink
Prepare release 1.1 (#2613)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
pstibrany authored May 21, 2020
1 parent a3ca74d commit 9db28c1
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 16 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.1.0-rc.0 / 2020-05-13
## 1.1.0 / 2020-05-21

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!

Expand All @@ -21,10 +21,10 @@ Please make sure to review renamed metrics, and update your dashboards and alert
* `cortex_querier_bucket_store_blocks_meta_sync_duration_seconds` > `cortex_querier_blocks_meta_sync_duration_seconds`
* `cortex_querier_bucket_store_blocks_meta_sync_consistency_delay_seconds` > `cortex_querier_blocks_meta_sync_consistency_delay_seconds`
* [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
* [CHANGE] Experimental WAL: Default value of `-ingester.checkpoint-enabled` changed to `true`. #2416
* [CHANGE] WAL: Default value of `-ingester.checkpoint-enabled` changed to `true`. #2416
* [CHANGE] `trace_id` field in log files has been renamed to `traceID`. #2518
* [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
* [CHANGE] Experimental WAL: WAL and checkpoint compression is now disabled. #2436
* [CHANGE] WAL: WAL and checkpoint compression is now disabled. #2436
* [CHANGE] Update in dependency `go-kit/kit` from `v0.9.0` to `v0.10.0`. HTML escaping disabled in JSON Logger. #2535
* [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
- `cortex_<service>_thanos_objstore_bucket_operations_total` renamed to `thanos_objstore_bucket_operations_total{component="<name>"}`
Expand Down
6 changes: 5 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Our goal is to provide a new minor release every 6 weeks. This is a new process
| v0.7.0 | 2020-03-09 | Marco Pracucci (@pracucci) |
| v1.0.0 | 2020-03-31 | Goutham Veeramachaneni (@gouthamve) |
| v1.1.0 | 2020-05-11 | Peter Štibraný (@pstibrany) |
| v1.2.0 | 2020-06-22 | |
| v1.3.0 | 2020-08-03 | |

## Release shepherd responsibilities

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

Once your PR with release prepartion is approved, merge it to "release-X.Y" branch, and continue with publishing.

### Publish a release candidate

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

### Publish a stable release

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0-rc.0
1.1.0
4 changes: 2 additions & 2 deletions docs/production/storage-cassandra.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ storage:
```

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

Run Cortex using the latest stable version:

```
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
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
```
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.

Expand Down
2 changes: 1 addition & 1 deletion k8s/alertmanager-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: alertmanager
image: quay.io/cortexproject/cortex:v1.0.1
image: quay.io/cortexproject/cortex:v1.1.0
imagePullPolicy: IfNotPresent
args:
- -target=alertmanager
Expand Down
2 changes: 1 addition & 1 deletion k8s/configs-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: configs
image: quay.io/cortexproject/cortex:v1.0.1
image: quay.io/cortexproject/cortex:v1.1.0
imagePullPolicy: IfNotPresent
args:
- -target=configs
Expand Down
2 changes: 1 addition & 1 deletion k8s/distributor-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: distributor
image: quay.io/cortexproject/cortex:v1.0.1
image: quay.io/cortexproject/cortex:v1.1.0
imagePullPolicy: IfNotPresent
args:
- -target=distributor
Expand Down
2 changes: 1 addition & 1 deletion k8s/ingester-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:

containers:
- name: ingester
image: quay.io/cortexproject/cortex:v1.0.1
image: quay.io/cortexproject/cortex:v1.1.0
imagePullPolicy: IfNotPresent
args:
- -target=ingester
Expand Down
2 changes: 1 addition & 1 deletion k8s/querier-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: querier
image: quay.io/cortexproject/cortex:v1.0.1
image: quay.io/cortexproject/cortex:v1.1.0
imagePullPolicy: IfNotPresent
args:
- -target=querier
Expand Down
2 changes: 1 addition & 1 deletion k8s/query-frontend-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: query-frontend
image: quay.io/cortexproject/cortex:v1.0.1
image: quay.io/cortexproject/cortex:v1.1.0
imagePullPolicy: IfNotPresent
args:
- -target=query-frontend
Expand Down
2 changes: 1 addition & 1 deletion k8s/ruler-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: ruler
image: quay.io/cortexproject/cortex:v1.0.1
image: quay.io/cortexproject/cortex:v1.1.0
imagePullPolicy: IfNotPresent
args:
- -target=ruler
Expand Down
2 changes: 1 addition & 1 deletion k8s/table-manager-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: table-manager
image: quay.io/cortexproject/cortex:v1.0.1
image: quay.io/cortexproject/cortex:v1.1.0
imagePullPolicy: IfNotPresent
args:
- -target=table-manager
Expand Down
2 changes: 1 addition & 1 deletion tools/test
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ NO_GO_GET=true
TAGS=
PARALLEL=
RACE="-race -covermode=atomic"
TIMEOUT=1m
TIMEOUT=5m
VERBOSE=

usage() {
Expand Down

0 comments on commit 9db28c1

Please sign in to comment.