docs/docs/reference/release-notes/v4.23/index.md
Welcome to [email protected] release (September 2022 #1)
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-source-wordpress:
gatsby-plugin-sharp:
svgo dependency to fix vulnerability, via #36445gatsby-dev-cli:
create-gatsby:
A big Thank You to our community who contributed to this release 💜
react-refresh to ^0.14.0 PR #36553gatsby-source-filesystem typo PR #36471