Merge branch 'cp_6.1.6' into v6.1.x

* cp_6.1.6:
  Revert "CloudWatch: Use default alias if there is no alias for metrics (#16732)"
  bump version to 6.1.6
  security: bump jquery version to 3.4.0
  playlist: fix loading dashboards by tag (#16727)
  CloudWatch: Use default alias if there is no alias for metrics (#16732)
  phantomjs: set web-security to true
This commit is contained in:
bergquist
2019-04-29 15:29:28 +02:00
4 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -5,7 +5,7 @@
"company": "Grafana Labs"
},
"name": "grafana",
"version": "6.1.4",
"version": "6.1.6",
"repository": {
"type": "git",
"url": "http://github.com/grafana/grafana.git"
@@ -185,7 +185,7 @@
"eventemitter3": "^2.0.3",
"file-saver": "^1.3.3",
"immutable": "^3.8.2",
"jquery": "^3.2.1",
"jquery": "3.4.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"mousetrap": "^1.6.0",
+1 -1
View File
@@ -22,7 +22,7 @@
"@types/react-color": "^2.14.0",
"classnames": "^2.2.5",
"d3": "^5.7.0",
"jquery": "^3.2.1",
"jquery": "3.4.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"papaparse": "^4.6.3",
+1 -1
View File
@@ -55,7 +55,7 @@ func populateDashboardsByTag(orgID int64, signedInUser *m.SignedInUser, dashboar
Slug: item.Slug,
Title: item.Title,
Uri: item.Uri,
Url: m.GetDashboardUrl(item.Uid, item.Slug),
Url: item.Url,
Order: dashboardTagOrder[tag],
})
}
+2 -1
View File
@@ -42,7 +42,8 @@ func (rs *RenderingService) renderViaPhantomJS(ctx context.Context, opts Opts) (
cmdArgs := []string{
"--ignore-ssl-errors=true",
"--web-security=false",
"--web-security=true",
"--local-url-access=false",
phantomDebugArg,
scriptPath,
fmt.Sprintf("url=%v", url),