diff --git a/package.json b/package.json index 39ba1507870..9d2c6971471 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/packages/grafana-ui/package.json b/packages/grafana-ui/package.json index 1543dd6cc34..d779ff2f4ee 100644 --- a/packages/grafana-ui/package.json +++ b/packages/grafana-ui/package.json @@ -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", diff --git a/pkg/api/playlist_play.go b/pkg/api/playlist_play.go index 2757f245060..21c91a1288d 100644 --- a/pkg/api/playlist_play.go +++ b/pkg/api/playlist_play.go @@ -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], }) } diff --git a/pkg/services/rendering/phantomjs.go b/pkg/services/rendering/phantomjs.go index 29c2f39fd77..35389fe7918 100644 --- a/pkg/services/rendering/phantomjs.go +++ b/pkg/services/rendering/phantomjs.go @@ -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),