Skip to content

Commit

Permalink
Grafana 7.5.7
Browse files Browse the repository at this point in the history
I added this to make package:

+ # Error in latest 7.x
+ cd $(GOPATH)/src/github.com/grafana/grafana && \
+         sed -i '/grafana-aws-sdk[[:space:]]*v0.3.0/d' go.mod
+ #

Because they had a faulty go.mod in their release.

$ grep grafana-aws go.mod
        github.com/grafana/grafana-aws-sdk v0.3.0
        github.com/grafana/grafana-aws-sdk v0.4.0

I did not commit this though, it is fixed in the next version
and is likely to stay in the Makefile forever.
  • Loading branch information
datamuc authored and Build Automat committed Jun 12, 2021
1 parent 75dbc38 commit 49b27c1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/grafana/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include ../../Makefile.omd

NAME = grafana
VERSION = 7.5.2
VERSION = 7.5.7
SRC = $(NAME)-$(VERSION).tar.gz
GOPATH = go
GOPKG = 1.15
Expand Down
9 changes: 9 additions & 0 deletions packages/grafana/defaults.ini
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ log_queries =
# For "mysql", use either "true", "false", or "skip-verify".
ssl_mode = disable

# Database drivers may support different transaction isolation levels.
# Currently, only "mysql" driver supports isolation levels.
# If the value is empty - driver's default isolation level is applied.
# For "mysql" use "READ-UNCOMMITTED", "READ-COMMITTED", "REPEATABLE-READ" or "SERIALIZABLE".
isolation_level =

ca_cert_path =
client_key_path =
client_cert_path =
Expand Down Expand Up @@ -304,6 +310,9 @@ password_hint = password
# Default UI theme ("dark" or "light")
default_theme = dark

# Path to a custom home page. Users are only redirected to this if the default home dashboard is used. It should match a frontend route and contain a leading slash.
home_page =

# External user management
external_manage_link_url =
external_manage_link_name =
Expand Down
Binary file not shown.
Binary file modified packages/grafana/public.tar.gz
Binary file not shown.

0 comments on commit 49b27c1

Please sign in to comment.