Loki: Fix version info issue that shows wrong version (#7669, #8055) (#8232)

pull/8278/head
Taehyun Hwang 2 years ago committed by GitHub
parent 807aa459d4
commit b2ea1214fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 1
      Makefile
  3. 7
      tools/fetch-tags

@ -43,6 +43,7 @@
* [7925](https://github.com/grafana/loki/pull/7925) **sandeepsukhani**: Fix bugs in logs results caching causing query-frontend to return logs outside of query window.
* [8120](https://github.com/grafana/loki/pull/8120) **ashwanthgoli** fix panic on hitting /scheduler/ring when ring is disabled.
* [8251](https://github.com/grafana/loki/pull/8251) **sandeepsukhani** index-store: fix indexing of chunks overlapping multiple schemas.
* [8120](https://github.com/grafana/loki/pull/8232) **TaehyunHwang** Fix version info issue that shows wrong version.
##### Changes

@ -34,6 +34,7 @@ BUILD_IMAGE_VERSION := 0.27.0
# Docker image info
IMAGE_PREFIX ?= grafana
FETCH_TAGS :=$(shell ./tools/fetch-tags)
IMAGE_TAG := $(shell ./tools/image-tag)
# Version info for binaries

@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
git fetch --tags --all
Loading…
Cancel
Save