Just have updated to gatsby-image 1.0.7. it's working well in Chrome but in Safari the images aren't showing up. I'm using the sizes option:
childImageSharp {
sizes(maxWidth: 1200) {
...GatsbyImageSharpSizes_noBase64
}
}
Am I the only one with this bug?
Could you try [email protected]? I just tried your example query, and it works for me in Safari.

@EmilTholin Thanks for your reply. Is the lazy-load working for you in Safari?
I just have updated to 1.0.9. Now Images are showing up in Safari but the lazyload still doesn't work. It's loading all the images at once. Probably because of the non-supportive intersection-observer in -webkit browsers.
Now If I add a Int-Obs polyfill like this package , the images aren't showing up in Safari… here is the html result:
<div class=" gatsby-image-wrapper" style="position: relative; overflow: hidden; z-index: 1;">
<div style="width: 100%; padding-bottom: 72.3%;"></div>
</div>
Interesting. It does not lazy load in Safari, as you say. I don't know enough about Intersection Observer to say what it could be, sadly. It looks like it is being worked on.

IntersectionObserver is indeed not available without polyfill in stable Safari currently
gatsby-image checks for window.IntersectionObserver to be set in order to enable lazy loading so make sure the polyfill is set there.
Most helpful comment
IntersectionObserver is indeed not available without polyfill in stable Safari currently