Suddenly some graphs changed in my documents. I have not the slightest idea what changed but as of today the bounding box calculation for some plots created in pgfplots is going haywire. My MWE looks as follows:
\documentclass[tikz]{standalone}
\usepackage{tikz,pgfplots}
\pgfplotsset{compat=1.7}
\usetikzlibrary{pgfplots.groupplots}
\begin{document}
\begin{tikzpicture}
\begin{groupplot}[
group style={group name=my plots, group size=1 by 1}]
\nextgroupplot[xmin=0.05,]
\addplot {0};
\end{groupplot}
\end{tikzpicture}
\end{document}
And the non-expected output with lots of whitespace at the left:

This only happens in groupplots in combination with xmin=, not in normal plots but the document itself did not change.
standaloneclass? If yes, what version ofstandaloneare you using? – Jake Mar 6 at 14:22articleclass. I recently updatedpgfplotsand checked that everything was ok but might have missed something due to the externalization library. – Alexander Mar 6 at 14:29