Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,9 @@ jobs:
docker pull quay.io/cortexproject/cortex:v1.17.2
docker pull quay.io/cortexproject/cortex:v1.18.1
docker pull quay.io/cortexproject/cortex:v1.19.1
docker pull quay.io/cortexproject/cortex:v1.20.0
docker pull quay.io/cortexproject/cortex:v1.20.1
elif [ "$TEST_TAGS" = "integration_query_fuzz" ]; then
docker pull quay.io/cortexproject/cortex:v1.20.0
docker pull quay.io/cortexproject/cortex:v1.20.1
docker pull quay.io/prometheus/prometheus:v3.6.0
fi
docker pull memcached:1.6.1
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@
* [ENHANCEMENT] Distributor: Optimize memory usage by recycling v2 requests. #7131
* [BUGFIX] Ring: Change DynamoDB KV to retry indefinitely for WatchKey. #7088
* [BUGFIX] Ruler: Add XFunctions validation support. #7111
* [BUGFIX] Distributor: Fix panic on health check failure when using stream push. #7116
* [BUGFIX] Querier: propagate Prometheus info annotations in protobuf responses. #7132

## 1.20.1 2025-12-03

* [BUGFIX] Distributor: Fix panic on health check failure when using stream push. #7116

## 1.20.0 2025-11-10

* [CHANGE] StoreGateway/Alertmanager: Add default 5s connection timeout on client. #6603
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.0
1.20.1
2 changes: 1 addition & 1 deletion docs/getting-started/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CORTEX_VERSION=v1.20.0
CORTEX_VERSION=v1.20.1
GRAFANA_VERSION=10.4.2
PROMETHEUS_VERSION=v3.2.1
SEAWEEDFS_VERSION=3.67
Expand Down
2 changes: 1 addition & 1 deletion integration/backward_compatibility_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var (
"quay.io/cortexproject/cortex:v1.17.2": nil,
"quay.io/cortexproject/cortex:v1.18.1": nil,
"quay.io/cortexproject/cortex:v1.19.1": nil,
"quay.io/cortexproject/cortex:v1.20.0": nil,
"quay.io/cortexproject/cortex:v1.20.1": nil,
}
)

Expand Down
Loading