mirror of
https://github.com/grafana/grafana.git
synced 2025-09-23 05:53:16 +08:00
fix(png): fixed phantomjs rendering issue with graph and y-axis label rotation, fixes #5220
This commit is contained in:
@ -15,10 +15,13 @@
|
|||||||
* **OpenTSDB**: Support nested template variables in tag_values function, closes [4398](https://github.com/grafana/grafana/issues/4398)
|
* **OpenTSDB**: Support nested template variables in tag_values function, closes [4398](https://github.com/grafana/grafana/issues/4398)
|
||||||
* **Datasource**: Pending data source requests are cancelled before new ones are issues (Graphite & Prometheus), closes [5321](https://github.com/grafana/grafana/issues/5321)
|
* **Datasource**: Pending data source requests are cancelled before new ones are issues (Graphite & Prometheus), closes [5321](https://github.com/grafana/grafana/issues/5321)
|
||||||
|
|
||||||
## Breaking changes
|
### Breaking changes
|
||||||
* **Logging** : Changed default logging output format (now structured into message, and key value pairs, with logger key acting as component). You can also no change in config to json log ouput.
|
* **Logging** : Changed default logging output format (now structured into message, and key value pairs, with logger key acting as component). You can also no change in config to json log ouput.
|
||||||
* **Graphite** : The Graph panel no longer have a Graphite PNG option. closes #[5367](https://github.com/grafana/grafana/issues/5367)
|
* **Graphite** : The Graph panel no longer have a Graphite PNG option. closes #[5367](https://github.com/grafana/grafana/issues/5367)
|
||||||
|
|
||||||
|
### Bug fixes
|
||||||
|
* **PNG rendering**: Fixed phantomjs rendering and y-axis label rotation. fixes #[5220](https://github.com/grafana/grafana/issues/5220)
|
||||||
|
|
||||||
# 3.0.4 Patch release (2016-05-25)
|
# 3.0.4 Patch release (2016-05-25)
|
||||||
* **Panel**: Fixed blank dashboard issue when switching to other dashboard while in fullscreen edit mode, fixes [#5163](https://github.com/grafana/grafana/pull/5163)
|
* **Panel**: Fixed blank dashboard issue when switching to other dashboard while in fullscreen edit mode, fixes [#5163](https://github.com/grafana/grafana/pull/5163)
|
||||||
* **Templating**: Fixed issue with nested multi select variables and cascading and updating child variable selection state, fixes [#4861](https://github.com/grafana/grafana/pull/4861)
|
* **Templating**: Fixed issue with nested multi select variables and cascading and updating child variable selection state, fixes [#4861](https://github.com/grafana/grafana/pull/4861)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
machine:
|
machine:
|
||||||
node:
|
node:
|
||||||
version: 4.0
|
version: 5.11.1
|
||||||
environment:
|
environment:
|
||||||
GOPATH: "/home/ubuntu/.go_workspace"
|
GOPATH: "/home/ubuntu/.go_workspace"
|
||||||
ORG_PATH: "github.com/grafana"
|
ORG_PATH: "github.com/grafana"
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
"karma-phantomjs-launcher": "1.0.0",
|
"karma-phantomjs-launcher": "1.0.0",
|
||||||
"load-grunt-tasks": "3.4.0",
|
"load-grunt-tasks": "3.4.0",
|
||||||
"mocha": "2.3.4",
|
"mocha": "2.3.4",
|
||||||
"phantomjs-prebuilt": "^2.1.3",
|
"phantomjs-prebuilt": "^2.1.7",
|
||||||
"reflect-metadata": "0.1.2",
|
"reflect-metadata": "0.1.2",
|
||||||
"rxjs": "5.0.0-beta.4",
|
"rxjs": "5.0.0-beta.4",
|
||||||
"sass-lint": "^1.6.0",
|
"sass-lint": "^1.6.0",
|
||||||
|
@ -11,7 +11,7 @@ module.exports = function(config) {
|
|||||||
},
|
},
|
||||||
|
|
||||||
processors: [
|
processors: [
|
||||||
require('autoprefixer')({browsers: 'last 2 versions'}), // add vendor prefixes
|
require('autoprefixer')({browsers: 'last 3 versions'}), // add vendor prefixes
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
dist: {
|
dist: {
|
||||||
|
Reference in New Issue
Block a user