Broken permutation of axis in StatsPlots.jl with error bars

Try this:

data = rand(4,2)
groupedbar(
    ["A", "B", "C", "D"], 
    data,
    permute = (:x, :y),
)
groupedbar!(
    ["A", "B", "C", "D"], 
    data,
    yerr = 0.1*data,
    permute = (:x, :y),
    fillcolor =:transparent
)