docs/docs/reference/release-notes/v4.22/index.md
Welcome to [email protected] release (August 2022 #3)
Key highlights of this release:
Also check out notable bugfixes.
Bleeding Edge: Want to try new features as soon as possible? Install gatsby@next and let us know if you have any issues.
We are adding a new API that we are calling “Slices”. By using a new <Slice /> React component in combination with a src/slices directory or createSlice API for common UI features, Gatsby will be able to build and deploy individual pieces of your site that had content changes, not entire pages.
To create a slice, simply:
Create the slice by adding a slices/footer.js file, or using the createPages API action:
actions.createSlice({
id: `footer`,
component: require.resolve(`./src/components/footer.js`),
})
Add a <Slice /> component on your site, providing an alias string prop, where alias is either name of the file (in our case, footer). Any additional props passed will be handed down to the underlying component.
return (
<>
<Header className="my-header" />
{children}
<Slice alias="footer" />
</>
)
To read more, head over to RFC: Slices API. We appreciate any feedback there.
sort and aggregation fields in Gatsby GraphQL SchemaWe are proposing Breaking Changes for the next major version of Gatsby to our GraphQL API. The goal of this change is increasing performance and reducing resource usage of builds. Proposed changes impact sort and aggregation fields (group, min, max, sum, distinct).
Basic example of proposed change:
Current:
{
allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }) {
nodes {
...fields
}
}
}
Proposed:
{
allMarkdownRemark(sort: { frontmatter: { date: DESC } }) {
nodes {
...fields
}
}
}
To read more, head over to RFC: Change to sort and aggregation fields API. We appreciate any feedback there.
gatsby
gatsby-cli: Preserve verbosity in spawn child processes, via PR #36399gatsby-source-graphql: we have "soft deprecated" this package in favor of other, CMS-specific source plugins
gatsby-plugin-mdx
gatsby-plugin-image: Fix bug that prevents onLoad being called on first load, via PR #36375A big Thank You to our community who contributed to this release 💜
onPreInit warning PR #36419