You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-4
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,10 @@
2
2
3
3
## master / unreleased
4
4
5
-
## 1.10.0-rc.1 / 2021-07-21
5
+
## 1.10.0 / 2021-08-03
6
6
7
7
*[CHANGE] Prevent path traversal attack from users able to control the HTTP header `X-Scope-OrgID`. #4375 (CVE-2021-36157)
8
8
* Users only have control of the HTTP header when Cortex is not frontend by an auth proxy validating the tenant IDs
9
-
10
-
## 1.10.0-rc.0 / 2021-06-28
11
-
12
9
*[CHANGE] Enable strict JSON unmarshal for `pkg/util/validation.Limits` struct. The custom `UnmarshalJSON()` will now fail if the input has unknown fields. #4298
13
10
*[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
14
11
*[CHANGE] The example Kubernetes manifests (stored at `k8s/`) have been removed due to a lack of proper support and maintenance. #4268
Copy file name to clipboardExpand all lines: docs/chunks-storage/running-chunks-storage-with-cassandra.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -111,12 +111,12 @@ storage:
111
111
```
112
112
113
113
The latest tag is not published for the Cortex docker image. Visit quay.io/repository/cortexproject/cortex
114
-
to find the latest stable version tag and use it in the command below (currently it is `v1.9.0`).
114
+
to find the latest stable version tag and use it in the command below (currently it is `v1.10.0`).
115
115
116
116
Run Cortex using the latest stable version:
117
117
118
118
```
119
-
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
119
+
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
120
120
```
121
121
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.
0 commit comments