Skip to content

Commit 90c0630

Browse files
committed
fix(png): fixed phantomjs rendering issue with graph and y-axis label rotation, fixes grafana#5220
1 parent 3bcda92 commit 90c0630

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@
1515
* **OpenTSDB**: Support nested template variables in tag_values function, closes [4398](https://github.com/grafana/grafana/issues/4398)
1616
* **Datasource**: Pending data source requests are cancelled before new ones are issues (Graphite & Prometheus), closes [5321](https://github.com/grafana/grafana/issues/5321)
1717

18-
## Breaking changes
18+
### Breaking changes
1919
* **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.
2020
* **Graphite** : The Graph panel no longer have a Graphite PNG option. closes #[5367](https://github.com/grafana/grafana/issues/5367)
2121

22+
### Bug fixes
23+
* **PNG rendering**: Fixed phantomjs rendering and y-axis label rotation. fixes #[5220](https://github.com/grafana/grafana/issues/5220)
24+
2225
# 3.0.4 Patch release (2016-05-25)
2326
* **Panel**: Fixed blank dashboard issue when switching to other dashboard while in fullscreen edit mode, fixes [#5163](https://github.com/grafana/grafana/pull/5163)
2427
* **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)

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
machine:
22
node:
3-
version: 4.0
3+
version: 5.11.1
44
environment:
55
GOPATH: "/home/ubuntu/.go_workspace"
66
ORG_PATH: "github.com/grafana"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"karma-phantomjs-launcher": "1.0.0",
5151
"load-grunt-tasks": "3.4.0",
5252
"mocha": "2.3.4",
53-
"phantomjs-prebuilt": "^2.1.3",
53+
"phantomjs-prebuilt": "^2.1.7",
5454
"reflect-metadata": "0.1.2",
5555
"rxjs": "5.0.0-beta.4",
5656
"sass-lint": "^1.6.0",

tasks/options/postcss.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = function(config) {
1111
},
1212

1313
processors: [
14-
require('autoprefixer')({browsers: 'last 2 versions'}), // add vendor prefixes
14+
require('autoprefixer')({browsers: 'last 3 versions'}), // add vendor prefixes
1515
]
1616
},
1717
dist: {

0 commit comments

Comments
 (0)