` with a 1px purple border:
-
-```jsx:title=src/components/purple-border.js
-import React from "react"
-
-const PurpleBorder = ({ children }) => (
-
{children}
-)
-
-export default PurpleBorder
-```
-
-## GraphQL queries
-
-You can fetch data to use in your MDX file by exporting a `pageQuery`
-in the same way you would for a `.js` page. The queried data is passed
-as a prop, and can be accessed inside any JSX block when writing in
-MDX:
-
-
-```mdx
-import { graphql } from "gatsby"
-
-# My Awesome Page
-
-Here's a paragraph, followed by a paragraph with data!
-
-
{props.data.site.siteMetadata.description}
-
-export const pageQuery = graphql`
- query {
- site {
- siteMetadata {
- description
- title
- }
- }
- }
-`
-```
-
-> Note: For now, this only works [if the `.mdx` file exporting the query is placed in
-> `src/pages`](https://github.com/ChristopherBiscardi/gatsby-mdx/issues/187#issuecomment-437161966).
-> Exporting GraphQL queries from `.mdx` files that are used for programmatic page creation in
-> `gatsby-node.js` via `actions.createPage` [is not currently
-> supported](https://github.com/ChristopherBiscardi/gatsby-mdx/issues/187#issuecomment-489005677).
diff --git a/docs/docs/reference/built-in-components/gatsby-head.md b/docs/docs/reference/built-in-components/gatsby-head.md
index 5304406ba5915..1b0c7abbf356d 100644
--- a/docs/docs/reference/built-in-components/gatsby-head.md
+++ b/docs/docs/reference/built-in-components/gatsby-head.md
@@ -88,7 +88,6 @@ You'll need to be aware of these things when using Gatsby Head:
- The `Head` function needs to return valid JSX.
- Valid tags inside the `Head` function are: `link`, `meta`, `style`, `title`, `base`, `script`, and `noscript`.
- Data block `
+ Adding-this-text-here-should-not-break-things
>
)
}
diff --git a/e2e-tests/production-runtime/src/pages/head-function-export/basic.js b/e2e-tests/production-runtime/src/pages/head-function-export/basic.js
index e2bad20c6174f..53117df670295 100644
--- a/e2e-tests/production-runtime/src/pages/head-function-export/basic.js
+++ b/e2e-tests/production-runtime/src/pages/head-function-export/basic.js
@@ -41,6 +41,7 @@ export function Head() {
+ Adding-this-text-here-should-not-break-things
>
)
}
diff --git a/examples/functions-google-gmail/README.md b/examples/functions-google-gmail/README.md
index 5ff86df33cd25..0caebefc3a45e 100644
--- a/examples/functions-google-gmail/README.md
+++ b/examples/functions-google-gmail/README.md
@@ -11,7 +11,7 @@
1. **Set up Google OAuth Client.**
- This sample uses google oAuth client to authenticate into the Google inbox api. Obtain an oAuth credential from the Google Cloud [API & Services Credentails Page](https://console.cloud.google.com/apis/credentials?)
+ This sample uses google oAuth client to authenticate into the Google inbox api. Obtain an oAuth credential from the Google Cloud [API & Services Credentials Page](https://console.cloud.google.com/apis/credentials?)
- Generate an Oauth Client ID. You can follow the steps highlighted in [Account Authentication - Service Account](https://theoephraim.github.io/node-google-spreadsheet/#/getting-started/authentication?id=oauth). Make sure to set up at least one **Authorized redirect URI** to be `http://localhost:8000`
- Enable the [Gmail API](https://console.cloud.google.com/apis/api/gmail.googleapis.com) in your Google Cloud project.
@@ -20,7 +20,7 @@
There are **2** environment variable you'll need to add to your project:
- - `GATSBY_GOOGLE_CLIENT_ID`: Fetch the ClientId from the newly created OAuth 2.0 Client ID. Yuo can find it in the [Google Credentials Console](https://console.cloud.google.com/apis/credentials)
+ - `GATSBY_GOOGLE_CLIENT_ID`: Fetch the ClientId from the newly created OAuth 2.0 Client ID. You can find it in the [Google Credentials Console](https://console.cloud.google.com/apis/credentials)
You'll also want to add these as environment variables when deploying to Gatsby Cloud.
diff --git a/examples/functions-google-oauth/README.md b/examples/functions-google-oauth/README.md
index 424a752094d64..3cca5b70f7d5c 100644
--- a/examples/functions-google-oauth/README.md
+++ b/examples/functions-google-oauth/README.md
@@ -16,8 +16,8 @@ This example illustrates logging in with Google 0Auth via Gatsby Functions and d
There are **2** environment variable you'll need to add to your project:
- - `GOOGLE_CLIENT_ID`: Fetch the ClientId from the newly created OAuth 2.0 Client ID. Yuo can find it in the [Google Credentials Console](https://console.cloud.google.com/apis/credentials)
- - `GOOGLE_CLIENT_SECRET`: Fetch the Client Secret from the newly created OAuth 2.0 Client ID. Yuo can find it in the [Google Credentials Console](https://console.cloud.google.com/apis/credentials)
+ - `GOOGLE_CLIENT_ID`: Fetch the ClientId from the newly created OAuth 2.0 Client ID. You can find it in the [Google Credentials Console](https://console.cloud.google.com/apis/credentials)
+ - `GOOGLE_CLIENT_SECRET`: Fetch the Client Secret from the newly created OAuth 2.0 Client ID. You can find it in the [Google Credentials Console](https://console.cloud.google.com/apis/credentials)
You'll also want to add these as environment variables when deploying to Gatsby Cloud.
diff --git a/examples/using-gatsby-image/plugins/gatsby-source-remote-images/gatsby-node.js b/examples/using-gatsby-image/plugins/gatsby-source-remote-images/gatsby-node.js
index 00a7dbc2e03fb..9c7b3ebdabde3 100644
--- a/examples/using-gatsby-image/plugins/gatsby-source-remote-images/gatsby-node.js
+++ b/examples/using-gatsby-image/plugins/gatsby-source-remote-images/gatsby-node.js
@@ -1,27 +1,20 @@
const { createRemoteFileNode } = require(`gatsby-source-filesystem`)
exports.onCreateNode = async (
- {
- actions: { createNode },
- node,
- createContentDigest,
- store,
- cache,
- reporter,
- },
- { filter, nodeName = `localFile` }
+ { actions: { createNode, createNodeField }, node, createNodeId, getCache },
+ { filter }
) => {
if (filter(node)) {
const fileNode = await createRemoteFileNode({
url: node.url,
- cache,
+ parentNodeId: node.id,
+ getCache,
createNode,
- createNodeId: createContentDigest,
+ createNodeId,
})
if (fileNode) {
- const fileNodeLink = `${nodeName}___NODE`
- node[fileNodeLink] = fileNode.id
+ createNodeField({ node, name: "localFile", value: fileNode.id })
}
}
}
@@ -35,7 +28,7 @@ exports.createSchemaCustomization = ({ actions }) => {
title: String
credit: String
gallery: Boolean
- localFile: File @link(from: "localFile___NODE")
+ localFile: File @link(from: "fields.localFile")
}
`)
diff --git a/examples/using-graphql-typegen/src/components/info.tsx b/examples/using-graphql-typegen/src/components/info.tsx
index 2daf4617f9895..e078fdc91a934 100644
--- a/examples/using-graphql-typegen/src/components/info.tsx
+++ b/examples/using-graphql-typegen/src/components/info.tsx
@@ -1,8 +1,7 @@
import * as React from "react"
import { graphql } from "gatsby"
-
-const Info = ({ buildTime }: { buildTime?: string | null }) => {
+const Info = ({ buildTime }: { buildTime?: Queries.SiteInformationFragment["buildTime"] }) => {
return (
Build time: {buildTime}
diff --git a/integration-tests/gatsby-pipeline/__tests__/fetch-remote-file/index.js b/integration-tests/gatsby-pipeline/__tests__/fetch-remote-file/index.js
index 378a9f5159998..c9eb8c7e7ca7e 100644
--- a/integration-tests/gatsby-pipeline/__tests__/fetch-remote-file/index.js
+++ b/integration-tests/gatsby-pipeline/__tests__/fetch-remote-file/index.js
@@ -18,32 +18,31 @@ describe(`fetch-remote-file`, () => {
})
}, 60 * 1000)
- // If a test fails here, it's possible that the image changed on Unsplash
it("should have the correct md5", async () => {
expect(
await md5File(
path.join(
__dirname,
"../..",
- "public/images/50c58a791de3c2303e62084d731799eb/photoA.jpg"
+ "public/images/ce61bf418df0d6677d2701c4aeff1023/photoA.jpg"
)
)
- ).toEqual("a9e57a66a10b2d26a1999a4685d7c9ef")
+ ).toEqual("37287aaa726d254eabcf3e7ede51a93b")
expect(
await md5File(
path.join(
__dirname,
"../..",
- "public/images/4910e745c3c453b8795d6ba65c79d99b/photoB.jpg"
+ "public/images/adeb4bc975f3ce4081c6772a0c96ca7b/photoB.jpg"
)
)
- ).toEqual("c305dc5c5db45cc773231a507af5116d")
+ ).toEqual("cef966aac5cfc7972e91e5c5c96829cb")
expect(
await md5File(
path.join(
__dirname,
"../..",
- "public/images/fb673e75e9534b3cc2d2e24085386d48/photoC.jpg"
+ "public/images/48315d9e12fde935993d8b406f2d6684/photoC.jpg"
)
)
).toEqual("c3d2efe723cd58311db404fd1b1f76a7")
diff --git a/integration-tests/gatsby-pipeline/gatsby-node.js b/integration-tests/gatsby-pipeline/gatsby-node.js
index 7f312b54226c8..4258b0068007c 100644
--- a/integration-tests/gatsby-pipeline/gatsby-node.js
+++ b/integration-tests/gatsby-pipeline/gatsby-node.js
@@ -43,15 +43,15 @@ exports.sourceNodes = ({ actions, createNodeId, createContentDigest }) => {
const items = [
{
name: "photoA.jpg",
- url: "https://images.unsplash.com/photo-1517849845537-4d257902454a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=300&q=80",
+ url: "https://storage.googleapis.com/public-test-files/photoA.jpg",
},
{
name: "photoB.jpg",
- url: "https://images.unsplash.com/photo-1552053831-71594a27632d?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=300&q=80",
+ url: "https://storage.googleapis.com/public-test-files/photoB.jpg",
},
{
name: "photoC.jpg",
- url: "https://images.unsplash.com/photo-1561037404-61cd46aa615b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=300&q=80",
+ url: "https://storage.googleapis.com/public-test-files/photoC.jpg",
},
]
diff --git a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md
index 7bd6282db20d0..7fb291f607925 100644
--- a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md
+++ b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/babel-plugin-remove-graphql-queries@4.21.0/packages/babel-plugin-remove-graphql-queries) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package babel-plugin-remove-graphql-queries
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/babel-plugin-remove-graphql-queries@4.20.0/packages/babel-plugin-remove-graphql-queries) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json
index 659bf8c1c96ac..9cfe05302a229 100644
--- a/packages/babel-plugin-remove-graphql-queries/package.json
+++ b/packages/babel-plugin-remove-graphql-queries/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-remove-graphql-queries",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Jason Quense ",
"repository": {
"type": "git",
@@ -11,12 +11,12 @@
"dependencies": {
"@babel/runtime": "^7.15.4",
"@babel/types": "^7.15.4",
- "gatsby-core-utils": "^3.22.0-next.0"
+ "gatsby-core-utils": "^3.22.0"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/babel-preset-gatsby-package/CHANGELOG.md b/packages/babel-preset-gatsby-package/CHANGELOG.md
index 910c120cbcc0a..e6a1095e16ce3 100644
--- a/packages/babel-preset-gatsby-package/CHANGELOG.md
+++ b/packages/babel-preset-gatsby-package/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby-package@2.21.0/packages/babel-preset-gatsby-package) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package babel-preset-gatsby-package
+
## [2.20.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby-package@2.20.0/packages/babel-preset-gatsby-package) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/babel-preset-gatsby-package/package.json b/packages/babel-preset-gatsby-package/package.json
index f9a6dfa15ef5f..c3efb370d868b 100644
--- a/packages/babel-preset-gatsby-package/package.json
+++ b/packages/babel-preset-gatsby-package/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-preset-gatsby-package",
- "version": "2.22.0-next.0",
+ "version": "2.22.0",
"author": "Philipp Spiess ",
"repository": {
"type": "git",
diff --git a/packages/babel-preset-gatsby/CHANGELOG.md b/packages/babel-preset-gatsby/CHANGELOG.md
index 7a55f17fd2291..d0cbf38121c2f 100644
--- a/packages/babel-preset-gatsby/CHANGELOG.md
+++ b/packages/babel-preset-gatsby/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby@2.21.0/packages/babel-preset-gatsby) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package babel-preset-gatsby
+
## [2.20.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby@2.20.0/packages/babel-preset-gatsby) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json
index 8cfc81b5d4412..66f917ed46afe 100644
--- a/packages/babel-preset-gatsby/package.json
+++ b/packages/babel-preset-gatsby/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-preset-gatsby",
- "version": "2.22.0-next.0",
+ "version": "2.22.0",
"author": "Philipp Spiess ",
"repository": {
"type": "git",
@@ -22,8 +22,8 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-legacy-polyfills": "^2.22.0-next.0"
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-legacy-polyfills": "^2.22.0"
},
"peerDependencies": {
"@babel/core": "^7.11.6",
@@ -38,7 +38,7 @@
},
"devDependencies": {
"@babel/cli": "^7.15.4",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"slash": "^3.0.0"
},
diff --git a/packages/create-gatsby/CHANGELOG.md b/packages/create-gatsby/CHANGELOG.md
index be488bbc7b69e..21a815ef7972c 100644
--- a/packages/create-gatsby/CHANGELOG.md
+++ b/packages/create-gatsby/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.0](https://github.com/gatsbyjs/gatsby/commits/create-gatsby@2.21.0/packages/create-gatsby) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Other Changes
+
+- BREAKING CHANGE(gatsby-plugin-mdx): MDX v2 [#35650](https://github.com/gatsbyjs/gatsby/issues/35650) ([c92db36](https://github.com/gatsbyjs/gatsby/commit/c92db36642268d1ee50c11ea568f836c7e5b4a03))
+
## [2.20.0](https://github.com/gatsbyjs/gatsby/commits/create-gatsby@2.20.0/packages/create-gatsby) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json
index dfbfd8ed3befa..f19783e0646e7 100644
--- a/packages/create-gatsby/package.json
+++ b/packages/create-gatsby/package.json
@@ -1,6 +1,6 @@
{
"name": "create-gatsby",
- "version": "2.22.0-next.0",
+ "version": "2.22.0",
"main": "lib/index.js",
"bin": "cli.js",
"license": "MIT",
@@ -17,7 +17,6 @@
],
"devDependencies": {
"@ascorbic/worker-threads-shim": "^1.0.0",
- "@babel/runtime": "^7.15.4",
"@lukeed/uuid": "^2.0.0",
"@types/configstore": "^4.0.0",
"@types/fs-extra": "^9.0.13",
@@ -25,10 +24,9 @@
"ansi-wordwrap": "^1.0.2",
"common-tags": "^1.8.2",
"enquirer": "^2.3.6",
- "eslint": "^7.32.0",
"execa": "^5.1.1",
"fs-extra": "^10.1.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
+ "gatsby-plugin-utils": "^3.16.0",
"joi": "^17.4.2",
"microbundle": "^0.15.0",
"node-fetch": "^2.6.6",
diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md
index 894b38bbf0a65..c046071c1a569 100644
--- a/packages/gatsby-cli/CHANGELOG.md
+++ b/packages/gatsby-cli/CHANGELOG.md
@@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cli@4.21.0/packages/gatsby-cli) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Bug Fixes
+
+- Panic on gatsby-node.jsx/gatsby-node.tsx [#36308](https://github.com/gatsbyjs/gatsby/issues/36308) ([0ee492c](https://github.com/gatsbyjs/gatsby/commit/0ee492c8bf11917dc08b16acebe92bb752bdc3b7))
+- Add DEV_SSR note to 95312 error [#36295](https://github.com/gatsbyjs/gatsby/issues/36295) ([db531f8](https://github.com/gatsbyjs/gatsby/commit/db531f86f9e89d1da72d44399ad5fb72092be454))
+
+#### Other Changes
+
+- BREAKING CHANGE(gatsby-plugin-mdx): MDX v2 [#35650](https://github.com/gatsbyjs/gatsby/issues/35650) ([c92db36](https://github.com/gatsbyjs/gatsby/commit/c92db36642268d1ee50c11ea568f836c7e5b4a03))
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cli@4.20.0/packages/gatsby-cli) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index 8033f4f0603e5..d345cbabb21d8 100644
--- a/packages/gatsby-cli/package.json
+++ b/packages/gatsby-cli/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-cli",
"description": "Gatsby command-line interface for creating new sites and running Gatsby commands",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bin": {
"gatsby": "cli.js"
@@ -25,20 +25,18 @@
"chalk": "^4.1.2",
"clipboardy": "^2.3.0",
"common-tags": "^1.8.2",
- "configstore": "^5.0.1",
"convert-hrtime": "^3.0.0",
- "create-gatsby": "^2.22.0-next.0",
+ "create-gatsby": "^2.22.0",
"envinfo": "^7.8.1",
"execa": "^5.1.1",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-telemetry": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-telemetry": "^3.22.0",
"hosted-git-info": "^3.0.8",
"is-valid-path": "^0.1.1",
"joi": "^17.4.2",
"lodash": "^4.17.21",
- "meant": "^1.0.3",
"node-fetch": "^2.6.6",
"opentracing": "^0.14.5",
"pretty-error": "^2.1.2",
@@ -65,7 +63,7 @@
"@types/hosted-git-info": "^3.0.2",
"@types/yargs": "^15.0.14",
"babel-plugin-lodash": "^3.3.4",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"ink": "^3.2.0",
"ink-spinner": "^4.0.3",
diff --git a/packages/gatsby-cli/src/reporter/reporter.ts b/packages/gatsby-cli/src/reporter/reporter.ts
index 49059f45653c8..5913c12942482 100644
--- a/packages/gatsby-cli/src/reporter/reporter.ts
+++ b/packages/gatsby-cli/src/reporter/reporter.ts
@@ -23,6 +23,7 @@ import {
registerAdditionalDiagnosticOutputHandler,
AdditionalDiagnosticsOutputHandler,
} from "./redux/diagnostics"
+import { isTruthy } from "gatsby-core-utils/is-truthy"
const errorFormatter = getErrorFormatter()
const tracer = globalTracer()
@@ -35,7 +36,7 @@ export interface IActivityArgs {
tags?: { [key: string]: any }
}
-let isVerbose = false
+let isVerbose = isTruthy(process.env.GATSBY_REPORTER_ISVERBOSE)
function isLogIntentMessage(msg: any): msg is ILogIntent {
return msg && msg.type === `LOG_INTENT`
@@ -74,6 +75,7 @@ class Reporter {
*/
setVerbose = (_isVerbose: boolean = true): void => {
isVerbose = _isVerbose
+ process.env.GATSBY_REPORTER_ISVERBOSE = isVerbose ? `1` : `0`
}
/**
diff --git a/packages/gatsby-codemods/CHANGELOG.md b/packages/gatsby-codemods/CHANGELOG.md
index 299538eb069de..689f55742afda 100644
--- a/packages/gatsby-codemods/CHANGELOG.md
+++ b/packages/gatsby-codemods/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-codemods@3.21.0/packages/gatsby-codemods) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-codemods
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-codemods@3.20.0/packages/gatsby-codemods) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json
index 76db96775158a..78d2d91a429df 100644
--- a/packages/gatsby-codemods/package.json
+++ b/packages/gatsby-codemods/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-codemods",
- "version": "3.22.0-next.0",
+ "version": "3.22.0",
"description": "A collection of codemod scripts for use with JSCodeshift that help migrate to newer versions of Gatsby.",
"main": "index.js",
"scripts": {
@@ -36,7 +36,7 @@
},
"devDependencies": {
"@babel/cli": "^7.15.4",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"engines": {
diff --git a/packages/gatsby-core-utils/CHANGELOG.md b/packages/gatsby-core-utils/CHANGELOG.md
index aa048eed395e2..0fd8e02f81ad5 100644
--- a/packages/gatsby-core-utils/CHANGELOG.md
+++ b/packages/gatsby-core-utils/CHANGELOG.md
@@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-core-utils@3.21.0/packages/gatsby-core-utils) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- update dependency del-cli to v5 for gatsby-core-utils [#36286](https://github.com/gatsbyjs/gatsby/issues/36286) ([a4f92b4](https://github.com/gatsbyjs/gatsby/commit/a4f92b4c2bcb75a84f01a857c4ed786fd40d27e7))
+
+#### Other Changes
+
+- BREAKING CHANGE(gatsby-plugin-mdx): MDX v2 [#35650](https://github.com/gatsbyjs/gatsby/issues/35650) ([c92db36](https://github.com/gatsbyjs/gatsby/commit/c92db36642268d1ee50c11ea568f836c7e5b4a03))
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-core-utils@3.20.0/packages/gatsby-core-utils) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json
index e3fecc9061b45..96ab02c7d7a62 100644
--- a/packages/gatsby-core-utils/package.json
+++ b/packages/gatsby-core-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-core-utils",
- "version": "3.22.0-next.0",
+ "version": "3.22.0",
"description": "A collection of gatsby utils used in different gatsby packages",
"keywords": [
"gatsby",
@@ -81,7 +81,7 @@
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@types/ci-info": "2.0.0",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"is-uuid": "^1.0.2",
diff --git a/packages/gatsby-cypress/CHANGELOG.md b/packages/gatsby-cypress/CHANGELOG.md
index 0a91d805adca4..0811701091e81 100644
--- a/packages/gatsby-cypress/CHANGELOG.md
+++ b/packages/gatsby-cypress/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cypress@2.21.0/packages/gatsby-cypress) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-cypress
+
## [2.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cypress@2.20.0/packages/gatsby-cypress) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json
index 48737e427b1bf..458d8f9e73013 100644
--- a/packages/gatsby-cypress/package.json
+++ b/packages/gatsby-cypress/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-cypress",
- "version": "2.22.0-next.0",
+ "version": "2.22.0",
"description": "Cypress tools for Gatsby projects",
"main": "index.js",
"repository": {
@@ -20,7 +20,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-design-tokens/CHANGELOG.md b/packages/gatsby-design-tokens/CHANGELOG.md
index 1dc33ff7162d2..079f9c81dd965 100644
--- a/packages/gatsby-design-tokens/CHANGELOG.md
+++ b/packages/gatsby-design-tokens/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-design-tokens@4.21.0/packages/gatsby-design-tokens) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-design-tokens
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-design-tokens@4.20.0/packages/gatsby-design-tokens) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-design-tokens/package.json b/packages/gatsby-design-tokens/package.json
index 5ce53fe19bd77..75d647cc91066 100644
--- a/packages/gatsby-design-tokens/package.json
+++ b/packages/gatsby-design-tokens/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-design-tokens",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"description": "Gatsby Design Tokens",
"main": "dist/index.js",
"module": "dist/index.esm.js",
diff --git a/packages/gatsby-dev-cli/CHANGELOG.md b/packages/gatsby-dev-cli/CHANGELOG.md
index aa91e4f70f948..272dfc3602556 100644
--- a/packages/gatsby-dev-cli/CHANGELOG.md
+++ b/packages/gatsby-dev-cli/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-dev-cli@4.21.0/packages/gatsby-dev-cli) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-dev-cli
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-dev-cli@4.20.0/packages/gatsby-dev-cli) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json
index e088472c49e41..2d63df5a21f5c 100644
--- a/packages/gatsby-dev-cli/package.json
+++ b/packages/gatsby-dev-cli/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-dev-cli",
"description": "CLI helpers for contributors working on Gatsby",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bin": {
"gatsby-dev": "./dist/index.js"
@@ -27,7 +27,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-dev-cli#readme",
diff --git a/packages/gatsby-graphiql-explorer/CHANGELOG.md b/packages/gatsby-graphiql-explorer/CHANGELOG.md
index 773aa4822e808..62e10a8482e0a 100644
--- a/packages/gatsby-graphiql-explorer/CHANGELOG.md
+++ b/packages/gatsby-graphiql-explorer/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-graphiql-explorer@2.21.0/packages/gatsby-graphiql-explorer) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-graphiql-explorer
+
## [2.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-graphiql-explorer@2.20.0/packages/gatsby-graphiql-explorer) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json
index ecfc6762afe67..5df404f5ce5c2 100644
--- a/packages/gatsby-graphiql-explorer/package.json
+++ b/packages/gatsby-graphiql-explorer/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-graphiql-explorer",
- "version": "2.22.0-next.0",
+ "version": "2.22.0",
"description": "GraphiQL IDE with custom features for Gatsby users",
"main": "index.js",
"scripts": {
@@ -38,7 +38,7 @@
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.0",
"babel-loader": "^8.2.2",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"core-js": "^3.22.3",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
diff --git a/packages/gatsby-legacy-polyfills/CHANGELOG.md b/packages/gatsby-legacy-polyfills/CHANGELOG.md
index 309ecbd461c46..6602c97a9043f 100644
--- a/packages/gatsby-legacy-polyfills/CHANGELOG.md
+++ b/packages/gatsby-legacy-polyfills/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-legacy-polyfills@2.21.0/packages/gatsby-legacy-polyfills) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-legacy-polyfills
+
## [2.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-legacy-polyfills@2.20.0/packages/gatsby-legacy-polyfills) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-legacy-polyfills/package.json b/packages/gatsby-legacy-polyfills/package.json
index 5e9a168e19dfd..3809c4381e92b 100644
--- a/packages/gatsby-legacy-polyfills/package.json
+++ b/packages/gatsby-legacy-polyfills/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-legacy-polyfills",
"description": "Polyfills for legacy browsers",
- "version": "2.22.0-next.0",
+ "version": "2.22.0",
"main": "dist/polyfills.js",
"author": "Ward Peeters ",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-legacy-polyfills#readme",
diff --git a/packages/gatsby-link/CHANGELOG.md b/packages/gatsby-link/CHANGELOG.md
index 434e9d6c44ad2..b87cc2cf43ba5 100644
--- a/packages/gatsby-link/CHANGELOG.md
+++ b/packages/gatsby-link/CHANGELOG.md
@@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@4.21.0/packages/gatsby-link) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Bug Fixes
+
+- Correctly export default for CJS [#36312](https://github.com/gatsbyjs/gatsby/issues/36312) ([abb0baa](https://github.com/gatsbyjs/gatsby/commit/abb0baac94dee30043d669ac39a88a830784603b))
+
+#### Chores
+
+- update dependency del-cli to v5 for gatsby-link [#36287](https://github.com/gatsbyjs/gatsby/issues/36287) ([272b419](https://github.com/gatsbyjs/gatsby/commit/272b419cd85926c4d820f4d37a986d9b1c2326bf))
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@4.20.0/packages/gatsby-link) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json
index 9315b865e61c6..33d6a5836ba6c 100644
--- a/packages/gatsby-link/package.json
+++ b/packages/gatsby-link/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-link",
"description": "An enhanced Link component for Gatsby sites with support for resource prefetching",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -26,7 +26,7 @@
},
"dependencies": {
"@types/reach__router": "^1.3.10",
- "gatsby-page-utils": "^2.22.0-next.0",
+ "gatsby-page-utils": "^2.22.0",
"prop-types": "^15.8.1"
},
"devDependencies": {
diff --git a/packages/gatsby-page-utils/CHANGELOG.md b/packages/gatsby-page-utils/CHANGELOG.md
index a51906e70a63c..f87b81272fea6 100644
--- a/packages/gatsby-page-utils/CHANGELOG.md
+++ b/packages/gatsby-page-utils/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-page-utils@2.21.0/packages/gatsby-page-utils) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-page-utils
+
## [2.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-page-utils@2.20.0/packages/gatsby-page-utils) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json
index f76a629871469..cc89d0c0b829d 100644
--- a/packages/gatsby-page-utils/package.json
+++ b/packages/gatsby-page-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-page-utils",
- "version": "2.22.0-next.0",
+ "version": "2.22.0",
"description": "Gatsby library that helps creating pages",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -30,7 +30,7 @@
"bluebird": "^3.7.2",
"chokidar": "^3.5.3",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
"glob": "^7.2.3",
"lodash": "^4.17.21",
"micromatch": "^4.0.5"
@@ -39,7 +39,7 @@
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@types/micromatch": "^4.0.2",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
diff --git a/packages/gatsby-parcel-config/CHANGELOG.md b/packages/gatsby-parcel-config/CHANGELOG.md
index 572abdbfab3b4..2bc07f8010dad 100644
--- a/packages/gatsby-parcel-config/CHANGELOG.md
+++ b/packages/gatsby-parcel-config/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-parcel-config@0.12.0/packages/gatsby-parcel-config) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-parcel-config
+
## [0.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-parcel-config@0.11.0/packages/gatsby-parcel-config) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-parcel-config/package.json b/packages/gatsby-parcel-config/package.json
index 91213db386b70..407c03df82ea4 100644
--- a/packages/gatsby-parcel-config/package.json
+++ b/packages/gatsby-parcel-config/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-parcel-config",
"main": "lib/index.json",
- "version": "0.13.0-next.0",
+ "version": "0.13.0",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-config#readme",
"description": "A minimal Parcel config for use in Gatsby",
"repository": {
@@ -14,7 +14,7 @@
"parcel": "2.x"
},
"dependencies": {
- "@gatsbyjs/parcel-namer-relative-to-cwd": "1.7.0-next.0",
+ "@gatsbyjs/parcel-namer-relative-to-cwd": "1.7.0",
"@parcel/bundler-default": "2.6.2",
"@parcel/compressor-raw": "2.6.2",
"@parcel/namer-default": "2.6.2",
diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md b/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md
index 64973babcc85c..a93fb332e312b 100644
--- a/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md
+++ b/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.0](https://github.com/gatsbyjs/gatsby/commits/@gatsbyjs/parcel-namer-relative-to-cwd@1.6.0/packages/@gatsbyjs/parcel-namer-relative-to-cwd) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package @gatsbyjs/parcel-namer-relative-to-cwd
+
## [1.5.0](https://github.com/gatsbyjs/gatsby/commits/@gatsbyjs/parcel-namer-relative-to-cwd@1.5.0/packages/@gatsbyjs/parcel-namer-relative-to-cwd) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/package.json b/packages/gatsby-parcel-namer-relative-to-cwd/package.json
index 85ede4e93b04a..edee2d586ebea 100644
--- a/packages/gatsby-parcel-namer-relative-to-cwd/package.json
+++ b/packages/gatsby-parcel-namer-relative-to-cwd/package.json
@@ -1,7 +1,7 @@
{
"name": "@gatsbyjs/parcel-namer-relative-to-cwd",
"main": "lib/index.js",
- "version": "1.7.0-next.0",
+ "version": "1.7.0",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-namer-relative-to-cwd#readme",
"description": "Parcel namer that preserve directory structure to stabilize output and keep the hierarchy.",
"author": "Michal Piechowiak ",
@@ -19,12 +19,12 @@
"@babel/runtime": "^7.18.0",
"@parcel/namer-default": "2.6.2",
"@parcel/plugin": "2.6.2",
- "gatsby-core-utils": "^3.22.0-next.0"
+ "gatsby-core-utils": "^3.22.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.0",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"scripts": {
diff --git a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md
index d6c0c24a33262..78ba6ad0dd12d 100644
--- a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md
+++ b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-benchmark-reporting@2.21.0/packages/gatsby-plugin-benchmark-reporting) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-benchmark-reporting
+
## [2.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-benchmark-reporting@2.20.0/packages/gatsby-plugin-benchmark-reporting) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-benchmark-reporting/package.json b/packages/gatsby-plugin-benchmark-reporting/package.json
index 17fb18f24f178..595eed9d6b8f9 100644
--- a/packages/gatsby-plugin-benchmark-reporting/package.json
+++ b/packages/gatsby-plugin-benchmark-reporting/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-benchmark-reporting",
"description": "Gatsby Benchmark Reporting",
- "version": "2.22.0-next.0",
+ "version": "2.22.0",
"author": "Peter van der Zee ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,12 +16,12 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0"
+ "babel-preset-gatsby-package": "^2.22.0"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"fast-glob": "^3.2.11",
- "gatsby-core-utils": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
"node-fetch": "^2.6.7"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md
index be84c0ac7fa58..664950fb2f9bf 100644
--- a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md
+++ b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-canonical-urls@4.21.0/packages/gatsby-plugin-canonical-urls) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-canonical-urls
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-canonical-urls@4.20.0/packages/gatsby-plugin-canonical-urls) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json
index 6d9d36ff12c7d..be35355788f97 100644
--- a/packages/gatsby-plugin-canonical-urls/package.json
+++ b/packages/gatsby-plugin-canonical-urls/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-canonical-urls",
"description": "Add canonical links to HTML pages Gatsby generates.",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-canonical-urls#readme",
diff --git a/packages/gatsby-plugin-catch-links/CHANGELOG.md b/packages/gatsby-plugin-catch-links/CHANGELOG.md
index 765046782c631..c4b466eb3a65b 100644
--- a/packages/gatsby-plugin-catch-links/CHANGELOG.md
+++ b/packages/gatsby-plugin-catch-links/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-catch-links@4.21.0/packages/gatsby-plugin-catch-links) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-catch-links
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-catch-links@4.20.0/packages/gatsby-plugin-catch-links) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json
index dc9e6bf6a0ae9..9cc4d8bec8a5f 100644
--- a/packages/gatsby-plugin-catch-links/package.json
+++ b/packages/gatsby-plugin-catch-links/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-catch-links",
"description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links#readme",
diff --git a/packages/gatsby-plugin-coffeescript/CHANGELOG.md b/packages/gatsby-plugin-coffeescript/CHANGELOG.md
index eeb2091a400e9..731ea9c248541 100644
--- a/packages/gatsby-plugin-coffeescript/CHANGELOG.md
+++ b/packages/gatsby-plugin-coffeescript/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-coffeescript@4.21.0/packages/gatsby-plugin-coffeescript) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-coffeescript
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-coffeescript@4.20.0/packages/gatsby-plugin-coffeescript) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json
index aa87cab766bd1..cfd5681d22175 100644
--- a/packages/gatsby-plugin-coffeescript/package.json
+++ b/packages/gatsby-plugin-coffeescript/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-coffeescript",
"description": "Adds CoffeeScript support for Gatsby",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -18,7 +18,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-coffeescript#readme",
diff --git a/packages/gatsby-plugin-cxs/CHANGELOG.md b/packages/gatsby-plugin-cxs/CHANGELOG.md
index 262e95acc027b..b29be17795f3e 100644
--- a/packages/gatsby-plugin-cxs/CHANGELOG.md
+++ b/packages/gatsby-plugin-cxs/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-cxs@4.21.0/packages/gatsby-plugin-cxs) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-cxs
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-cxs@4.20.0/packages/gatsby-plugin-cxs) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json
index 80a6cfe1dd77b..9a2c0ae655c4c 100644
--- a/packages/gatsby-plugin-cxs/package.json
+++ b/packages/gatsby-plugin-cxs/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-cxs",
"description": "Gatsby plugin to add SSR support for ctx",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Chen-Tai Hou ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,10 +12,10 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"cxs": "^6.2.0",
- "gatsby-plugin-utils": "^3.16.0-next.0"
+ "gatsby-plugin-utils": "^3.16.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-emotion/CHANGELOG.md b/packages/gatsby-plugin-emotion/CHANGELOG.md
index 9e6600ad6e46d..71c1b2739e458 100644
--- a/packages/gatsby-plugin-emotion/CHANGELOG.md
+++ b/packages/gatsby-plugin-emotion/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-emotion@7.21.0/packages/gatsby-plugin-emotion) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-emotion
+
## [7.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-emotion@7.20.0/packages/gatsby-plugin-emotion) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json
index 062e080f03a22..a59440ed2a53d 100644
--- a/packages/gatsby-plugin-emotion/package.json
+++ b/packages/gatsby-plugin-emotion/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-emotion",
"description": "Gatsby plugin to add support for Emotion",
- "version": "7.22.0-next.0",
+ "version": "7.22.0",
"author": "Tegan Churchill ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md
index 7b062f1971efb..c040f33f9f43a 100644
--- a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md
+++ b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-facebook-analytics@4.21.0/packages/gatsby-plugin-facebook-analytics) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-facebook-analytics
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-facebook-analytics@4.20.0/packages/gatsby-plugin-facebook-analytics) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json
index ab15017a53938..ab64caf294cba 100644
--- a/packages/gatsby-plugin-facebook-analytics/package.json
+++ b/packages/gatsby-plugin-facebook-analytics/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-facebook-analytics",
"description": "Gatsby plugin to add facebook analytics onto a site",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Yeison Daza ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics#readme",
diff --git a/packages/gatsby-plugin-feed/CHANGELOG.md b/packages/gatsby-plugin-feed/CHANGELOG.md
index d2bb9b2a61521..10e6cecdd0c18 100644
--- a/packages/gatsby-plugin-feed/CHANGELOG.md
+++ b/packages/gatsby-plugin-feed/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-feed@4.21.0/packages/gatsby-plugin-feed) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-feed
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-feed@4.20.0/packages/gatsby-plugin-feed) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json
index 0f1e1446b9c71..02ed8092eed38 100644
--- a/packages/gatsby-plugin-feed/package.json
+++ b/packages/gatsby-plugin-feed/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-feed",
"description": "Creates an RSS feed for your Gatsby site.",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Nicholas Young ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,14 +11,14 @@
"@hapi/joi": "^15.1.1",
"common-tags": "^1.8.2",
"fs-extra": "^10.1.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
+ "gatsby-plugin-utils": "^3.16.0",
"lodash.merge": "^4.6.2",
"rss": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-feed#readme",
diff --git a/packages/gatsby-plugin-flow/CHANGELOG.md b/packages/gatsby-plugin-flow/CHANGELOG.md
index 5e6891d06a109..c5fb250d4fc66 100644
--- a/packages/gatsby-plugin-flow/CHANGELOG.md
+++ b/packages/gatsby-plugin-flow/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-flow@3.21.0/packages/gatsby-plugin-flow) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-flow
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-flow@3.20.0/packages/gatsby-plugin-flow) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json
index bfed026eee82f..231d64c0f02ae 100644
--- a/packages/gatsby-plugin-flow/package.json
+++ b/packages/gatsby-plugin-flow/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-flow",
- "version": "3.22.0-next.0",
+ "version": "3.22.0",
"description": "Provides drop-in support for Flow by adding @babel/preset-flow.",
"main": "index.js",
"scripts": {
@@ -30,9 +30,9 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^3.16.0-next.0"
+ "gatsby-plugin-utils": "^3.16.0"
},
"peerDependencies": {
"gatsby": "^4.0.0-next"
diff --git a/packages/gatsby-plugin-fullstory/CHANGELOG.md b/packages/gatsby-plugin-fullstory/CHANGELOG.md
index a17ba66289323..c82a40d5c28b9 100644
--- a/packages/gatsby-plugin-fullstory/CHANGELOG.md
+++ b/packages/gatsby-plugin-fullstory/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-fullstory@4.21.0/packages/gatsby-plugin-fullstory) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-fullstory
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-fullstory@4.20.0/packages/gatsby-plugin-fullstory) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-fullstory/package.json b/packages/gatsby-plugin-fullstory/package.json
index bd71e41f00b06..9875b74b7f85d 100644
--- a/packages/gatsby-plugin-fullstory/package.json
+++ b/packages/gatsby-plugin-fullstory/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-fullstory",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"description": "Plugin to add the tracking code for Fullstory.com",
"main": "index.js",
"scripts": {
@@ -29,7 +29,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md b/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md
index 13c08b820d513..a9e8481e92fe2 100644
--- a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md
+++ b/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.21.0/packages/gatsby-plugin-gatsby-cloud) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-gatsby-cloud
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.20.0/packages/gatsby-plugin-gatsby-cloud) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-gatsby-cloud/package.json b/packages/gatsby-plugin-gatsby-cloud/package.json
index a39ca1ead5555..1fe930e3808de 100644
--- a/packages/gatsby-plugin-gatsby-cloud/package.json
+++ b/packages/gatsby-plugin-gatsby-cloud/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-gatsby-cloud",
"description": "A Gatsby plugin which optimizes working with Gatsby Cloud",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,8 +9,8 @@
"dependencies": {
"@babel/runtime": "^7.15.4",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-telemetry": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-telemetry": "^3.22.0",
"kebab-hash": "^0.1.2",
"lodash": "^4.17.21",
"webpack-assets-manifest": "^5.1.0"
@@ -18,7 +18,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1",
diff --git a/packages/gatsby-plugin-google-analytics/CHANGELOG.md b/packages/gatsby-plugin-google-analytics/CHANGELOG.md
index ad3c432a449b3..d2613036d7fd2 100644
--- a/packages/gatsby-plugin-google-analytics/CHANGELOG.md
+++ b/packages/gatsby-plugin-google-analytics/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-analytics@4.21.0/packages/gatsby-plugin-google-analytics) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-google-analytics
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-analytics@4.20.0/packages/gatsby-plugin-google-analytics) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json
index 546fb05f69c92..c06e14518474b 100644
--- a/packages/gatsby-plugin-google-analytics/package.json
+++ b/packages/gatsby-plugin-google-analytics/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-google-analytics",
"description": "Gatsby plugin to add google analytics onto a site",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@testing-library/react": "^11.2.7",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-analytics#readme",
diff --git a/packages/gatsby-plugin-google-gtag/CHANGELOG.md b/packages/gatsby-plugin-google-gtag/CHANGELOG.md
index 277fcbed603ab..12ceadec4721e 100644
--- a/packages/gatsby-plugin-google-gtag/CHANGELOG.md
+++ b/packages/gatsby-plugin-google-gtag/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-gtag@4.21.0/packages/gatsby-plugin-google-gtag) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-google-gtag
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-gtag@4.20.0/packages/gatsby-plugin-google-gtag) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json
index 9c654a00a1949..10903d57fa666 100644
--- a/packages/gatsby-plugin-google-gtag/package.json
+++ b/packages/gatsby-plugin-google-gtag/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-google-gtag",
"description": "Gatsby plugin to add google gtag onto a site",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Tyler Buchea ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-gtag#readme",
diff --git a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md
index e4c941affb896..7793e4bca2f68 100644
--- a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md
+++ b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-tagmanager@4.21.0/packages/gatsby-plugin-google-tagmanager) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-google-tagmanager
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-tagmanager@4.20.0/packages/gatsby-plugin-google-tagmanager) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json
index 4237c1469ad1f..350a2959e0416 100644
--- a/packages/gatsby-plugin-google-tagmanager/package.json
+++ b/packages/gatsby-plugin-google-tagmanager/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-google-tagmanager",
"description": "Gatsby plugin to add google tagmanager onto a site",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Thijs Koerselman ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,9 +13,9 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^3.16.0-next.0"
+ "gatsby-plugin-utils": "^3.16.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-image/CHANGELOG.md b/packages/gatsby-plugin-image/CHANGELOG.md
index 8fce56977446f..f5f8ced7453f4 100644
--- a/packages/gatsby-plugin-image/CHANGELOG.md
+++ b/packages/gatsby-plugin-image/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@2.21.0/packages/gatsby-plugin-image) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Bug Fixes
+
+- Add `outputPixelDensities` to `SHARP_ATTRIBUTES` [#36203](https://github.com/gatsbyjs/gatsby/issues/36203) ([ae226b5](https://github.com/gatsbyjs/gatsby/commit/ae226b589369e3b724cc3b5ded5b7b1b1a907afb))
+
## [2.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@2.20.0/packages/gatsby-plugin-image) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json
index 940d2af1550f4..2d4ab628a6b55 100644
--- a/packages/gatsby-plugin-image/package.json
+++ b/packages/gatsby-plugin-image/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-image",
- "version": "2.22.0-next.0",
+ "version": "2.22.0",
"scripts": {
"build": "npm-run-all --npm-path npm -s clean -p build:*",
"build:gatsby-node": "tsc --jsx react --downlevelIteration true --skipLibCheck true --esModuleInterop true --outDir dist/ src/gatsby-node.ts src/babel-plugin-parse-static-images.ts src/resolver-utils.ts src/types.d.ts -d --declarationDir dist/src",
@@ -77,13 +77,13 @@
"@babel/runtime": "^7.15.4",
"@babel/traverse": "^7.15.4",
"babel-jsx-utils": "^1.1.0",
- "babel-plugin-remove-graphql-queries": "^4.22.0-next.0",
+ "babel-plugin-remove-graphql-queries": "^4.22.0",
"camelcase": "^5.3.1",
"chokidar": "^3.5.3",
"common-tags": "^1.8.2",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-plugin-utils": "^3.16.0",
"objectFitPolyfill": "^2.3.5",
"prop-types": "^15.8.1"
},
diff --git a/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx b/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx
index 82ee4a7b1b2ce..6aa6ff9cbefc1 100644
--- a/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx
+++ b/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx
@@ -122,12 +122,13 @@ const GatsbyImageHydrator: FC = function GatsbyImageHydrator({
ssrImage.removeAttribute(`data-gatsby-image-ssr`)
}, 0)
} else {
- document.addEventListener(`load`, function onLoadListener() {
- document.removeEventListener(`load`, onLoadListener)
+ onStartLoad?.({
+ wasCached: true,
+ })
+
+ ssrImage.addEventListener(`load`, function onLoadListener() {
+ ssrImage.removeEventListener(`load`, onLoadListener)
- onStartLoad?.({
- wasCached: true,
- })
onLoad?.({
wasCached: true,
})
diff --git a/packages/gatsby-plugin-jss/CHANGELOG.md b/packages/gatsby-plugin-jss/CHANGELOG.md
index 96a0867f12338..96d7dc82abb0f 100644
--- a/packages/gatsby-plugin-jss/CHANGELOG.md
+++ b/packages/gatsby-plugin-jss/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-jss@4.21.0/packages/gatsby-plugin-jss) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-jss
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-jss@4.20.0/packages/gatsby-plugin-jss) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json
index eab3337a306cb..067d30ac30148 100644
--- a/packages/gatsby-plugin-jss/package.json
+++ b/packages/gatsby-plugin-jss/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-jss",
"description": "Gatsby plugin that adds SSR support for JSS",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Vladimir Guguiev ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-jss#readme",
diff --git a/packages/gatsby-plugin-layout/CHANGELOG.md b/packages/gatsby-plugin-layout/CHANGELOG.md
index 6bbb92329b9ce..4263b3a2b6540 100644
--- a/packages/gatsby-plugin-layout/CHANGELOG.md
+++ b/packages/gatsby-plugin-layout/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-layout@3.21.0/packages/gatsby-plugin-layout) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-layout
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-layout@3.20.0/packages/gatsby-plugin-layout) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-layout/package.json b/packages/gatsby-plugin-layout/package.json
index e5ccfa1c24a29..cbcd6d5b8161e 100644
--- a/packages/gatsby-plugin-layout/package.json
+++ b/packages/gatsby-plugin-layout/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-layout",
- "version": "3.22.0-next.0",
+ "version": "3.22.0",
"description": "Reimplements the behavior of layout components in gatsby@1, which was removed in version 2.",
"main": "index.js",
"scripts": {
@@ -29,7 +29,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-less/CHANGELOG.md b/packages/gatsby-plugin-less/CHANGELOG.md
index 796bdeed9e47f..86deb0f2a767f 100644
--- a/packages/gatsby-plugin-less/CHANGELOG.md
+++ b/packages/gatsby-plugin-less/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-less@6.21.0/packages/gatsby-plugin-less) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-less
+
## [6.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-less@6.20.0/packages/gatsby-plugin-less) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json
index ded95580d8fdf..143a701420891 100644
--- a/packages/gatsby-plugin-less/package.json
+++ b/packages/gatsby-plugin-less/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-less",
"description": "Gatsby plugin to add support for using Less",
- "version": "6.22.0-next.0",
+ "version": "6.22.0",
"author": "monastic.panic@gmail.com",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-less#readme",
diff --git a/packages/gatsby-plugin-lodash/CHANGELOG.md b/packages/gatsby-plugin-lodash/CHANGELOG.md
index e9cf57b21c9b0..1c38b75cc8556 100644
--- a/packages/gatsby-plugin-lodash/CHANGELOG.md
+++ b/packages/gatsby-plugin-lodash/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-lodash@5.21.0/packages/gatsby-plugin-lodash) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-lodash
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-lodash@5.20.0/packages/gatsby-plugin-lodash) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json
index c21057d059a9a..f6fcc144c2998 100644
--- a/packages/gatsby-plugin-lodash/package.json
+++ b/packages/gatsby-plugin-lodash/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-lodash",
"description": "Easy modular Lodash builds. Adds the Lodash webpack & Babel plugins to your Gatsby build",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-lodash#readme",
diff --git a/packages/gatsby-plugin-manifest/CHANGELOG.md b/packages/gatsby-plugin-manifest/CHANGELOG.md
index 62a29b518d176..f8189e3f40f25 100644
--- a/packages/gatsby-plugin-manifest/CHANGELOG.md
+++ b/packages/gatsby-plugin-manifest/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-manifest@4.21.0/packages/gatsby-plugin-manifest) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- update sharp [#35539](https://github.com/gatsbyjs/gatsby/issues/35539) ([a9132a5](https://github.com/gatsbyjs/gatsby/commit/a9132a53eac37f713e8cb8a8246c62f4f8d8f142))
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-manifest@4.20.0/packages/gatsby-plugin-manifest) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json
index bbf506b3830e8..739f09614f9f4 100644
--- a/packages/gatsby-plugin-manifest/package.json
+++ b/packages/gatsby-plugin-manifest/package.json
@@ -1,22 +1,22 @@
{
"name": "gatsby-plugin-manifest",
"description": "Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-plugin-utils": "^3.16.0",
"semver": "^7.3.7",
"sharp": "^0.30.7"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-manifest#readme",
diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md
index b3a490ecc9939..263d630ba62bf 100644
--- a/packages/gatsby-plugin-mdx/CHANGELOG.md
+++ b/packages/gatsby-plugin-mdx/CHANGELOG.md
@@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-mdx@4.0.0/packages/gatsby-plugin-mdx) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Bug Fixes
+
+- Hashing and pluginOptions [#36387](https://github.com/gatsbyjs/gatsby/issues/36387) [#36395](https://github.com/gatsbyjs/gatsby/issues/36395) ([3253a38](https://github.com/gatsbyjs/gatsby/commit/3253a3860c9c74bce23c8c2fd1df651e549566b9))
+
+#### Chores
+
+- Add note about rehype-slug-custom-id ([bc80c23](https://github.com/gatsbyjs/gatsby/commit/bc80c23081943407dbd84d8baf38d466f26c2290))
+- Update .gitignore ([0705ac7](https://github.com/gatsbyjs/gatsby/commit/0705ac7e5e022e46509beb99eadb617541c5e637))
+
+#### Other Changes
+
+- BREAKING CHANGE(gatsby-plugin-mdx): MDX v2 [#35650](https://github.com/gatsbyjs/gatsby/issues/35650) ([c92db36](https://github.com/gatsbyjs/gatsby/commit/c92db36642268d1ee50c11ea568f836c7e5b4a03))
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-mdx@3.20.0/packages/gatsby-plugin-mdx) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json
index 69b9d9c525be6..cd2b4445b47a8 100644
--- a/packages/gatsby-plugin-mdx/package.json
+++ b/packages/gatsby-plugin-mdx/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-mdx",
- "version": "4.1.0-next.0",
+ "version": "4.1.0",
"description": "MDX integration for Gatsby",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -34,8 +34,8 @@
"deepmerge": "^4.2.2",
"estree-util-build-jsx": "^2.1.0",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-plugin-utils": "^3.16.0",
"gray-matter": "^4.0.3",
"mdast-util-mdx": "^2.0.0",
"mdast-util-to-hast": "^10.2.0",
@@ -52,7 +52,7 @@
"@types/estree": "^0.0.50",
"@types/mdast": "^3.0.10",
"@types/unist": "^2.0.6",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"opentracing": "^0.14.7",
diff --git a/packages/gatsby-plugin-mdx/src/get-source-plugins-as-remark-plugins.ts b/packages/gatsby-plugin-mdx/src/get-source-plugins-as-remark-plugins.ts
index 10c75bdfa41ac..6a2c7023ad30b 100644
--- a/packages/gatsby-plugin-mdx/src/get-source-plugins-as-remark-plugins.ts
+++ b/packages/gatsby-plugin-mdx/src/get-source-plugins-as-remark-plugins.ts
@@ -32,30 +32,29 @@ export async function getSourcePluginsAsRemarkPlugins({
const userPlugins = userPluginsFiltered.map(plugin => {
const requiredPlugin = plugin.module
- const wrappedGatsbyPlugin: Pluggable> =
- function wrappedGatsbyPlugin() {
- // eslint-disable-next-line @babel/no-invalid-this
- const mdxNode = getNode(this.data(`mdxNodeId`) as string)
+ const wrappedGatsbyPlugin: Pluggable = function wrappedGatsbyPlugin() {
+ // eslint-disable-next-line @babel/no-invalid-this
+ const mdxNode = getNode(this.data(`mdxNodeId`) as string)
- return async function transformer(markdownAST): Promise {
- // Execute gatsby-remark-* plugin
- await requiredPlugin(
- {
- markdownAST,
- markdownNode: mdxNode,
- getNode,
- getNodesByType,
- get files() {
- return getNodesByType(`File`)
- },
- pathPrefix,
- reporter,
- cache,
+ return async function transformer(markdownAST): Promise {
+ // Execute gatsby-remark-* plugin
+ await requiredPlugin(
+ {
+ markdownAST,
+ markdownNode: mdxNode,
+ getNode,
+ getNodesByType,
+ get files() {
+ return getNodesByType(`File`)
},
- plugin.options || {}
- )
- }
+ pathPrefix,
+ reporter,
+ cache,
+ },
+ plugin.pluginOptions || {}
+ )
}
+ }
return wrappedGatsbyPlugin
})
diff --git a/packages/gatsby-plugin-mdx/src/plugin-options.ts b/packages/gatsby-plugin-mdx/src/plugin-options.ts
index d0c4a859de673..32c031912c3b8 100644
--- a/packages/gatsby-plugin-mdx/src/plugin-options.ts
+++ b/packages/gatsby-plugin-mdx/src/plugin-options.ts
@@ -1,7 +1,7 @@
import type { ProcessorOptions } from "@mdx-js/mdx"
import type { GatsbyCache, NodePluginArgs, PluginOptions, Store } from "gatsby"
import deepmerge from "deepmerge"
-import type { IPluginRefObject } from "gatsby-plugin-utils/types"
+import type { IPluginInfo } from "gatsby-plugin-utils/types"
import { getSourcePluginsAsRemarkPlugins } from "./get-source-plugins-as-remark-plugins"
import rehypeMdxMetadataExtractor from "./rehype-metadata-extractor"
import { remarkMdxHtmlPlugin } from "./remark-mdx-html-plugin"
@@ -10,7 +10,7 @@ import { remarkPathPlugin } from "./remark-path-prefix-plugin"
export interface IMdxPluginOptions {
extensions: [string]
mdxOptions: ProcessorOptions
- gatsbyRemarkPlugins?: [IPluginRefObject]
+ gatsbyRemarkPlugins?: [IPluginInfo]
}
interface IHelpers {
getNode: NodePluginArgs["getNode"]
@@ -84,7 +84,7 @@ export const enhanceMdxOptions: EnhanceMdxOptions = async (
if (typeof requiredPlugin.setParserPlugins === `function`) {
for (const parserPlugin of requiredPlugin.setParserPlugins(
- plugin.options || {}
+ plugin.pluginOptions || {}
)) {
if (Array.isArray(parserPlugin)) {
const [parser, parserPluginOptions] = parserPlugin
diff --git a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
index 4d3b25d2d13b2..2fee78807ff26 100644
--- a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
+++ b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-netlify-cms@6.21.0/packages/gatsby-plugin-netlify-cms) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-netlify-cms
+
## [6.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-netlify-cms@6.20.0/packages/gatsby-plugin-netlify-cms) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json
index 4ed1343dbd14b..539460781070b 100644
--- a/packages/gatsby-plugin-netlify-cms/package.json
+++ b/packages/gatsby-plugin-netlify-cms/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-netlify-cms",
"description": "A Gatsby plugin which generates the Netlify CMS single page app",
- "version": "6.22.0-next.0",
+ "version": "6.22.0",
"author": "Shawn Erquhart ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -20,7 +20,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md
index 89bbd5552d5b2..ba8510971871d 100644
--- a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md
+++ b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-no-sourcemaps@4.21.0/packages/gatsby-plugin-no-sourcemaps) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-no-sourcemaps
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-no-sourcemaps@4.20.0/packages/gatsby-plugin-no-sourcemaps) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-no-sourcemaps/package.json b/packages/gatsby-plugin-no-sourcemaps/package.json
index cddd5b9367fa7..b192eb91a0ff4 100644
--- a/packages/gatsby-plugin-no-sourcemaps/package.json
+++ b/packages/gatsby-plugin-no-sourcemaps/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-no-sourcemaps",
"description": "Disable sourcemaps when building JavaScript",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Stuart Taylor ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-plugin-nprogress/CHANGELOG.md b/packages/gatsby-plugin-nprogress/CHANGELOG.md
index 811eadcbeab14..cea9e1602063f 100644
--- a/packages/gatsby-plugin-nprogress/CHANGELOG.md
+++ b/packages/gatsby-plugin-nprogress/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-nprogress@4.21.0/packages/gatsby-plugin-nprogress) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-nprogress
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-nprogress@4.20.0/packages/gatsby-plugin-nprogress) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json
index 18ff4c9914b4c..5546cc079d1e0 100644
--- a/packages/gatsby-plugin-nprogress/package.json
+++ b/packages/gatsby-plugin-nprogress/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-nprogress",
"description": "Shows page loading indicator when loading page resources is delayed",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-nprogress#readme",
diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md
index 4356681ddc0c7..a72643cfaf106 100644
--- a/packages/gatsby-plugin-offline/CHANGELOG.md
+++ b/packages/gatsby-plugin-offline/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-offline@5.21.0/packages/gatsby-plugin-offline) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-offline
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-offline@5.20.0/packages/gatsby-plugin-offline) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json
index 65122326e4f31..ff3d3efbc1aba 100644
--- a/packages/gatsby-plugin-offline/package.json
+++ b/packages/gatsby-plugin-offline/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-offline",
"description": "Gatsby plugin which sets up a site to be able to run offline",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,7 +9,7 @@
"dependencies": {
"@babel/runtime": "^7.15.4",
"cheerio": "^1.0.0-rc.10",
- "gatsby-core-utils": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
"glob": "^7.2.3",
"idb-keyval": "^3.2.0",
"lodash": "^4.17.21",
@@ -18,10 +18,10 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cpy-cli": "^3.1.1",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^3.16.0-next.0",
+ "gatsby-plugin-utils": "^3.16.0",
"rewire": "^6.0.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme",
diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md
index ea6b364e85f6f..24233bd77ba96 100644
--- a/packages/gatsby-plugin-page-creator/CHANGELOG.md
+++ b/packages/gatsby-plugin-page-creator/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-page-creator@4.21.0/packages/gatsby-plugin-page-creator) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Other Changes
+
+- BREAKING CHANGE(gatsby-plugin-mdx): MDX v2 [#35650](https://github.com/gatsbyjs/gatsby/issues/35650) ([c92db36](https://github.com/gatsbyjs/gatsby/commit/c92db36642268d1ee50c11ea568f836c7e5b4a03))
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-page-creator@4.20.0/packages/gatsby-plugin-page-creator) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json
index 3d041f9aad8a2..77fa491fcc62b 100644
--- a/packages/gatsby-plugin-page-creator/package.json
+++ b/packages/gatsby-plugin-page-creator/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-page-creator",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"description": "Gatsby plugin that automatically creates pages from React components in specified directories",
"main": "index.js",
"scripts": {
@@ -30,17 +30,17 @@
"chokidar": "^3.5.3",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-page-utils": "^2.22.0-next.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
- "gatsby-telemetry": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-page-utils": "^2.22.0",
+ "gatsby-plugin-utils": "^3.16.0",
+ "gatsby-telemetry": "^3.22.0",
"globby": "^11.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-postcss/CHANGELOG.md b/packages/gatsby-plugin-postcss/CHANGELOG.md
index ddf7f8cbbd9a7..65e2c8d5cce1d 100644
--- a/packages/gatsby-plugin-postcss/CHANGELOG.md
+++ b/packages/gatsby-plugin-postcss/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-postcss@5.21.0/packages/gatsby-plugin-postcss) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-postcss
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-postcss@5.20.0/packages/gatsby-plugin-postcss) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json
index b0e80de9a1968..7b88ef3976862 100644
--- a/packages/gatsby-plugin-postcss/package.json
+++ b/packages/gatsby-plugin-postcss/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-postcss",
"description": "Gatsby plugin to handle PostCSS",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Marat Dreizin ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-postcss#readme",
diff --git a/packages/gatsby-plugin-preact/CHANGELOG.md b/packages/gatsby-plugin-preact/CHANGELOG.md
index 476f20f393ac4..484388948e39b 100644
--- a/packages/gatsby-plugin-preact/CHANGELOG.md
+++ b/packages/gatsby-plugin-preact/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preact@6.21.0/packages/gatsby-plugin-preact) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-preact
+
## [6.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preact@6.20.0/packages/gatsby-plugin-preact) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json
index a6225930eab6f..3792557d7d2c3 100644
--- a/packages/gatsby-plugin-preact/package.json
+++ b/packages/gatsby-plugin-preact/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-preact",
"description": "A Gatsby plugin which replaces React with Preact",
- "version": "6.22.0-next.0",
+ "version": "6.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,8 +15,8 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"preact": "^10.6.4"
},
diff --git a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
index 85082c68ceb81..a9a88e6ef6ddf 100644
--- a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
+++ b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preload-fonts@3.21.0/packages/gatsby-plugin-preload-fonts) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- update dependency del-cli to v5 for gatsby-plugin-preload-fonts [#36288](https://github.com/gatsbyjs/gatsby/issues/36288) ([a90f40f](https://github.com/gatsbyjs/gatsby/commit/a90f40fdbf368fea8590f57662a357cb670a2cf1))
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preload-fonts@3.20.0/packages/gatsby-plugin-preload-fonts) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json
index 32674b393f03b..6e67dc72def34 100644
--- a/packages/gatsby-plugin-preload-fonts/package.json
+++ b/packages/gatsby-plugin-preload-fonts/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-preload-fonts",
"description": "Gatsby plugin for preloading fonts per page",
- "version": "3.22.0-next.0",
+ "version": "3.22.0",
"author": "Aaron Ross ",
"main": "index.js",
"bin": {
@@ -15,7 +15,7 @@
"chalk": "^4.1.2",
"date-fns": "^2.28.0",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
"graphql-request": "^1.8.2",
"progress": "^2.0.3",
"puppeteer": "^3.3.0"
@@ -23,7 +23,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0"
},
diff --git a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md
index 7b6c1db575e48..ac0a5c6a641f6 100644
--- a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md
+++ b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-css-modules@4.21.0/packages/gatsby-plugin-react-css-modules) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-react-css-modules
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-css-modules@4.20.0/packages/gatsby-plugin-react-css-modules) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json
index 73891c789f3e4..ea4b6bfb34dfc 100644
--- a/packages/gatsby-plugin-react-css-modules/package.json
+++ b/packages/gatsby-plugin-react-css-modules/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-react-css-modules",
"description": "Gatsby plugin that transforms styleName to className using compile time CSS module resolution",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Ming Aldrich-Gan ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-css-modules#readme",
diff --git a/packages/gatsby-plugin-react-helmet/CHANGELOG.md b/packages/gatsby-plugin-react-helmet/CHANGELOG.md
index 471505994e986..416fbc669217e 100644
--- a/packages/gatsby-plugin-react-helmet/CHANGELOG.md
+++ b/packages/gatsby-plugin-react-helmet/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-helmet@5.21.0/packages/gatsby-plugin-react-helmet) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Bug Fixes
+
+- stop appending empty title tags [#36303](https://github.com/gatsbyjs/gatsby/issues/36303) ([e7f0ce3](https://github.com/gatsbyjs/gatsby/commit/e7f0ce36935b6919f00760ce4fb7655530e999f2))
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-helmet@5.20.0/packages/gatsby-plugin-react-helmet) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json
index 15fa073df363f..e57e5ad0aadf5 100644
--- a/packages/gatsby-plugin-react-helmet/package.json
+++ b/packages/gatsby-plugin-react-helmet/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-react-helmet",
"description": "Manage document head data with react-helmet. Provides drop-in server rendering support for Gatsby.",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-helmet#readme",
diff --git a/packages/gatsby-plugin-react-helmet/src/gatsby-node.js b/packages/gatsby-plugin-react-helmet/src/gatsby-node.js
index aab9251532a76..b879f3575864e 100644
--- a/packages/gatsby-plugin-react-helmet/src/gatsby-node.js
+++ b/packages/gatsby-plugin-react-helmet/src/gatsby-node.js
@@ -2,6 +2,6 @@ exports.pluginOptionsSchema = ({ Joi }) => Joi.object({})
exports.onPreInit = ({ reporter }) => {
reporter.warn(
- `gatsby-plugin-react-helmet: Gatsby now has built-in support for modyfing the document head. Learn more at https://gatsby.dev/gatsby-head`
+ `gatsby-plugin-react-helmet: Gatsby now has built-in support for modifying the document head. Learn more at https://gatsby.dev/gatsby-head`
)
}
diff --git a/packages/gatsby-plugin-sass/CHANGELOG.md b/packages/gatsby-plugin-sass/CHANGELOG.md
index 2fd77c63726d9..cd078fd065487 100644
--- a/packages/gatsby-plugin-sass/CHANGELOG.md
+++ b/packages/gatsby-plugin-sass/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sass@5.21.0/packages/gatsby-plugin-sass) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-sass
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sass@5.20.0/packages/gatsby-plugin-sass) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json
index e3d06440dbced..cd148da6251f3 100644
--- a/packages/gatsby-plugin-sass/package.json
+++ b/packages/gatsby-plugin-sass/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-sass",
"description": "Gatsby plugin to handle SCSS/Sass files",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Daniel Farrell ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,9 +15,9 @@
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"autoprefixer": "^10.4.7",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^3.16.0-next.0"
+ "gatsby-plugin-utils": "^3.16.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md
index c875c34ae53dd..4cdb1ae9dfd07 100644
--- a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md
+++ b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-schema-snapshot@3.21.0/packages/gatsby-plugin-schema-snapshot) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-schema-snapshot
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-schema-snapshot@3.20.0/packages/gatsby-plugin-schema-snapshot) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-schema-snapshot/package.json b/packages/gatsby-plugin-schema-snapshot/package.json
index 5c1927b9af8b4..9503163023e53 100644
--- a/packages/gatsby-plugin-schema-snapshot/package.json
+++ b/packages/gatsby-plugin-schema-snapshot/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-schema-snapshot",
- "version": "3.22.0-next.0",
+ "version": "3.22.0",
"main": "index.js",
"license": "MIT",
"keywords": [
diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md
index e40d845ff66d6..a6af2cea57761 100644
--- a/packages/gatsby-plugin-sharp/CHANGELOG.md
+++ b/packages/gatsby-plugin-sharp/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sharp@4.21.0/packages/gatsby-plugin-sharp) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- Update `got` [#36366](https://github.com/gatsbyjs/gatsby/issues/36366) ([ab55e4e](https://github.com/gatsbyjs/gatsby/commit/ab55e4e30a023d56e4c4332dfd278015a0f49ee0))
+- update sharp [#35539](https://github.com/gatsbyjs/gatsby/issues/35539) ([a9132a5](https://github.com/gatsbyjs/gatsby/commit/a9132a53eac37f713e8cb8a8246c62f4f8d8f142))
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sharp@4.20.0/packages/gatsby-plugin-sharp) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index c5190244658aa..e920b312c98fa 100644
--- a/packages/gatsby-plugin-sharp/package.json
+++ b/packages/gatsby-plugin-sharp/package.json
@@ -1,26 +1,24 @@
{
"name": "gatsby-plugin-sharp",
"description": "Wrapper of the Sharp image manipulation library for Gatsby plugins",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
- "@gatsbyjs/potrace": "^2.2.0",
+ "@gatsbyjs/potrace": "^2.3.0",
"async": "^3.2.4",
"bluebird": "^3.7.2",
"debug": "^4.3.4",
"filenamify": "^4.3.0",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
- "gatsby-telemetry": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-plugin-utils": "^3.16.0",
"lodash": "^4.17.21",
"mini-svg-data-uri": "^1.4.4",
"probe-image-size": "^7.2.3",
- "progress": "^2.0.3",
"semver": "^7.3.7",
"sharp": "^0.30.7",
"svgo": "1.3.2"
@@ -29,9 +27,9 @@
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@types/sharp": "^0.30.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-image": "^2.22.0-next.0"
+ "gatsby-plugin-image": "^2.22.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-sharp/src/__tests__/utils.js b/packages/gatsby-plugin-sharp/src/__tests__/utils.js
index 82b92839a8c39..562bf2221dd8e 100644
--- a/packages/gatsby-plugin-sharp/src/__tests__/utils.js
+++ b/packages/gatsby-plugin-sharp/src/__tests__/utils.js
@@ -1,5 +1,4 @@
jest.mock(`gatsby/reporter`)
-jest.mock(`progress`)
const { calculateImageSizes } = require(`../utils`)
const reporter = require(`gatsby/reporter`)
const sharp = require(`sharp`)
diff --git a/packages/gatsby-plugin-sitemap/CHANGELOG.md b/packages/gatsby-plugin-sitemap/CHANGELOG.md
index 4b44867233492..e2318a319c75c 100644
--- a/packages/gatsby-plugin-sitemap/CHANGELOG.md
+++ b/packages/gatsby-plugin-sitemap/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sitemap@5.21.0/packages/gatsby-plugin-sitemap) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-sitemap
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sitemap@5.20.0/packages/gatsby-plugin-sitemap) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json
index 6080354b6a010..97bac85d8c08c 100644
--- a/packages/gatsby-plugin-sitemap/package.json
+++ b/packages/gatsby-plugin-sitemap/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-sitemap",
"description": "Gatsby plugin that automatically creates a sitemap for your site",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"contributors": [
"Alex Moon ",
"Nicholas Young "
@@ -18,9 +18,9 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^3.16.0-next.0"
+ "gatsby-plugin-utils": "^3.16.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-styled-components/CHANGELOG.md b/packages/gatsby-plugin-styled-components/CHANGELOG.md
index 65b4517458c9a..d5086acd79fc7 100644
--- a/packages/gatsby-plugin-styled-components/CHANGELOG.md
+++ b/packages/gatsby-plugin-styled-components/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-components@5.21.0/packages/gatsby-plugin-styled-components) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-styled-components
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-components@5.20.0/packages/gatsby-plugin-styled-components) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json
index c397b94bc9f42..6ac48221dc121 100644
--- a/packages/gatsby-plugin-styled-components/package.json
+++ b/packages/gatsby-plugin-styled-components/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-styled-components",
"description": "Gatsby plugin to add support for styled components",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Guten Ye ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-components#readme",
diff --git a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md
index 0383d8d455a0b..1644ee26533e9 100644
--- a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md
+++ b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-jsx@5.21.0/packages/gatsby-plugin-styled-jsx) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-styled-jsx
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-jsx@5.20.0/packages/gatsby-plugin-styled-jsx) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json
index a0965fb777dcc..9fedb0aabca2a 100644
--- a/packages/gatsby-plugin-styled-jsx/package.json
+++ b/packages/gatsby-plugin-styled-jsx/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-styled-jsx",
"description": "Adds SSR support for styled-jsx",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Tim Suchanek ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-jsx#readme",
diff --git a/packages/gatsby-plugin-styletron/CHANGELOG.md b/packages/gatsby-plugin-styletron/CHANGELOG.md
index 0feb265f78cd6..a896d01fc680d 100644
--- a/packages/gatsby-plugin-styletron/CHANGELOG.md
+++ b/packages/gatsby-plugin-styletron/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styletron@7.21.0/packages/gatsby-plugin-styletron) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- update [dev] minor and patch dependencies for gatsby-plugin-styletron [#36279](https://github.com/gatsbyjs/gatsby/issues/36279) ([587a8f3](https://github.com/gatsbyjs/gatsby/commit/587a8f3ef9aeb410344cb6b84192681a3ec2c83c))
+
## [7.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styletron@7.20.0/packages/gatsby-plugin-styletron) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json
index 39b01fbe1f06b..31aa642979881 100644
--- a/packages/gatsby-plugin-styletron/package.json
+++ b/packages/gatsby-plugin-styletron/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-styletron",
"description": "A Gatsby plugin for styletron with built-in server-side rendering support",
- "version": "7.22.0-next.0",
+ "version": "7.22.0",
"author": "Nadiia Dmytrenko ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"styletron-engine-atomic": "^1.5.0",
"styletron-react": "^6.1.0"
diff --git a/packages/gatsby-plugin-stylus/CHANGELOG.md b/packages/gatsby-plugin-stylus/CHANGELOG.md
index 8f7270109b569..91a07402f063e 100644
--- a/packages/gatsby-plugin-stylus/CHANGELOG.md
+++ b/packages/gatsby-plugin-stylus/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-stylus@4.21.0/packages/gatsby-plugin-stylus) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-stylus
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-stylus@4.20.0/packages/gatsby-plugin-stylus) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json
index 07fdf732e0f09..158ab1a17405c 100644
--- a/packages/gatsby-plugin-stylus/package.json
+++ b/packages/gatsby-plugin-stylus/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-stylus",
"description": "Gatsby support for Stylus",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Ian Sinnott ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-stylus#readme",
diff --git a/packages/gatsby-plugin-subfont/CHANGELOG.md b/packages/gatsby-plugin-subfont/CHANGELOG.md
index 6aaacdb375ed9..dc0a973da8034 100644
--- a/packages/gatsby-plugin-subfont/CHANGELOG.md
+++ b/packages/gatsby-plugin-subfont/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-subfont@4.21.0/packages/gatsby-plugin-subfont) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-subfont
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-subfont@4.20.0/packages/gatsby-plugin-subfont) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json
index d5816c2a860d0..325faf949399f 100644
--- a/packages/gatsby-plugin-subfont/package.json
+++ b/packages/gatsby-plugin-subfont/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-subfont",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"description": "Runs the font delivery optimizing CLI tool subfont on the homepage of your site during the Gatsby build",
"main": "index.js",
"scripts": {
@@ -30,7 +30,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-twitter/CHANGELOG.md b/packages/gatsby-plugin-twitter/CHANGELOG.md
index 54c2b0e044e92..4609162aaa4a8 100644
--- a/packages/gatsby-plugin-twitter/CHANGELOG.md
+++ b/packages/gatsby-plugin-twitter/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-twitter@4.21.0/packages/gatsby-plugin-twitter) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-twitter
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-twitter@4.20.0/packages/gatsby-plugin-twitter) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json
index 1f21b5a273577..db4ae80869b80 100644
--- a/packages/gatsby-plugin-twitter/package.json
+++ b/packages/gatsby-plugin-twitter/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-twitter",
"description": "Loads the Twitter JavaScript for embedding tweets.",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,9 +12,9 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^3.16.0-next.0"
+ "gatsby-plugin-utils": "^3.16.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-twitter#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-typescript/CHANGELOG.md b/packages/gatsby-plugin-typescript/CHANGELOG.md
index 71517b69922d9..32f8e5f7c3e46 100644
--- a/packages/gatsby-plugin-typescript/CHANGELOG.md
+++ b/packages/gatsby-plugin-typescript/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typescript@4.21.0/packages/gatsby-plugin-typescript) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Bug Fixes
+
+- only use resourceQuery for supported version of gatsby [#36328](https://github.com/gatsbyjs/gatsby/issues/36328) ([564a8f7](https://github.com/gatsbyjs/gatsby/commit/564a8f7358edd2599199e79c902468fa83f916b2))
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typescript@4.20.0/packages/gatsby-plugin-typescript) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json
index 5cf70a8a10b90..36463323492d3 100644
--- a/packages/gatsby-plugin-typescript/package.json
+++ b/packages/gatsby-plugin-typescript/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-typescript",
"description": "Adds TypeScript support to Gatsby",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,12 +16,12 @@
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
- "babel-plugin-remove-graphql-queries": "^4.22.0-next.0"
+ "babel-plugin-remove-graphql-queries": "^4.22.0"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-typography/CHANGELOG.md b/packages/gatsby-plugin-typography/CHANGELOG.md
index 58a21f87b2fe1..07524b43625df 100644
--- a/packages/gatsby-plugin-typography/CHANGELOG.md
+++ b/packages/gatsby-plugin-typography/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typography@4.21.0/packages/gatsby-plugin-typography) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-plugin-typography
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typography@4.20.0/packages/gatsby-plugin-typography) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json
index 26cc69790d004..46130ec18affd 100644
--- a/packages/gatsby-plugin-typography/package.json
+++ b/packages/gatsby-plugin-typography/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-typography",
"description": "Gatsby plugin to setup server rendering of Typography.js' CSS",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
diff --git a/packages/gatsby-plugin-utils/CHANGELOG.md b/packages/gatsby-plugin-utils/CHANGELOG.md
index ceba62aecabaf..ae047a775fc37 100644
--- a/packages/gatsby-plugin-utils/CHANGELOG.md
+++ b/packages/gatsby-plugin-utils/CHANGELOG.md
@@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-utils@3.15.0/packages/gatsby-plugin-utils) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Bug Fixes
+
+- Hashing and pluginOptions [#36387](https://github.com/gatsbyjs/gatsby/issues/36387) [#36395](https://github.com/gatsbyjs/gatsby/issues/36395) ([3253a38](https://github.com/gatsbyjs/gatsby/commit/3253a3860c9c74bce23c8c2fd1df651e549566b9))
+
+#### Chores
+
+- update sharp [#35539](https://github.com/gatsbyjs/gatsby/issues/35539) ([a9132a5](https://github.com/gatsbyjs/gatsby/commit/a9132a53eac37f713e8cb8a8246c62f4f8d8f142))
+
+#### Other Changes
+
+- BREAKING CHANGE(gatsby-plugin-mdx): MDX v2 [#35650](https://github.com/gatsbyjs/gatsby/issues/35650) ([c92db36](https://github.com/gatsbyjs/gatsby/commit/c92db36642268d1ee50c11ea568f836c7e5b4a03))
+
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-utils@3.14.0/packages/gatsby-plugin-utils) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-plugin-utils/package.json b/packages/gatsby-plugin-utils/package.json
index 6e21d84bd1ff1..505aa1e6fa0cd 100644
--- a/packages/gatsby-plugin-utils/package.json
+++ b/packages/gatsby-plugin-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-utils",
- "version": "3.16.0-next.0",
+ "version": "3.16.0",
"description": "Gatsby utils that help creating plugins",
"main": "dist/index.js",
"exports": {
@@ -47,11 +47,11 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-utils#readme",
"dependencies": {
"@babel/runtime": "^7.15.4",
- "@gatsbyjs/potrace": "^2.2.0",
+ "@gatsbyjs/potrace": "^2.3.0",
"fastq": "^1.13.0",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-sharp": "^0.16.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-sharp": "^0.16.0",
"graphql-compose": "^9.0.7",
"import-from": "^4.0.0",
"joi": "^17.4.2",
@@ -62,7 +62,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"msw": "^0.42.3",
"rimraf": "^3.0.2",
diff --git a/packages/gatsby-plugin-utils/src/types.ts b/packages/gatsby-plugin-utils/src/types.ts
index 2d040e93fc3c7..d3608b0802200 100644
--- a/packages/gatsby-plugin-utils/src/types.ts
+++ b/packages/gatsby-plugin-utils/src/types.ts
@@ -33,6 +33,9 @@ export interface IPluginInfo {
/** Options passed to the plugin */
pluginOptions?: IPluginInfoOptions
+
+ module?: any
+ modulePath?: string
}
export interface IPluginInfoOptions {
diff --git a/packages/gatsby-react-router-scroll/CHANGELOG.md b/packages/gatsby-react-router-scroll/CHANGELOG.md
index ef2f4920d74a2..4774bc8db322c 100644
--- a/packages/gatsby-react-router-scroll/CHANGELOG.md
+++ b/packages/gatsby-react-router-scroll/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-react-router-scroll@5.21.0/packages/gatsby-react-router-scroll) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-react-router-scroll
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-react-router-scroll@5.20.0/packages/gatsby-react-router-scroll) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json
index 32a45b33bb607..4ae6ff66951e7 100644
--- a/packages/gatsby-react-router-scroll/package.json
+++ b/packages/gatsby-react-router-scroll/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-react-router-scroll",
"description": "React Router scroll management forked from https://github.com/ytase/react-router-scroll for Gatsby",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Jimmy Jia",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"babel-plugin-dev-expression": "^0.2.3",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"history": "^5.0.1"
},
diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md
index 8d8deae6ad5ea..1f89debbda140 100644
--- a/packages/gatsby-remark-autolink-headers/CHANGELOG.md
+++ b/packages/gatsby-remark-autolink-headers/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-autolink-headers@5.21.0/packages/gatsby-remark-autolink-headers) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- Add note about rehype-slug-custom-id ([bc80c23](https://github.com/gatsbyjs/gatsby/commit/bc80c23081943407dbd84d8baf38d466f26c2290))
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-autolink-headers@5.20.0/packages/gatsby-remark-autolink-headers) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json
index 5b82ea5cc5802..3dcfbfc3ee92f 100644
--- a/packages/gatsby-remark-autolink-headers/package.json
+++ b/packages/gatsby-remark-autolink-headers/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-autolink-headers",
"description": "Gatsby plugin to autolink headers in markdown processed by Remark",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,9 +16,9 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^3.16.0-next.0"
+ "gatsby-plugin-utils": "^3.16.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers#readme",
"keywords": [
diff --git a/packages/gatsby-remark-code-repls/CHANGELOG.md b/packages/gatsby-remark-code-repls/CHANGELOG.md
index 5e1c4c6452277..8ae2716489fb3 100644
--- a/packages/gatsby-remark-code-repls/CHANGELOG.md
+++ b/packages/gatsby-remark-code-repls/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-code-repls@6.21.0/packages/gatsby-remark-code-repls) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-code-repls
+
## [6.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-code-repls@6.20.0/packages/gatsby-remark-code-repls) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json
index d72d9e78be309..7c12ee28a9938 100644
--- a/packages/gatsby-remark-code-repls/package.json
+++ b/packages/gatsby-remark-code-repls/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-code-repls",
"description": "Gatsby plugin to auto-generate links to popular REPLs like Babel and Codepen",
- "version": "6.22.0-next.0",
+ "version": "6.22.0",
"author": "Brian Vaughn ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -18,7 +18,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-code-repls#readme",
diff --git a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md
index f5fee705a4eea..832e2215f5eee 100644
--- a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md
+++ b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-copy-linked-files@5.21.0/packages/gatsby-remark-copy-linked-files) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-copy-linked-files
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-copy-linked-files@5.20.0/packages/gatsby-remark-copy-linked-files) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json
index c75432c8d9c26..5afaaf6b5c1a8 100644
--- a/packages/gatsby-remark-copy-linked-files/package.json
+++ b/packages/gatsby-remark-copy-linked-files/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-copy-linked-files",
"description": "Find files which are linked to from markdown and copy them to the public directory",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -19,7 +19,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"remark": "^13.0.0",
"remark-mdx": "^1.6.22"
diff --git a/packages/gatsby-remark-custom-blocks/CHANGELOG.md b/packages/gatsby-remark-custom-blocks/CHANGELOG.md
index 30d7e7002e5ec..338c6c0f23aa0 100644
--- a/packages/gatsby-remark-custom-blocks/CHANGELOG.md
+++ b/packages/gatsby-remark-custom-blocks/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-custom-blocks@4.21.0/packages/gatsby-remark-custom-blocks) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-custom-blocks
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-custom-blocks@4.20.0/packages/gatsby-remark-custom-blocks) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json
index e9a95f67dbe86..86fe216ee2bc6 100644
--- a/packages/gatsby-remark-custom-blocks/package.json
+++ b/packages/gatsby-remark-custom-blocks/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-custom-blocks",
"description": "Gatsby remark plugin for adding custom blocks in markdown",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Mohammad Asad Mohammad ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"unist-util-find": "^1.0.2"
diff --git a/packages/gatsby-remark-embed-snippet/CHANGELOG.md b/packages/gatsby-remark-embed-snippet/CHANGELOG.md
index 01c8c35f102df..bf1751b5b179b 100644
--- a/packages/gatsby-remark-embed-snippet/CHANGELOG.md
+++ b/packages/gatsby-remark-embed-snippet/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-embed-snippet@7.21.0/packages/gatsby-remark-embed-snippet) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-embed-snippet
+
## [7.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-embed-snippet@7.20.0/packages/gatsby-remark-embed-snippet) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json
index 746c1c9f7472b..6480e7a0dd73b 100644
--- a/packages/gatsby-remark-embed-snippet/package.json
+++ b/packages/gatsby-remark-embed-snippet/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-embed-snippet",
"description": "Gatsby plugin to embed formatted code snippets within markdown",
- "version": "7.22.0-next.0",
+ "version": "7.22.0",
"author": "Brian Vaughn ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-embed-snippet#readme",
diff --git a/packages/gatsby-remark-graphviz/CHANGELOG.md b/packages/gatsby-remark-graphviz/CHANGELOG.md
index 539c80bebfa67..20b849e3265ad 100644
--- a/packages/gatsby-remark-graphviz/CHANGELOG.md
+++ b/packages/gatsby-remark-graphviz/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-graphviz@4.21.0/packages/gatsby-remark-graphviz) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-graphviz
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-graphviz@4.20.0/packages/gatsby-remark-graphviz) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-graphviz/package.json b/packages/gatsby-remark-graphviz/package.json
index 70558549dcc6b..10577b7c3456d 100644
--- a/packages/gatsby-remark-graphviz/package.json
+++ b/packages/gatsby-remark-graphviz/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-graphviz",
"description": "Processes graphviz code blocks and renders to SVG using viz.js",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Anthony Marcar ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"hast-util-to-html": "^7.1.3",
"mdast-util-to-hast": "^10.2.0",
diff --git a/packages/gatsby-remark-images-contentful/CHANGELOG.md b/packages/gatsby-remark-images-contentful/CHANGELOG.md
index d47a8f3da7783..a6a12f1dd8859 100644
--- a/packages/gatsby-remark-images-contentful/CHANGELOG.md
+++ b/packages/gatsby-remark-images-contentful/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images-contentful@5.21.0/packages/gatsby-remark-images-contentful) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- update sharp [#35539](https://github.com/gatsbyjs/gatsby/issues/35539) ([a9132a5](https://github.com/gatsbyjs/gatsby/commit/a9132a53eac37f713e8cb8a8246c62f4f8d8f142))
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images-contentful@5.20.0/packages/gatsby-remark-images-contentful) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json
index 58aaed7786880..7ad165d695938 100644
--- a/packages/gatsby-remark-images-contentful/package.json
+++ b/packages/gatsby-remark-images-contentful/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-remark-images-contentful",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"description": "Process Images in Contentful markdown so they can use the images API.",
"main": "index.js",
"scripts": {
@@ -28,7 +28,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md
index 494a429a7cc5a..97c59324d75e5 100644
--- a/packages/gatsby-remark-images/CHANGELOG.md
+++ b/packages/gatsby-remark-images/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images@6.21.0/packages/gatsby-remark-images) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-images
+
## [6.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images@6.20.0/packages/gatsby-remark-images) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json
index d2eed60332e4b..81124a5e8df7f 100644
--- a/packages/gatsby-remark-images/package.json
+++ b/packages/gatsby-remark-images/package.json
@@ -1,17 +1,17 @@
{
"name": "gatsby-remark-images",
"description": "Processes images in markdown so they can be used in the production build.",
- "version": "6.22.0-next.0",
+ "version": "6.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
- "@gatsbyjs/potrace": "^2.2.0",
+ "@gatsbyjs/potrace": "^2.3.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
- "gatsby-core-utils": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
"is-relative-url": "^3.0.0",
"lodash": "^4.17.21",
"mdast-util-definitions": "^4.0.0",
@@ -22,9 +22,9 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^3.16.0-next.0",
+ "gatsby-plugin-utils": "^3.16.0",
"hast-util-to-html": "^7.1.3",
"mdast-util-to-hast": "^10.2.0"
},
diff --git a/packages/gatsby-remark-katex/CHANGELOG.md b/packages/gatsby-remark-katex/CHANGELOG.md
index 2adcd69bd7579..cc97573617594 100644
--- a/packages/gatsby-remark-katex/CHANGELOG.md
+++ b/packages/gatsby-remark-katex/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-katex@6.21.0/packages/gatsby-remark-katex) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-katex
+
## [6.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-katex@6.20.0/packages/gatsby-remark-katex) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json
index 5352b6e10f965..8d01e2a69d81c 100644
--- a/packages/gatsby-remark-katex/package.json
+++ b/packages/gatsby-remark-katex/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-katex",
"description": "Transform math nodes to html markup",
- "version": "6.22.0-next.0",
+ "version": "6.22.0",
"author": "Jeffrey Xiao ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"katex": "^0.13.18",
"remark": "^13.0.0"
diff --git a/packages/gatsby-remark-prismjs/CHANGELOG.md b/packages/gatsby-remark-prismjs/CHANGELOG.md
index 29b22f1585bf8..218c4934dfa61 100644
--- a/packages/gatsby-remark-prismjs/CHANGELOG.md
+++ b/packages/gatsby-remark-prismjs/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-prismjs@6.21.0/packages/gatsby-remark-prismjs) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-prismjs
+
## [6.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-prismjs@6.20.0/packages/gatsby-remark-prismjs) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json
index 71bd8bd33d097..ba965b57501b8 100644
--- a/packages/gatsby-remark-prismjs/package.json
+++ b/packages/gatsby-remark-prismjs/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-prismjs",
"description": "Adds syntax highlighting to code blocks at build time using PrismJS",
- "version": "6.22.0-next.0",
+ "version": "6.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cheerio": "^1.0.0-rc.10",
"cross-env": "^7.0.3",
"prismjs": "^1.21.0",
diff --git a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md
index 9381347cb07e0..f14c3353b563d 100644
--- a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md
+++ b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-responsive-iframe@5.21.0/packages/gatsby-remark-responsive-iframe) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-responsive-iframe
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-responsive-iframe@5.20.0/packages/gatsby-remark-responsive-iframe) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json
index 41e3d4c4930ae..40f1321b70822 100644
--- a/packages/gatsby-remark-responsive-iframe/package.json
+++ b/packages/gatsby-remark-responsive-iframe/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-responsive-iframe",
"description": "Make iframes in Markdown processed by Remark responsive",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"remark": "^13.0.0",
"remark-mdx": "^1.6.22",
diff --git a/packages/gatsby-remark-smartypants/CHANGELOG.md b/packages/gatsby-remark-smartypants/CHANGELOG.md
index 22ee3dc9ef680..d3b18a6d584e5 100644
--- a/packages/gatsby-remark-smartypants/CHANGELOG.md
+++ b/packages/gatsby-remark-smartypants/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-smartypants@5.21.0/packages/gatsby-remark-smartypants) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-remark-smartypants
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-smartypants@5.20.0/packages/gatsby-remark-smartypants) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json
index 410b7a3253327..371c695add5cf 100644
--- a/packages/gatsby-remark-smartypants/package.json
+++ b/packages/gatsby-remark-smartypants/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-smartypants",
"description": "Use retext-smartypants to auto-enhance typography of markdown",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-smartypants#readme",
diff --git a/packages/gatsby-script/CHANGELOG.md b/packages/gatsby-script/CHANGELOG.md
index 66a3fe7460bc7..fbaf00177fea0 100644
--- a/packages/gatsby-script/CHANGELOG.md
+++ b/packages/gatsby-script/CHANGELOG.md
@@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-script@1.6.0/packages/gatsby-script) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Features
+
+- Do not use context for script collection [#36246](https://github.com/gatsbyjs/gatsby/issues/36246) ([49cf094](https://github.com/gatsbyjs/gatsby/commit/49cf094380bcf69d9239f8abbbd4db9c1968dcf8))
+
+#### Bug Fixes
+
+- Reach router import [#36385](https://github.com/gatsbyjs/gatsby/issues/36385) [#36394](https://github.com/gatsbyjs/gatsby/issues/36394) ([1880491](https://github.com/gatsbyjs/gatsby/commit/18804916a2c7c7660557320db3dfaa8bf1ed718e))
+
+#### Chores
+
+- update dependency del-cli to v5 for gatsby-script [#36289](https://github.com/gatsbyjs/gatsby/issues/36289) ([2ff3b09](https://github.com/gatsbyjs/gatsby/commit/2ff3b09239702f3b9b027ce2acad6082aafe18da))
+
## [1.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-script@1.5.0/packages/gatsby-script) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-script/package.json b/packages/gatsby-script/package.json
index 34f6adb988a28..1d794b02c1b39 100644
--- a/packages/gatsby-script/package.json
+++ b/packages/gatsby-script/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-script",
"description": "An enhanced script component for Gatsby sites with support for various loading strategies",
- "version": "1.7.0-next.0",
+ "version": "1.7.0",
"author": "Ty Hopp ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -28,6 +28,7 @@
"typescript": "^4.7.4"
},
"peerDependencies": {
+ "@gatsbyjs/reach-router": "^1.3.5",
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
diff --git a/packages/gatsby-script/src/gatsby-script.tsx b/packages/gatsby-script/src/gatsby-script.tsx
index 772b7fb1de7d2..d74594c0e6ebd 100644
--- a/packages/gatsby-script/src/gatsby-script.tsx
+++ b/packages/gatsby-script/src/gatsby-script.tsx
@@ -2,9 +2,7 @@ import React, { useEffect } from "react"
import { collectedScriptsByPage } from "./collected-scripts-by-page"
import type { ReactElement, ScriptHTMLAttributes } from "react"
import { requestIdleCallback } from "./request-idle-callback-shim"
-
-// For some reason @gatsbyjs/reach-router does not resolve the same module that core uses, but this does
-import { Location, useLocation } from "@reach/router"
+import { Location, useLocation } from "@gatsbyjs/reach-router"
export enum ScriptStrategy {
postHydrate = `post-hydrate`,
diff --git a/packages/gatsby-sharp/CHANGELOG.md b/packages/gatsby-sharp/CHANGELOG.md
index 789782697f848..c698537230cdc 100644
--- a/packages/gatsby-sharp/CHANGELOG.md
+++ b/packages/gatsby-sharp/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-sharp@0.15.0/packages/gatsby-sharp) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- update sharp [#35539](https://github.com/gatsbyjs/gatsby/issues/35539) ([a9132a5](https://github.com/gatsbyjs/gatsby/commit/a9132a53eac37f713e8cb8a8246c62f4f8d8f142))
+
## [0.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-sharp@0.14.0/packages/gatsby-sharp) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-sharp/package.json b/packages/gatsby-sharp/package.json
index d82856558a643..48780d29d2cb7 100644
--- a/packages/gatsby-sharp/package.json
+++ b/packages/gatsby-sharp/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-sharp",
- "version": "0.16.0-next.0",
+ "version": "0.16.0",
"sideEffects": false,
"keywords": [
"gatsby",
diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md
index 2beacdeda9669..9e1bed6d067fa 100644
--- a/packages/gatsby-source-contentful/CHANGELOG.md
+++ b/packages/gatsby-source-contentful/CHANGELOG.md
@@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+### [7.19.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-contentful@7.19.1/packages/gatsby-source-contentful) (2022-08-18)
+
+**Note:** Version bump only for package gatsby-source-contentful
+
+## [7.19.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-contentful@7.19.0/packages/gatsby-source-contentful) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Bug Fixes
+
+- Correctly overwrite field type on Assets [#36337](https://github.com/gatsbyjs/gatsby/issues/36337) ([6ecfe4a](https://github.com/gatsbyjs/gatsby/commit/6ecfe4a05e8f84cd3bac99f45c30be3f1c9d8aa3))
+
+#### Chores
+
+- Update `got` [#36366](https://github.com/gatsbyjs/gatsby/issues/36366) ([ab55e4e](https://github.com/gatsbyjs/gatsby/commit/ab55e4e30a023d56e4c4332dfd278015a0f49ee0))
+
## [7.18.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-contentful@7.18.0/packages/gatsby-source-contentful) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json
index 7098ebfc17ef3..67a379c7af794 100644
--- a/packages/gatsby-source-contentful/package.json
+++ b/packages/gatsby-source-contentful/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-contentful",
"description": "Gatsby source plugin for building websites using the Contentful CMS as a data source",
- "version": "7.20.0-next.0",
+ "version": "7.20.0",
"author": "Marcus Ericsson (mericsson.com)",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,9 +16,9 @@
"common-tags": "^1.8.2",
"contentful": "^9.1.33",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
- "gatsby-source-filesystem": "^4.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-plugin-utils": "^3.16.0",
+ "gatsby-source-filesystem": "^4.22.0",
"is-online": "^9.0.1",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
@@ -29,7 +29,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"nock": "^13.2.4"
},
diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md
index f67f3dd803b51..8f2fc6a5e9bff 100644
--- a/packages/gatsby-source-drupal/CHANGELOG.md
+++ b/packages/gatsby-source-drupal/CHANGELOG.md
@@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+### [5.22.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-drupal@5.22.1/packages/gatsby-source-drupal) (2022-08-18)
+
+**Note:** Version bump only for package gatsby-source-drupal
+
+## [5.22.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-drupal@5.22.0/packages/gatsby-source-drupal) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-source-drupal
+
## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-drupal@5.21.0/packages/gatsby-source-drupal) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json
index bce8dd6c7252b..232a95cdf7235 100644
--- a/packages/gatsby-source-drupal/package.json
+++ b/packages/gatsby-source-drupal/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-drupal",
"description": "Gatsby source plugin for building websites using the Drupal CMS as a data source",
- "version": "5.23.0-next.0",
+ "version": "5.23.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,8 +13,8 @@
"bluebird": "^3.7.2",
"body-parser": "^1.20.0",
"fastq": "^1.13.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
- "gatsby-source-filesystem": "^4.22.0-next.0",
+ "gatsby-plugin-utils": "^3.16.0",
+ "gatsby-source-filesystem": "^4.22.0",
"got": "^11.8.5",
"http2-wrapper": "^2.1.11",
"lodash": "^4.17.21",
@@ -26,7 +26,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"engines": {
diff --git a/packages/gatsby-source-faker/CHANGELOG.md b/packages/gatsby-source-faker/CHANGELOG.md
index ae40eb6ab867c..77e0f4b9670ae 100644
--- a/packages/gatsby-source-faker/CHANGELOG.md
+++ b/packages/gatsby-source-faker/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-faker@4.21.0/packages/gatsby-source-faker) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-source-faker
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-faker@4.20.0/packages/gatsby-source-faker) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json
index 844965b7d0c5e..d9b5d0e75cf35 100644
--- a/packages/gatsby-source-faker/package.json
+++ b/packages/gatsby-source-faker/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-faker",
"description": "A gatsby plugin to get fake data for testing",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Pavithra Kodmad",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-faker#readme",
diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md
index e881d7daa3f22..c55edba5c160e 100644
--- a/packages/gatsby-source-filesystem/CHANGELOG.md
+++ b/packages/gatsby-source-filesystem/CHANGELOG.md
@@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+### [4.21.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@4.21.1/packages/gatsby-source-filesystem) (2022-08-18)
+
+#### Chores
+
+- pin xstate [#36398](https://github.com/gatsbyjs/gatsby/issues/36398) [#36415](https://github.com/gatsbyjs/gatsby/issues/36415) ([29c7ad1](https://github.com/gatsbyjs/gatsby/commit/29c7ad1335cf25af3a326ea2813399ddfd8ea877))
+
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@4.21.0/packages/gatsby-source-filesystem) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Bug Fixes
+
+- update dependency file-type to ^16.5.4 for gatsby-source-filesystem [#36276](https://github.com/gatsbyjs/gatsby/issues/36276) ([2bbe96d](https://github.com/gatsbyjs/gatsby/commit/2bbe96d9099e1c3d9b64ab3bb5c9b257c40386b9))
+
+#### Chores
+
+- Update `got` [#36366](https://github.com/gatsbyjs/gatsby/issues/36366) ([ab55e4e](https://github.com/gatsbyjs/gatsby/commit/ab55e4e30a023d56e4c4332dfd278015a0f49ee0))
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@4.20.0/packages/gatsby-source-filesystem) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json
index 78e73095b5c84..79612d15fd1bc 100644
--- a/packages/gatsby-source-filesystem/package.json
+++ b/packages/gatsby-source-filesystem/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-filesystem",
"description": "Gatsby source plugin for building websites from local data. Markdown, JSON, images, YAML, CSV, and dozens of other data types supported.",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,18 +11,17 @@
"chokidar": "^3.5.3",
"file-type": "^16.5.4",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
"md5-file": "^5.0.0",
"mime": "^2.5.2",
"pretty-bytes": "^5.4.1",
- "progress": "^2.0.3",
"valid-url": "^1.0.9",
- "xstate": "^4.26.1"
+ "xstate": "4.32.1"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem#readme",
diff --git a/packages/gatsby-source-graphql/CHANGELOG.md b/packages/gatsby-source-graphql/CHANGELOG.md
index 0a4fb5aae5e4a..41811382a57e0 100644
--- a/packages/gatsby-source-graphql/CHANGELOG.md
+++ b/packages/gatsby-source-graphql/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-graphql@4.21.0/packages/gatsby-source-graphql) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-source-graphql
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-graphql@4.20.0/packages/gatsby-source-graphql) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json
index 568412b4c6be4..7a583fe00b0e0 100644
--- a/packages/gatsby-source-graphql/package.json
+++ b/packages/gatsby-source-graphql/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-graphql",
"description": "Gatsby plugin which adds a third-party GraphQL API to Gatsby GraphQL",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Mikhail Novikov ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,14 +13,14 @@
"@graphql-tools/utils": "^8.6.9",
"@graphql-tools/wrap": "^8.3.3",
"dataloader": "^2.0.0",
- "gatsby-core-utils": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
"invariant": "^2.2.4",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-graphql#readme",
diff --git a/packages/gatsby-source-graphql/src/gatsby-node.js b/packages/gatsby-source-graphql/src/gatsby-node.js
index a325f2a2ca9d5..70458637f9eeb 100644
--- a/packages/gatsby-source-graphql/src/gatsby-node.js
+++ b/packages/gatsby-source-graphql/src/gatsby-node.js
@@ -27,6 +27,19 @@ exports.pluginOptionsSchema = ({ Joi }) =>
createSchema: Joi.function(),
batch: Joi.boolean(),
transformSchema: Joi.function(),
+ dataLoaderOptions: Joi.object({
+ batch: Joi.boolean(),
+ maxBatchSize: Joi.number(),
+ batchScheduleFn: Joi.function(),
+ cache: Joi.boolean(),
+ cacheKeyFn: Joi.function(),
+ cacheMap: Joi.object({
+ get: Joi.function(),
+ set: Joi.function(),
+ delete: Joi.function(),
+ clear: Joi.function(),
+ }),
+ }),
}).or(`url`, `createLink`)
exports.createSchemaCustomization = async (
diff --git a/packages/gatsby-source-hacker-news/CHANGELOG.md b/packages/gatsby-source-hacker-news/CHANGELOG.md
index 669029da5000f..9f2e132cebec2 100644
--- a/packages/gatsby-source-hacker-news/CHANGELOG.md
+++ b/packages/gatsby-source-hacker-news/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-hacker-news@4.21.0/packages/gatsby-source-hacker-news) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-source-hacker-news
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-hacker-news@4.20.0/packages/gatsby-source-hacker-news) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json
index 93e9c8b74e604..b1f92b6292e84 100644
--- a/packages/gatsby-source-hacker-news/package.json
+++ b/packages/gatsby-source-hacker-news/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-hacker-news",
"description": "Gatsby source plugin for building websites using Hacker News as a data source",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-hacker-news#readme",
diff --git a/packages/gatsby-source-lever/CHANGELOG.md b/packages/gatsby-source-lever/CHANGELOG.md
index 9a063a3c04311..6a6ef33b128b8 100644
--- a/packages/gatsby-source-lever/CHANGELOG.md
+++ b/packages/gatsby-source-lever/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-lever@4.21.0/packages/gatsby-source-lever) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-source-lever
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-lever@4.20.0/packages/gatsby-source-lever) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json
index 4b5d5ce59b027..9543488d58668 100644
--- a/packages/gatsby-source-lever/package.json
+++ b/packages/gatsby-source-lever/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-lever",
"description": "Gatsby source plugin for building websites using the Lever.co Recruitment Software as a data source.",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Sebastien Fichot ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -20,7 +20,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-lever#readme",
diff --git a/packages/gatsby-source-medium/CHANGELOG.md b/packages/gatsby-source-medium/CHANGELOG.md
index 5089f87d5e98f..9db3cb8909d55 100644
--- a/packages/gatsby-source-medium/CHANGELOG.md
+++ b/packages/gatsby-source-medium/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-medium@4.21.0/packages/gatsby-source-medium) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-source-medium
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-medium@4.20.0/packages/gatsby-source-medium) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json
index c16b19d9ff9b3..1569420d9c464 100644
--- a/packages/gatsby-source-medium/package.json
+++ b/packages/gatsby-source-medium/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-medium",
"description": "Gatsby source plugin for building websites using Medium as a data source",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Robert Vogt ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-medium#readme",
diff --git a/packages/gatsby-source-mongodb/CHANGELOG.md b/packages/gatsby-source-mongodb/CHANGELOG.md
index 5e74964402df7..c4d9c86b15692 100644
--- a/packages/gatsby-source-mongodb/CHANGELOG.md
+++ b/packages/gatsby-source-mongodb/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-mongodb@4.21.0/packages/gatsby-source-mongodb) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-source-mongodb
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-mongodb@4.20.0/packages/gatsby-source-mongodb) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json
index 9343851899218..d73baa497695d 100644
--- a/packages/gatsby-source-mongodb/package.json
+++ b/packages/gatsby-source-mongodb/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-mongodb",
"description": "Source plugin for pulling data into Gatsby from MongoDB collections",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"authors": [
"jhermans85@hotmail.com",
"hi@elmar.codes"
@@ -19,7 +19,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-mongodb#readme",
diff --git a/packages/gatsby-source-npm-package-search/CHANGELOG.md b/packages/gatsby-source-npm-package-search/CHANGELOG.md
index a14d55665ebaa..4f4ee570805ee 100644
--- a/packages/gatsby-source-npm-package-search/CHANGELOG.md
+++ b/packages/gatsby-source-npm-package-search/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-npm-package-search@4.21.0/packages/gatsby-source-npm-package-search) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-source-npm-package-search
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-npm-package-search@4.20.0/packages/gatsby-source-npm-package-search) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json
index e0d2f8f83fc84..6e60e08aae8d8 100644
--- a/packages/gatsby-source-npm-package-search/package.json
+++ b/packages/gatsby-source-npm-package-search/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-npm-package-search",
"description": "Search NPM packages and pull NPM & GitHub metadata from Algolia's NPM index",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "james.a.stack@gmail.com",
"repository": {
"type": "git",
@@ -17,7 +17,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-source-shopify/CHANGELOG.md b/packages/gatsby-source-shopify/CHANGELOG.md
index 221ab21b3aaa0..01592206f3e03 100644
--- a/packages/gatsby-source-shopify/CHANGELOG.md
+++ b/packages/gatsby-source-shopify/CHANGELOG.md
@@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+### [7.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-shopify@7.10.1/packages/gatsby-source-shopify) (2022-08-18)
+
+**Note:** Version bump only for package gatsby-source-shopify
+
+## [7.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-shopify@7.10.0/packages/gatsby-source-shopify) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Features
+
+- Add query runtime warning for CI environments [#36142](https://github.com/gatsbyjs/gatsby/issues/36142) ([e90448f](https://github.com/gatsbyjs/gatsby/commit/e90448fbd204c3e3725938ab6af9fc3260617a07))
+
+#### Chores
+
+- update sharp [#35539](https://github.com/gatsbyjs/gatsby/issues/35539) ([a9132a5](https://github.com/gatsbyjs/gatsby/commit/a9132a53eac37f713e8cb8a8246c62f4f8d8f142))
+
## [7.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-shopify@7.9.0/packages/gatsby-source-shopify) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json
index a8492577b11f8..9d715e8786fc4 100644
--- a/packages/gatsby-source-shopify/package.json
+++ b/packages/gatsby-source-shopify/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-source-shopify",
- "version": "7.11.0-next.0",
+ "version": "7.11.0",
"description": "Gatsby source plugin for building websites using Shopify as a data source.",
"scripts": {
"watch": "tsc-watch --outDir .",
@@ -24,9 +24,9 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-shopify#readme",
"dependencies": {
"@babel/runtime": "^7.15.4",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
- "gatsby-source-filesystem": "^4.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-plugin-utils": "^3.16.0",
+ "gatsby-source-filesystem": "^4.22.0",
"node-fetch": "^2.6.7",
"sharp": "^0.30.7",
"shift-left": "^0.1.5"
@@ -36,7 +36,7 @@
"@types/node-fetch": "^2.5.12",
"@types/sharp": "^0.30.5",
"cross-env": "^7.0.3",
- "gatsby-plugin-image": "^2.22.0-next.0",
+ "gatsby-plugin-image": "^2.22.0",
"msw": "^0.38.2",
"prettier": "^2.7.1",
"prettier-check": "^2.0.0",
diff --git a/packages/gatsby-source-wikipedia/CHANGELOG.md b/packages/gatsby-source-wikipedia/CHANGELOG.md
index 960095bf2883c..d0d2477384d6c 100644
--- a/packages/gatsby-source-wikipedia/CHANGELOG.md
+++ b/packages/gatsby-source-wikipedia/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wikipedia@4.21.0/packages/gatsby-source-wikipedia) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-source-wikipedia
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wikipedia@4.20.0/packages/gatsby-source-wikipedia) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json
index a6c2a6770e443..d34349ce479cd 100644
--- a/packages/gatsby-source-wikipedia/package.json
+++ b/packages/gatsby-source-wikipedia/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-source-wikipedia",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"description": "Gatsby source plugin for pulling articles from Wikipedia",
"main": "index.js",
"scripts": {
@@ -37,7 +37,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"engines": {
diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md
index 769851a7583c9..e3069813f4323 100644
--- a/packages/gatsby-source-wordpress/CHANGELOG.md
+++ b/packages/gatsby-source-wordpress/CHANGELOG.md
@@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+### [6.21.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@6.21.1/packages/gatsby-source-wordpress) (2022-08-18)
+
+**Note:** Version bump only for package gatsby-source-wordpress
+
+## [6.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@6.21.0/packages/gatsby-source-wordpress) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- update sharp [#35539](https://github.com/gatsbyjs/gatsby/issues/35539) ([a9132a5](https://github.com/gatsbyjs/gatsby/commit/a9132a53eac37f713e8cb8a8246c62f4f8d8f142))
+- update dependency @types/semver to ^7.3.10 [#36027](https://github.com/gatsbyjs/gatsby/issues/36027) ([a529451](https://github.com/gatsbyjs/gatsby/commit/a5294515f966b336db6c910168bdc06897d2a42b))
+
## [6.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@6.20.0/packages/gatsby-source-wordpress) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json
index 16dff4990e67c..81b826e0c4199 100644
--- a/packages/gatsby-source-wordpress/package.json
+++ b/packages/gatsby-source-wordpress/package.json
@@ -2,7 +2,7 @@
"name": "gatsby-source-wordpress",
"description": "Source data from WordPress in an efficient and scalable way.",
"author": "Tyler Barnes ",
- "version": "6.22.0-next.0",
+ "version": "6.22.0",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
@@ -27,10 +27,10 @@
"file-type": "^15.0.1",
"filesize": "^6.4.0",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-plugin-catch-links": "^4.22.0-next.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
- "gatsby-source-filesystem": "^4.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-plugin-catch-links": "^4.22.0",
+ "gatsby-plugin-utils": "^3.16.0",
+ "gatsby-source-filesystem": "^4.22.0",
"glob": "^7.2.3",
"got": "^11.8.5",
"lodash": "^4.17.21",
@@ -53,10 +53,10 @@
"@types/semver": "^7.3.10",
"babel-plugin-import-globals": "^2.0.0",
"babel-plugin-module-resolver": "4.1.0",
- "babel-preset-gatsby": "^2.22.0-next.0",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby": "^2.22.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-image": "^2.22.0-next.0",
+ "gatsby-plugin-image": "^2.22.0",
"identity-obj-proxy": "^3.0.0",
"react-test-renderer": "^16.14.0",
"rimraf": "^3.0.2",
diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md
index 8e3be4dc00650..491b6465eca1f 100644
--- a/packages/gatsby-telemetry/CHANGELOG.md
+++ b/packages/gatsby-telemetry/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.21.0/packages/gatsby-telemetry) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- upgrade git-up [#36358](https://github.com/gatsbyjs/gatsby/issues/36358) ([f2f0acf](https://github.com/gatsbyjs/gatsby/commit/f2f0acf0f8c40312a4ba7988ffa5265eb892e9d2))
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.20.0/packages/gatsby-telemetry) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json
index 8ee2eabbc6e5e..15f21d68a6936 100644
--- a/packages/gatsby-telemetry/package.json
+++ b/packages/gatsby-telemetry/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-telemetry",
"description": "Gatsby Telemetry",
- "version": "3.22.0-next.0",
+ "version": "3.22.0",
"author": "Jarmo Isotalo ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,11 +11,10 @@
"@babel/runtime": "^7.15.4",
"@turist/fetch": "^7.2.0",
"@turist/time": "^0.0.2",
- "async-retry-ng": "^2.0.1",
"boxen": "^4.2.0",
"configstore": "^5.0.1",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
"git-up": "^6.0.0",
"is-docker": "^2.2.1",
"lodash": "^4.17.21",
@@ -24,7 +23,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
diff --git a/packages/gatsby-transformer-asciidoc/CHANGELOG.md b/packages/gatsby-transformer-asciidoc/CHANGELOG.md
index 8d6ed2d8bb5c6..ff2fb77654171 100644
--- a/packages/gatsby-transformer-asciidoc/CHANGELOG.md
+++ b/packages/gatsby-transformer-asciidoc/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-asciidoc@3.21.0/packages/gatsby-transformer-asciidoc) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-asciidoc
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-asciidoc@3.20.0/packages/gatsby-transformer-asciidoc) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-asciidoc/package.json b/packages/gatsby-transformer-asciidoc/package.json
index 650afe1ea713b..9392b48f721a5 100644
--- a/packages/gatsby-transformer-asciidoc/package.json
+++ b/packages/gatsby-transformer-asciidoc/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-asciidoc",
"description": "Gatsby transformer plugin for Asciidocs using the Asciidoctor.js library",
- "version": "3.22.0-next.0",
+ "version": "3.22.0",
"author": "Daniel Oliver ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"lodash": "^4.17.21"
},
diff --git a/packages/gatsby-transformer-csv/CHANGELOG.md b/packages/gatsby-transformer-csv/CHANGELOG.md
index 9cc34d141fc21..bff8475a2a51a 100644
--- a/packages/gatsby-transformer-csv/CHANGELOG.md
+++ b/packages/gatsby-transformer-csv/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-csv@4.21.0/packages/gatsby-transformer-csv) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-csv
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-csv@4.20.0/packages/gatsby-transformer-csv) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-csv/package.json b/packages/gatsby-transformer-csv/package.json
index 9252ce9f8f955..88332a58f11dc 100644
--- a/packages/gatsby-transformer-csv/package.json
+++ b/packages/gatsby-transformer-csv/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-csv",
"description": "Gatsby transformer plugin for CSV files",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Sonal Saldanha ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"json2csv": "^5.0.7"
},
diff --git a/packages/gatsby-transformer-documentationjs/CHANGELOG.md b/packages/gatsby-transformer-documentationjs/CHANGELOG.md
index f869d867823b8..0da838d5f554d 100644
--- a/packages/gatsby-transformer-documentationjs/CHANGELOG.md
+++ b/packages/gatsby-transformer-documentationjs/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-documentationjs@6.21.0/packages/gatsby-transformer-documentationjs) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-documentationjs
+
## [6.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-documentationjs@6.20.0/packages/gatsby-transformer-documentationjs) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json
index 7c8658c299eff..02cb8cd176b25 100644
--- a/packages/gatsby-transformer-documentationjs/package.json
+++ b/packages/gatsby-transformer-documentationjs/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-documentationjs",
"description": "Gatsby transformer plugin which uses Documentation.js to extract JavaScript documentation",
- "version": "6.22.0-next.0",
+ "version": "6.22.0",
"author": "Kyle Mathews",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-documentationjs#readme",
diff --git a/packages/gatsby-transformer-excel/CHANGELOG.md b/packages/gatsby-transformer-excel/CHANGELOG.md
index d227a120531a8..ac4ed1a82dc3f 100644
--- a/packages/gatsby-transformer-excel/CHANGELOG.md
+++ b/packages/gatsby-transformer-excel/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-excel@4.21.0/packages/gatsby-transformer-excel) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-excel
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-excel@4.20.0/packages/gatsby-transformer-excel) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json
index bd7c10adce301..988651847f107 100644
--- a/packages/gatsby-transformer-excel/package.json
+++ b/packages/gatsby-transformer-excel/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-excel",
"description": "Gatsby transformer plugin for Excel spreadsheets",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "SheetJS ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel#readme",
diff --git a/packages/gatsby-transformer-hjson/CHANGELOG.md b/packages/gatsby-transformer-hjson/CHANGELOG.md
index 59630732b52dc..a92a2792a9eb3 100644
--- a/packages/gatsby-transformer-hjson/CHANGELOG.md
+++ b/packages/gatsby-transformer-hjson/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-hjson@4.21.0/packages/gatsby-transformer-hjson) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-hjson
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-hjson@4.20.0/packages/gatsby-transformer-hjson) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json
index efebcf630ec26..1464926bae5b3 100644
--- a/packages/gatsby-transformer-hjson/package.json
+++ b/packages/gatsby-transformer-hjson/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-hjson",
"description": "Gatsby transformer plugin for HJSON files",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Remi Barraquand ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-hjson#readme",
diff --git a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
index e1f92247864a8..fa66c3711d453 100644
--- a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
+++ b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-frontmatter@4.21.0/packages/gatsby-transformer-javascript-frontmatter) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-frontmatter@4.20.0/packages/gatsby-transformer-javascript-frontmatter) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json
index 575daeadb6e11..aabd0e9ee9d31 100644
--- a/packages/gatsby-transformer-javascript-frontmatter/package.json
+++ b/packages/gatsby-transformer-javascript-frontmatter/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-javascript-frontmatter",
"description": "Gatsby transformer plugin for JavaScript to extract exports.frontmatter statically.",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Jacob Bolda ",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme",
"dependencies": {
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md
index a51f441b7febf..4856895a9c8d6 100644
--- a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md
+++ b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.21.0/packages/gatsby-transformer-javascript-static-exports) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-javascript-static-exports
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.20.0/packages/gatsby-transformer-javascript-static-exports) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json
index 63fef447efc66..7de02e96d663e 100644
--- a/packages/gatsby-transformer-javascript-static-exports/package.json
+++ b/packages/gatsby-transformer-javascript-static-exports/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-javascript-static-exports",
"description": "Gatsby transformer plugin for JavaScript to extract exports.data statically.",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Jacob Bolda ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-static-exports#readme",
diff --git a/packages/gatsby-transformer-json/CHANGELOG.md b/packages/gatsby-transformer-json/CHANGELOG.md
index 63b6360753605..ac0ae92cc55e8 100644
--- a/packages/gatsby-transformer-json/CHANGELOG.md
+++ b/packages/gatsby-transformer-json/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-json@4.21.0/packages/gatsby-transformer-json) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-json
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-json@4.20.0/packages/gatsby-transformer-json) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json
index 7f1043c59acb9..0f831943f1911 100644
--- a/packages/gatsby-transformer-json/package.json
+++ b/packages/gatsby-transformer-json/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-json",
"description": "Gatsby transformer plugin for JSON files",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-json#readme",
diff --git a/packages/gatsby-transformer-pdf/CHANGELOG.md b/packages/gatsby-transformer-pdf/CHANGELOG.md
index 4d89959a5a6c5..622b0e1a4c805 100644
--- a/packages/gatsby-transformer-pdf/CHANGELOG.md
+++ b/packages/gatsby-transformer-pdf/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-pdf@3.21.0/packages/gatsby-transformer-pdf) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-pdf
+
## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-pdf@3.20.0/packages/gatsby-transformer-pdf) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json
index 20e5f0d8aa7d2..d7bf8ab525ae8 100644
--- a/packages/gatsby-transformer-pdf/package.json
+++ b/packages/gatsby-transformer-pdf/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-pdf",
"description": "Gatsby transformer plugin for pdf files",
- "version": "3.22.0-next.0",
+ "version": "3.22.0",
"author": "Alex Munoz ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-pdf#readme",
diff --git a/packages/gatsby-transformer-react-docgen/CHANGELOG.md b/packages/gatsby-transformer-react-docgen/CHANGELOG.md
index 68cd5a123d7f0..7242883b1a464 100644
--- a/packages/gatsby-transformer-react-docgen/CHANGELOG.md
+++ b/packages/gatsby-transformer-react-docgen/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-react-docgen@7.21.0/packages/gatsby-transformer-react-docgen) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-react-docgen
+
## [7.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-react-docgen@7.20.0/packages/gatsby-transformer-react-docgen) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json
index cdf37c3fcd6fe..943179482eb9f 100644
--- a/packages/gatsby-transformer-react-docgen/package.json
+++ b/packages/gatsby-transformer-react-docgen/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-react-docgen",
"description": "Expose React component metadata and prop information as GraphQL types",
- "version": "7.22.0-next.0",
+ "version": "7.22.0",
"author": "Jason Quense ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -17,7 +17,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"lodash": "^4.17.21"
},
diff --git a/packages/gatsby-transformer-remark/CHANGELOG.md b/packages/gatsby-transformer-remark/CHANGELOG.md
index c5c60ff6872db..1d0e480371226 100644
--- a/packages/gatsby-transformer-remark/CHANGELOG.md
+++ b/packages/gatsby-transformer-remark/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-remark@5.21.0/packages/gatsby-transformer-remark) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-remark
+
## [5.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-remark@5.20.0/packages/gatsby-transformer-remark) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json
index 6c80885e5d76e..3ca8e47905a83 100644
--- a/packages/gatsby-transformer-remark/package.json
+++ b/packages/gatsby-transformer-remark/package.json
@@ -1,14 +1,14 @@
{
"name": "gatsby-transformer-remark",
"description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem",
- "version": "5.22.0-next.0",
+ "version": "5.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
- "gatsby-core-utils": "^3.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
"gray-matter": "^4.0.3",
"hast-util-raw": "^6.0.2",
"hast-util-to-html": "^7.1.3",
@@ -33,9 +33,9 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^3.16.0-next.0"
+ "gatsby-plugin-utils": "^3.16.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark#readme",
"keywords": [
diff --git a/packages/gatsby-transformer-screenshot/CHANGELOG.md b/packages/gatsby-transformer-screenshot/CHANGELOG.md
index d1aab2e9f5571..b3cadbe6303bd 100644
--- a/packages/gatsby-transformer-screenshot/CHANGELOG.md
+++ b/packages/gatsby-transformer-screenshot/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-screenshot@4.21.0/packages/gatsby-transformer-screenshot) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- update dependency aws-sdk to ^2.1185.0 [#36280](https://github.com/gatsbyjs/gatsby/issues/36280) ([ece58dc](https://github.com/gatsbyjs/gatsby/commit/ece58dcc5cba4af4bf75131722c64082160b9832))
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-screenshot@4.20.0/packages/gatsby-transformer-screenshot) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json
index eaaad5ce2451e..f4372be0391f8 100644
--- a/packages/gatsby-transformer-screenshot/package.json
+++ b/packages/gatsby-transformer-screenshot/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-screenshot",
"description": "Gatsby transformer plugin that uses AWS Lambda to take screenshots of websites",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Cassandra Beckley ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-screenshot#readme",
diff --git a/packages/gatsby-transformer-sharp/CHANGELOG.md b/packages/gatsby-transformer-sharp/CHANGELOG.md
index e4767b776743b..3e901d4f13b18 100644
--- a/packages/gatsby-transformer-sharp/CHANGELOG.md
+++ b/packages/gatsby-transformer-sharp/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sharp@4.21.0/packages/gatsby-transformer-sharp) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Chores
+
+- update sharp [#35539](https://github.com/gatsbyjs/gatsby/issues/35539) ([a9132a5](https://github.com/gatsbyjs/gatsby/commit/a9132a53eac37f713e8cb8a8246c62f4f8d8f142))
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sharp@4.20.0/packages/gatsby-transformer-sharp) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json
index 3487d8ea23ccc..d562c61c795d7 100644
--- a/packages/gatsby-transformer-sharp/package.json
+++ b/packages/gatsby-transformer-sharp/package.json
@@ -1,18 +1,18 @@
{
"name": "gatsby-transformer-sharp",
"description": "Gatsby transformer plugin for images using Sharp",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
- "@gatsbyjs/potrace": "^2.2.0",
+ "@gatsbyjs/potrace": "^2.3.0",
"bluebird": "^3.7.2",
"common-tags": "^1.8.2",
"fs-extra": "^10.1.0",
- "gatsby-plugin-utils": "^3.16.0-next.0",
+ "gatsby-plugin-utils": "^3.16.0",
"probe-image-size": "^7.2.3",
"semver": "^7.3.7",
"sharp": "^0.30.7"
@@ -21,7 +21,7 @@
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@types/sharp": "^0.30.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-sharp#readme",
diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md
index eb26d8e223403..957ee6debf0cb 100644
--- a/packages/gatsby-transformer-sqip/CHANGELOG.md
+++ b/packages/gatsby-transformer-sqip/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sqip@4.21.0/packages/gatsby-transformer-sqip) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-sqip
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sqip@4.20.0/packages/gatsby-transformer-sqip) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json
index 8d02e78cf26f2..29419bef657ee 100644
--- a/packages/gatsby-transformer-sqip/package.json
+++ b/packages/gatsby-transformer-sqip/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-sqip",
"description": "Generates geometric primitive version of images",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Benedikt Rötsch ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,8 +9,8 @@
"dependencies": {
"@babel/runtime": "^7.15.4",
"fs-extra": "^10.1.0",
- "gatsby-core-utils": "^3.22.0-next.0",
- "gatsby-plugin-sharp": "^4.22.0-next.0",
+ "gatsby-core-utils": "^3.22.0",
+ "gatsby-plugin-sharp": "^4.22.0",
"md5-file": "^5.0.0",
"mini-svg-data-uri": "^1.4.4",
"p-queue": "^6.6.2",
@@ -19,7 +19,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"debug": "^4.3.4"
},
diff --git a/packages/gatsby-transformer-toml/CHANGELOG.md b/packages/gatsby-transformer-toml/CHANGELOG.md
index a3d7539a3484e..23e7a583dccc2 100644
--- a/packages/gatsby-transformer-toml/CHANGELOG.md
+++ b/packages/gatsby-transformer-toml/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-toml@4.21.0/packages/gatsby-transformer-toml) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-toml
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-toml@4.20.0/packages/gatsby-transformer-toml) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-toml/package.json b/packages/gatsby-transformer-toml/package.json
index 5ac9af1e84a1e..aa828bdcd7a0d 100644
--- a/packages/gatsby-transformer-toml/package.json
+++ b/packages/gatsby-transformer-toml/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-toml",
"description": "Gatsby transformer plugin for toml",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Ruben Harutyunyan ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-toml#readme",
diff --git a/packages/gatsby-transformer-xml/CHANGELOG.md b/packages/gatsby-transformer-xml/CHANGELOG.md
index 56450ff61103b..89e3dae949914 100644
--- a/packages/gatsby-transformer-xml/CHANGELOG.md
+++ b/packages/gatsby-transformer-xml/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-xml@4.21.0/packages/gatsby-transformer-xml) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-xml
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-xml@4.20.0/packages/gatsby-transformer-xml) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json
index 2c8edc3ebdcf6..815fd0bc86edb 100644
--- a/packages/gatsby-transformer-xml/package.json
+++ b/packages/gatsby-transformer-xml/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-xml",
"description": "Gatsby plugin for parsing XML files. It supports also attributes",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-xml#readme",
diff --git a/packages/gatsby-transformer-yaml/CHANGELOG.md b/packages/gatsby-transformer-yaml/CHANGELOG.md
index 2f0dc9a9d010a..64428845b2259 100644
--- a/packages/gatsby-transformer-yaml/CHANGELOG.md
+++ b/packages/gatsby-transformer-yaml/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-yaml@4.21.0/packages/gatsby-transformer-yaml) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-transformer-yaml
+
## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-yaml@4.20.0/packages/gatsby-transformer-yaml) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json
index f913699cd87d8..68f1c4e9c12ed 100644
--- a/packages/gatsby-transformer-yaml/package.json
+++ b/packages/gatsby-transformer-yaml/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-yaml",
"description": "Gatsby transformer plugin for yaml",
- "version": "4.22.0-next.0",
+ "version": "4.22.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-yaml#readme",
diff --git a/packages/gatsby-worker/CHANGELOG.md b/packages/gatsby-worker/CHANGELOG.md
index 3388badfb143d..e0417996ad7ff 100644
--- a/packages/gatsby-worker/CHANGELOG.md
+++ b/packages/gatsby-worker/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-worker@1.21.0/packages/gatsby-worker) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+**Note:** Version bump only for package gatsby-worker
+
## [1.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-worker@1.20.0/packages/gatsby-worker) (2022-08-02)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20)
diff --git a/packages/gatsby-worker/package.json b/packages/gatsby-worker/package.json
index a423940526d12..6a5b9ebbcbd4f 100644
--- a/packages/gatsby-worker/package.json
+++ b/packages/gatsby-worker/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-worker",
"description": "Utility to create worker pools",
- "version": "1.22.0-next.0",
+ "version": "1.22.0",
"author": "Michal Piechowiak",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/register": "^7.15.3",
- "babel-preset-gatsby-package": "^2.22.0-next.0",
+ "babel-preset-gatsby-package": "^2.22.0",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md
index aae082af0f6da..03ac3eb385eb7 100644
--- a/packages/gatsby/CHANGELOG.md
+++ b/packages/gatsby/CHANGELOG.md
@@ -3,6 +3,47 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+### [4.21.1](https://github.com/gatsbyjs/gatsby/commits/gatsby@4.21.1/packages/gatsby) (2022-08-18)
+
+#### Chores
+
+- pin xstate [#36398](https://github.com/gatsbyjs/gatsby/issues/36398) [#36415](https://github.com/gatsbyjs/gatsby/issues/36415) ([29c7ad1](https://github.com/gatsbyjs/gatsby/commit/29c7ad1335cf25af3a326ea2813399ddfd8ea877))
+
+## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby@4.21.0/packages/gatsby) (2022-08-16)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21)
+
+#### Features
+
+- Telemetry tracking for Head API [#36352](https://github.com/gatsbyjs/gatsby/issues/36352) ([f664ad2](https://github.com/gatsbyjs/gatsby/commit/f664ad215a9c5fa20dbf04238e69629b58ff2fc2))
+- Do not use context for script collection [#36246](https://github.com/gatsbyjs/gatsby/issues/36246) ([49cf094](https://github.com/gatsbyjs/gatsby/commit/49cf094380bcf69d9239f8abbbd4db9c1968dcf8))
+
+#### Bug Fixes
+
+- Hashing and pluginOptions [#36387](https://github.com/gatsbyjs/gatsby/issues/36387) [#36395](https://github.com/gatsbyjs/gatsby/issues/36395) ([3253a38](https://github.com/gatsbyjs/gatsby/commit/3253a3860c9c74bce23c8c2fd1df651e549566b9))
+- Make runtime error overlay work in non-v8 browsers [#36365](https://github.com/gatsbyjs/gatsby/issues/36365) ([2b4ff76](https://github.com/gatsbyjs/gatsby/commit/2b4ff76976aef0eac0e042ede14cc4cff3aa1846))
+- clear and close lmdb after each test suite close [#36343](https://github.com/gatsbyjs/gatsby/issues/36343) ([f990e08](https://github.com/gatsbyjs/gatsby/commit/f990e082b0713db46c92d2ed8f70bdfb24c100f1))
+- e.remove() is not a function when using Gatsby Head API [#36338](https://github.com/gatsbyjs/gatsby/issues/36338) ([7fcf580](https://github.com/gatsbyjs/gatsby/commit/7fcf58069958dc3abe988ef624f04ef7a5eb2073))
+- Panic on gatsby-node.jsx/gatsby-node.tsx [#36308](https://github.com/gatsbyjs/gatsby/issues/36308) ([0ee492c](https://github.com/gatsbyjs/gatsby/commit/0ee492c8bf11917dc08b16acebe92bb752bdc3b7))
+- update dependency eslint-webpack-plugin to ^2.7.0 [#36041](https://github.com/gatsbyjs/gatsby/issues/36041) ([0d649a8](https://github.com/gatsbyjs/gatsby/commit/0d649a81c7befbd39870959166fd77d25514eef7))
+- Add DEV_SSR note to 95312 error [#36295](https://github.com/gatsbyjs/gatsby/issues/36295) ([db531f8](https://github.com/gatsbyjs/gatsby/commit/db531f86f9e89d1da72d44399ad5fb72092be454))
+- Make