From 6e8b80c0013672c42bd51ab2fc713bac77851d41 Mon Sep 17 00:00:00 2001 From: Marco Pracucci Date: Fri, 19 Jun 2020 15:27:15 +0200 Subject: [PATCH] Run integration tests with Go 1.14 (#2753) Signed-off-by: Marco Pracucci --- .circleci/config.yml | 4 ++-- CHANGELOG.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9dedfb1b10..534cdd009f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -129,8 +129,8 @@ jobs: name: Upgrade golang command: | cd /tmp && \ - wget https://dl.google.com/go/go1.13.3.linux-amd64.tar.gz && \ - tar -zxvf go1.13.3.linux-amd64.tar.gz && \ + wget https://dl.google.com/go/go1.14.4.linux-amd64.tar.gz && \ + tar -zxvf go1.14.4.linux-amd64.tar.gz && \ sudo rm -fr /usr/local/go && \ sudo mv /tmp/go /usr/local/go && \ cd - diff --git a/CHANGELOG.md b/CHANGELOG.md index 295761d0cf..5c3596e4d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -124,6 +124,7 @@ * `cortex_querier_blocks_consistency_checks_total` * `cortex_querier_blocks_consistency_checks_failed_total` * `cortex_querier_storegateway_refetches_per_query` +* [ENHANCEMENT] Cortex is now built with Go 1.14. #2480 #2753 * [BUGFIX] Ruler: Ensure temporary rule files with special characters are properly mapped and cleaned up. #2506 * [BUGFIX] Fixes #2411, Ensure requests are properly routed to the prometheus api embedded in the query if `-server.path-prefix` is set. #2372 * [BUGFIX] Experimental TSDB: fixed chunk data corruption when querying back series using the experimental blocks storage. #2400