diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ca5952ea1..a0ec492939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,10 @@ ## master / unreleased -## 1.10.0-rc.1 / 2021-07-21 +## 1.10.0 / 2021-08-03 * [CHANGE] Prevent path traversal attack from users able to control the HTTP header `X-Scope-OrgID`. #4375 (CVE-2021-36157) * Users only have control of the HTTP header when Cortex is not frontend by an auth proxy validating the tenant IDs - -## 1.10.0-rc.0 / 2021-06-28 - * [CHANGE] Enable strict JSON unmarshal for `pkg/util/validation.Limits` struct. The custom `UnmarshalJSON()` will now fail if the input has unknown fields. #4298 * [CHANGE] Cortex chunks storage has been deprecated and it's now in maintenance mode: all Cortex users are encouraged to migrate to the blocks storage. No new features will be added to the chunks storage. The default Cortex configuration still runs the chunks engine; please check out the [blocks storage doc](https://cortexmetrics.io/docs/blocks-storage/) on how to configure Cortex to run with the blocks storage. #4268 * [CHANGE] The example Kubernetes manifests (stored at `k8s/`) have been removed due to a lack of proper support and maintenance. #4268 diff --git a/VERSION b/VERSION index 4c74b0406e..ed21137ee1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.10.0-rc.1 \ No newline at end of file +1.10.0 \ No newline at end of file diff --git a/docs/chunks-storage/running-chunks-storage-with-cassandra.md b/docs/chunks-storage/running-chunks-storage-with-cassandra.md index fc17c6f661..b2aac69f60 100644 --- a/docs/chunks-storage/running-chunks-storage-with-cassandra.md +++ b/docs/chunks-storage/running-chunks-storage-with-cassandra.md @@ -111,12 +111,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 below (currently it is `v1.9.0`). +to find the latest stable version tag and use it in the command below (currently it is `v1.10.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.9.0 -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.10.0 -config.file=/etc/single-process-config.yaml ``` In case you prefer to run the master version, please follow this [documentation](./chunks-storage-getting-started.md) on how to build Cortex from source.