diff --git a/README.md b/README.md
index effa209c604bd..6d976582cb1fd 100644
--- a/README.md
+++ b/README.md
@@ -161,7 +161,10 @@ This repository is a [monorepo](https://trunkbaseddevelopment.com/monorepos/) ma
### Contributing to Gatsby v2
-We are currently only accepting bug fixes for Gatsby v2. No new features will be accepted.
+The maintenance window for Gatsby v2 closes on April 1, 2021.
+
+- During this maintenance window, we will continue to address reported bugs in Gatsby v2.
+- After the maintenance window closes, we will only accept critical security updates for Gatsby v2.
## π License
diff --git a/docs/docs/conceptual/using-gatsby-image.md b/docs/docs/conceptual/using-gatsby-image.md
index d49a4036a32dd..d045e127a74e9 100644
--- a/docs/docs/conceptual/using-gatsby-image.md
+++ b/docs/docs/conceptual/using-gatsby-image.md
@@ -14,9 +14,9 @@ One important part of overall page loading experience is image loading. There ar
- **Minimize image file size to reduce request roundtrip time.** There are a number of ways, from cropping overly large images, to using newer file types, to reduce image file size.
-We built Gatsby Image to provide these things -- a [higher-level building block](https://www.gatsbyjs.com/docs/conceptual/gatsby-core-philosophy/#construct-new-higher-level-web-building-blocks) that has the richness users expect, with the API simplicity developers love (and without maintaining your own image processing pipeline!).
+We built Gatsby Image to provide these things -- a [higher-level building block](/docs/conceptual/gatsby-core-philosophy/#construct-new-higher-level-web-building-blocks) that has the richness users expect, with the API simplicity developers love (and without maintaining your own image processing pipeline!).
-We provide a [detailed guide on using Gatsby Image](docs/how-to/images-and-media/using-gatsby-image/) in the How To section of this documentation. Here, we walk through the question of why these benefits matter, from a user's perspective, and why providing them without Gatsby Image (or something similar) can be difficult.
+We provide a [detailed guide on using Gatsby Image](/docs/how-to/images-and-media/using-gatsby-plugin-image/) in the How To section of this documentation. Here, we walk through the question of why these benefits matter, from a user's perspective, and why providing them without Gatsby Image (or something similar) can be difficult.
## Fetch above-the-fold images immediately
@@ -50,7 +50,7 @@ When a browser doesn't know how big an image is going to be, either because the
### Gradual color transition
-In addition, when an image appears, it goes from blank background to fully there from one frame to another. This can also be visually jarring. Like css has a `transition` prop to help position shifts feel gradual, images feel more aesthetically pleasing when they have placeholders.
+In addition, when an image appears, it goes from blank background to fully there from one frame to another. This can also be visually jarring. Like CSS has a `transition` prop to help position shifts feel gradual, images feel more aesthetically pleasing when they have placeholders.
Gatsby Image's will hold the spot for your image automatically when you specify `width` prop, and depending on your preference, will provide a background -- blurred, a background color, or traced SVG, while the image loads.
@@ -66,7 +66,7 @@ A common problem in larger projects is that images are uploaded into a CMS by co
For example, a support staff member may take a 1600x2000 pixel screenshot, save it as a PNG, and upload it alongside a helpdesk article. While this is a quite reasonable action, it may degrade page performance significantly. If the article has a 800px maximum width, a 640 x 800 pixel JPG would have displayed at the same quality but a tenth of the size; the extra weight may delay page load by a second or two.
-You can solve this on your own via creating and maintaining a custom image processing pipeline, perhaps during CI/CD, to resize. However, that requires writing, and then maintaining, custom code. Gatsby Image solves this out of the box; if you use the `width` or `maxWidth` prop, Gatsby Image will automatically resize larger underlying assets.
+You can solve this on your own via creating and maintaining a custom image processing pipeline, perhaps during CI/CD, to resize. However, that requires writing, and then maintaining, custom code. Gatsby Image solves this out of the box; if you use the `width` prop, Gatsby Image will automatically resize larger underlying assets.
### Generating "responsive images" for different device sizes
@@ -80,6 +80,6 @@ In order to support responsive images, you need to do the image processing befor
### Better compression
-The new [WebP image](https://developers.google.com/speed/webp) standard reduces image size by 25-35% for modern browsers. It's possible to support this standard, but you also need to fall back for older browsers that don't support this, which without framework support adds additional complexity.
+The new [WebP image](https://developers.google.com/speed/webp) standard reduces image size by 25-35% for modern browsers. Additionally, [AVIF Images](https://netflixtechblog.com/avif-for-next-generation-image-coding-b1d75675fe4) are also supported. AVIF is a brand new image format, which offers considerably better filesizes and quality than JPG and even WebP. It's possible to support these standards, but you also need to fall back for older browsers that don't support this, which without framework support adds additional complexity.
-Gatsby supports WebP out of the box as a setting on Gatsby Image.
+Gatsby supports WebP & AVIF out of the box as a setting on Gatsby Image.
diff --git a/docs/docs/deploying-to-digitalocean-droplet.md b/docs/docs/deploying-to-digitalocean-droplet.md
index f30db8c6bd587..ec070b4ca35e9 100644
--- a/docs/docs/deploying-to-digitalocean-droplet.md
+++ b/docs/docs/deploying-to-digitalocean-droplet.md
@@ -30,7 +30,7 @@ Follow these instructions for installs on an Ubuntu droplet.
```shell
sudo apt-get update
- sudo apt-get install node
+ sudo apt-get install nodejs
```
3. Install npm
@@ -42,7 +42,7 @@ Follow these instructions for installs on an Ubuntu droplet.
To view the version of Node.js and npm installed, run,
```shell
- node -v
+ nodejs -v
npm -v
```
@@ -57,7 +57,7 @@ Follow these instructions for installs on an Ubuntu droplet.
> You can either exit and restart your terminal or refresh the cache by running the following commands:
```shell
- hash node
+ hash nodejs
hash npm
```
@@ -128,6 +128,8 @@ Nginx is web-server. It provides the infrastructure code for handling client req
sudo ufw allow 'Nginx HTTPS'
```
+ > **Note:** You may have to allow access to port 443 explicitly using `sudo ufw allow 443/tcp`.
+
3. To check the access,
```shell
diff --git a/docs/docs/glossary/markdown.md b/docs/docs/glossary/markdown.md
index 10d582e9cabfe..d7dbec7de9c14 100644
--- a/docs/docs/glossary/markdown.md
+++ b/docs/docs/glossary/markdown.md
@@ -59,7 +59,7 @@ You can also try a [Gatsby starter](https://www.gatsbyjs.com/starters/?c=Markdow
## Learn more about Markdown
-- [Markdown syntax](/docs/how-to/routing/mdx/markdown-syntax/) from the Gatsby docs
+- [Markdown syntax](/docs/reference/markdown-syntax/) from the Gatsby docs
- [CommonMark](https://commonmark.org/), a proposed Markdown specification
- [Sourcing from the Filesystem](/docs/how-to/sourcing-data/sourcing-from-the-filesystem) from the Gatsby docs
- [Adding Markdown Pages](/docs/how-to/routing/adding-markdown-pages/) from the Gatsby docs
diff --git a/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md b/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md
index 9c79955917a41..4d5e8aec1d92a 100644
--- a/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md
+++ b/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md
@@ -203,3 +203,76 @@ npx gatsby-codemods gatsby-plugin-image
```
This will convert all GraphQL queries and components to use the new plugin. For more information see the full [migration guide](/docs/reference/release-notes/image-migration-guide/).
+
+## Troubleshooting
+
+If you're running into issues getting everything to work together we recommend following these steps.
+
+1. Are your dependencies installed?
+
+Check your package.json file for the following entries:
+
+- `gatsby-plugin-image`
+- `gatsby-plugin-sharp`
+- `gatsby-transformer-sharp` (If you're querying for dynamic images)
+- `gatsby-source-filesystem` (If you're using the StaticImage component)
+
+If not, install them.
+
+2. Have you added the necessary information to your `gatsby-config.js` file?
+
+All of these plugins should be in your plugins array. Reminder that the `gatsby-image` package did not get included, so this is a change.
+
+- `gatsby-plugin-image`
+- `gatsby-plugin-sharp`
+- `gatsby-transformer-sharp` (If you're querying for dynamic images)
+
+If not, add them.
+
+3. Do your queries in GraphiQL return the data you expect?
+
+There are two paths here.
+
+If you're using StaticImage:
+
+Try running
+
+```graphql
+query MyQuery {
+ allFile {
+ nodes {
+ relativePath
+ }
+ }
+}
+```
+
+Do you see results with `.cache/caches/gatsby-plugin-image` in the path?
+
+If not, check steps 1 and 2 above.
+
+If you're using GatsbyImage:
+
+Run the query you're using in your site. Does it return a gatsbyImageData object?
+
+If not, check steps 1 and 2 above.
+
+4. Do the images render when you run your site?
+
+Do you see errors in your `gatsby develop` logs? Do you see errors in your browser console?
+
+For StaticImage:
+
+Inspect the element on your page. Does it include a `div` with `gatsby-image-wrapper`? How about an internal `source` element?
+
+If not, double check the component usage. Did you use `src`? Is the relative path correct?
+
+For GatsbyImage:
+
+Trying using `console.log` to check the the object you're passing as the `image` prop. Is it there?
+
+If not, make sure you're using the same object you saw return from your query.
+
+5. Are the images working yet?
+
+If you still see problems and think it's a bug, please [file an issue](https://github.com/gatsbyjs/gatsby/issues) and let us know how far in these steps you progressed.
diff --git a/docs/docs/how-to/styling/using-web-fonts.md b/docs/docs/how-to/styling/using-web-fonts.md
index 6fd5e0b226aad..f9905161da425 100644
--- a/docs/docs/how-to/styling/using-web-fonts.md
+++ b/docs/docs/how-to/styling/using-web-fonts.md
@@ -22,19 +22,19 @@ The fastest way to get started using Google Fonts is by choosing a font from [Fo
This example shows how to set up the [Open Sans](https://fonts.google.com/specimen/Open+Sans) font. If you have a different Google Font you want to use, you can find the corresponding package in [NPM](https://www.npmjs.com/search?q=fontsource) or the [packages directory in the Fontsource repository](https://github.com/fontsource/fontsource/tree/master/packages).
-1. Run `npm install fontsource-open-sans` to download the necessary package files.
+1. Run `npm install @fontsource/open-sans` to download the necessary package files.
2. Then within your app entry file or site component, import the font package. It is recommended you import it via the layout template (`layout.js`). However, importing via page component (`index.js`), or `gatsby-browser.js` are viable alternatives.
```jsx:title=src/components/layout.js
-import "fontsource-open-sans" // Defaults to weight 400 with all styles included.
+import "@fontsource/open-sans" // Defaults to weight 400 with all styles included.
```
If you wish to select a particular weight or style, you may specify it by changing the import path.
```jsx:title=src/components/layout.js
-import "fontsource-open-sans/500.css" // Weight 500 with all styles included.
-import "fontsource-open-sans/900-normal.css" // Select either normal or italic.
+import "@fontsource/open-sans/500.css" // Weight 500 with all styles included.
+import "@fontsource/open-sans/900-normal.css" // Select either normal or italic.
```
**Note**: The range of supported weights and styles a font may support is shown in each package's README file.
diff --git a/docs/docs/reference/graphql-data-layer/schema-customization.md b/docs/docs/reference/graphql-data-layer/schema-customization.md
index 07de2601f8bea..994631eba84e3 100644
--- a/docs/docs/reference/graphql-data-layer/schema-customization.md
+++ b/docs/docs/reference/graphql-data-layer/schema-customization.md
@@ -435,6 +435,33 @@ type AuthorJson implements Node {
}
```
+This example assumes that your markdown frontmatter is in the shape of:
+
+```markdown
+---
+reviewers:
+ - jane@example.com
+ - doe@example.com
+---
+```
+
+And your author JSON looks like this:
+
+```json
+[
+ {
+ "name": "Doe",
+ "firstName": "Jane",
+ "email": "jane@example.com"
+ },
+ {
+ "name": "Doe",
+ "firstName": "Zoe",
+ "email": "zoe@example.com"
+ }
+]
+```
+
You provide a `@link` directive on a field and Gatsby will internally
add a resolver that is quite similar to the one written manually above. If no
argument is provided, Gatsby will use the `id` field as the foreign-key,
@@ -442,6 +469,8 @@ otherwise the foreign-key has to be provided with the `by` argument. The
optional `from` argument allows getting the field on the current type which acts as the foreign-key to the field specified in `by`.
In other words, you `link` **on** `from` **to** `by`. This makes `from` especially helpful when adding a field for back-linking.
+For the above example you can read `@link` this way: Use the value from the field `Frontmatter.reviewers` and match it by the field `AuthorJson.email`.
+
Keep in mind that in the example above, the link of `posts` in `AuthorJson` works because `frontmatter` and `author` are both objects. If, for example, the `Frontmatter` type had a list of `authors` instead (`frontmatter.authors.email`), it wouldn't work since the `by` argument doesn't support arrays. In that case, you'd have to provide a custom resolver with [Gatsby Type Builders](/docs/reference/graphql-data-layer/schema-customization/#gatsby-type-builders) or [createResolvers API](/docs/reference/graphql-data-layer/schema-customization/#createresolvers-api).
> Note that when using `createTypes` to fix type inference for a foreign-key field
diff --git a/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md b/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md
index 335d995631c16..19cba9b7a2455 100644
--- a/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md
+++ b/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md
@@ -367,7 +367,7 @@ const Box = ({ children }) => (
export default Box
```
-You can also still import all styles using the `import * as styles` sytax e.g. `import * as styles from './mystyles.module.css'`. However, this won't allow webpack to treeshake your styles so we discourage you from using this syntax.
+You can also still import all styles using the `import * as styles` syntax e.g. `import * as styles from './mystyles.module.css'`. However, this won't allow webpack to treeshake your styles so we discourage you from using this syntax.
### File assets (fonts, pdfs, ...) are imported as ES Modules
@@ -469,12 +469,14 @@ If you're using any other process properties, you want to polyfill process.
2. Configure webpack to use the process polyfill.
```diff:title=gatby-node.js
-exports.onCreateWebpackConfig = ({ actions }) => {
- actions.setWebpackConfig({
- plugins: [
- new plugins.provide({ process: 'process/browser' })
- ]
- })
+exports.onCreateWebpackConfig = ({ actions, stage, plugins }) => {
+ if (stage === 'build-javascript' || stage === 'develop') {
+ actions.setWebpackConfig({
+ plugins: [
+ plugins.provide({ process: 'process/browser' })
+ ]
+ })
+ }
}
```
diff --git a/docs/docs/upgrading-node-js.md b/docs/docs/upgrading-node-js.md
index c772a1224bf51..8e5a49dc2b9a5 100644
--- a/docs/docs/upgrading-node-js.md
+++ b/docs/docs/upgrading-node-js.md
@@ -16,18 +16,18 @@ Run `node -v` in a terminal to see which version of Node.js you have.
```shell
node -v
-v10.18.0
+v12.21.0
```
-This example shows Node.js version 10, specifically v10.18.0.
+This example shows Node.js version 12, specifically v12.21.0.
-## Upgrading from Node.js version 8
+## Upgrading from Node.js version 10
-Node.js version 8 reached _End-of-life_ status on December 31, 2019. Many of Gatsby's dependencies are updating to Node.js version 10 and above. Gatsby must also update in order to deliver new features and bug fixes more quickly.
+Node.js version 10 _End-of-life_ date is April 30, 2021. Many of Gatsby's dependencies are updating to Node.js version 12 and above. Gatsby must also update in order to deliver new features and bug fixes more quickly.
-Generally, it's recommended to use [the Node version whose status is _Active LTS_](https://github.com/nodejs/Release#nodejs-release-working-group) (Node 10 at time of writing).
+Generally, it's recommended to use [the Node version whose status is _Active LTS_](https://github.com/nodejs/Release#nodejs-release-working-group) (Node 14 at time of writing).
-> What about Node.js 9? Stable versions of Node.js are evenly numbered releases - Node.js 6, Node.js 8, Node.js 10 etc. Only use uneven release numbers if you'd like to try cutting-edge and experimental features.
+> What about Node.js 13? Stable versions of Node.js are evenly numbered releases - Node.js 8, Node.js 10, Node.js 12 etc. Only use uneven release numbers if you'd like to try cutting-edge and experimental features.
There are multiple ways to update your version of Node.js depending on how you originally installed it. Read on to find the best approach for you.
@@ -37,7 +37,7 @@ This is the recommended way to install a newer version of Node.
You will have Homebrew installed on your computer if you [followed part zero of the Gatsby tutorial](/docs/tutorial/part-zero/#install-nodejs-for-your-appropriate-operating-system). Homebrew is a program that allows you to install specific versions of Node.js (and other software).
-To update from Node.js 8 to Node.js 10 using Homebrew, open a terminal and run the following commands:
+To update from Node.js 10 to Node.js 12 using Homebrew, open a terminal and run the following commands:
```shell
brew search node
@@ -48,15 +48,15 @@ You should see output similar to this:
```shell
brew search node
==> Formulae
-heroku/brew/heroku-node β llnode node@10 nodebrew
-leafnode node β node@8 nodeenv
+heroku/brew/heroku-node β llnode node@12 nodebrew
+leafnode node β node@10 nodeenv
libbitcoin-node node-build node_exporter nodenv
```
-You're interested in the next stable version of Node.js after Node.js 8, which is Node.js 10. Homebrew makes this available in a package called `node@10`. Run:
+You're interested in the next stable version of Node.js after Node.js 10, which is Node.js 12. Homebrew makes this available in a package called `node@12`. Run:
```shell
-brew install node@10
+brew install node@12
```
Once that's complete, run:
@@ -65,7 +65,7 @@ Once that's complete, run:
node -v
```
-to confirm that you've upgraded from Node.js version 8 up to version 10.
+to confirm that you've upgraded from Node.js version 10 up to version 12.
### Using a Node.js version management package
@@ -84,11 +84,11 @@ nvm
in a terminal to see if nvm is installed on your system. If it's installed, you can run:
```shell
-nvm install 10
-nvm alias default 10
+nvm install 12
+nvm alias default 12
```
-to install and use Node.js version 10.
+to install and use Node.js version 12.
[Check nvm's documentation for further instructions](https://github.com/nvm-sh/nvm).
@@ -100,7 +100,7 @@ Run:
n
```
-in a terminal to see if n is installed on your system. If it's installed, you can run `n 10` to install and use Node.js version 10.
+in a terminal to see if n is installed on your system. If it's installed, you can run `n 12` to install and use Node.js version 12.
[Check n's documentation for further instructions](https://github.com/tj/n).
@@ -116,4 +116,4 @@ Gatsby takes backwards compatibility seriously and aims to support older version
Gatsby also relies on a huge ecosystem of JavaScript dependencies. As the ecosystem moves away from older, unsupported Node.js versions we have to keep pace to ensure that bugs can be fixed and new features can be released.
-In this document, you learned how you upgrade from Node.js version 8 (which has reached _End of Life_ status) to Node.js version 10.
+In this document, you learned how you upgrade from Node.js version 10 to Node.js version 12.
diff --git a/e2e-tests/development-runtime/.eslintrc b/e2e-tests/development-runtime/.eslintrc
new file mode 100644
index 0000000000000..4ee5dc3813b47
--- /dev/null
+++ b/e2e-tests/development-runtime/.eslintrc
@@ -0,0 +1,7 @@
+{
+ "parserOptions": {
+ "babelOptions": {
+ "configFile": "../../.babelrc.js"
+ }
+ }
+}
diff --git a/e2e-tests/development-runtime/content/error-recovery/page-query.json b/e2e-tests/development-runtime/content/error-recovery/page-query.json
new file mode 100644
index 0000000000000..8d7de1d131960
--- /dev/null
+++ b/e2e-tests/development-runtime/content/error-recovery/page-query.json
@@ -0,0 +1,4 @@
+{
+ "selector": "page-query",
+ "hasError": false
+}
diff --git a/e2e-tests/development-runtime/content/error-recovery/static-query.json b/e2e-tests/development-runtime/content/error-recovery/static-query.json
new file mode 100644
index 0000000000000..c7378bd85b5d5
--- /dev/null
+++ b/e2e-tests/development-runtime/content/error-recovery/static-query.json
@@ -0,0 +1,4 @@
+{
+ "selector": "static-query",
+ "hasError": false
+}
diff --git a/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/compile-error.js b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/compile-error.js
new file mode 100644
index 0000000000000..deda17330d55e
--- /dev/null
+++ b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/compile-error.js
@@ -0,0 +1,53 @@
+before(() => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/compile-error.js --restore`
+ )
+})
+
+after(() => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/compile-error.js --restore`
+ )
+})
+
+const errorPlaceholder = `// compile-error`
+const errorReplacement = `a b`
+
+describe(`testing error overlay and ability to automatically recover from webpack compile errors`, () => {
+ it(`displays content initially (no errors yet)`, () => {
+ cy.visit(`/error-handling/compile-error/`).waitForRouteChange()
+ cy.findByTestId(`hot`).should(`contain.text`, `Working`)
+ })
+
+ it(`displays error with overlay on compilation errors`, () => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/compile-error.js --replacements "${errorPlaceholder}:${errorReplacement}" --exact`
+ )
+
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-labelledby`)
+ .should(`contain.text`, `Failed to compile`)
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-describedby`)
+ .should(
+ `contain.text`,
+ `This error occurred during the build process and can only be dismissed by fixing the error.`
+ )
+ cy.getFastRefreshOverlay()
+ .find(`[data-gatsby-overlay="header__cause-file"] span`)
+ .should(`contain.text`, `./src/pages/error-handling/compile-error.js`)
+ cy.getFastRefreshOverlay()
+ .find(`[data-gatsby-overlay="body"] h2`)
+ .should(`contain.text`, `Source`)
+ cy.getFastRefreshOverlay().find(`[data-gatsby-overlay="body"] pre`)
+ })
+
+ it(`can recover without need to refresh manually`, () => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/compile-error.js --replacements "Working:Updated" --replacements "${errorReplacement}:${errorPlaceholder}" --exact`
+ )
+
+ cy.findByTestId(`hot`).should(`contain.text`, `Updated`)
+ cy.assertNoFastRefreshOverlay()
+ })
+})
diff --git a/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/page-query-result-runtime-error.js b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/page-query-result-runtime-error.js
new file mode 100644
index 0000000000000..f96784227bd9f
--- /dev/null
+++ b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/page-query-result-runtime-error.js
@@ -0,0 +1,85 @@
+Cypress.on(
+ `uncaught:exception`,
+ (err, runnable) =>
+ // returning false here prevents Cypress from
+ // failing the test
+ false
+)
+
+before(() => {
+ cy.exec(
+ `npm run update -- --file content/error-recovery/page-query.json --restore`
+ )
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/page-query-result-runtime-error.js --restore`
+ )
+})
+
+after(() => {
+ cy.exec(
+ `npm run update -- --file content/error-recovery/page-query.json --restore`
+ )
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/page-query-result-runtime-error.js --restore`
+ )
+})
+
+const errorPlaceholder = `false`
+const errorReplacement = `true`
+
+describe(`testing error overlay and ability to automatically recover runtime errors cause by content changes (page queries variant)`, () => {
+ it(`displays content initially (no errors yet)`, () => {
+ cy.visit(`/error-handling/page-query-result-runtime-error/`, {
+ // Hacky way to disable "uncaught:exception" message in error message itself
+ // See https://github.com/cypress-io/cypress/issues/254#issuecomment-292190924
+ onBeforeLoad: win => {
+ win.onerror = null
+ },
+ }).waitForRouteChange()
+ cy.findByTestId(`hot`).should(`contain.text`, `Working`)
+ cy.findByTestId(`results`).should(`contain.text`, `"hasError": false`)
+ })
+
+ it(`displays error with overlay on runtime errors`, () => {
+ cy.exec(
+ `npm run update -- --file content/error-recovery/page-query.json --replacements "${errorPlaceholder}:${errorReplacement}" --exact`
+ )
+
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-labelledby`)
+ .should(`contain.text`, `Unhandled Runtime Error`)
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-describedby`)
+ .should(
+ `contain.text`,
+ `One unhandled runtime error found in your files. See the list below to fix it:`
+ )
+ cy.getFastRefreshOverlay()
+ .find(
+ `[data-gatsby-overlay="accordion"] [data-gatsby-overlay="accordion__item__title"]`
+ )
+ .should(
+ `contain.text`,
+ `Error in function PageQueryRuntimeError in ./src/pages/error-handling/page-query-result-runtime-error.js:7`
+ )
+ cy.getFastRefreshOverlay()
+ .find(
+ `[data-gatsby-overlay="accordion"] [data-gatsby-overlay="body__error-message"]`
+ )
+ .should(`contain.text`, `Page query results caused runtime error`)
+ })
+
+ it(`can recover without need to refresh manually`, () => {
+ cy.exec(
+ `npm run update -- --file content/error-recovery/page-query.json --replacements "${errorReplacement}:${errorPlaceholder}" --exact`
+ )
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/page-query-result-runtime-error.js --replacements "Working:Updated" --exact`
+ )
+
+ cy.findByTestId(`hot`).should(`contain.text`, `Updated`)
+ cy.findByTestId(`results`).should(`contain.text`, `"hasError": false`)
+
+ cy.assertNoFastRefreshOverlay()
+ })
+})
diff --git a/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/query-validation-error.js b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/query-validation-error.js
new file mode 100644
index 0000000000000..918ecade29c4a
--- /dev/null
+++ b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/query-validation-error.js
@@ -0,0 +1,54 @@
+before(() => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/query-validation-error.js --restore`
+ )
+})
+
+after(() => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/query-validation-error.js --restore`
+ )
+})
+
+const errorPlaceholder = `# query-validation-error`
+const errorReplacement = `fieldThatDoesNotExistOnSiteMapType`
+
+describe(`testing error overlay and ability to automatically recover from query extraction validation errors`, () => {
+ it(`displays content initially (no errors yet)`, () => {
+ cy.visit(`/error-handling/query-validation-error/`).waitForRouteChange()
+ cy.findByTestId(`hot`).should(`contain.text`, `Working`)
+ })
+
+ it(`displays error with overlay on compilation errors`, () => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/query-validation-error.js --replacements "${errorPlaceholder}:${errorReplacement}" --exact`
+ )
+
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-labelledby`)
+ .should(`contain.text`, `Unhandled GraphQL Error`)
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-describedby`)
+ .should(
+ `contain.text`,
+ `One unhandled GraphQL error found in your files. See the list below to fix it:`
+ )
+ cy.getFastRefreshOverlay()
+ .find(
+ `[data-gatsby-overlay="accordion"] [data-gatsby-overlay="accordion__item__title"]`
+ )
+ .should(
+ `contain.text`,
+ `Cannot query field "fieldThatDoesNotExistOnSiteMapType" on type "SiteSiteMetadata".`
+ )
+ })
+
+ it(`can recover without need to refresh manually`, () => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/query-validation-error.js --replacements "Working:Updated" --replacements "${errorReplacement}:${errorPlaceholder}" --exact`
+ )
+
+ cy.findByTestId(`hot`).should(`contain.text`, `Updated`)
+ cy.assertNoFastRefreshOverlay()
+ })
+})
diff --git a/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/runtime-error.js b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/runtime-error.js
new file mode 100644
index 0000000000000..0d13efc118429
--- /dev/null
+++ b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/runtime-error.js
@@ -0,0 +1,74 @@
+Cypress.on(
+ `uncaught:exception`,
+ (err, runnable) =>
+ // returning false here prevents Cypress from
+ // failing the test
+ false
+)
+
+before(() => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/runtime-error.js --restore`
+ )
+})
+
+after(() => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/runtime-error.js --restore`
+ )
+})
+
+const errorPlaceholder = `// runtime-error`
+const errorReplacement = `window.a.b.c.d.e.f.g()`
+
+describe(`testing error overlay and ability to automatically recover from runtime errors`, () => {
+ it(`displays content initially (no errors yet)`, () => {
+ cy.visit(`/error-handling/runtime-error/`, {
+ // Hacky way to disable "uncaught:exception" message in error message itself
+ // See https://github.com/cypress-io/cypress/issues/254#issuecomment-292190924
+ onBeforeLoad: win => {
+ win.onerror = null
+ },
+ }).waitForRouteChange()
+ cy.findByTestId(`hot`).should(`contain.text`, `Working`)
+ })
+
+ it(`displays error with overlay on runtime errors`, () => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/runtime-error.js --replacements "${errorPlaceholder}:${errorReplacement}" --exact`
+ )
+
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-labelledby`)
+ .should(`contain.text`, `Unhandled Runtime Error`)
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-describedby`)
+ .should(
+ `contain.text`,
+ `One unhandled runtime error found in your files. See the list below to fix it:`
+ )
+ cy.getFastRefreshOverlay()
+ .find(
+ `[data-gatsby-overlay="accordion"] [data-gatsby-overlay="accordion__item__title"]`
+ )
+ .should(
+ `contain.text`,
+ `Error in function RuntimeError in ./src/pages/error-handling/runtime-error.js:4`
+ )
+ cy.getFastRefreshOverlay()
+ .find(
+ `[data-gatsby-overlay="accordion"] [data-gatsby-overlay="body__error-message"]`
+ )
+ .should(`contain.text`, `Cannot read property 'b' of undefined`)
+ cy.getFastRefreshOverlay().find(`[data-gatsby-overlay="body"] pre`)
+ })
+
+ it(`can recover without need to refresh manually`, () => {
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/runtime-error.js --replacements "Working:Updated" --replacements "${errorReplacement}:${errorPlaceholder}" --exact`
+ )
+
+ cy.findByTestId(`hot`).should(`contain.text`, `Updated`)
+ cy.assertNoFastRefreshOverlay()
+ })
+})
diff --git a/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/static-query-result-runtime-error.js b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/static-query-result-runtime-error.js
new file mode 100644
index 0000000000000..a3a674f12517b
--- /dev/null
+++ b/e2e-tests/development-runtime/cypress/integration/hot-reloading/error-handling/static-query-result-runtime-error.js
@@ -0,0 +1,85 @@
+Cypress.on(
+ `uncaught:exception`,
+ (err, runnable) =>
+ // returning false here prevents Cypress from
+ // failing the test
+ false
+)
+
+before(() => {
+ cy.exec(
+ `npm run update -- --file content/error-recovery/static-query.json --restore`
+ )
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/static-query-result-runtime-error.js --restore`
+ )
+})
+
+after(() => {
+ cy.exec(
+ `npm run update -- --file content/error-recovery/static-query.json --restore`
+ )
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/static-query-result-runtime-error.js --restore`
+ )
+})
+
+const errorPlaceholder = `false`
+const errorReplacement = `true`
+
+describe(`testing error overlay and ability to automatically recover from runtime errors (static queries variant)`, () => {
+ it(`displays content initially (no errors yet)`, () => {
+ cy.visit(`/error-handling/static-query-result-runtime-error/`, {
+ // Hacky way to disable "uncaught:exception" message in error message itself
+ // See https://github.com/cypress-io/cypress/issues/254#issuecomment-292190924
+ onBeforeLoad: win => {
+ win.onerror = null
+ },
+ }).waitForRouteChange()
+ cy.findByTestId(`hot`).should(`contain.text`, `Working`)
+ cy.findByTestId(`results`).should(`contain.text`, `"hasError": false`)
+ })
+
+ it(`displays error with overlay on runtime errors`, () => {
+ cy.exec(
+ `npm run update -- --file content/error-recovery/static-query.json --replacements "${errorPlaceholder}:${errorReplacement}" --exact`
+ )
+
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-labelledby`)
+ .should(`contain.text`, `Unhandled Runtime Error`)
+ cy.getFastRefreshOverlay()
+ .find(`#gatsby-overlay-describedby`)
+ .should(
+ `contain.text`,
+ `One unhandled runtime error found in your files. See the list below to fix it:`
+ )
+ cy.getFastRefreshOverlay()
+ .find(
+ `[data-gatsby-overlay="accordion"] [data-gatsby-overlay="accordion__item__title"]`
+ )
+ .should(
+ `contain.text`,
+ `Error in function StaticQueryRuntimeError in ./src/pages/error-handling/static-query-result-runtime-error.js:14`
+ )
+ cy.getFastRefreshOverlay()
+ .find(
+ `[data-gatsby-overlay="accordion"] [data-gatsby-overlay="body__error-message"]`
+ )
+ .should(`contain.text`, `Static query results caused runtime error`)
+ })
+
+ it(`can recover without need to refresh manually`, () => {
+ cy.exec(
+ `npm run update -- --file content/error-recovery/static-query.json --replacements "${errorReplacement}:${errorPlaceholder}" --exact`
+ )
+ cy.exec(
+ `npm run update -- --file src/pages/error-handling/static-query-result-runtime-error.js --replacements "Working:Updated" --exact`
+ )
+
+ cy.findByTestId(`hot`).should(`contain.text`, `Updated`)
+ cy.findByTestId(`results`).should(`contain.text`, `"hasError": false`)
+
+ cy.assertNoFastRefreshOverlay()
+ })
+})
diff --git a/e2e-tests/development-runtime/cypress/integration/styling/less.js b/e2e-tests/development-runtime/cypress/integration/styling/less.js
new file mode 100644
index 0000000000000..a35f1a4e6ccf5
--- /dev/null
+++ b/e2e-tests/development-runtime/cypress/integration/styling/less.js
@@ -0,0 +1,65 @@
+before(() => {
+ cy.exec(`npm run reset`)
+})
+
+after(() => {
+ cy.exec(`npm run reset`)
+})
+
+describe(`styling: less`, () => {
+ it(`initial styling is correct`, () => {
+ cy.visit(`/styling/less`).waitForRouteChange()
+
+ cy.getTestElement(`less-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(255, 0, 0)`
+ )
+
+ cy.getTestElement(`less-module-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 128, 0)`
+ )
+ })
+
+ describe(`hot reloading`, () => {
+ it(`plain less`, () => {
+ // we don't want to visit page for each test - we want to visit once and then test HMR
+ cy.window().then(win => {
+ cy.spy(win.console, `log`).as(`hmrConsoleLog`)
+ })
+
+ cy.exec(
+ `npm run update -- --file src/pages/styling/less-plain.less --replacements "red:blue" --exact`
+ )
+
+ cy.waitForHmr()
+
+ cy.getTestElement(`less-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 0, 255)`
+ )
+ })
+
+ it(`less module`, () => {
+ // we don't want to visit page for each test - we want to visit once and then test HMR
+ cy.window().then(win => {
+ cy.spy(win.console, `log`).as(`hmrConsoleLog`)
+ })
+
+ cy.exec(
+ `npm run update -- --file src/pages/styling/less.module.less --replacements "green:blue" --exact`
+ )
+
+ cy.waitForHmr()
+
+ cy.getTestElement(`less-module-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 0, 255)`
+ )
+ })
+ })
+})
diff --git a/e2e-tests/development-runtime/cypress/integration/styling/sass.js b/e2e-tests/development-runtime/cypress/integration/styling/sass.js
new file mode 100644
index 0000000000000..a7da39b40222d
--- /dev/null
+++ b/e2e-tests/development-runtime/cypress/integration/styling/sass.js
@@ -0,0 +1,65 @@
+before(() => {
+ cy.exec(`npm run reset`)
+})
+
+after(() => {
+ cy.exec(`npm run reset`)
+})
+
+describe(`styling: sass`, () => {
+ it(`initial styling is correct`, () => {
+ cy.visit(`/styling/sass`).waitForRouteChange()
+
+ cy.getTestElement(`sass-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(255, 0, 0)`
+ )
+
+ cy.getTestElement(`sass-module-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 128, 0)`
+ )
+ })
+
+ describe(`hot reloading`, () => {
+ it(`plain sass`, () => {
+ // we don't want to visit page for each test - we want to visit once and then test HMR
+ cy.window().then(win => {
+ cy.spy(win.console, `log`).as(`hmrConsoleLog`)
+ })
+
+ cy.exec(
+ `npm run update -- --file src/pages/styling/sass-plain.scss --replacements "red:blue" --exact`
+ )
+
+ cy.waitForHmr()
+
+ cy.getTestElement(`sass-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 0, 255)`
+ )
+ })
+
+ it(`sass module`, () => {
+ // we don't want to visit page for each test - we want to visit once and then test HMR
+ cy.window().then(win => {
+ cy.spy(win.console, `log`).as(`hmrConsoleLog`)
+ })
+
+ cy.exec(
+ `npm run update -- --file src/pages/styling/sass.module.scss --replacements "green:blue" --exact`
+ )
+
+ cy.waitForHmr()
+
+ cy.getTestElement(`sass-module-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 0, 255)`
+ )
+ })
+ })
+})
diff --git a/e2e-tests/development-runtime/cypress/integration/styling/stylus.js b/e2e-tests/development-runtime/cypress/integration/styling/stylus.js
new file mode 100644
index 0000000000000..780c93e5a6b54
--- /dev/null
+++ b/e2e-tests/development-runtime/cypress/integration/styling/stylus.js
@@ -0,0 +1,65 @@
+before(() => {
+ cy.exec(`npm run reset`)
+})
+
+after(() => {
+ cy.exec(`npm run reset`)
+})
+
+describe(`styling: stylus`, () => {
+ it(`initial styling is correct`, () => {
+ cy.visit(`/styling/stylus`).waitForRouteChange()
+
+ cy.getTestElement(`stylus-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(255, 0, 0)`
+ )
+
+ cy.getTestElement(`stylus-module-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 128, 0)`
+ )
+ })
+
+ describe(`hot reloading`, () => {
+ it(`plain stylus`, () => {
+ // we don't want to visit page for each test - we want to visit once and then test HMR
+ cy.window().then(win => {
+ cy.spy(win.console, `log`).as(`hmrConsoleLog`)
+ })
+
+ cy.exec(
+ `npm run update -- --file src/pages/styling/stylus-plain.styl --replacements "red:blue" --exact`
+ )
+
+ cy.waitForHmr()
+
+ cy.getTestElement(`stylus-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 0, 255)`
+ )
+ })
+
+ it(`stylus module`, () => {
+ // we don't want to visit page for each test - we want to visit once and then test HMR
+ cy.window().then(win => {
+ cy.spy(win.console, `log`).as(`hmrConsoleLog`)
+ })
+
+ cy.exec(
+ `npm run update -- --file src/pages/styling/stylus.module.styl --replacements "green:blue" --exact`
+ )
+
+ cy.waitForHmr()
+
+ cy.getTestElement(`stylus-module-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 0, 255)`
+ )
+ })
+ })
+})
diff --git a/e2e-tests/development-runtime/cypress/support/commands.js b/e2e-tests/development-runtime/cypress/support/commands.js
index 64a6ff8200aa4..c1203c53952aa 100644
--- a/e2e-tests/development-runtime/cypress/support/commands.js
+++ b/e2e-tests/development-runtime/cypress/support/commands.js
@@ -105,3 +105,11 @@ Cypress.Commands.add(`waitForHmr`, (message = `App is up to date`) => {
cy.get(`@hmrConsoleLog`).should(`be.calledWithMatch`, message)
cy.wait(1000)
})
+
+Cypress.Commands.add(`getFastRefreshOverlay`, () => (
+ cy.get('gatsby-fast-refresh').shadow()
+))
+
+Cypress.Commands.add(`assertNoFastRefreshOverlay`, () => (
+ cy.get('gatsby-fast-refresh').should('not.exist')
+))
diff --git a/e2e-tests/development-runtime/gatsby-config.js b/e2e-tests/development-runtime/gatsby-config.js
index 5542043a160c8..d0bcdcd4f1442 100644
--- a/e2e-tests/development-runtime/gatsby-config.js
+++ b/e2e-tests/development-runtime/gatsby-config.js
@@ -50,6 +50,9 @@ module.exports = {
},
},
`gatsby-plugin-image`,
+ `gatsby-plugin-sass`,
+ `gatsby-plugin-less`,
+ `gatsby-plugin-stylus`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// 'gatsby-plugin-offline',
diff --git a/e2e-tests/development-runtime/package.json b/e2e-tests/development-runtime/package.json
index f3539d213026d..eb02de8879393 100644
--- a/e2e-tests/development-runtime/package.json
+++ b/e2e-tests/development-runtime/package.json
@@ -7,10 +7,13 @@
"gatsby": "^3.0.0-next.6",
"gatsby-image": "^3.0.0-next.0",
"gatsby-plugin-image": "^1.0.0-next.5",
+ "gatsby-plugin-less": "^5.1.0-next.2",
"gatsby-plugin-manifest": "^3.0.0-next.0",
"gatsby-plugin-offline": "^4.0.0-next.1",
"gatsby-plugin-react-helmet": "^4.0.0-next.0",
+ "gatsby-plugin-sass": "^4.1.0-next.2",
"gatsby-plugin-sharp": "^3.0.0-next.5",
+ "gatsby-plugin-stylus": "^3.1.0-next.2",
"gatsby-seo": "^0.1.0",
"gatsby-source-filesystem": "^3.0.0-next.2",
"gatsby-transformer-json": "^3.0.0-next.0",
@@ -20,7 +23,8 @@
"prop-types": "^15.6.2",
"react": "16.9.0",
"react-dom": "16.9.0",
- "react-helmet": "^5.2.1"
+ "react-helmet": "^5.2.1",
+ "sass": "^1.32.8"
},
"keywords": [
"gatsby",
@@ -31,6 +35,7 @@
"build": "gatsby build",
"develop": "cross-env CYPRESS_SUPPORT=y ENABLE_GATSBY_REFRESH_ENDPOINT=true GATSBY_EXPERIMENTAL_QUERY_ON_DEMAND=y gatsby develop",
"serve": "gatsby serve",
+ "clean": "gatsby clean",
"start": "npm run develop",
"format": "prettier --write \"src/**/*.js\"",
"test": "npm run start-server-and-test || (npm run reset && exit 1)",
diff --git a/e2e-tests/development-runtime/src/components/image.js b/e2e-tests/development-runtime/src/components/image.js
index dcb993e395072..2528aebf9d431 100644
--- a/e2e-tests/development-runtime/src/components/image.js
+++ b/e2e-tests/development-runtime/src/components/image.js
@@ -29,7 +29,7 @@ const Image = () => (
`}
render={data => (
-
+
)}
diff --git a/e2e-tests/development-runtime/src/pages/error-handling/compile-error.js b/e2e-tests/development-runtime/src/pages/error-handling/compile-error.js
new file mode 100644
index 0000000000000..ff414984b6d2e
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/error-handling/compile-error.js
@@ -0,0 +1,8 @@
+import React from "react"
+
+function CompileError() {
+ // compile-error
+ return Working
+}
+
+export default CompileError
diff --git a/e2e-tests/development-runtime/src/pages/error-handling/page-query-result-runtime-error.js b/e2e-tests/development-runtime/src/pages/error-handling/page-query-result-runtime-error.js
new file mode 100644
index 0000000000000..151e250ae84cf
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/error-handling/page-query-result-runtime-error.js
@@ -0,0 +1,25 @@
+import React from "react"
+import { graphql } from "gatsby"
+
+function PageQueryRuntimeError({ data }) {
+ console.log(data.errorRecoveryJson)
+ if (data.errorRecoveryJson.hasError) {
+ throw new Error(`Page query results caused runtime error`)
+ }
+ return (
+ <>
+ Working
+ {JSON.stringify(data, null, 2)}
+ >
+ )
+}
+
+export default PageQueryRuntimeError
+
+export const query = graphql`
+ {
+ errorRecoveryJson(selector: { eq: "page-query" }) {
+ hasError
+ }
+ }
+`
diff --git a/e2e-tests/development-runtime/src/pages/error-handling/query-validation-error.js b/e2e-tests/development-runtime/src/pages/error-handling/query-validation-error.js
new file mode 100644
index 0000000000000..5f430dde4c865
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/error-handling/query-validation-error.js
@@ -0,0 +1,19 @@
+import React from "react"
+import { graphql } from "gatsby"
+
+function QueryValidationError() {
+ return Working
+}
+
+export default QueryValidationError
+
+export const query = graphql`
+ {
+ site {
+ siteMetadata {
+ title
+ # query-validation-error
+ }
+ }
+ }
+`
diff --git a/e2e-tests/development-runtime/src/pages/error-handling/runtime-error.js b/e2e-tests/development-runtime/src/pages/error-handling/runtime-error.js
new file mode 100644
index 0000000000000..05b81b19d2c98
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/error-handling/runtime-error.js
@@ -0,0 +1,8 @@
+import React from "react"
+
+function RuntimeError() {
+ // runtime-error
+ return Working
+}
+
+export default RuntimeError
diff --git a/e2e-tests/development-runtime/src/pages/error-handling/static-query-result-runtime-error.js b/e2e-tests/development-runtime/src/pages/error-handling/static-query-result-runtime-error.js
new file mode 100644
index 0000000000000..98456cc464327
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/error-handling/static-query-result-runtime-error.js
@@ -0,0 +1,24 @@
+import React from "react"
+import { graphql, useStaticQuery } from "gatsby"
+
+function StaticQueryRuntimeError() {
+ const data = useStaticQuery(graphql`
+ {
+ errorRecoveryJson(selector: { eq: "static-query" }) {
+ hasError
+ }
+ }
+ `)
+ console.log(data.errorRecoveryJson)
+ if (data.errorRecoveryJson.hasError) {
+ throw new Error(`Static query results caused runtime error`)
+ }
+ return (
+ <>
+ Working
+ {JSON.stringify(data, null, 2)}
+ >
+ )
+}
+
+export default StaticQueryRuntimeError
diff --git a/e2e-tests/development-runtime/src/pages/styling/less-plain.less b/e2e-tests/development-runtime/src/pages/styling/less-plain.less
new file mode 100644
index 0000000000000..e620a12474a1f
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/styling/less-plain.less
@@ -0,0 +1,5 @@
+@color: red;
+
+.plain-less-test {
+ color: @color;
+}
diff --git a/e2e-tests/development-runtime/src/pages/styling/less.js b/e2e-tests/development-runtime/src/pages/styling/less.js
new file mode 100644
index 0000000000000..efd1c847d99cd
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/styling/less.js
@@ -0,0 +1,19 @@
+import * as React from "react"
+import "./less-plain.less"
+import { componentClassName } from "./less.module.less"
+
+export default function PlainCss() {
+ return (
+
+ )
+}
diff --git a/e2e-tests/development-runtime/src/pages/styling/less.module.less b/e2e-tests/development-runtime/src/pages/styling/less.module.less
new file mode 100644
index 0000000000000..2d3fd7e203382
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/styling/less.module.less
@@ -0,0 +1,5 @@
+@color: green;
+
+.componentClassName {
+ color: @color;
+}
diff --git a/e2e-tests/development-runtime/src/pages/styling/sass-plain.scss b/e2e-tests/development-runtime/src/pages/styling/sass-plain.scss
new file mode 100644
index 0000000000000..719011e32587d
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/styling/sass-plain.scss
@@ -0,0 +1,5 @@
+$color: red;
+
+.plain-sass-test {
+ color: $color;
+}
diff --git a/e2e-tests/development-runtime/src/pages/styling/sass.js b/e2e-tests/development-runtime/src/pages/styling/sass.js
new file mode 100644
index 0000000000000..f3da3d7eec263
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/styling/sass.js
@@ -0,0 +1,19 @@
+import * as React from "react"
+import "./sass-plain.scss"
+import { componentClassName } from "./sass.module.scss"
+
+export default function PlainCss() {
+ return (
+
+ )
+}
diff --git a/e2e-tests/development-runtime/src/pages/styling/sass.module.scss b/e2e-tests/development-runtime/src/pages/styling/sass.module.scss
new file mode 100644
index 0000000000000..7af2e8c75b5ce
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/styling/sass.module.scss
@@ -0,0 +1,5 @@
+$color: green;
+
+.componentClassName {
+ color: $color;
+}
diff --git a/e2e-tests/development-runtime/src/pages/styling/stylus-plain.styl b/e2e-tests/development-runtime/src/pages/styling/stylus-plain.styl
new file mode 100644
index 0000000000000..6c5aed67337bb
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/styling/stylus-plain.styl
@@ -0,0 +1,5 @@
+color = red
+
+.plain-stylus-test {
+ color color
+}
diff --git a/e2e-tests/development-runtime/src/pages/styling/stylus.js b/e2e-tests/development-runtime/src/pages/styling/stylus.js
new file mode 100644
index 0000000000000..75da2bddd1fd7
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/styling/stylus.js
@@ -0,0 +1,19 @@
+import * as React from "react"
+import "./stylus-plain.styl"
+import { componentClassName } from "./stylus.module.styl"
+
+export default function PlainCss() {
+ return (
+
+ )
+}
diff --git a/e2e-tests/development-runtime/src/pages/styling/stylus.module.styl b/e2e-tests/development-runtime/src/pages/styling/stylus.module.styl
new file mode 100644
index 0000000000000..78ffbdb9ff9ec
--- /dev/null
+++ b/e2e-tests/development-runtime/src/pages/styling/stylus.module.styl
@@ -0,0 +1,5 @@
+color = green
+
+.componentClassName {
+ color color
+}
diff --git a/e2e-tests/mdx/cypress/integration/html-field.js b/e2e-tests/mdx/cypress/integration/html-field.js
new file mode 100644
index 0000000000000..c39a83d4791e9
--- /dev/null
+++ b/e2e-tests/mdx/cypress/integration/html-field.js
@@ -0,0 +1,7 @@
+it(`generates content for html field correctly`, () => {
+ cy.request("/html-queried-like-feed-plugin.json").should(response => {
+ expect(response.body.data.mdx.html).to.include(
+ `Just to test html field used usually for rss feed generation`
+ )
+ })
+})
diff --git a/e2e-tests/mdx/gatsby-node.js b/e2e-tests/mdx/gatsby-node.js
new file mode 100644
index 0000000000000..eceaaff1a0d20
--- /dev/null
+++ b/e2e-tests/mdx/gatsby-node.js
@@ -0,0 +1,18 @@
+const fs = require(`fs-extra`)
+const path = require(`path`)
+
+exports.onPostBuild = async ({ graphql }) => {
+ const results = await graphql(`
+ {
+ mdx(slug: { eq: "html" }) {
+ html
+ }
+ }
+ `)
+
+ await fs.outputJSON(
+ path.join(__dirname, `public`, `html-queried-like-feed-plugin.json`),
+ results,
+ { spaces: 2 }
+ )
+}
diff --git a/e2e-tests/mdx/package.json b/e2e-tests/mdx/package.json
index 7df2170e3f8fe..fde0c84ad8827 100644
--- a/e2e-tests/mdx/package.json
+++ b/e2e-tests/mdx/package.json
@@ -6,11 +6,12 @@
"@mdx-js/mdx": "^1.6.6",
"@mdx-js/react": "^1.6.6",
"cypress": "^3.1.0",
- "gatsby": "^2.0.118",
- "gatsby-plugin-mdx": "^1.2.19",
- "gatsby-source-filesystem": "^2.3.14",
- "react": "^16.9.0",
- "react-dom": "^16.9.0",
+ "fs-extra": "^8.1.0",
+ "gatsby": "^3.0.0",
+ "gatsby-plugin-mdx": "^2.0.0",
+ "gatsby-source-filesystem": "^3.0.0",
+ "react": "^17.0.0",
+ "react-dom": "^17.0.0",
"theme-ui": "^0.3.1"
},
"keywords": [
@@ -34,4 +35,4 @@
"prettier": "2.0.4",
"start-server-and-test": "^1.7.1"
}
-}
\ No newline at end of file
+}
diff --git a/e2e-tests/mdx/src/pages/html.mdx b/e2e-tests/mdx/src/pages/html.mdx
new file mode 100644
index 0000000000000..765e9e852de81
--- /dev/null
+++ b/e2e-tests/mdx/src/pages/html.mdx
@@ -0,0 +1,7 @@
+import { Message } from "theme-ui"
+
+Just to test html field used usually for rss feed generation. Please don't edit.
+
+
+
+Just testing
diff --git a/e2e-tests/production-runtime/cypress/integration/styling/less.js b/e2e-tests/production-runtime/cypress/integration/styling/less.js
new file mode 100644
index 0000000000000..1ad6fbf34305d
--- /dev/null
+++ b/e2e-tests/production-runtime/cypress/integration/styling/less.js
@@ -0,0 +1,17 @@
+describe(`styling: less`, () => {
+ it(`initial styling is correct`, () => {
+ cy.visit(`/styling/less`).waitForRouteChange()
+
+ cy.getTestElement(`less-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(255, 0, 0)`
+ )
+
+ cy.getTestElement(`less-module-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 128, 0)`
+ )
+ })
+})
diff --git a/e2e-tests/production-runtime/cypress/integration/styling/sass.js b/e2e-tests/production-runtime/cypress/integration/styling/sass.js
new file mode 100644
index 0000000000000..bea63ec5412b2
--- /dev/null
+++ b/e2e-tests/production-runtime/cypress/integration/styling/sass.js
@@ -0,0 +1,17 @@
+describe(`styling: sass`, () => {
+ it(`initial styling is correct`, () => {
+ cy.visit(`/styling/sass`).waitForRouteChange()
+
+ cy.getTestElement(`sass-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(255, 0, 0)`
+ )
+
+ cy.getTestElement(`sass-module-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 128, 0)`
+ )
+ })
+})
diff --git a/e2e-tests/production-runtime/cypress/integration/styling/stylus.js b/e2e-tests/production-runtime/cypress/integration/styling/stylus.js
new file mode 100644
index 0000000000000..b400b83a3106f
--- /dev/null
+++ b/e2e-tests/production-runtime/cypress/integration/styling/stylus.js
@@ -0,0 +1,17 @@
+describe(`stylineg: stylus`, () => {
+ it(`initial styling is correct`, () => {
+ cy.visit(`/styling/stylus`).waitForRouteChange()
+
+ cy.getTestElement(`stylus-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(255, 0, 0)`
+ )
+
+ cy.getTestElement(`stylus-module-styled-element`).should(
+ `have.css`,
+ `color`,
+ `rgb(0, 128, 0)`
+ )
+ })
+})
diff --git a/e2e-tests/production-runtime/gatsby-config.js b/e2e-tests/production-runtime/gatsby-config.js
index ba3cbf610d6fa..1fddea9d12bba 100644
--- a/e2e-tests/production-runtime/gatsby-config.js
+++ b/e2e-tests/production-runtime/gatsby-config.js
@@ -21,6 +21,9 @@ module.exports = {
},
`gatsby-plugin-local-worker`,
`gatsby-plugin-image`,
- `gatsby-plugin-sharp`
+ `gatsby-plugin-sharp`,
+ `gatsby-plugin-sass`,
+ `gatsby-plugin-less`,
+ `gatsby-plugin-stylus`,
].concat(process.env.TEST_PLUGIN_OFFLINE ? [`gatsby-plugin-offline`] : []),
}
diff --git a/e2e-tests/production-runtime/package.json b/e2e-tests/production-runtime/package.json
index 8bc4bbaec3ee1..c0c165cb770fb 100644
--- a/e2e-tests/production-runtime/package.json
+++ b/e2e-tests/production-runtime/package.json
@@ -7,15 +7,19 @@
"cypress": "^6.5.0",
"gatsby": "^3.0.0-next.6",
"gatsby-plugin-image": "^1.0.0-next.5",
+ "gatsby-plugin-less": "^5.1.0-next.2",
"gatsby-plugin-manifest": "^3.0.0-next.0",
"gatsby-plugin-offline": "^4.0.0-next.1",
"gatsby-plugin-react-helmet": "^4.0.0-next.0",
+ "gatsby-plugin-sass": "^4.1.0-next.2",
"gatsby-plugin-sharp": "^3.0.0-next.5",
+ "gatsby-plugin-stylus": "^3.1.0-next.2",
"gatsby-seo": "^0.1.0",
"glob": "^7.1.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.0",
+ "sass": "^1.32.8",
"typeface-merriweather": "^1.1.13"
},
"keywords": [
@@ -52,4 +56,4 @@
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
-}
\ No newline at end of file
+}
diff --git a/e2e-tests/production-runtime/src/pages/styling/less-plain.less b/e2e-tests/production-runtime/src/pages/styling/less-plain.less
new file mode 100644
index 0000000000000..e620a12474a1f
--- /dev/null
+++ b/e2e-tests/production-runtime/src/pages/styling/less-plain.less
@@ -0,0 +1,5 @@
+@color: red;
+
+.plain-less-test {
+ color: @color;
+}
diff --git a/e2e-tests/production-runtime/src/pages/styling/less.js b/e2e-tests/production-runtime/src/pages/styling/less.js
new file mode 100644
index 0000000000000..efd1c847d99cd
--- /dev/null
+++ b/e2e-tests/production-runtime/src/pages/styling/less.js
@@ -0,0 +1,19 @@
+import * as React from "react"
+import "./less-plain.less"
+import { componentClassName } from "./less.module.less"
+
+export default function PlainCss() {
+ return (
+
+ )
+}
diff --git a/e2e-tests/production-runtime/src/pages/styling/less.module.less b/e2e-tests/production-runtime/src/pages/styling/less.module.less
new file mode 100644
index 0000000000000..2d3fd7e203382
--- /dev/null
+++ b/e2e-tests/production-runtime/src/pages/styling/less.module.less
@@ -0,0 +1,5 @@
+@color: green;
+
+.componentClassName {
+ color: @color;
+}
diff --git a/e2e-tests/production-runtime/src/pages/styling/sass-plain.scss b/e2e-tests/production-runtime/src/pages/styling/sass-plain.scss
new file mode 100644
index 0000000000000..719011e32587d
--- /dev/null
+++ b/e2e-tests/production-runtime/src/pages/styling/sass-plain.scss
@@ -0,0 +1,5 @@
+$color: red;
+
+.plain-sass-test {
+ color: $color;
+}
diff --git a/e2e-tests/production-runtime/src/pages/styling/sass.js b/e2e-tests/production-runtime/src/pages/styling/sass.js
new file mode 100644
index 0000000000000..f3da3d7eec263
--- /dev/null
+++ b/e2e-tests/production-runtime/src/pages/styling/sass.js
@@ -0,0 +1,19 @@
+import * as React from "react"
+import "./sass-plain.scss"
+import { componentClassName } from "./sass.module.scss"
+
+export default function PlainCss() {
+ return (
+
+ )
+}
diff --git a/e2e-tests/production-runtime/src/pages/styling/sass.module.scss b/e2e-tests/production-runtime/src/pages/styling/sass.module.scss
new file mode 100644
index 0000000000000..7af2e8c75b5ce
--- /dev/null
+++ b/e2e-tests/production-runtime/src/pages/styling/sass.module.scss
@@ -0,0 +1,5 @@
+$color: green;
+
+.componentClassName {
+ color: $color;
+}
diff --git a/e2e-tests/production-runtime/src/pages/styling/stylus-plain.styl b/e2e-tests/production-runtime/src/pages/styling/stylus-plain.styl
new file mode 100644
index 0000000000000..6c5aed67337bb
--- /dev/null
+++ b/e2e-tests/production-runtime/src/pages/styling/stylus-plain.styl
@@ -0,0 +1,5 @@
+color = red
+
+.plain-stylus-test {
+ color color
+}
diff --git a/e2e-tests/production-runtime/src/pages/styling/stylus.js b/e2e-tests/production-runtime/src/pages/styling/stylus.js
new file mode 100644
index 0000000000000..75da2bddd1fd7
--- /dev/null
+++ b/e2e-tests/production-runtime/src/pages/styling/stylus.js
@@ -0,0 +1,19 @@
+import * as React from "react"
+import "./stylus-plain.styl"
+import { componentClassName } from "./stylus.module.styl"
+
+export default function PlainCss() {
+ return (
+
+ )
+}
diff --git a/e2e-tests/production-runtime/src/pages/styling/stylus.module.styl b/e2e-tests/production-runtime/src/pages/styling/stylus.module.styl
new file mode 100644
index 0000000000000..78ffbdb9ff9ec
--- /dev/null
+++ b/e2e-tests/production-runtime/src/pages/styling/stylus.module.styl
@@ -0,0 +1,5 @@
+color = green
+
+.componentClassName {
+ color color
+}
diff --git a/package.json b/package.json
index c6fe66f59b080..ccc4daa6d8fc7 100644
--- a/package.json
+++ b/package.json
@@ -33,7 +33,7 @@
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"cross-env": "^7.0.3",
- "danger": "^10.6.1",
+ "danger": "^10.6.3",
"date-fns": "^1.30.1",
"dictionary-en": "^3.1.0",
"eslint": "^7.21.0",
@@ -58,7 +58,7 @@
"joi": "^14.3.1",
"js-yaml": "^3.14.1",
"lerna": "^3.22.1",
- "lint-staged": "^10.5.3",
+ "lint-staged": "^10.5.4",
"markdown-magic": "^0.2.1",
"npm-packlist": "^2.1.4",
"npm-run-all": "4.1.5",
diff --git a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md
index 48e8c155fde5d..da0e7c6521e91 100644
--- a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md
+++ b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-plugin-remove-graphql-queries@3.1.0-next.1...babel-plugin-remove-graphql-queries@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package babel-plugin-remove-graphql-queries
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/babel-plugin-remove-graphql-queries@3.1.0-next.0...babel-plugin-remove-graphql-queries@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package babel-plugin-remove-graphql-queries
diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json
index 57e346f29de26..59fb10597e7c7 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Jason Quense ",
"repository": {
"type": "git",
@@ -11,9 +11,9 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-core-utils": "^2.1.0-next.1"
+ "gatsby-core-utils": "^2.2.0-next.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0",
diff --git a/packages/babel-preset-gatsby-package/CHANGELOG.md b/packages/babel-preset-gatsby-package/CHANGELOG.md
index bc7663897b4c7..0dfd75372ad0e 100644
--- a/packages/babel-preset-gatsby-package/CHANGELOG.md
+++ b/packages/babel-preset-gatsby-package/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby-package@1.1.0-next.1...babel-preset-gatsby-package@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package babel-preset-gatsby-package
+
# [1.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby-package@1.1.0-next.0...babel-preset-gatsby-package@1.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package babel-preset-gatsby-package
diff --git a/packages/babel-preset-gatsby-package/package.json b/packages/babel-preset-gatsby-package/package.json
index 7c4b46131d1aa..2bfcf4b65f9da 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": "1.1.0-next.1",
+ "version": "1.2.0-next.0",
"author": "Philipp Spiess ",
"repository": {
"type": "git",
diff --git a/packages/babel-preset-gatsby/CHANGELOG.md b/packages/babel-preset-gatsby/CHANGELOG.md
index 7cca71dbc6723..55f932415ca24 100644
--- a/packages/babel-preset-gatsby/CHANGELOG.md
+++ b/packages/babel-preset-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.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby@1.1.0-next.2...babel-preset-gatsby@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package babel-preset-gatsby
+
+# [1.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby@1.1.0-next.1...babel-preset-gatsby@1.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package babel-preset-gatsby
+
# [1.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby@1.1.0-next.0...babel-preset-gatsby@1.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package babel-preset-gatsby
diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json
index 9f5a57f65eaa1..c0fade8279942 100644
--- a/packages/babel-preset-gatsby/package.json
+++ b/packages/babel-preset-gatsby/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-preset-gatsby",
- "version": "1.1.0-next.1",
+ "version": "1.2.0-next.0",
"author": "Philipp Spiess ",
"repository": {
"type": "git",
@@ -22,8 +22,8 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^2.1.0-next.1",
- "gatsby-legacy-polyfills": "^1.1.0-next.1"
+ "gatsby-core-utils": "^2.2.0-next.0",
+ "gatsby-legacy-polyfills": "^1.2.0-next.0"
},
"peerDependencies": {
"@babel/core": "^7.11.6",
@@ -38,7 +38,7 @@
},
"devDependencies": {
"@babel/cli": "^7.12.1",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 4fe3def47f506..2cfc60cb563cd 100644
--- a/packages/create-gatsby/CHANGELOG.md
+++ b/packages/create-gatsby/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.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/create-gatsby@1.1.0-next.3...create-gatsby@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package create-gatsby
+
+# [1.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/create-gatsby@1.1.0-next.2...create-gatsby@1.1.0-next.3) (2021-03-10)
+
+### Bug Fixes
+
+- **create-gatsby:** Use legacy peer deps ([#29856](https://github.com/gatsbyjs/gatsby/issues/29856)) ([a92b276](https://github.com/gatsbyjs/gatsby/commit/a92b27683e53941bb41eff0a9747961f842c210e))
+
# [1.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/create-gatsby@1.1.0-next.1...create-gatsby@1.1.0-next.2) (2021-02-28)
### Features
diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json
index 062fe680184d4..caec6d6baad30 100644
--- a/packages/create-gatsby/package.json
+++ b/packages/create-gatsby/package.json
@@ -1,6 +1,6 @@
{
"name": "create-gatsby",
- "version": "1.1.0-next.2",
+ "version": "1.2.0-next.0",
"main": "lib/index.js",
"bin": "cli.js",
"license": "MIT",
@@ -27,7 +27,7 @@
"eslint": "^7.18.0",
"execa": "^4.1.0",
"fs-extra": "^9.0.1",
- "gatsby-plugin-utils": "^1.1.0-next.1",
+ "gatsby-plugin-utils": "^1.2.0-next.0",
"joi": "^17.2.1",
"microbundle": "^0.13.0",
"node-fetch": "^2.6.1",
diff --git a/packages/create-gatsby/tsconfig.json b/packages/create-gatsby/tsconfig.json
index 711af0cabea91..3301f1fe1e1eb 100644
--- a/packages/create-gatsby/tsconfig.json
+++ b/packages/create-gatsby/tsconfig.json
@@ -47,7 +47,8 @@
// "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
"esModuleInterop": true,
- "resolveJsonModule": true
+ "resolveJsonModule": true,
+ "skipLibCheck": true
},
"include": ["src/**/*.ts", "src/**/*.json", "src/**/*.js"],
"exclude": ["**/__tests__/**/*"]
diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md
index 1b997b0e14d3e..ecccc28d2e8b9 100644
--- a/packages/gatsby-admin/CHANGELOG.md
+++ b/packages/gatsby-admin/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.
+# [0.12.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-admin@0.11.0-next.4...gatsby-admin@0.12.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-admin
+
+# [0.11.0-next.4](https://github.com/gatsbyjs/gatsby/compare/gatsby-admin@0.11.0-next.3...gatsby-admin@0.11.0-next.4) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [0.11.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-admin@0.11.0-next.2...gatsby-admin@0.11.0-next.3) (2021-02-28)
**Note:** Version bump only for package gatsby-admin
diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json
index 6086f44fd32c4..a5049c013d75f 100644
--- a/packages/gatsby-admin/package.json
+++ b/packages/gatsby-admin/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-admin",
- "version": "0.11.0-next.3",
+ "version": "0.12.0-next.0",
"main": "index.js",
"author": "Max Stoiber",
"license": "MIT",
@@ -20,11 +20,11 @@
"@typescript-eslint/parser": "^4.14.2",
"csstype": "^2.6.14",
"formik": "^2.2.6",
- "gatsby": "^3.1.0-next.3",
+ "gatsby": "^3.2.0-next.0",
"gatsby-interface": "^0.0.244",
- "gatsby-plugin-typescript": "^3.1.0-next.1",
+ "gatsby-plugin-typescript": "^3.2.0-next.0",
"gatsby-plugin-webfonts": "^1.1.4",
- "gatsby-source-graphql": "^3.1.0-next.1",
+ "gatsby-source-graphql": "^3.2.0-next.0",
"lodash-es": "^4.17.21",
"ncp": "^2.0.0",
"nodemon": "^2.0.7",
diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md
index 5772c9ad03910..a576a1be7ad26 100644
--- a/packages/gatsby-cli/CHANGELOG.md
+++ b/packages/gatsby-cli/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@3.1.0-next.3...gatsby-cli@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-cli
+
+# [3.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@3.1.0-next.2...gatsby-cli@3.1.0-next.3) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@3.1.0-next.1...gatsby-cli@3.1.0-next.2) (2021-02-28)
**Note:** Version bump only for package gatsby-cli
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index 98308dc906a0d..55cfd501eb720 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": "3.1.0-next.2",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bin": {
"gatsby": "cli.js"
@@ -18,14 +18,14 @@
"common-tags": "^1.8.0",
"configstore": "^5.0.1",
"convert-hrtime": "^3.0.0",
- "create-gatsby": "^1.1.0-next.2",
+ "create-gatsby": "^1.2.0-next.0",
"envinfo": "^7.7.3",
"execa": "^3.4.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^2.1.0-next.1",
- "gatsby-recipes": "^0.12.0-next.1",
- "gatsby-telemetry": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
+ "gatsby-recipes": "^0.13.0-next.0",
+ "gatsby-telemetry": "^2.2.0-next.0",
"hosted-git-info": "^3.0.6",
"is-valid-path": "^0.1.1",
"joi": "^17.4.0",
@@ -59,7 +59,7 @@
"@rollup/plugin-replace": "^2.3.3",
"@types/hosted-git-info": "^3.0.1",
"@types/yargs": "^15.0.8",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"ink": "^3.0.8",
"ink-spinner": "^4.0.1",
@@ -101,4 +101,4 @@
"engines": {
"node": ">=12.13.0"
}
-}
\ No newline at end of file
+}
diff --git a/packages/gatsby-codemods/CHANGELOG.md b/packages/gatsby-codemods/CHANGELOG.md
index 956651ba6a9c5..a72cad71f4536 100644
--- a/packages/gatsby-codemods/CHANGELOG.md
+++ b/packages/gatsby-codemods/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-codemods@2.1.0-next.2...gatsby-codemods@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-codemods
+
+# [2.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-codemods@2.1.0-next.1...gatsby-codemods@2.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-codemods
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-codemods@2.1.0-next.0...gatsby-codemods@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-codemods
diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json
index a9b618e6f24f6..34183363c4ce1 100644
--- a/packages/gatsby-codemods/package.json
+++ b/packages/gatsby-codemods/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-codemods",
- "version": "2.1.0-next.1",
+ "version": "2.2.0-next.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.12.1",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"engines": {
diff --git a/packages/gatsby-core-utils/CHANGELOG.md b/packages/gatsby-core-utils/CHANGELOG.md
index 4d61f0304c03c..79a92ae269930 100644
--- a/packages/gatsby-core-utils/CHANGELOG.md
+++ b/packages/gatsby-core-utils/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-core-utils@2.1.0-next.1...gatsby-core-utils@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-core-utils
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-core-utils@2.1.0-next.0...gatsby-core-utils@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-core-utils
diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json
index 9620e7dec7d99..cd3f2dfa313b4 100644
--- a/packages/gatsby-core-utils/package.json
+++ b/packages/gatsby-core-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-core-utils",
- "version": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"description": "A collection of gatsby utils used in different gatsby packages",
"keywords": [
"gatsby",
@@ -42,7 +42,7 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@types/ci-info": "2.0.0",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"typescript": "^4.1.5"
},
diff --git a/packages/gatsby-cypress/CHANGELOG.md b/packages/gatsby-cypress/CHANGELOG.md
index 3b7d73fc97a50..3e39b322b1abd 100644
--- a/packages/gatsby-cypress/CHANGELOG.md
+++ b/packages/gatsby-cypress/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.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-cypress@1.1.0-next.2...gatsby-cypress@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-cypress
+
+# [1.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-cypress@1.1.0-next.1...gatsby-cypress@1.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-cypress
+
# [1.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-cypress@1.1.0-next.0...gatsby-cypress@1.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-cypress
diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json
index 4342a3cf6133f..fac0ad55232b4 100644
--- a/packages/gatsby-cypress/package.json
+++ b/packages/gatsby-cypress/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-cypress",
- "version": "1.1.0-next.1",
+ "version": "1.2.0-next.0",
"description": "Cypress tools for Gatsby projects",
"main": "index.js",
"repository": {
@@ -20,7 +20,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-design-tokens/CHANGELOG.md b/packages/gatsby-design-tokens/CHANGELOG.md
index 733829c1dc83e..4042b4a26d584 100644
--- a/packages/gatsby-design-tokens/CHANGELOG.md
+++ b/packages/gatsby-design-tokens/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-design-tokens@3.1.0-next.2...gatsby-design-tokens@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-design-tokens
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-design-tokens@3.1.0-next.1...gatsby-design-tokens@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-design-tokens
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-design-tokens@3.1.0-next.0...gatsby-design-tokens@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-design-tokens
diff --git a/packages/gatsby-design-tokens/package.json b/packages/gatsby-design-tokens/package.json
index 672efa96af21d..c369346536a4c 100644
--- a/packages/gatsby-design-tokens/package.json
+++ b/packages/gatsby-design-tokens/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-design-tokens",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.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 ab36a52f0ae3a..94342367e1fb9 100644
--- a/packages/gatsby-dev-cli/CHANGELOG.md
+++ b/packages/gatsby-dev-cli/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-dev-cli@3.1.0-next.2...gatsby-dev-cli@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-dev-cli
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-dev-cli@3.1.0-next.1...gatsby-dev-cli@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-dev-cli@3.1.0-next.0...gatsby-dev-cli@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-dev-cli
diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json
index 8dac405940802..f6d68c4ebcc2a 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bin": {
"gatsby-dev": "./dist/index.js"
@@ -27,7 +27,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 f6d90890ec902..f661e3417d5b3 100644
--- a/packages/gatsby-graphiql-explorer/CHANGELOG.md
+++ b/packages/gatsby-graphiql-explorer/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.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-graphiql-explorer@1.1.0-next.2...gatsby-graphiql-explorer@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-graphiql-explorer
+
+# [1.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-graphiql-explorer@1.1.0-next.1...gatsby-graphiql-explorer@1.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-graphiql-explorer
+
# [1.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-graphiql-explorer@1.1.0-next.0...gatsby-graphiql-explorer@1.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-graphiql-explorer
diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json
index 70c7992e63a62..6e4acfe856e55 100644
--- a/packages/gatsby-graphiql-explorer/package.json
+++ b/packages/gatsby-graphiql-explorer/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-graphiql-explorer",
- "version": "1.1.0-next.1",
+ "version": "1.2.0-next.0",
"description": "GraphiQL IDE with custom features for Gatsby users",
"main": "index.js",
"scripts": {
@@ -38,7 +38,7 @@
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-loader": "^8.2.2",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"core-js": "^3.8.1",
"cross-env": "^7.0.3",
"css-loader": "^1.0.1",
diff --git a/packages/gatsby-image/CHANGELOG.md b/packages/gatsby-image/CHANGELOG.md
index e774e0ff9bc8b..06b204a091da8 100644
--- a/packages/gatsby-image/CHANGELOG.md
+++ b/packages/gatsby-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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-image@3.1.0-next.2...gatsby-image@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-image
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-image@3.1.0-next.1...gatsby-image@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-image
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-image@3.1.0-next.0...gatsby-image@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-image
diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json
index cff90d368799d..981f516938f71 100644
--- a/packages/gatsby-image/package.json
+++ b/packages/gatsby-image/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-image",
"description": "Lazy-loading React image component with optional support for the blur-up effect.",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@testing-library/react": "^9.5.0",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"jest-matchmedia-mock": "^1.1.0"
},
diff --git a/packages/gatsby-legacy-polyfills/CHANGELOG.md b/packages/gatsby-legacy-polyfills/CHANGELOG.md
index d55beaab1074a..83bb5b7fe2b28 100644
--- a/packages/gatsby-legacy-polyfills/CHANGELOG.md
+++ b/packages/gatsby-legacy-polyfills/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.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-legacy-polyfills@1.1.0-next.2...gatsby-legacy-polyfills@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-legacy-polyfills
+
+# [1.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-legacy-polyfills@1.1.0-next.1...gatsby-legacy-polyfills@1.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-legacy-polyfills
+
# [1.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-legacy-polyfills@1.1.0-next.0...gatsby-legacy-polyfills@1.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-legacy-polyfills
diff --git a/packages/gatsby-legacy-polyfills/package.json b/packages/gatsby-legacy-polyfills/package.json
index d74a0c7ddcade..103846e5edece 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": "1.1.0-next.1",
+ "version": "1.2.0-next.0",
"main": "dist/polyfills.js",
"author": "Ward Peeters ",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-legacy-polyfills#readme",
@@ -44,4 +44,4 @@
"url-polyfill": "^1.1.12",
"whatwg-fetch": "^3.4.1"
}
-}
\ No newline at end of file
+}
diff --git a/packages/gatsby-link/CHANGELOG.md b/packages/gatsby-link/CHANGELOG.md
index 60949f32babe4..34924b02b6c41 100644
--- a/packages/gatsby-link/CHANGELOG.md
+++ b/packages/gatsby-link/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@3.1.0-next.3...gatsby-link@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-link
+
+# [3.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@3.1.0-next.2...gatsby-link@3.1.0-next.3) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-link
+
# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@3.1.0-next.1...gatsby-link@3.1.0-next.2) (2021-02-26)
### Bug Fixes
diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json
index 785c9f9fb76cc..1e8da843baf43 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": "3.1.0-next.2",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@testing-library/react": "^9.5.0",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-page-utils/CHANGELOG.md b/packages/gatsby-page-utils/CHANGELOG.md
index 8fcfdaa272c2b..7f8afc2aee372 100644
--- a/packages/gatsby-page-utils/CHANGELOG.md
+++ b/packages/gatsby-page-utils/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.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-page-utils@1.1.0-next.2...gatsby-page-utils@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-page-utils
+
+# [1.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-page-utils@1.1.0-next.1...gatsby-page-utils@1.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [1.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-page-utils@1.1.0-next.0...gatsby-page-utils@1.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-page-utils
diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json
index 2dae1cc4b03dc..67a76c51a9d1f 100644
--- a/packages/gatsby-page-utils/package.json
+++ b/packages/gatsby-page-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-page-utils",
- "version": "1.1.0-next.1",
+ "version": "1.2.0-next.0",
"description": "Gatsby library that helps creating pages",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -26,7 +26,7 @@
"bluebird": "^3.7.2",
"chokidar": "^3.5.1",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
"glob": "^7.1.6",
"lodash": "^4.17.21",
"micromatch": "^4.0.2"
@@ -35,7 +35,7 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@types/micromatch": "^4.0.1",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.1.5"
diff --git a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md
index 7773025c3253d..6c6f323835158 100644
--- a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md
+++ b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-benchmark-reporting@1.1.0-next.1...gatsby-plugin-benchmark-reporting@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-benchmark-reporting
+
# [1.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-benchmark-reporting@1.1.0-next.0...gatsby-plugin-benchmark-reporting@1.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-benchmark-reporting
diff --git a/packages/gatsby-plugin-benchmark-reporting/package.json b/packages/gatsby-plugin-benchmark-reporting/package.json
index e652e8f2c58d4..df1ec08bac438 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": "1.1.0-next.1",
+ "version": "1.2.0-next.0",
"author": "Peter van der Zee ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1"
+ "babel-preset-gatsby-package": "^1.2.0-next.0"
},
"dependencies": {
"fast-glob": "^3.2.5",
diff --git a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md
index a888047c50787..120f0ef3d5570 100644
--- a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md
+++ b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-canonical-urls@3.1.0-next.1...gatsby-plugin-canonical-urls@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-canonical-urls
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-canonical-urls@3.1.0-next.0...gatsby-plugin-canonical-urls@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-canonical-urls
diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json
index 2745e9316b481..1b9b39b303875 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 555696f222f04..3216116deb3e0 100644
--- a/packages/gatsby-plugin-catch-links/CHANGELOG.md
+++ b/packages/gatsby-plugin-catch-links/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-catch-links@3.1.0-next.1...gatsby-plugin-catch-links@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-catch-links
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-catch-links@3.1.0-next.0...gatsby-plugin-catch-links@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-catch-links
diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json
index ecaba23b4c9f1..d8f675c979965 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 884b1d148f577..60974c7a6edf0 100644
--- a/packages/gatsby-plugin-coffeescript/CHANGELOG.md
+++ b/packages/gatsby-plugin-coffeescript/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-coffeescript@3.1.0-next.1...gatsby-plugin-coffeescript@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-coffeescript
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-coffeescript@3.1.0-next.0...gatsby-plugin-coffeescript@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-coffeescript
diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json
index 814bc00669f2e..5303ca7bfe120 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -18,7 +18,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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-create-client-paths/CHANGELOG.md b/packages/gatsby-plugin-create-client-paths/CHANGELOG.md
index 395760b59e7d3..7f49cfc206d62 100644
--- a/packages/gatsby-plugin-create-client-paths/CHANGELOG.md
+++ b/packages/gatsby-plugin-create-client-paths/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-create-client-paths@3.1.0-next.1...gatsby-plugin-create-client-paths@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-create-client-paths
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-create-client-paths@3.1.0-next.0...gatsby-plugin-create-client-paths@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-create-client-paths
diff --git a/packages/gatsby-plugin-create-client-paths/package.json b/packages/gatsby-plugin-create-client-paths/package.json
index 1b47ecfe664cc..3a4df10e6a6f1 100644
--- a/packages/gatsby-plugin-create-client-paths/package.json
+++ b/packages/gatsby-plugin-create-client-paths/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-create-client-paths",
"description": "Gatsby-plugin for creating paths that exist only on the client",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "scott.eckenthal@gmail.com",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-create-client-paths#readme",
diff --git a/packages/gatsby-plugin-cxs/CHANGELOG.md b/packages/gatsby-plugin-cxs/CHANGELOG.md
index 9cda83ac2ac4c..32b1331233d05 100644
--- a/packages/gatsby-plugin-cxs/CHANGELOG.md
+++ b/packages/gatsby-plugin-cxs/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-cxs@3.1.0-next.1...gatsby-plugin-cxs@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-cxs
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-cxs@3.1.0-next.0...gatsby-plugin-cxs@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-cxs
diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json
index 6137c88a0df94..cee705079ba75 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Chen-Tai Hou ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,10 +12,10 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"cxs": "^6.2.0",
- "gatsby-plugin-utils": "^1.1.0-next.1"
+ "gatsby-plugin-utils": "^1.2.0-next.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 fb2bb73b45adf..13ca8bb18e0e4 100644
--- a/packages/gatsby-plugin-emotion/CHANGELOG.md
+++ b/packages/gatsby-plugin-emotion/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.
+# [6.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-emotion@6.1.0-next.2...gatsby-plugin-emotion@6.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-emotion
+
+# [6.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-emotion@6.1.0-next.1...gatsby-plugin-emotion@6.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update minor and patch for gatsby-plugin-emotion ([#29514](https://github.com/gatsbyjs/gatsby/issues/29514)) ([40e54e8](https://github.com/gatsbyjs/gatsby/commit/40e54e8022966bac04a01b12bb16300d9b94484e))
+
# [6.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-emotion@6.1.0-next.0...gatsby-plugin-emotion@6.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-emotion
diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json
index 00f9c18a6d783..26e864b78a14c 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": "6.1.0-next.1",
+ "version": "6.2.0-next.0",
"author": "Tegan Churchill ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 46d240f9ac95b..0ed80797132d2 100644
--- a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md
+++ b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-facebook-analytics@3.1.0-next.1...gatsby-plugin-facebook-analytics@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-facebook-analytics
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-facebook-analytics@3.1.0-next.0...gatsby-plugin-facebook-analytics@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-facebook-analytics
diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json
index 65191b9976424..3556f711e41d2 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Yeison Daza ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 7829f4e2b4c56..6fedddf8c3602 100644
--- a/packages/gatsby-plugin-feed/CHANGELOG.md
+++ b/packages/gatsby-plugin-feed/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-feed@3.1.0-next.2...gatsby-plugin-feed@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-feed
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-feed@3.1.0-next.1...gatsby-plugin-feed@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-plugin-feed
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-feed@3.1.0-next.0...gatsby-plugin-feed@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-feed
diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json
index 7269fee0516c7..416684c9eea14 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": "3.1.0-next.1",
+ "version": "3.2.0-next.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.0",
"fs-extra": "^9.1.0",
- "gatsby-plugin-utils": "^1.1.0-next.1",
+ "gatsby-plugin-utils": "^1.2.0-next.0",
"lodash.merge": "^4.6.2",
"rss": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 3fbb4f863cda8..080b1949e50f7 100644
--- a/packages/gatsby-plugin-flow/CHANGELOG.md
+++ b/packages/gatsby-plugin-flow/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-flow@2.1.0-next.1...gatsby-plugin-flow@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-flow
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-flow@2.1.0-next.0...gatsby-plugin-flow@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-flow
diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json
index 3c81e6401570c..c83306b2ea08a 100644
--- a/packages/gatsby-plugin-flow/package.json
+++ b/packages/gatsby-plugin-flow/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-flow",
- "version": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"description": "Provides drop-in support for Flow by adding @babel/preset-flow.",
"main": "index.js",
"scripts": {
@@ -30,7 +30,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-fullstory/CHANGELOG.md b/packages/gatsby-plugin-fullstory/CHANGELOG.md
index 0b91ce5d303f8..1956f1e5aea62 100644
--- a/packages/gatsby-plugin-fullstory/CHANGELOG.md
+++ b/packages/gatsby-plugin-fullstory/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-fullstory@3.1.0-next.1...gatsby-plugin-fullstory@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-fullstory
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-fullstory@3.1.0-next.0...gatsby-plugin-fullstory@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-fullstory
diff --git a/packages/gatsby-plugin-fullstory/package.json b/packages/gatsby-plugin-fullstory/package.json
index 4169165816cf4..0f1295aecc20d 100644
--- a/packages/gatsby-plugin-fullstory/package.json
+++ b/packages/gatsby-plugin-fullstory/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-fullstory",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"description": "Plugin to add the tracking code for Fullstory.com",
"main": "index.js",
"scripts": {
@@ -29,7 +29,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 a793fbaa9be7e..0182f5fb7fbc6 100644
--- a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md
+++ b/packages/gatsby-plugin-gatsby-cloud/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.
+# [2.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-gatsby-cloud@2.1.0-next.2...gatsby-plugin-gatsby-cloud@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-gatsby-cloud
+
+# [2.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-gatsby-cloud@2.1.0-next.1...gatsby-plugin-gatsby-cloud@2.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-gatsby-cloud@2.1.0-next.0...gatsby-plugin-gatsby-cloud@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-gatsby-cloud
diff --git a/packages/gatsby-plugin-gatsby-cloud/package.json b/packages/gatsby-plugin-gatsby-cloud/package.json
index dbc7ce5a659c2..b31876cb2a4a7 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": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-gatsby-cloud#readme",
diff --git a/packages/gatsby-plugin-glamor/CHANGELOG.md b/packages/gatsby-plugin-glamor/CHANGELOG.md
index 634aceadaa5b1..7a88c4f32b24d 100644
--- a/packages/gatsby-plugin-glamor/CHANGELOG.md
+++ b/packages/gatsby-plugin-glamor/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-glamor@3.1.0-next.2...gatsby-plugin-glamor@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-glamor
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-glamor@3.1.0-next.1...gatsby-plugin-glamor@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-plugin-glamor
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-glamor@3.1.0-next.0...gatsby-plugin-glamor@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-glamor
diff --git a/packages/gatsby-plugin-glamor/package.json b/packages/gatsby-plugin-glamor/package.json
index dd0a9216e627e..682bf6aed97ff 100644
--- a/packages/gatsby-plugin-glamor/package.json
+++ b/packages/gatsby-plugin-glamor/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-glamor",
"description": "Gatsby plugin to add support for Glamor",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,9 +12,9 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^1.1.0-next.1"
+ "gatsby-plugin-utils": "^1.2.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-google-analytics/CHANGELOG.md b/packages/gatsby-plugin-google-analytics/CHANGELOG.md
index 16a5527331d40..985307a617834 100644
--- a/packages/gatsby-plugin-google-analytics/CHANGELOG.md
+++ b/packages/gatsby-plugin-google-analytics/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-analytics@3.1.0-next.1...gatsby-plugin-google-analytics@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-google-analytics
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-analytics@3.1.0-next.0...gatsby-plugin-google-analytics@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-google-analytics
diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json
index 85e292b506186..1a4f9ddbd9a94 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@testing-library/react": "^9.5.0",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 1e70436556817..b5849c5623575 100644
--- a/packages/gatsby-plugin-google-gtag/CHANGELOG.md
+++ b/packages/gatsby-plugin-google-gtag/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-gtag@3.1.0-next.1...gatsby-plugin-google-gtag@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-google-gtag
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-gtag@3.1.0-next.0...gatsby-plugin-google-gtag@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-google-gtag
diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json
index 024c6ccdec871..aca0fe3e14727 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Tyler Buchea ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 c0252ea57f3de..dd7bbcb5e9653 100644
--- a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md
+++ b/packages/gatsby-plugin-google-tagmanager/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-tagmanager@3.1.0-next.2...gatsby-plugin-google-tagmanager@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-google-tagmanager
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-tagmanager@3.1.0-next.1...gatsby-plugin-google-tagmanager@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-plugin-google-tagmanager
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-tagmanager@3.1.0-next.0...gatsby-plugin-google-tagmanager@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-google-tagmanager
diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json
index e02fb15c0ecda..4d7559708fd25 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Thijs Koerselman ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,9 +12,9 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^1.1.0-next.1"
+ "gatsby-plugin-utils": "^1.2.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-graphql-config/CHANGELOG.md b/packages/gatsby-plugin-graphql-config/CHANGELOG.md
index ab96494f23c2e..1fe8566f52fb2 100644
--- a/packages/gatsby-plugin-graphql-config/CHANGELOG.md
+++ b/packages/gatsby-plugin-graphql-config/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [0.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-graphql-config@0.10.0-next.1...gatsby-plugin-graphql-config@0.11.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-graphql-config
+
# [0.10.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-graphql-config@0.10.0-next.0...gatsby-plugin-graphql-config@0.10.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-graphql-config
diff --git a/packages/gatsby-plugin-graphql-config/package.json b/packages/gatsby-plugin-graphql-config/package.json
index 75f1c29175ddc..789b527045024 100644
--- a/packages/gatsby-plugin-graphql-config/package.json
+++ b/packages/gatsby-plugin-graphql-config/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-graphql-config",
"description": "Gatsby plugin to write out a graphql-config with develop process endpoint configured",
- "version": "0.10.0-next.1",
+ "version": "0.11.0-next.0",
"author": "Rikki Schulte ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-image/CHANGELOG.md b/packages/gatsby-plugin-image/CHANGELOG.md
index 698475c625dc7..e7f29328942ec 100644
--- a/packages/gatsby-plugin-image/CHANGELOG.md
+++ b/packages/gatsby-plugin-image/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.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-image@1.1.0-next.2...gatsby-plugin-image@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-image
+
+# [1.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-image@1.1.0-next.1...gatsby-plugin-image@1.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **gatsby-plugin-image:** broken documentation links ([#30065](https://github.com/gatsbyjs/gatsby/issues/30065)) ([28956fe](https://github.com/gatsbyjs/gatsby/commit/28956fe50848d571d96350df4047bdb0d44b9b50))
+- **gatsby-plugin-image:** Handle placeholder in plugin toolkit ([#30141](https://github.com/gatsbyjs/gatsby/issues/30141)) ([f851312](https://github.com/gatsbyjs/gatsby/commit/f85131212b8271aa0e7fe93fbd30fafdce7ba01f))
+- **gatsby-plugin-image:** Update peerdeps ([#29880](https://github.com/gatsbyjs/gatsby/issues/29880)) ([d14cdc5](https://github.com/gatsbyjs/gatsby/commit/d14cdc5b7bd9e4b52815ecae15dfaf50674967d5))
+- **gatsby-plugin-image:** Use template from core package ([#29957](https://github.com/gatsbyjs/gatsby/issues/29957)) ([c4ca930](https://github.com/gatsbyjs/gatsby/commit/c4ca9301f56b1ac15bf5219dbb33c661b13bbfcd))
+
+### Features
+
+- **gatsby-plugin-image:** Better error message for missing alt ([#29981](https://github.com/gatsbyjs/gatsby/issues/29981)) ([fe4b329](https://github.com/gatsbyjs/gatsby/commit/fe4b329a68ce6a8f93dbee56073da950861a2723))
+
# [1.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-image@1.1.0-next.0...gatsby-plugin-image@1.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-image
diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json
index c4609ed8c7987..e6b7092d302d2 100644
--- a/packages/gatsby-plugin-image/package.json
+++ b/packages/gatsby-plugin-image/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-image",
- "version": "1.1.0-next.1",
+ "version": "1.2.0-next.0",
"scripts": {
"build": "npm-run-all -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",
@@ -74,12 +74,12 @@
"@babel/parser": "^7.12.5",
"@babel/traverse": "^7.12.5",
"babel-jsx-utils": "^1.0.1",
- "babel-plugin-remove-graphql-queries": "^3.1.0-next.1",
+ "babel-plugin-remove-graphql-queries": "^3.2.0-next.0",
"camelcase": "^5.3.1",
"chokidar": "^3.5.1",
"common-tags": "^1.8.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
"objectFitPolyfill": "^2.3.0",
"prop-types": "^15.7.2"
},
diff --git a/packages/gatsby-plugin-image/src/__tests__/image-utils.ts b/packages/gatsby-plugin-image/src/__tests__/image-utils.ts
index fbbafac1172c9..0c5782af57efc 100644
--- a/packages/gatsby-plugin-image/src/__tests__/image-utils.ts
+++ b/packages/gatsby-plugin-image/src/__tests__/image-utils.ts
@@ -225,6 +225,16 @@ https://example.com/afile.jpg/1920/1440/image.webp 1920w`)
expect(data.images?.fallback).toBeUndefined()
})
+ it(`includes a placeholder image if a URL is provided`, () => {
+ const data = generateImageData({
+ ...args,
+ placeholderURL: `data:image/jpg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD`,
+ })
+ expect(data.placeholder?.fallback).toEqual(
+ `data:image/jpg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD`
+ )
+ })
+
it(`generates the same output as the input format if output is auto`, () => {
const sourceMetadata = {
width: 800,
diff --git a/packages/gatsby-plugin-image/src/image-utils.ts b/packages/gatsby-plugin-image/src/image-utils.ts
index 477d9e02f543c..d4240ab77b187 100644
--- a/packages/gatsby-plugin-image/src/image-utils.ts
+++ b/packages/gatsby-plugin-image/src/image-utils.ts
@@ -98,9 +98,7 @@ export interface IGatsbyImageHelperArgs {
layout?: Layout
formats?: Array
filename: string
- placeholderURL?:
- | ((args: IGatsbyImageHelperArgs) => string | undefined)
- | string
+ placeholderURL?: string
width?: number
height?: number
sizes?: string
@@ -238,6 +236,7 @@ export function generateImageData(
filename,
reporter = { warn },
backgroundColor,
+ placeholderURL,
} = args
if (!pluginName) {
@@ -342,6 +341,11 @@ export function generateImageData(
layout,
backgroundColor,
}
+
+ if (placeholderURL) {
+ imageProps.placeholder = { fallback: placeholderURL }
+ }
+
switch (layout) {
case `fixed`:
imageProps.width = imageSizes.presentationWidth
diff --git a/packages/gatsby-plugin-jss/CHANGELOG.md b/packages/gatsby-plugin-jss/CHANGELOG.md
index 2c3ec5adfa673..589ccab8c036b 100644
--- a/packages/gatsby-plugin-jss/CHANGELOG.md
+++ b/packages/gatsby-plugin-jss/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-jss@3.1.0-next.1...gatsby-plugin-jss@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-jss
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-jss@3.1.0-next.0...gatsby-plugin-jss@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-jss
diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json
index ee2de3b1a9490..c7b165119d074 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Vladimir Guguiev ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 6f38d2cdb1a39..9930c0f69987f 100644
--- a/packages/gatsby-plugin-layout/CHANGELOG.md
+++ b/packages/gatsby-plugin-layout/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-layout@2.1.0-next.1...gatsby-plugin-layout@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-layout
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-layout@2.1.0-next.0...gatsby-plugin-layout@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-layout
diff --git a/packages/gatsby-plugin-layout/package.json b/packages/gatsby-plugin-layout/package.json
index cce50b3618d12..03b3feaefed81 100644
--- a/packages/gatsby-plugin-layout/package.json
+++ b/packages/gatsby-plugin-layout/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-layout",
- "version": "2.1.0-next.1",
+ "version": "2.2.0-next.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.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-less/CHANGELOG.md b/packages/gatsby-plugin-less/CHANGELOG.md
index 18fb185b318b5..7f63b5e4fe3a2 100644
--- a/packages/gatsby-plugin-less/CHANGELOG.md
+++ b/packages/gatsby-plugin-less/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [5.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-less@5.1.0-next.2...gatsby-plugin-less@5.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-less
+
# [5.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-less@5.1.0-next.1...gatsby-plugin-less@5.1.0-next.2) (2021-02-26)
### Bug Fixes
diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json
index d05d5a1aaf4f8..9780d5e5d9109 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": "5.1.0-next.2",
+ "version": "5.2.0-next.0",
"author": "monastic.panic@gmail.com",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 c1348a714041e..2084f420cbcd3 100644
--- a/packages/gatsby-plugin-lodash/CHANGELOG.md
+++ b/packages/gatsby-plugin-lodash/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-lodash@4.1.0-next.1...gatsby-plugin-lodash@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-lodash
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-lodash@4.1.0-next.0...gatsby-plugin-lodash@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-lodash
diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json
index a992ad7eda81a..e61e88844a798 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": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 085bbf83bd938..f72e65bb66d4d 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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-manifest@3.1.0-next.2...gatsby-plugin-manifest@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-manifest
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-manifest@3.1.0-next.1...gatsby-plugin-manifest@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-plugin-manifest
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-manifest@3.1.0-next.0...gatsby-plugin-manifest@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-manifest
diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json
index eca51f20522ac..2f274da2565fb 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
- "gatsby-core-utils": "^2.1.0-next.1",
- "gatsby-plugin-utils": "^1.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
+ "gatsby-plugin-utils": "^1.2.0-next.0",
"semver": "^7.3.2",
"sharp": "^0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 32757decbc3fb..0c837d2d017e7 100644
--- a/packages/gatsby-plugin-mdx/CHANGELOG.md
+++ b/packages/gatsby-plugin-mdx/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.
+# [2.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-mdx@2.1.0-next.2...gatsby-plugin-mdx@2.2.0-next.0) (2021-03-11)
+
+### Bug Fixes
+
+- **gatsby-plugin-mdx:** fix html field resolver to work with webpack@5 ([#30158](https://github.com/gatsbyjs/gatsby/issues/30158)) ([0a6c6eb](https://github.com/gatsbyjs/gatsby/commit/0a6c6eb40409ac92d30917e00f26a0bc4c9ca9e5))
+
+# [2.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-mdx@2.1.0-next.1...gatsby-plugin-mdx@2.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-mdx@2.1.0-next.0...gatsby-plugin-mdx@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-mdx
diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json
index 94cfb26c702f6..3423edfbe0ea9 100644
--- a/packages/gatsby-plugin-mdx/package.json
+++ b/packages/gatsby-plugin-mdx/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-mdx",
- "version": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"description": "MDX integration for Gatsby",
"main": "index.js",
"license": "MIT",
@@ -35,7 +35,7 @@
"escape-string-regexp": "^1.0.5",
"eval": "^0.1.4",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
"gray-matter": "^4.0.2",
"json5": "^2.1.3",
"loader-utils": "^1.4.0",
@@ -60,7 +60,7 @@
"devDependencies": {
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
- "gatsby-plugin-utils": "^1.1.0-next.1",
+ "gatsby-plugin-utils": "^1.2.0-next.0",
"jest": "^24.9.0",
"js-combinatorics": "^1.4.5",
"react-test-renderer": "^16.13.1"
diff --git a/packages/gatsby-plugin-mdx/utils/render-html.js b/packages/gatsby-plugin-mdx/utils/render-html.js
index c52e616930b74..7c51f7b144369 100644
--- a/packages/gatsby-plugin-mdx/utils/render-html.js
+++ b/packages/gatsby-plugin-mdx/utils/render-html.js
@@ -22,110 +22,23 @@ queue.on(`active`, () => {
)
})
-const findAsset = function (src, compilation, webpackStatsJson) {
- if (!src) {
- const chunkNames = Object.keys(webpackStatsJson.assetsByChunkName)
-
- src = chunkNames[0]
- }
-
- const asset = compilation.assets[src]
-
- if (asset) {
- return asset
- }
-
- let chunkValue = webpackStatsJson.assetsByChunkName[src]
-
- if (!chunkValue) {
- return null
- }
- // Webpack outputs an array for each chunk when using sourcemaps
- if (chunkValue instanceof Array) {
- // Is the main bundle always the first element?
- chunkValue = chunkValue.find(function (filename) {
- return /\.js$/.test(filename)
- })
- }
- return compilation.assets[chunkValue]
-}
-
-let renderMdxBody = undefined
-class MdxHtmlBuilderWebpackPlugin {
- apply(compiler) {
- const self = this
- const afterEmit = (compilation, callback) => {
- // var options = compiler.options;
- /* var stats = compilation.getStats().toJson({
- * hash: true,
- * publicPath: true,
- * assets: true,
- * chunks: false,
- * modules: false,
- * source: false,
- * errorDetails: false,
- * timings: false
- * }); */
- // console.log(Object.keys(compilation.assets));
- const webpackStats = compilation.getStats()
- const webpackStatsJson = webpackStats.toJson()
-
- try {
- const asset = findAsset(self.entry, compilation, webpackStatsJson)
-
- if (asset == null) {
- throw new Error(`Source file not found: "` + self.entry + `"`)
- }
-
- const source = asset.source()
- let render = evaluate(
- source,
- /* filename: */ self.entry,
- /* scope: */ self.globals,
- /* includeGlobals: */ true
- )
-
- if (render.hasOwnProperty(`default`)) {
- render = render[`default`]
- }
-
- if (typeof render !== `function`) {
- throw new Error(
- `Export from '${self.entry}' must be a function that returns a htmlString value.`
- )
- }
- // use function here
- renderMdxBody = render
- callback()
- } catch (err) {
- compilation.errors.push(err.stack)
- callback()
- }
- }
- if (compiler.hooks) {
- const plugin = { name: `MdxHtmlBuilderWebpackPlugin` }
-
- compiler.hooks.afterEmit.tapAsync(plugin, afterEmit)
- } else {
- compiler.plugin(`after-emit`, afterEmit)
- }
- }
-}
-
exports.mdxHTMLLoader = ({ cache, reporter, store }) =>
new DataLoader(
async keys => {
const webpackConfig = cloneDeep(store.getState().webpack)
+ const outputPath = path.join(cache.directory, `webpack`)
// something sets externals, which will cause React to be undefined
webpackConfig.externals = undefined
webpackConfig.entry = require.resolve(`./wrap-root-render-html-entry.js`)
webpackConfig.output = {
filename: `output.js`,
- path: path.join(cache.directory, `webpack`),
+ path: outputPath,
libraryTarget: `commonjs`,
}
webpackConfig.plugins = webpackConfig.plugins || []
- webpackConfig.plugins.push(new MdxHtmlBuilderWebpackPlugin())
+ webpackConfig.externalsPresets = {
+ node: true,
+ }
const compiler = webpack(webpackConfig)
return queue.add(
@@ -151,6 +64,9 @@ exports.mdxHTMLLoader = ({ cache, reporter, store }) =>
reporter.warn(`gatsby-plugin-mdx\n` + info.warnings)
}
+ const renderMdxBody = require(path.join(outputPath, `output.js`))
+ .default
+
resolve(
keys.map(({ body }) =>
renderMdxBody
diff --git a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
index a6036c7da3b34..7eb924ec9d728 100644
--- a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md
+++ b/packages/gatsby-plugin-netlify-cms/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify-cms@5.1.0-next.3...gatsby-plugin-netlify-cms@5.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-netlify-cms
+
+# [5.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify-cms@5.1.0-next.2...gatsby-plugin-netlify-cms@5.1.0-next.3) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-plugin-netlify-cms
+
# [5.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify-cms@5.1.0-next.1...gatsby-plugin-netlify-cms@5.1.0-next.2) (2021-02-26)
### Bug Fixes
diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json
index f05b72fb15c72..228f814afb0f1 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": "5.1.0-next.2",
+ "version": "5.2.0-next.0",
"author": "Shawn Erquhart ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -19,7 +19,7 @@
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0"
diff --git a/packages/gatsby-plugin-netlify/CHANGELOG.md b/packages/gatsby-plugin-netlify/CHANGELOG.md
index 0ef5c97f235d0..2c316aed242c9 100644
--- a/packages/gatsby-plugin-netlify/CHANGELOG.md
+++ b/packages/gatsby-plugin-netlify/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify@3.1.0-next.2...gatsby-plugin-netlify@3.2.0-next.0) (2021-03-11)
+
+### Bug Fixes
+
+- **gatsby-plugin-netlify:** Add an allow list for redirect options ([#30155](https://github.com/gatsbyjs/gatsby/issues/30155)) ([962c4a1](https://github.com/gatsbyjs/gatsby/commit/962c4a1d3d8a5c952ec88957bdc20352bbeb151c))
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify@3.1.0-next.1...gatsby-plugin-netlify@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify@3.1.0-next.0...gatsby-plugin-netlify@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-netlify
diff --git a/packages/gatsby-plugin-netlify/package.json b/packages/gatsby-plugin-netlify/package.json
index ab907921af93d..1b4f84a07468d 100644
--- a/packages/gatsby-plugin-netlify/package.json
+++ b/packages/gatsby-plugin-netlify/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-netlify",
"description": "A Gatsby plugin which generates a _headers file for netlify",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -17,14 +17,14 @@
"fs-extra": "^8.1.0",
"kebab-hash": "^0.1.2",
"lodash": "^4.17.21",
- "webpack-assets-manifest": "^3.1.1"
+ "webpack-assets-manifest": "^5.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^1.1.0-next.1"
+ "gatsby-plugin-utils": "^1.2.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-netlify/src/create-redirects.js b/packages/gatsby-plugin-netlify/src/create-redirects.js
index efaf6f6c75406..816064bfdbcb8 100644
--- a/packages/gatsby-plugin-netlify/src/create-redirects.js
+++ b/packages/gatsby-plugin-netlify/src/create-redirects.js
@@ -12,8 +12,18 @@ export default async function writeRedirectsFile(
const FILE_PATH = publicFolder(`_redirects`)
- // Map redirect data to the format Netlify expects
// https://www.netlify.com/docs/redirects/
+ const NETLIFY_REDIRECT_KEYWORDS_ALLOWLIST = [
+ `query`,
+ `conditions`,
+ `headers`,
+ `signed`,
+ `edge_handler`,
+ `Language`,
+ `Country`,
+ ]
+
+ // Map redirect data to the format Netlify expects
redirects = redirects.map(redirect => {
const {
fromPath,
@@ -43,7 +53,9 @@ export default async function writeRedirectsFile(
`Values should not contain spaces.`
)
} else {
- pieces.push(`${key}=${value}`)
+ if (NETLIFY_REDIRECT_KEYWORDS_ALLOWLIST.includes(key)) {
+ pieces.push(`${key}=${value}`)
+ }
}
}
diff --git a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md
index 49c4d1421a005..396846f11abd5 100644
--- a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md
+++ b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-no-sourcemaps@3.1.0-next.1...gatsby-plugin-no-sourcemaps@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-no-sourcemaps
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-no-sourcemaps@3.1.0-next.0...gatsby-plugin-no-sourcemaps@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-no-sourcemaps
diff --git a/packages/gatsby-plugin-no-sourcemaps/package.json b/packages/gatsby-plugin-no-sourcemaps/package.json
index 54d7d84150e48..326a53e442798 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": "3.1.0-next.1",
+ "version": "3.2.0-next.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 957fc70453c05..f192085591963 100644
--- a/packages/gatsby-plugin-nprogress/CHANGELOG.md
+++ b/packages/gatsby-plugin-nprogress/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-nprogress@3.1.0-next.1...gatsby-plugin-nprogress@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-nprogress
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-nprogress@3.1.0-next.0...gatsby-plugin-nprogress@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-nprogress
diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json
index dd5c1d8b46e5d..b4a3fba9c142a 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 6fe154535de33..e8f158f8a5f79 100644
--- a/packages/gatsby-plugin-offline/CHANGELOG.md
+++ b/packages/gatsby-plugin-offline/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.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-offline@4.1.0-next.2...gatsby-plugin-offline@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-offline
+
+# [4.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-offline@4.1.0-next.1...gatsby-plugin-offline@4.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-offline@4.1.0-next.0...gatsby-plugin-offline@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-offline
diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json
index ebf57f2915641..8bea3a892e5fd 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": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,7 +9,7 @@
"dependencies": {
"@babel/runtime": "^7.12.5",
"cheerio": "^1.0.0-rc.3",
- "gatsby-core-utils": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
"glob": "^7.1.6",
"idb-keyval": "^3.2.0",
"lodash": "^4.17.21",
@@ -18,10 +18,10 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^1.1.0-next.1",
+ "gatsby-plugin-utils": "^1.2.0-next.0",
"rewire": "^5.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 f8eac3f64f14b..e03d19b84eee7 100644
--- a/packages/gatsby-plugin-page-creator/CHANGELOG.md
+++ b/packages/gatsby-plugin-page-creator/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@3.1.0-next.2...gatsby-plugin-page-creator@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-page-creator
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@3.1.0-next.1...gatsby-plugin-page-creator@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@3.1.0-next.0...gatsby-plugin-page-creator@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-page-creator
diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json
index 070d6e7e9232d..ec15da60cd6bd 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"description": "Gatsby plugin that automatically creates pages from React components in specified directories",
"main": "index.js",
"scripts": {
@@ -28,15 +28,15 @@
"@sindresorhus/slugify": "^1.1.0",
"chokidar": "^3.5.1",
"fs-exists-cached": "^1.0.0",
- "gatsby-page-utils": "^1.1.0-next.1",
- "gatsby-telemetry": "^2.1.0-next.1",
+ "gatsby-page-utils": "^1.2.0-next.0",
+ "gatsby-telemetry": "^2.2.0-next.0",
"globby": "^11.0.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-postcss/CHANGELOG.md b/packages/gatsby-plugin-postcss/CHANGELOG.md
index 77f9349305fb5..abd3a0e268615 100644
--- a/packages/gatsby-plugin-postcss/CHANGELOG.md
+++ b/packages/gatsby-plugin-postcss/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-postcss@4.1.0-next.3...gatsby-plugin-postcss@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-postcss
+
+# [4.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-postcss@4.1.0-next.2...gatsby-plugin-postcss@4.1.0-next.3) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-plugin-postcss
+
# [4.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-postcss@4.1.0-next.1...gatsby-plugin-postcss@4.1.0-next.2) (2021-02-26)
### Bug Fixes
diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json
index 2e6dc3e3489bd..bf2737c7feaed 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": "4.1.0-next.2",
+ "version": "4.2.0-next.0",
"author": "Marat Dreizin ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 177fa1ca7c6b8..871ff63e9442d 100644
--- a/packages/gatsby-plugin-preact/CHANGELOG.md
+++ b/packages/gatsby-plugin-preact/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [5.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preact@5.1.0-next.1...gatsby-plugin-preact@5.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-preact
+
# [5.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preact@5.1.0-next.0...gatsby-plugin-preact@5.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-preact
diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json
index 1644f1fb5f363..a573930b4f355 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": "5.1.0-next.1",
+ "version": "5.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-preact#readme",
diff --git a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
index f95f6082e02cf..3c4b294b74e6c 100644
--- a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
+++ b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [2.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preload-fonts@2.1.0-next.1...gatsby-plugin-preload-fonts@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-preload-fonts
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preload-fonts@2.1.0-next.0...gatsby-plugin-preload-fonts@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-preload-fonts
diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json
index 69a2c2d9e1704..32213ecfb844c 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": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"author": "Aaron Ross ",
"main": "index.js",
"bin": {
@@ -14,7 +14,7 @@
"chalk": "^4.1.0",
"date-fns": "^2.16.1",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
"graphql-request": "^1.8.2",
"progress": "^2.0.3",
"puppeteer": "^3.3.0"
@@ -22,7 +22,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1"
},
diff --git a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md
index 153252449bf1a..73c804e6403ed 100644
--- a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md
+++ b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-css-modules@3.1.0-next.1...gatsby-plugin-react-css-modules@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-react-css-modules
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-css-modules@3.1.0-next.0...gatsby-plugin-react-css-modules@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-react-css-modules
diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json
index 67f1933183541..f9f3740ef2db5 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Ming Aldrich-Gan ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 00f6a342b1283..fe5f2514dd0d1 100644
--- a/packages/gatsby-plugin-react-helmet/CHANGELOG.md
+++ b/packages/gatsby-plugin-react-helmet/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-helmet@4.1.0-next.1...gatsby-plugin-react-helmet@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-react-helmet
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-helmet@4.1.0-next.0...gatsby-plugin-react-helmet@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-react-helmet
diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json
index 3f938e6b6342f..506b6cfa8d9b0 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": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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-remove-trailing-slashes/CHANGELOG.md b/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md
index 90d92083afc9e..0aeb84fbb4944 100644
--- a/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md
+++ b/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-remove-trailing-slashes@3.1.0-next.1...gatsby-plugin-remove-trailing-slashes@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-remove-trailing-slashes
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-remove-trailing-slashes@3.1.0-next.0...gatsby-plugin-remove-trailing-slashes@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-remove-trailing-slashes
diff --git a/packages/gatsby-plugin-remove-trailing-slashes/package.json b/packages/gatsby-plugin-remove-trailing-slashes/package.json
index 1911f339c9979..8cb2edcd931ce 100644
--- a/packages/gatsby-plugin-remove-trailing-slashes/package.json
+++ b/packages/gatsby-plugin-remove-trailing-slashes/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-remove-trailing-slashes",
"description": "Removes trailing slashes from your project's paths. For example, yoursite.com/about/ becomes yoursite.com/about",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "scott.eckenthal@gmail.com",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-remove-trailing-slashes#readme",
diff --git a/packages/gatsby-plugin-sass/CHANGELOG.md b/packages/gatsby-plugin-sass/CHANGELOG.md
index 1ce2cbfa9408e..c464b79dd8e0f 100644
--- a/packages/gatsby-plugin-sass/CHANGELOG.md
+++ b/packages/gatsby-plugin-sass/CHANGELOG.md
@@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sass@4.1.0-next.3...gatsby-plugin-sass@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-sass
+
+# [4.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sass@4.1.0-next.2...gatsby-plugin-sass@4.1.0-next.3) (2021-03-10)
+
+### Bug Fixes
+
+- **gatsby-plugin-sass:** Change `modules` option around ([#29986](https://github.com/gatsbyjs/gatsby/issues/29986)) ([bba21cd](https://github.com/gatsbyjs/gatsby/commit/bba21cdeb34ff74f6f2f538780849e6ccbec21fd))
+
+### Reverts
+
+- Revert "fix(gatsby-plugin-sass): Change `modules` option around (#29986)" (#30038) ([0f4de9d](https://github.com/gatsbyjs/gatsby/commit/0f4de9d6985b4d577604e34ba3ea797ff282216f)), closes [#29986](https://github.com/gatsbyjs/gatsby/issues/29986) [#30038](https://github.com/gatsbyjs/gatsby/issues/30038)
+
# [4.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sass@4.1.0-next.1...gatsby-plugin-sass@4.1.0-next.2) (2021-02-26)
### Bug Fixes
diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json
index dc930f1eac035..2b14d73732e67 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": "4.1.0-next.2",
+ "version": "4.2.0-next.0",
"author": "Daniel Farrell ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,10 +14,10 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
- "autoprefixer": "^10.2.4",
+ "autoprefixer": "^10.2.5",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^1.1.0-next.1"
+ "gatsby-plugin-utils": "^1.2.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass#readme",
"keywords": [
@@ -45,4 +45,4 @@
"engines": {
"node": ">=12.13.0"
}
-}
\ No newline at end of file
+}
diff --git a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md
index 25abc4aadfa96..d2f8c294ca522 100644
--- a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md
+++ b/packages/gatsby-plugin-schema-snapshot/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-schema-snapshot@2.1.0-next.2...gatsby-plugin-schema-snapshot@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-schema-snapshot
+
+# [2.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-schema-snapshot@2.1.0-next.1...gatsby-plugin-schema-snapshot@2.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-plugin-schema-snapshot
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-schema-snapshot@2.1.0-next.0...gatsby-plugin-schema-snapshot@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-schema-snapshot
diff --git a/packages/gatsby-plugin-schema-snapshot/package.json b/packages/gatsby-plugin-schema-snapshot/package.json
index b1a539634e73d..61251322311c3 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": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"main": "index.js",
"license": "MIT",
"keywords": [
diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md
index dcb911fb11185..3f26ce59a3606 100644
--- a/packages/gatsby-plugin-sharp/CHANGELOG.md
+++ b/packages/gatsby-plugin-sharp/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sharp@3.1.0-next.2...gatsby-plugin-sharp@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-sharp
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sharp@3.1.0-next.1...gatsby-plugin-sharp@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sharp@3.1.0-next.0...gatsby-plugin-sharp@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-sharp
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index 80fa60053e040..945368b7d55c3 100644
--- a/packages/gatsby-plugin-sharp/package.json
+++ b/packages/gatsby-plugin-sharp/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-sharp",
"description": "Wrapper of the Sharp image manipulation library for Gatsby plugins",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,8 +12,8 @@
"bluebird": "^3.7.2",
"filenamify": "^4.2.0",
"fs-extra": "^9.1.0",
- "gatsby-core-utils": "^2.1.0-next.1",
- "gatsby-telemetry": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
+ "gatsby-telemetry": "^2.2.0-next.0",
"got": "^10.7.0",
"imagemin": "^7.0.1",
"imagemin-mozjpeg": "^9.0.0",
@@ -32,10 +32,10 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@types/sharp": "^0.27.1",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-image": "^1.1.0-next.1",
- "gatsby-plugin-utils": "^1.1.0-next.1"
+ "gatsby-plugin-image": "^1.2.0-next.0",
+ "gatsby-plugin-utils": "^1.2.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-sitemap/CHANGELOG.md b/packages/gatsby-plugin-sitemap/CHANGELOG.md
index e49932468c82f..cd7d30bc98a0c 100644
--- a/packages/gatsby-plugin-sitemap/CHANGELOG.md
+++ b/packages/gatsby-plugin-sitemap/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sitemap@3.1.0-next.1...gatsby-plugin-sitemap@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-sitemap
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sitemap@3.1.0-next.0...gatsby-plugin-sitemap@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-sitemap
diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json
index 9a4ef02f0d279..7623b9f265ae2 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Nicholas Young <nicholas@nicholaswyoung.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme",
diff --git a/packages/gatsby-plugin-styled-components/CHANGELOG.md b/packages/gatsby-plugin-styled-components/CHANGELOG.md
index a47ce86e708d4..69cd2e407248c 100644
--- a/packages/gatsby-plugin-styled-components/CHANGELOG.md
+++ b/packages/gatsby-plugin-styled-components/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-components@4.1.0-next.1...gatsby-plugin-styled-components@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-styled-components
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-components@4.1.0-next.0...gatsby-plugin-styled-components@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-styled-components
diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json
index 763bb7f4b3d29..477d6aa744a6d 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": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Guten Ye ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 aa9fb5941a68c..1b1db27b56f7d 100644
--- a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md
+++ b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-jsx@4.1.0-next.1...gatsby-plugin-styled-jsx@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-styled-jsx
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-jsx@4.1.0-next.0...gatsby-plugin-styled-jsx@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-styled-jsx
diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json
index 4922e14298f63..e0d3486f01256 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": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Tim Suchanek ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 b383c087a069b..0a0c9067abb27 100644
--- a/packages/gatsby-plugin-styletron/CHANGELOG.md
+++ b/packages/gatsby-plugin-styletron/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [6.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styletron@6.1.0-next.1...gatsby-plugin-styletron@6.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-styletron
+
# [6.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styletron@6.1.0-next.0...gatsby-plugin-styletron@6.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-styletron
diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json
index c06954cd1675a..76f14936c98cb 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": "6.1.0-next.1",
+ "version": "6.2.0-next.0",
"author": "Nadiia Dmytrenko ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,9 +9,9 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "styletron-engine-atomic": "^1.4.6",
+ "styletron-engine-atomic": "^1.4.7",
"styletron-react": "^5.2.7"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styletron#readme",
diff --git a/packages/gatsby-plugin-stylus/CHANGELOG.md b/packages/gatsby-plugin-stylus/CHANGELOG.md
index fd3cb5ed60447..4379eaf0551f6 100644
--- a/packages/gatsby-plugin-stylus/CHANGELOG.md
+++ b/packages/gatsby-plugin-stylus/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-stylus@3.1.0-next.2...gatsby-plugin-stylus@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-stylus
+
# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-stylus@3.1.0-next.1...gatsby-plugin-stylus@3.1.0-next.2) (2021-02-26)
### Bug Fixes
diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json
index e65abae00f2e8..493215b2a5eba 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": "3.1.0-next.2",
+ "version": "3.2.0-next.0",
"author": "Ian Sinnott ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 f0a7ee3e1f354..a46a8ace61a79 100644
--- a/packages/gatsby-plugin-subfont/CHANGELOG.md
+++ b/packages/gatsby-plugin-subfont/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-subfont@3.1.0-next.2...gatsby-plugin-subfont@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-subfont
+
# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-subfont@3.1.0-next.1...gatsby-plugin-subfont@3.1.0-next.2) (2021-02-28)
**Note:** Version bump only for package gatsby-plugin-subfont
diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json
index 775bb6b17cdbb..ac5d35401c9e5 100644
--- a/packages/gatsby-plugin-subfont/package.json
+++ b/packages/gatsby-plugin-subfont/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-subfont",
- "version": "3.1.0-next.2",
+ "version": "3.2.0-next.0",
"description": "Runs the font delivery optimizing CLI tool subfont on the homepage of your site during the Gatsby build",
"main": "index.js",
"scripts": {
@@ -29,7 +29,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-twitter/CHANGELOG.md b/packages/gatsby-plugin-twitter/CHANGELOG.md
index daaaf0e9c31dc..e31939fe68868 100644
--- a/packages/gatsby-plugin-twitter/CHANGELOG.md
+++ b/packages/gatsby-plugin-twitter/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-twitter@3.1.0-next.2...gatsby-plugin-twitter@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-twitter
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-twitter@3.1.0-next.1...gatsby-plugin-twitter@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-plugin-twitter
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-twitter@3.1.0-next.0...gatsby-plugin-twitter@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-twitter
diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json
index 6340c4a4ab815..9622bc85a41c5 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,9 +12,9 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^1.1.0-next.1"
+ "gatsby-plugin-utils": "^1.2.0-next.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 5e0f26b4556a8..97195f2949643 100644
--- a/packages/gatsby-plugin-typescript/CHANGELOG.md
+++ b/packages/gatsby-plugin-typescript/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typescript@3.1.0-next.1...gatsby-plugin-typescript@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-typescript
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typescript@3.1.0-next.0...gatsby-plugin-typescript@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-typescript
diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json
index fe88c13c58cab..a8a92f7cfb04d 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,12 +16,12 @@
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/runtime": "^7.12.5",
- "babel-plugin-remove-graphql-queries": "^3.1.0-next.1"
+ "babel-plugin-remove-graphql-queries": "^3.2.0-next.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-typography/CHANGELOG.md b/packages/gatsby-plugin-typography/CHANGELOG.md
index faf805271dded..95c9ddcdc3089 100644
--- a/packages/gatsby-plugin-typography/CHANGELOG.md
+++ b/packages/gatsby-plugin-typography/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typography@3.1.0-next.2...gatsby-plugin-typography@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-typography
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typography@3.1.0-next.1...gatsby-plugin-typography@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-plugin-typography
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typography@3.1.0-next.0...gatsby-plugin-typography@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-typography
diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json
index fc2dba9d57107..912c918567717 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 010186368052a..c03fea90352ee 100644
--- a/packages/gatsby-plugin-utils/CHANGELOG.md
+++ b/packages/gatsby-plugin-utils/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [1.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-utils@1.1.0-next.1...gatsby-plugin-utils@1.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-plugin-utils
+
# [1.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-utils@1.1.0-next.0...gatsby-plugin-utils@1.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-plugin-utils
diff --git a/packages/gatsby-plugin-utils/package.json b/packages/gatsby-plugin-utils/package.json
index 0dc9a4fe8fa12..8bbfa8645dd1d 100644
--- a/packages/gatsby-plugin-utils/package.json
+++ b/packages/gatsby-plugin-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-utils",
- "version": "1.1.0-next.1",
+ "version": "1.2.0-next.0",
"description": "Gatsby utils that help creating plugins",
"main": "dist/index.js",
"scripts": {
@@ -26,7 +26,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"typescript": "^4.1.5"
diff --git a/packages/gatsby-react-router-scroll/CHANGELOG.md b/packages/gatsby-react-router-scroll/CHANGELOG.md
index 2e030629cf8ec..47f895bd3d2bc 100644
--- a/packages/gatsby-react-router-scroll/CHANGELOG.md
+++ b/packages/gatsby-react-router-scroll/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.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@4.1.0-next.3...gatsby-react-router-scroll@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-react-router-scroll
+
+# [4.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@4.1.0-next.2...gatsby-react-router-scroll@4.1.0-next.3) (2021-03-10)
+
+### Bug Fixes
+
+- **gatsby-react-router-scroll:** debounce function for scollListener ([#26933](https://github.com/gatsbyjs/gatsby/issues/26933)) ([2f40b0a](https://github.com/gatsbyjs/gatsby/commit/2f40b0a8536316b01b941f4889eb99211cb43160))
+
# [4.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@4.1.0-next.1...gatsby-react-router-scroll@4.1.0-next.2) (2021-02-26)
### Bug Fixes
diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json
index c6a38715851f3..bb4a9879e61db 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": "4.1.0-next.2",
+ "version": "4.2.0-next.0",
"author": "Jimmy Jia",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"babel-plugin-dev-expression": "^0.2.2",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"history": "^4.10.1"
},
diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md
index 2af42b10fe321..092b0cb088697 100644
--- a/packages/gatsby-recipes/CHANGELOG.md
+++ b/packages/gatsby-recipes/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.
+# [0.13.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-recipes@0.12.0-next.2...gatsby-recipes@0.13.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-recipes
+
+# [0.12.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-recipes@0.12.0-next.1...gatsby-recipes@0.12.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [0.12.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-recipes@0.12.0-next.0...gatsby-recipes@0.12.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-recipes
diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json
index 14991a7e52074..807374c59a6f8 100644
--- a/packages/gatsby-recipes/package.json
+++ b/packages/gatsby-recipes/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-recipes",
"description": "Core functionality for Gatsby Recipes",
- "version": "0.12.0-next.1",
+ "version": "0.13.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -30,8 +30,8 @@
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^2.1.0-next.1",
- "gatsby-telemetry": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
+ "gatsby-telemetry": "^2.2.0-next.0",
"glob": "^7.1.6",
"graphql": "^15.4.0",
"graphql-compose": "~7.25.0",
diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md
index 7500eab8d2db1..8afe9cb994c5a 100644
--- a/packages/gatsby-remark-autolink-headers/CHANGELOG.md
+++ b/packages/gatsby-remark-autolink-headers/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@3.1.0-next.2...gatsby-remark-autolink-headers@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-autolink-headers
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@3.1.0-next.1...gatsby-remark-autolink-headers@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@3.1.0-next.0...gatsby-remark-autolink-headers@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-autolink-headers
diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json
index b742bc02426f7..75c111c792b06 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,9 +16,9 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^1.1.0-next.1"
+ "gatsby-plugin-utils": "^1.2.0-next.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 3959c56640438..30f24010ab736 100644
--- a/packages/gatsby-remark-code-repls/CHANGELOG.md
+++ b/packages/gatsby-remark-code-repls/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-code-repls@4.1.0-next.1...gatsby-remark-code-repls@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-code-repls
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-code-repls@4.1.0-next.0...gatsby-remark-code-repls@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-code-repls
diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json
index 37ae009f30c6f..a65b90e09f990 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": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Brian Vaughn ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -18,7 +18,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 d8f9ac5e23490..0749be457d9a2 100644
--- a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md
+++ b/packages/gatsby-remark-copy-linked-files/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-copy-linked-files@3.1.0-next.2...gatsby-remark-copy-linked-files@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-copy-linked-files
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-copy-linked-files@3.1.0-next.1...gatsby-remark-copy-linked-files@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-copy-linked-files@3.1.0-next.0...gatsby-remark-copy-linked-files@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-copy-linked-files
diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json
index bb95c6f25e1be..4331a88294016 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -19,7 +19,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"remark": "^10.0.1",
"remark-mdx": "^1.6.18"
diff --git a/packages/gatsby-remark-custom-blocks/CHANGELOG.md b/packages/gatsby-remark-custom-blocks/CHANGELOG.md
index 88b072cf742e3..8be543e32b82c 100644
--- a/packages/gatsby-remark-custom-blocks/CHANGELOG.md
+++ b/packages/gatsby-remark-custom-blocks/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-custom-blocks@3.1.0-next.1...gatsby-remark-custom-blocks@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-custom-blocks
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-custom-blocks@3.1.0-next.0...gatsby-remark-custom-blocks@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-custom-blocks
diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json
index be083b3a170c7..baa73c1db158e 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Mohammad Asad Mohammad ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 5588e46ebf319..9e0fdffb2c52c 100644
--- a/packages/gatsby-remark-embed-snippet/CHANGELOG.md
+++ b/packages/gatsby-remark-embed-snippet/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-embed-snippet@5.1.0-next.2...gatsby-remark-embed-snippet@5.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-embed-snippet
+
+# [5.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-embed-snippet@5.1.0-next.1...gatsby-remark-embed-snippet@5.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-remark-embed-snippet
+
# [5.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-embed-snippet@5.1.0-next.0...gatsby-remark-embed-snippet@5.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-embed-snippet
diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json
index 4b3e78ef8768f..43b4f1a438fa3 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": "5.1.0-next.1",
+ "version": "5.2.0-next.0",
"author": "Brian Vaughn ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 52017addba008..731ab3959e959 100644
--- a/packages/gatsby-remark-graphviz/CHANGELOG.md
+++ b/packages/gatsby-remark-graphviz/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-graphviz@2.1.0-next.2...gatsby-remark-graphviz@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-graphviz
+
+# [2.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-graphviz@2.1.0-next.1...gatsby-remark-graphviz@2.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-remark-graphviz
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-graphviz@2.1.0-next.0...gatsby-remark-graphviz@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-graphviz
diff --git a/packages/gatsby-remark-graphviz/package.json b/packages/gatsby-remark-graphviz/package.json
index 0d9f52c3e5544..b8af439033d4a 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": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"author": "Anthony Marcar ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"hast-util-to-html": "^4.0.1",
"mdast-util-to-hast": "^3.0.4",
diff --git a/packages/gatsby-remark-images-contentful/CHANGELOG.md b/packages/gatsby-remark-images-contentful/CHANGELOG.md
index e057b7cb03678..036406e631884 100644
--- a/packages/gatsby-remark-images-contentful/CHANGELOG.md
+++ b/packages/gatsby-remark-images-contentful/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@3.1.0-next.2...gatsby-remark-images-contentful@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-images-contentful
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@3.1.0-next.1...gatsby-remark-images-contentful@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@3.1.0-next.0...gatsby-remark-images-contentful@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-images-contentful
diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json
index aa968339a04d3..2ad465207fbd1 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": "3.1.0-next.1",
+ "version": "3.2.0-next.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.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md
index 39cfb5c863fb2..f692aa922f867 100644
--- a/packages/gatsby-remark-images/CHANGELOG.md
+++ b/packages/gatsby-remark-images/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.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images@4.1.0-next.2...gatsby-remark-images@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-images
+
+# [4.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images@4.1.0-next.1...gatsby-remark-images@4.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images@4.1.0-next.0...gatsby-remark-images@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-images
diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json
index 2b7651b6eb9fb..a01dfc9e6d191 100644
--- a/packages/gatsby-remark-images/package.json
+++ b/packages/gatsby-remark-images/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-images",
"description": "Processes images in markdown so they can be used in the production build.",
- "version": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -10,7 +10,7 @@
"@babel/runtime": "^7.12.5",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
- "gatsby-core-utils": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
"is-relative-url": "^3.0.0",
"lodash": "^4.17.21",
"mdast-util-definitions": "^1.2.5",
@@ -22,9 +22,9 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^1.1.0-next.1",
+ "gatsby-plugin-utils": "^1.2.0-next.0",
"hast-util-to-html": "^6.1.0",
"mdast-util-to-hast": "^6.0.2"
},
diff --git a/packages/gatsby-remark-katex/CHANGELOG.md b/packages/gatsby-remark-katex/CHANGELOG.md
index 3ed2ea50f5ef3..2ccdc79fb8392 100644
--- a/packages/gatsby-remark-katex/CHANGELOG.md
+++ b/packages/gatsby-remark-katex/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-katex@4.1.0-next.1...gatsby-remark-katex@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-katex
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-katex@4.1.0-next.0...gatsby-remark-katex@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-katex
diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json
index a48435f00464d..9500ba433b28c 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": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Jeffrey Xiao ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"katex": "^0.12.0"
},
diff --git a/packages/gatsby-remark-prismjs/CHANGELOG.md b/packages/gatsby-remark-prismjs/CHANGELOG.md
index 32581825f74ea..334c32545a991 100644
--- a/packages/gatsby-remark-prismjs/CHANGELOG.md
+++ b/packages/gatsby-remark-prismjs/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-prismjs@4.1.0-next.2...gatsby-remark-prismjs@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-prismjs
+
+# [4.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-prismjs@4.1.0-next.1...gatsby-remark-prismjs@4.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-remark-prismjs
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-prismjs@4.1.0-next.0...gatsby-remark-prismjs@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-prismjs
diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json
index b4ad56389fb87..fc8688a5173bf 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": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cheerio": "^1.0.0-rc.3",
"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 742551da0cc24..da09c3b555e56 100644
--- a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md
+++ b/packages/gatsby-remark-responsive-iframe/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-responsive-iframe@3.1.0-next.2...gatsby-remark-responsive-iframe@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-responsive-iframe
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-responsive-iframe@3.1.0-next.1...gatsby-remark-responsive-iframe@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-responsive-iframe@3.1.0-next.0...gatsby-remark-responsive-iframe@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-responsive-iframe
diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json
index 38a7e54887d2b..0db1c9f39fa8c 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"remark": "^10.0.1",
"remark-mdx": "^1.6.21",
diff --git a/packages/gatsby-remark-smartypants/CHANGELOG.md b/packages/gatsby-remark-smartypants/CHANGELOG.md
index 3a11305633745..e259b1bc3ed78 100644
--- a/packages/gatsby-remark-smartypants/CHANGELOG.md
+++ b/packages/gatsby-remark-smartypants/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-smartypants@3.1.0-next.1...gatsby-remark-smartypants@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-remark-smartypants
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-smartypants@3.1.0-next.0...gatsby-remark-smartypants@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-remark-smartypants
diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json
index 4f45f2ee47ba3..e33f5dd391acb 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-smartypants#readme",
diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md
index cf8fd9a5efc94..8f9dc36abf39b 100644
--- a/packages/gatsby-source-contentful/CHANGELOG.md
+++ b/packages/gatsby-source-contentful/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.
+# [5.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-contentful@5.1.0-next.2...gatsby-source-contentful@5.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-contentful
+
+# [5.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-contentful@5.1.0-next.1...gatsby-source-contentful@5.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+- **gatsby-source-contentful:** Remove image beta warning ([#29980](https://github.com/gatsbyjs/gatsby/issues/29980)) ([2f59995](https://github.com/gatsbyjs/gatsby/commit/2f599952142b9f2350ef268187839dcbe01ccd74))
+- **gatsby-source-contentful:** Set image source format ([#30103](https://github.com/gatsbyjs/gatsby/issues/30103)) ([759ed72](https://github.com/gatsbyjs/gatsby/commit/759ed722c3fd69216e7d8c7b0212ea2a9335a16e))
+- **gatsby-source-contentful:** use reporter progressbar instead of own ([#29853](https://github.com/gatsbyjs/gatsby/issues/29853)) ([6c8e277](https://github.com/gatsbyjs/gatsby/commit/6c8e277a535d104b0f545d90dd0dd7d3f688839c))
+
# [5.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-contentful@5.1.0-next.0...gatsby-source-contentful@5.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-contentful
diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json
index d31879dd97a9f..28d0047838a88 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": "5.1.0-next.1",
+ "version": "5.2.0-next.0",
"author": "Marcus Ericsson (mericsson.com)",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -17,10 +17,10 @@
"common-tags": "^1.8.0",
"contentful": "^8.1.7",
"fs-extra": "^9.1.0",
- "gatsby-core-utils": "^2.1.0-next.1",
- "gatsby-plugin-image": "^1.1.0-next.1",
- "gatsby-plugin-utils": "^1.1.0-next.1",
- "gatsby-source-filesystem": "^3.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
+ "gatsby-plugin-image": "^1.2.0-next.0",
+ "gatsby-plugin-utils": "^1.2.0-next.0",
+ "gatsby-source-filesystem": "^3.2.0-next.0",
"is-online": "^8.5.1",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
@@ -32,7 +32,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"nock": "^13.0.6"
},
diff --git a/packages/gatsby-source-contentful/src/gatsby-node.js b/packages/gatsby-source-contentful/src/gatsby-node.js
index 0535a66c6115f..bfc4d6e269bdf 100644
--- a/packages/gatsby-source-contentful/src/gatsby-node.js
+++ b/packages/gatsby-source-contentful/src/gatsby-node.js
@@ -251,10 +251,10 @@ exports.sourceNodes = async (
if (node.internal.owner !== `gatsby-source-contentful`) {
return
}
- touchNode({ nodeId: node.id })
+ touchNode(node)
if (node.localFile___NODE) {
// Prevent GraphQL type inference from crashing on this property
- touchNode({ nodeId: node.localFile___NODE })
+ touchNode(getNode(node.localFile___NODE))
}
})
@@ -329,7 +329,7 @@ exports.sourceNodes = async (
}
createTypes(`
- interface ContentfulEntry @nodeInterface {
+ interface ContentfulEntry implements Node {
contentful_id: String!
id: ID!
node_locale: String!
@@ -488,7 +488,7 @@ exports.sourceNodes = async (
localizedNodes.forEach(node => {
// touchNode first, to populate typeOwners & avoid erroring
- touchNode({ nodeId: node.id })
+ touchNode(node)
deleteNode(node)
})
}
@@ -499,7 +499,7 @@ exports.sourceNodes = async (
const existingNodes = getNodes().filter(
n => n.internal.owner === `gatsby-source-contentful`
)
- existingNodes.forEach(n => touchNode({ nodeId: n.id }))
+ existingNodes.forEach(n => touchNode(n))
const assets = mergedSyncData.assets
diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md
index dc08ad990b674..72d10c358212f 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.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-drupal@4.1.0-next.2...gatsby-source-drupal@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-drupal
+
+# [4.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-drupal@4.1.0-next.1...gatsby-source-drupal@4.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-drupal@4.1.0-next.0...gatsby-source-drupal@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-drupal
diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json
index c6a649820c33d..ad9a94140215f 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": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,14 +11,14 @@
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
- "gatsby-source-filesystem": "^3.1.0-next.1",
+ "gatsby-source-filesystem": "^3.2.0-next.0",
"lodash": "^4.17.21",
- "tiny-async-pool": "^1.1.0"
+ "tiny-async-pool": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal#readme",
diff --git a/packages/gatsby-source-faker/CHANGELOG.md b/packages/gatsby-source-faker/CHANGELOG.md
index c2723f91841ca..fa8b312605a8b 100644
--- a/packages/gatsby-source-faker/CHANGELOG.md
+++ b/packages/gatsby-source-faker/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-faker@3.1.0-next.2...gatsby-source-faker@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-faker
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-faker@3.1.0-next.1...gatsby-source-faker@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-source-faker
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-faker@3.1.0-next.0...gatsby-source-faker@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-faker
diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json
index 7599289f72a38..d8e9938e117fd 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Pavithra Kodmad",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 06ee2c86f81a4..f861c8096d823 100644
--- a/packages/gatsby-source-filesystem/CHANGELOG.md
+++ b/packages/gatsby-source-filesystem/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@3.1.0-next.2...gatsby-source-filesystem@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-filesystem
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@3.1.0-next.1...gatsby-source-filesystem@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-source-filesystem
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@3.1.0-next.0...gatsby-source-filesystem@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-filesystem
diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json
index 9dc1b5e5d7673..90b9059346ee4 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"chokidar": "^3.4.3",
"file-type": "^16.0.0",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
"got": "^9.6.0",
"md5-file": "^5.0.0",
"mime": "^2.4.6",
@@ -24,7 +24,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"msw": "^0.25.0"
},
diff --git a/packages/gatsby-source-graphql/CHANGELOG.md b/packages/gatsby-source-graphql/CHANGELOG.md
index ced061d95d087..5e481b42e0579 100644
--- a/packages/gatsby-source-graphql/CHANGELOG.md
+++ b/packages/gatsby-source-graphql/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-graphql@3.1.0-next.1...gatsby-source-graphql@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-graphql
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-graphql@3.1.0-next.0...gatsby-source-graphql@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-graphql
diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json
index e1c4a12f56fe9..57771626099d3 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Mikhail Novikov ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -21,7 +21,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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-hacker-news/CHANGELOG.md b/packages/gatsby-source-hacker-news/CHANGELOG.md
index aec85a3b6be4c..249d566ebe3d6 100644
--- a/packages/gatsby-source-hacker-news/CHANGELOG.md
+++ b/packages/gatsby-source-hacker-news/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-hacker-news@3.1.0-next.2...gatsby-source-hacker-news@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-hacker-news
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-hacker-news@3.1.0-next.1...gatsby-source-hacker-news@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-hacker-news@3.1.0-next.0...gatsby-source-hacker-news@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-hacker-news
diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json
index a9783531e8d7a..a94496064bfb8 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 f31165d011060..ab6b697c80d8b 100644
--- a/packages/gatsby-source-lever/CHANGELOG.md
+++ b/packages/gatsby-source-lever/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-lever@3.1.0-next.2...gatsby-source-lever@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-lever
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-lever@3.1.0-next.1...gatsby-source-lever@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-lever@3.1.0-next.0...gatsby-source-lever@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-lever
diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json
index 8c381949a85c9..bb698d4149201 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Sebastien Fichot ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -20,7 +20,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 a9d74120ae3d4..c72b9511a6078 100644
--- a/packages/gatsby-source-medium/CHANGELOG.md
+++ b/packages/gatsby-source-medium/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-medium@3.1.0-next.1...gatsby-source-medium@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-medium
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-medium@3.1.0-next.0...gatsby-source-medium@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-medium
diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json
index 68bb85bd39f44..b711e779d8efe 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Robert Vogt ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 11bf9b2db4d9d..8749dc0b69f4f 100644
--- a/packages/gatsby-source-mongodb/CHANGELOG.md
+++ b/packages/gatsby-source-mongodb/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-mongodb@3.1.0-next.2...gatsby-source-mongodb@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-mongodb
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-mongodb@3.1.0-next.1...gatsby-source-mongodb@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-source-mongodb
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-mongodb@3.1.0-next.0...gatsby-source-mongodb@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-mongodb
diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json
index dad9029808407..7e075cac907ec 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"authors": [
"jhermans85@hotmail.com",
"hi@elmar.codes"
@@ -19,7 +19,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 2aa70f2cf1cd1..c3e1d980fdc7b 100644
--- a/packages/gatsby-source-npm-package-search/CHANGELOG.md
+++ b/packages/gatsby-source-npm-package-search/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@3.1.0-next.1...gatsby-source-npm-package-search@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-npm-package-search
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@3.1.0-next.0...gatsby-source-npm-package-search@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-npm-package-search
diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json
index 4f81bd0eb2be0..006c7ac53291a 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "james.a.stack@gmail.com",
"repository": {
"type": "git",
@@ -17,7 +17,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-source-shopify/CHANGELOG.md b/packages/gatsby-source-shopify/CHANGELOG.md
index 626bd6ed7fcc2..c38957d7a0b42 100644
--- a/packages/gatsby-source-shopify/CHANGELOG.md
+++ b/packages/gatsby-source-shopify/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.
+# [4.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-shopify@4.1.0-next.2...gatsby-source-shopify@4.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-shopify
+
+# [4.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-shopify@4.1.0-next.1...gatsby-source-shopify@4.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [4.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-shopify@4.1.0-next.0...gatsby-source-shopify@4.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-shopify
diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json
index aef967b31d93c..10d42eeb5d4a3 100644
--- a/packages/gatsby-source-shopify/package.json
+++ b/packages/gatsby-source-shopify/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-source-shopify",
- "version": "4.1.0-next.1",
+ "version": "4.2.0-next.0",
"description": "Gatsby source plugin for building websites using Shopify as a data source.",
"scripts": {
"build": "babel src --out-dir . --ignore \"**/__tests__\"",
@@ -33,10 +33,10 @@
"cross-env": "^7.0.3"
},
"dependencies": {
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"chalk": "^4.1.0",
"gatsby-node-helpers": "^0.3.0",
- "gatsby-source-filesystem": "^3.1.0-next.1",
+ "gatsby-source-filesystem": "^3.2.0-next.0",
"graphql-request": "^1.8.2",
"lodash": "^4.17.21",
"p-iteration": "^1.1.8",
diff --git a/packages/gatsby-source-wikipedia/CHANGELOG.md b/packages/gatsby-source-wikipedia/CHANGELOG.md
index 6fdd931a4924f..93b885c5c8f49 100644
--- a/packages/gatsby-source-wikipedia/CHANGELOG.md
+++ b/packages/gatsby-source-wikipedia/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wikipedia@3.1.0-next.2...gatsby-source-wikipedia@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-wikipedia
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wikipedia@3.1.0-next.1...gatsby-source-wikipedia@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-source-wikipedia
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wikipedia@3.1.0-next.0...gatsby-source-wikipedia@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-source-wikipedia
diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json
index ca67e6a84af5f..ad6d4e6ba3bb7 100644
--- a/packages/gatsby-source-wikipedia/package.json
+++ b/packages/gatsby-source-wikipedia/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-source-wikipedia",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"description": "Gatsby source plugin for pulling articles from Wikipedia",
"main": "index.js",
"scripts": {
@@ -36,7 +36,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"engines": {
diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md
index 32b83e8dfa875..19d810b89f37a 100644
--- a/packages/gatsby-source-wordpress/CHANGELOG.md
+++ b/packages/gatsby-source-wordpress/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.
+# [5.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wordpress@5.1.0-next.3...gatsby-source-wordpress@5.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-source-wordpress
+
+# [5.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wordpress@5.1.0-next.2...gatsby-source-wordpress@5.1.0-next.3) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+- **gatsby-source-wordpress:** image fixes ([#29813](https://github.com/gatsbyjs/gatsby/issues/29813)) ([28124dd](https://github.com/gatsbyjs/gatsby/commit/28124dd74b87902f9fa8cf3895ff8b4d54bc0fd6))
+
+### Features
+
+- **gatsby-source-wordpress:** Improve 50\* error messages ([#29972](https://github.com/gatsbyjs/gatsby/issues/29972)) ([a7b1062](https://github.com/gatsbyjs/gatsby/commit/a7b106275ca8c0766cdf99a022179a0508c97129))
+- **gatsby-source-wordpress:** Log when nodes are duplicates ([#29941](https://github.com/gatsbyjs/gatsby/issues/29941)) ([7ee63ea](https://github.com/gatsbyjs/gatsby/commit/7ee63ea623b007c8642341b0bbc020d5674051dc))
+
# [5.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wordpress@5.1.0-next.1...gatsby-source-wordpress@5.1.0-next.2) (2021-02-28)
### Bug Fixes
diff --git a/packages/gatsby-source-wordpress/docs/debugging-and-troubleshooting.md b/packages/gatsby-source-wordpress/docs/debugging-and-troubleshooting.md
index 83c43c270118c..ddbbce78c01a8 100644
--- a/packages/gatsby-source-wordpress/docs/debugging-and-troubleshooting.md
+++ b/packages/gatsby-source-wordpress/docs/debugging-and-troubleshooting.md
@@ -176,7 +176,7 @@ If post revisions are enabled on your site and previews are still not working, p
## Preview debug mode
-You can enable Preview debug mode to help you debug issues with the Gatsby Preview build process. Visit the [plugin options page](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-source-wordpress/docs/plugin-options.md#debugpreview-boolean) to see how to enable this debug option. This option will log addition info to the terminal output including the contents of the webhook body that was sent to the Gatsby process, a list of the Preview change events Gatsby receives, as well as the node Preview data that was sourced during the Preview.
+You can enable Preview debug mode to help you debug issues with the Gatsby Preview build process. Visit the [plugin options page](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-source-wordpress/docs/plugin-options.md#debugpreview-boolean) to see how to enable this debug option or enable this option by setting the env variable `WP_GATSBY_PREVIEW_DEBUG`. This option will log addition info to the terminal output including the contents of the webhook body that was sent to the Gatsby process, a list of the Preview change events Gatsby receives, as well as the node Preview data that was sourced during the Preview.
# Up Next :point_right:
diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json
index 0cacc11abac7f..b2a1da379e058 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": "5.1.0-next.2",
+ "version": "5.2.0-next.0",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
@@ -28,10 +28,10 @@
"file-type": "^15.0.1",
"filesize": "^6.1.0",
"fs-extra": "^9.0.1",
- "gatsby-core-utils": "^2.1.0-next.1",
- "gatsby-image": "^3.1.0-next.1",
- "gatsby-plugin-catch-links": "^3.1.0-next.1",
- "gatsby-source-filesystem": "^3.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
+ "gatsby-image": "^3.2.0-next.0",
+ "gatsby-plugin-catch-links": "^3.2.0-next.0",
+ "gatsby-source-filesystem": "^3.2.0-next.0",
"glob": "^7.1.6",
"got": "^11.7.0",
"graphql-query-compress": "^1.2.2",
@@ -53,8 +53,8 @@
"@types/semver": "^7.3.4",
"babel-plugin-import-globals": "^2.0.0",
"babel-plugin-module-resolver": "4.0.0",
- "babel-preset-gatsby": "^1.1.0-next.1",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby": "^1.2.0-next.0",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"identity-obj-proxy": "^3.0.0",
"react-test-renderer": "^16.12.0",
diff --git a/packages/gatsby-source-wordpress/src/steps/preview/index.ts b/packages/gatsby-source-wordpress/src/steps/preview/index.ts
index ab3496ebbd0a2..84ee8605c79e2 100644
--- a/packages/gatsby-source-wordpress/src/steps/preview/index.ts
+++ b/packages/gatsby-source-wordpress/src/steps/preview/index.ts
@@ -307,9 +307,12 @@ export const sourcePreviews = async (
pluginOptions: IPluginOptions
): Promise => {
const {
- debug: { preview: inPreviewDebugMode },
+ debug: { preview: inPreviewDebugModeOption },
} = getPluginOptions()
+ const inPreviewDebugMode =
+ inPreviewDebugModeOption || process.env.WP_GATSBY_PREVIEW_DEBUG
+
if (inPreviewDebugMode) {
reporter.info(`Sourcing previews for the following webhook:`)
dump(webhookBody)
diff --git a/packages/gatsby-source-wordpress/tsconfig.json b/packages/gatsby-source-wordpress/tsconfig.json
index da2e858380af0..dd9e4c094955c 100644
--- a/packages/gatsby-source-wordpress/tsconfig.json
+++ b/packages/gatsby-source-wordpress/tsconfig.json
@@ -7,7 +7,8 @@
"lib": ["ESNext", "DOM"],
"target": "ES6",
"moduleResolution": "node",
- "allowSyntheticDefaultImports": true
+ "allowSyntheticDefaultImports": true,
+ "skipLibCheck": true
},
"include": ["src"]
}
diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md
index c98fba1ee3162..af489ca871196 100644
--- a/packages/gatsby-telemetry/CHANGELOG.md
+++ b/packages/gatsby-telemetry/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.
+# [2.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-telemetry@2.1.0-next.2...gatsby-telemetry@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-telemetry
+
+# [2.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-telemetry@2.1.0-next.1...gatsby-telemetry@2.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-telemetry@2.1.0-next.0...gatsby-telemetry@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-telemetry
diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json
index 38e928ca43661..aba0a87892bc2 100644
--- a/packages/gatsby-telemetry/package.json
+++ b/packages/gatsby-telemetry/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-telemetry",
"description": "Gatsby Telemetry",
- "version": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"author": "Jarmo Isotalo ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"boxen": "^4.2.0",
"configstore": "^5.0.1",
"fs-extra": "^8.1.0",
- "gatsby-core-utils": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
"git-up": "^4.0.2",
"is-docker": "^2.1.1",
"lodash": "^4.17.21",
@@ -26,7 +26,7 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"babel-jest": "^24.9.0",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
diff --git a/packages/gatsby-theme/CHANGELOG.md b/packages/gatsby-theme/CHANGELOG.md
index 3994a5f1b36a7..aad070ceeb669 100644
--- a/packages/gatsby-theme/CHANGELOG.md
+++ b/packages/gatsby-theme/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.
+# [0.12.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme@0.11.0-next.2...gatsby-theme@0.12.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-theme
+
+# [0.11.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme@0.11.0-next.1...gatsby-theme@0.11.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [0.11.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme@0.11.0-next.0...gatsby-theme@0.11.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-theme
diff --git a/packages/gatsby-theme/package.json b/packages/gatsby-theme/package.json
index 17fb5e920a34e..d84300613e107 100644
--- a/packages/gatsby-theme/package.json
+++ b/packages/gatsby-theme/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-theme",
- "version": "0.11.0-next.1",
+ "version": "0.12.0-next.0",
"main": "index.js",
"bin": {
"gatsby-theme": "./cli.js"
diff --git a/packages/gatsby-transformer-asciidoc/CHANGELOG.md b/packages/gatsby-transformer-asciidoc/CHANGELOG.md
index 250420d944f53..aaad5c2eb5149 100644
--- a/packages/gatsby-transformer-asciidoc/CHANGELOG.md
+++ b/packages/gatsby-transformer-asciidoc/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.
+# [2.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-asciidoc@2.1.0-next.2...gatsby-transformer-asciidoc@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-asciidoc
+
+# [2.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-asciidoc@2.1.0-next.1...gatsby-transformer-asciidoc@2.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-asciidoc@2.1.0-next.0...gatsby-transformer-asciidoc@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-asciidoc
diff --git a/packages/gatsby-transformer-asciidoc/package.json b/packages/gatsby-transformer-asciidoc/package.json
index 77216db348b81..0171e4ced3c90 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": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"author": "Daniel Oliver ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 9a072489eda81..445a22fc996ff 100644
--- a/packages/gatsby-transformer-csv/CHANGELOG.md
+++ b/packages/gatsby-transformer-csv/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-csv@3.1.0-next.2...gatsby-transformer-csv@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-csv
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-csv@3.1.0-next.1...gatsby-transformer-csv@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-transformer-csv
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-csv@3.1.0-next.0...gatsby-transformer-csv@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-csv
diff --git a/packages/gatsby-transformer-csv/package.json b/packages/gatsby-transformer-csv/package.json
index 618a4b1d8c4a1..98705e65d6ce0 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Sonal Saldanha ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,9 +13,9 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "json2csv": "^5.0.4"
+ "json2csv": "^5.0.6"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-csv#readme",
"keywords": [
diff --git a/packages/gatsby-transformer-documentationjs/CHANGELOG.md b/packages/gatsby-transformer-documentationjs/CHANGELOG.md
index ae2714540da7f..b5e51f8f3135f 100644
--- a/packages/gatsby-transformer-documentationjs/CHANGELOG.md
+++ b/packages/gatsby-transformer-documentationjs/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [5.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-documentationjs@5.1.0-next.1...gatsby-transformer-documentationjs@5.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-documentationjs
+
# [5.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-documentationjs@5.1.0-next.0...gatsby-transformer-documentationjs@5.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-documentationjs
diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json
index 3410fce07ee39..25fdacab60a99 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": "5.1.0-next.1",
+ "version": "5.2.0-next.0",
"author": "Kyle Mathews",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 fe6cc7d83abcb..b55ba5902a85e 100644
--- a/packages/gatsby-transformer-excel/CHANGELOG.md
+++ b/packages/gatsby-transformer-excel/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-excel@3.1.0-next.2...gatsby-transformer-excel@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-excel
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-excel@3.1.0-next.1...gatsby-transformer-excel@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-transformer-excel
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-excel@3.1.0-next.0...gatsby-transformer-excel@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-excel
diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json
index 97fce316b0b9b..24fb6729c6dfe 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "SheetJS ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 774b64e184eb6..92ec4a078b1cb 100644
--- a/packages/gatsby-transformer-hjson/CHANGELOG.md
+++ b/packages/gatsby-transformer-hjson/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-hjson@3.1.0-next.1...gatsby-transformer-hjson@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-hjson
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-hjson@3.1.0-next.0...gatsby-transformer-hjson@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-hjson
diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json
index 3b20c6ad09b78..34c290ae05d0b 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Remi Barraquand ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 e254b19f801c6..88a678fa1a6b8 100644
--- a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md
+++ b/packages/gatsby-transformer-javascript-frontmatter/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@3.1.0-next.2...gatsby-transformer-javascript-frontmatter@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@3.1.0-next.1...gatsby-transformer-javascript-frontmatter@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@3.1.0-next.0...gatsby-transformer-javascript-frontmatter@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter
diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json
index 572b8e0bda86b..6dbbe443e17c4 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": "3.1.0-next.1",
+ "version": "3.2.0-next.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.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 008a7aa51f1bc..b45bf9c3946e5 100644
--- a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md
+++ b/packages/gatsby-transformer-javascript-static-exports/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@3.1.0-next.2...gatsby-transformer-javascript-static-exports@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-javascript-static-exports
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@3.1.0-next.1...gatsby-transformer-javascript-static-exports@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-transformer-javascript-static-exports
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@3.1.0-next.0...gatsby-transformer-javascript-static-exports@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-javascript-static-exports
diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json
index 6f0ff473e3632..0e4dbf4f231fd 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Jacob Bolda ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 deeb94748f1a1..90ff6e3db7340 100644
--- a/packages/gatsby-transformer-json/CHANGELOG.md
+++ b/packages/gatsby-transformer-json/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-json@3.1.0-next.1...gatsby-transformer-json@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-json
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-json@3.1.0-next.0...gatsby-transformer-json@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-json
diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json
index 35e965946a491..6b4879101cf06 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 8cd11ddd0143b..ede8fe610e159 100644
--- a/packages/gatsby-transformer-pdf/CHANGELOG.md
+++ b/packages/gatsby-transformer-pdf/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-pdf@2.1.0-next.2...gatsby-transformer-pdf@2.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-pdf
+
+# [2.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-pdf@2.1.0-next.1...gatsby-transformer-pdf@2.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-transformer-pdf
+
# [2.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-pdf@2.1.0-next.0...gatsby-transformer-pdf@2.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-pdf
diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json
index f87906ec211c9..4f9daebac8d06 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": "2.1.0-next.1",
+ "version": "2.2.0-next.0",
"author": "Alex Munoz ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 f40d03c70cf96..d437bb7e6f65f 100644
--- a/packages/gatsby-transformer-react-docgen/CHANGELOG.md
+++ b/packages/gatsby-transformer-react-docgen/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.
+# [6.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-react-docgen@6.1.0-next.2...gatsby-transformer-react-docgen@6.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-react-docgen
+
+# [6.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-react-docgen@6.1.0-next.1...gatsby-transformer-react-docgen@6.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [6.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-react-docgen@6.1.0-next.0...gatsby-transformer-react-docgen@6.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-react-docgen
diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json
index 03a560968b55f..9b98f3fbe4a8c 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": "6.1.0-next.1",
+ "version": "6.2.0-next.0",
"author": "Jason Quense ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -17,7 +17,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 50c4e66925a4e..13967845e3f64 100644
--- a/packages/gatsby-transformer-remark/CHANGELOG.md
+++ b/packages/gatsby-transformer-remark/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@3.1.0-next.2...gatsby-transformer-remark@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-remark
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@3.1.0-next.1...gatsby-transformer-remark@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@3.1.0-next.0...gatsby-transformer-remark@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-remark
diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json
index 21614e26150ad..c12dbb3c2cad5 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
- "gatsby-core-utils": "^2.1.0-next.1",
+ "gatsby-core-utils": "^2.2.0-next.0",
"gray-matter": "^4.0.2",
"hast-util-raw": "^4.0.0",
"hast-util-to-html": "^4.0.1",
@@ -31,9 +31,9 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^1.1.0-next.1"
+ "gatsby-plugin-utils": "^1.2.0-next.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 9d5668f9a8fb3..c9c0f6b2297f8 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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@3.1.0-next.2...gatsby-transformer-screenshot@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-screenshot
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@3.1.0-next.1...gatsby-transformer-screenshot@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-transformer-screenshot
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@3.1.0-next.0...gatsby-transformer-screenshot@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-screenshot
diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json
index 5e1fc00c2d1ae..638655eba0a21 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "David Beckley ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 915a7708e184a..5e0ea65d1ac4b 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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sharp@3.1.0-next.2...gatsby-transformer-sharp@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-sharp
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sharp@3.1.0-next.1...gatsby-transformer-sharp@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-transformer-sharp
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sharp@3.1.0-next.0...gatsby-transformer-sharp@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-sharp
diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json
index 491e7a52676c4..91ed2ab8e24d6 100644
--- a/packages/gatsby-transformer-sharp/package.json
+++ b/packages/gatsby-transformer-sharp/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-transformer-sharp",
"description": "Gatsby transformer plugin for images using Sharp",
- "version": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -20,7 +20,7 @@
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@types/sharp": "^0.27.1",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 55b36fc361710..436e95db00e96 100644
--- a/packages/gatsby-transformer-sqip/CHANGELOG.md
+++ b/packages/gatsby-transformer-sqip/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.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sqip@3.1.0-next.2...gatsby-transformer-sqip@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-sqip
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sqip@3.1.0-next.1...gatsby-transformer-sqip@3.1.0-next.2) (2021-03-10)
+
+**Note:** Version bump only for package gatsby-transformer-sqip
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sqip@3.1.0-next.0...gatsby-transformer-sqip@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-sqip
diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json
index 38320a204a944..efa0547cc4683 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Benedikt RΓΆtsch ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,7 +9,7 @@
"dependencies": {
"@babel/runtime": "^7.12.5",
"fs-extra": "^8.1.0",
- "gatsby-plugin-sharp": "^3.1.0-next.1",
+ "gatsby-plugin-sharp": "^3.2.0-next.0",
"md5-file": "^5.0.0",
"mini-svg-data-uri": "^1.2.3",
"p-queue": "^6.6.2",
@@ -18,7 +18,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"debug": "^3.2.7"
},
diff --git a/packages/gatsby-transformer-toml/CHANGELOG.md b/packages/gatsby-transformer-toml/CHANGELOG.md
index 4c2202462586f..27e81cde61310 100644
--- a/packages/gatsby-transformer-toml/CHANGELOG.md
+++ b/packages/gatsby-transformer-toml/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-toml@3.1.0-next.2...gatsby-transformer-toml@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-toml
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-toml@3.1.0-next.1...gatsby-transformer-toml@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-toml@3.1.0-next.0...gatsby-transformer-toml@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-toml
diff --git a/packages/gatsby-transformer-toml/package.json b/packages/gatsby-transformer-toml/package.json
index 6abee8bf44292..169f0e8d30505 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Ruben Harutyunyan ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 db55d1b02dbb3..fcc9970469c3f 100644
--- a/packages/gatsby-transformer-xml/CHANGELOG.md
+++ b/packages/gatsby-transformer-xml/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-xml@3.1.0-next.2...gatsby-transformer-xml@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-xml
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-xml@3.1.0-next.1...gatsby-transformer-xml@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-xml@3.1.0-next.0...gatsby-transformer-xml@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-xml
diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json
index 0787717b6df57..0aaf76c78f006 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.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 e11c321f2e29d..e27f0258f667f 100644
--- a/packages/gatsby-transformer-yaml/CHANGELOG.md
+++ b/packages/gatsby-transformer-yaml/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.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-yaml@3.1.0-next.2...gatsby-transformer-yaml@3.2.0-next.0) (2021-03-11)
+
+**Note:** Version bump only for package gatsby-transformer-yaml
+
+# [3.1.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-yaml@3.1.0-next.1...gatsby-transformer-yaml@3.1.0-next.2) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+
# [3.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-yaml@3.1.0-next.0...gatsby-transformer-yaml@3.1.0-next.1) (2021-02-26)
**Note:** Version bump only for package gatsby-transformer-yaml
diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json
index c5102fe2f5cae..30bc488e72523 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": "3.1.0-next.1",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-yaml#readme",
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md
index 57ef15f65742b..f3b4cb873dd7c 100644
--- a/packages/gatsby/CHANGELOG.md
+++ b/packages/gatsby/CHANGELOG.md
@@ -3,6 +3,39 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [3.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby@3.1.0-next.4...gatsby@3.2.0-next.0) (2021-03-11)
+
+### Bug Fixes
+
+- **gatsby:** workaround some webpack issues causing first save after running gatsby develop to not have any effect ([#30193](https://github.com/gatsbyjs/gatsby/issues/30193)) ([a9d65f6](https://github.com/gatsbyjs/gatsby/commit/a9d65f640891ebcaa8da9ccc9c8ef0f40e4905cd))
+- **gatsyby:** improve error messages for errors outside of react" ([#30031](https://github.com/gatsbyjs/gatsby/issues/30031)) ([8183012](https://github.com/gatsbyjs/gatsby/commit/818301227f6f8946e2130a43b75f3d685bc32b70))
+
+# [3.1.0-next.4](https://github.com/gatsbyjs/gatsby/compare/gatsby@3.1.0-next.3...gatsby@3.1.0-next.4) (2021-03-10)
+
+### Bug Fixes
+
+- **deps:** update lodash monorepo to ^4.17.21 ([#29382](https://github.com/gatsbyjs/gatsby/issues/29382)) ([9fd287b](https://github.com/gatsbyjs/gatsby/commit/9fd287ba89eacd55652d468b18f6e1526230e7c6))
+- **gatsby:** Add dir=ltr to Fast Refresh overlay ([#29900](https://github.com/gatsbyjs/gatsby/issues/29900)) ([89d3150](https://github.com/gatsbyjs/gatsby/commit/89d3150a33441b3690d56ce5a99afd19452f6f03))
+- **gatsby:** always pass `stage` option to `babel-preset-gatsby` ([#30047](https://github.com/gatsbyjs/gatsby/issues/30047)) ([8cedc8d](https://github.com/gatsbyjs/gatsby/commit/8cedc8dd15e0fd3cb5bc62e8276a4a1f96e7c6f4))
+- **gatsby:** change browserlist to web/es5 ([#29954](https://github.com/gatsbyjs/gatsby/issues/29954)) ([ba8a498](https://github.com/gatsbyjs/gatsby/commit/ba8a498c268694999bfa7961d41018b09b523779))
+- **gatsby:** don't ignore SOURCE_FILE_CHANGED event ([#30127](https://github.com/gatsbyjs/gatsby/issues/30127)) ([f6d1c09](https://github.com/gatsbyjs/gatsby/commit/f6d1c093d2f5cf73e8bfdbfeefac18115a145463))
+- **gatsby:** Fix broken reporter call ([#30092](https://github.com/gatsbyjs/gatsby/issues/30092)) ([9429b3b](https://github.com/gatsbyjs/gatsby/commit/9429b3bfc5ab00ae02efddc20188a3bb95629e6d))
+- **gatsby:** fix routing for paths with characters like `@` etc ([#29935](https://github.com/gatsbyjs/gatsby/issues/29935)) ([157ae16](https://github.com/gatsbyjs/gatsby/commit/157ae165a4d1baa55a272b43f21c7acc89b4294b))
+- **gatsby:** fix some css HMR edge cases ([#29839](https://github.com/gatsbyjs/gatsby/issues/29839)) ([52facaf](https://github.com/gatsbyjs/gatsby/commit/52facaf7c5bf377cbec42d9d9f18832751a429a1))
+- **gatsby:** Fix various small DEV_SSR bugs exposed in development_runtime tests ([#29720](https://github.com/gatsbyjs/gatsby/issues/29720)) ([114e006](https://github.com/gatsbyjs/gatsby/commit/114e006c5866c15c8448904746d968e4ef904f83))
+- **gatsby:** freeze the schema only after rebuilding with SitePage ([#30132](https://github.com/gatsbyjs/gatsby/issues/30132)) ([4fc4248](https://github.com/gatsbyjs/gatsby/commit/4fc424868fa72b04a8152b2e8f0dceeb4955b15f))
+- **gatsby:** handle case of removing trailing slash in inc builds ([#29953](https://github.com/gatsbyjs/gatsby/issues/29953)) ([7462030](https://github.com/gatsbyjs/gatsby/commit/7462030b9f3c6ad028a2469b850e3477b4f0b954))
+- **gatsby:** Improve Fast Refresh overlay styles ([#29855](https://github.com/gatsbyjs/gatsby/issues/29855)) ([c8bf060](https://github.com/gatsbyjs/gatsby/commit/c8bf0605ada2f4f20c518d51ef8629fb2ea48de7))
+- **gatsby:** Remove `react-hot-loader` deps & other unused deps ([#29864](https://github.com/gatsbyjs/gatsby/issues/29864)) ([39721fd](https://github.com/gatsbyjs/gatsby/commit/39721fd2f3f4a997c6a954c60ae81bb93712c0b1))
+- **gatsby:** set program.verbose when VERBOSE env var is used ([#30123](https://github.com/gatsbyjs/gatsby/issues/30123)) ([632f915](https://github.com/gatsbyjs/gatsby/commit/632f9151ceb2d5621dc720adca3ee8049e6179d6))
+- **gatsby:** with some custom babel configs array spreading with Set is not safe ([#29885](https://github.com/gatsbyjs/gatsby/issues/29885)) ([5d312fe](https://github.com/gatsbyjs/gatsby/commit/5d312fe5433dbafb9a6b7eeba6abb563dba27ef2))
+- **gatsby-plugin-preact:** fix fast-refresh ([#29831](https://github.com/gatsbyjs/gatsby/issues/29831)) ([81a3776](https://github.com/gatsbyjs/gatsby/commit/81a377650e267b930482abf647053b1a0b6bc384))
+
+### Features
+
+- **gatsby:** Add darkmode support to Fast Refresh overlay ([#30025](https://github.com/gatsbyjs/gatsby/issues/30025)) ([b7fb616](https://github.com/gatsbyjs/gatsby/commit/b7fb616ab79f10dd8f1faf6ea23fea0fa4424f26))
+- **gatsby:** improve error messages at runtime ([#29970](https://github.com/gatsbyjs/gatsby/issues/29970)) ([d37f275](https://github.com/gatsbyjs/gatsby/commit/d37f2757b6b6e46335f3ba4fcaabf3a85251f045))
+
# [3.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby@3.1.0-next.2...gatsby@3.1.0-next.3) (2021-02-28)
### Bug Fixes
diff --git a/packages/gatsby/README.md b/packages/gatsby/README.md
index 04f244f00f15d..67d5540e2d67f 100644
--- a/packages/gatsby/README.md
+++ b/packages/gatsby/README.md
@@ -162,7 +162,10 @@ This repository is a [monorepo](https://trunkbaseddevelopment.com/monorepos/) ma
### Contributing to Gatsby v2
-We are currently only accepting bug fixes for Gatsby v2. No new features will be accepted.
+The maintenance window for Gatsby v2 closes on April 1, 2021.
+
+- During this maintenance window, we will continue to address reported bugs in Gatsby v2.
+- After the maintenance window closes, we will only accept critical security updates for Gatsby v2.
## π License
diff --git a/packages/gatsby/cache-dir/__tests__/ensure-resources.tsx b/packages/gatsby/cache-dir/__tests__/ensure-resources.tsx
index 0613effcbdb04..8d5841c614fbd 100644
--- a/packages/gatsby/cache-dir/__tests__/ensure-resources.tsx
+++ b/packages/gatsby/cache-dir/__tests__/ensure-resources.tsx
@@ -4,6 +4,9 @@ import { render, getNodeText, cleanup } from "@testing-library/react"
jest.mock(`../loader`, () => {
return {
+ PageResourceStatus: {
+ Error: `error`,
+ },
loadPageSync(path: string): { loadPageSync: boolean; path: string } {
return { loadPageSync: true, path }
},
diff --git a/packages/gatsby/cache-dir/ensure-resources.js b/packages/gatsby/cache-dir/ensure-resources.js
index c3232c1fab076..80bbb8d8dcdf9 100644
--- a/packages/gatsby/cache-dir/ensure-resources.js
+++ b/packages/gatsby/cache-dir/ensure-resources.js
@@ -8,13 +8,18 @@ class EnsureResources extends React.Component {
const { location, pageResources } = props
this.state = {
location: { ...location },
- pageResources: pageResources || loader.loadPageSync(location.pathname),
+ pageResources:
+ pageResources ||
+ loader.loadPageSync(location.pathname, { withErrorDetails: true }),
}
}
static getDerivedStateFromProps({ location }, prevState) {
if (prevState.location.href !== location.href) {
- const pageResources = loader.loadPageSync(location.pathname)
+ const pageResources = loader.loadPageSync(location.pathname, {
+ withErrorDetails: true,
+ })
+
return {
pageResources,
location: { ...location },
@@ -82,12 +87,20 @@ class EnsureResources extends React.Component {
}
render() {
- if (process.env.NODE_ENV !== `production` && !this.state.pageResources) {
- throw new Error(
- `EnsureResources was not able to find resources for path: "${this.props.location.pathname}"
+ if (
+ process.env.NODE_ENV !== `production` &&
+ (!this.state.pageResources ||
+ this.state.pageResources.status === PageResourceStatus.Error)
+ ) {
+ const message = `EnsureResources was not able to find resources for path: "${this.props.location.pathname}"
This typically means that an issue occurred building components for that path.
Run \`gatsby clean\` to remove any cached elements.`
- )
+ if (this.state.pageResources?.error) {
+ console.error(message)
+ throw this.state.pageResources.error
+ }
+
+ throw new Error(message)
}
return this.props.children(this.state)
diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/style.js b/packages/gatsby/cache-dir/fast-refresh-overlay/style.js
index 6220e6420b1c8..2c56d3e7de802 100644
--- a/packages/gatsby/cache-dir/fast-refresh-overlay/style.js
+++ b/packages/gatsby/cache-dir/fast-refresh-overlay/style.js
@@ -15,7 +15,6 @@ export const Style = () => (
:host {
--color-ansi-selection: rgba(95, 126, 151, 0.48);
--color-ansi-bg: #fafafa;
- --color-ansi-bg-darker: #eeeeee;
--color-ansi-fg: #545454;
--color-ansi-white: #969896;
--color-ansi-black: #141414;
@@ -36,12 +35,13 @@ export const Style = () => (
--importantLight: #ffffff;
--importantDark: #000000;
--backdrop: rgba(72, 67, 79, 0.5);
- --color: rgb(69, 74, 83);
+ --color: #454a53;
--background: var(--color-ansi-bright-white);
--primary: #663399;
--primaryLight: #9158ca;
--link: var(--primary);
- --dimmedBg: rgba(255, 255, 255, 0.8);
+ --line: #e0e0e0;
+ --colorHeader: rgba(255, 255, 255, 0.8);
--codeFrame-bg: #eeeeee;
--codeFrame-color: #414141;
--codeFrame-button-bg: white;
@@ -51,6 +51,9 @@ export const Style = () => (
--space: 1.5em;
--space-sm: 1em;
--space-lg: 2.5em;
+ --rootBoxShadowOpacity: 0.08;
+ --ring-opacity: 0.65;
+ --ring-color: rgba(138, 75, 175, var(--ring-opacity));
}
[data-gatsby-overlay="backdrop"] {
@@ -63,7 +66,6 @@ export const Style = () => (
height: 100%;
width: 100%;
backdrop-filter: blur(10px);
- cursor: not-allowed;
z-index: var(--z-index-backdrop);
}
@@ -81,8 +83,9 @@ export const Style = () => (
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
- box-shadow: rgba(46, 41, 51, 0.08) 0px 7px 19px 11px,
- rgba(71, 63, 79, 0.08) 0px 2px 4px;
+ box-shadow: rgba(46, 41, 51, var(--rootBoxShadowOpacity)) 0px 7px 19px
+ 11px,
+ rgba(71, 63, 79, var(--rootBoxShadowOpacity)) 0px 2px 4px;
border-radius: var(--radii);
display: inline-flex;
flex-direction: column;
@@ -93,6 +96,14 @@ export const Style = () => (
color: var(--link);
text-decoration: none;
font-weight: 500;
+ padding: 0.25em;
+ border-radius: 4px;
+ }
+
+ [data-gatsby-overlay="root"] button:focus,
+ [data-gatsby-overlay="root"] a:focus {
+ outline: 4px solid transparent;
+ box-shadow: 0 0 0 4px var(--ring-color);
}
[data-gatsby-overlay="root"] a:hover {
@@ -103,7 +114,7 @@ export const Style = () => (
display: grid;
grid-gap: var(--space-sm);
grid-template-columns: 1fr auto;
- color: var(--dimmedBg);
+ color: var(--colorHeader);
background: var(--primary);
padding: var(--space);
border-top-left-radius: var(--radii);
@@ -180,6 +191,8 @@ export const Style = () => (
}
[data-gatsby-overlay="header__open-in-editor"] {
+ --ring-opacity: 0.9;
+ --ring-color: rgba(54, 32, 102, var(--ring-opacity));
align-items: center;
border-radius: var(--radii);
justify-content: center;
@@ -216,7 +229,7 @@ export const Style = () => (
background: var(--codeFrame-button-bg);
font-size: 0.9em;
min-width: 2em;
- padding: 0.25em 0.75em;
+ padding: 0.35em 0.75em;
appearance: none;
margin-right: var(--space-sm);
}
@@ -229,6 +242,8 @@ export const Style = () => (
}
[data-gatsby-overlay="header__close-button"] {
+ --ring-opacity: 0.9;
+ --ring-color: rgba(54, 32, 102, var(--ring-opacity));
cursor: pointer;
border: 0;
padding: 0;
@@ -280,7 +295,7 @@ export const Style = () => (
[data-gatsby-overlay="accordion__item"] {
overflow: visible;
box-sizing: border-box;
- border-top: 1px solid #e0e0e0;
+ border-top: 1px solid var(--line);
transition: all 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
margin: 0;
padding: 0;
@@ -302,6 +317,7 @@ export const Style = () => (
padding: 1em 0;
cursor: pointer;
appearance: none;
+ user-select: text;
}
[data-gatsby-overlay="accordion__item__heading"] svg {
@@ -309,6 +325,7 @@ export const Style = () => (
width: 1em;
height: 1em;
margin: 2px 1em 0 0;
+ color: var(--importantDark);
}
[data-gatsby-overlay="accordion__item__title"] {
@@ -356,6 +373,47 @@ export const Style = () => (
grid-template-columns: 1fr auto;
}
}
+
+ @media (prefers-color-scheme: dark) {
+ :host {
+ --color-ansi-bg: #2b2b2b;
+ --color-ansi-fg: #d1d5db;
+ --color-ansi-white: #ffffff;
+ --color-ansi-black: #d4d0ab;
+ --color-ansi-blue: #4791ff;
+ --color-ansi-cyan: #00e0e0;
+ --color-ansi-green: #abe338;
+ --color-ansi-magenta: #dcc6e0;
+ --color-ansi-red: #ffa07a;
+ --color-ansi-yellow: #ffd700;
+ --color-ansi-bright-white: #ffffff;
+ --color-ansi-bright-black: #d4d0ab;
+ --color-ansi-bright-blue: #4791ff;
+ --color-ansi-bright-cyan: #00e0e0;
+ --color-ansi-bright-green: #abe338;
+ --color-ansi-bright-magenta: #dcc6e0;
+ --color-ansi-bright-red: #ffa07a;
+ --color-ansi-bright-yellow: #ffd700;
+ --importantDark: white;
+ --backdrop: rgba(48, 48, 50, 0.75);
+ --color: #d1d5db;
+ --link: #d9bae8;
+ --background: #232129;
+ --primary: #452475;
+ --primaryLight: #663399;
+ --line: #464647;
+ --codeFrame-bg: #18171d;
+ --codeFrame-color: #d1d5db;
+ --codeFrame-button-bg: #232129;
+ --rootBoxShadowOpacity: 0.15;
+ --ring-color: rgba(217, 186, 232, var(--ring-opacity));
+ }
+
+ [data-gatsby-overlay="header__close-button"],
+ [data-gatsby-overlay="header__open-in-editor"] {
+ --ring-color: rgba(177, 122, 204, var(--ring-opacity));
+ }
+ }
`,
}}
/>
diff --git a/packages/gatsby/cache-dir/loader.js b/packages/gatsby/cache-dir/loader.js
index f42da55644d5f..1a1e227718bde 100644
--- a/packages/gatsby/cache-dir/loader.js
+++ b/packages/gatsby/cache-dir/loader.js
@@ -348,12 +348,22 @@ export class BaseLoader {
return inFlightPromise
}
- // returns undefined if loading page ran into errors
- loadPageSync(rawPath) {
+ // returns undefined if the page does not exists in cache
+ loadPageSync(rawPath, options = {}) {
const pagePath = findPath(rawPath)
if (this.pageDb.has(pagePath)) {
- const pageData = this.pageDb.get(pagePath).payload
- return pageData
+ const pageData = this.pageDb.get(pagePath)
+
+ if (pageData.payload) {
+ return pageData.payload
+ }
+
+ if (options?.withErrorDetails) {
+ return {
+ error: pageData.error,
+ status: pageData.status,
+ }
+ }
}
return undefined
}
@@ -546,7 +556,9 @@ export const publicLoader = {
getResourceURLsForPathname: rawPath =>
instance.getResourceURLsForPathname(rawPath),
loadPage: rawPath => instance.loadPage(rawPath),
- loadPageSync: rawPath => instance.loadPageSync(rawPath),
+ // TODO add deprecation to v4 so people use withErrorDetails and then we can remove in v5 and change default behaviour
+ loadPageSync: (rawPath, options = {}) =>
+ instance.loadPageSync(rawPath, options),
prefetch: rawPath => instance.prefetch(rawPath),
isPageNotFound: rawPath => instance.isPageNotFound(rawPath),
hovering: rawPath => instance.hovering(rawPath),
diff --git a/packages/gatsby/cache-dir/ssr-builtin-trackers/http.js b/packages/gatsby/cache-dir/ssr-builtin-trackers/http.js
index 7393f9e40d32e..0560030cb200f 100644
--- a/packages/gatsby/cache-dir/ssr-builtin-trackers/http.js
+++ b/packages/gatsby/cache-dir/ssr-builtin-trackers/http.js
@@ -1,3 +1,3 @@
const { wrapModuleWithTracking } = require(`./tracking-unsafe-module-wrapper`)
-module.exports = wrapModuleWithTracking(`http`)
+module.exports = wrapModuleWithTracking(`http`, { ignore: [`http.Agent`] })
diff --git a/packages/gatsby/cache-dir/ssr-builtin-trackers/https.js b/packages/gatsby/cache-dir/ssr-builtin-trackers/https.js
index fa4b85606e09a..76fd598098912 100644
--- a/packages/gatsby/cache-dir/ssr-builtin-trackers/https.js
+++ b/packages/gatsby/cache-dir/ssr-builtin-trackers/https.js
@@ -1,3 +1,3 @@
const { wrapModuleWithTracking } = require(`./tracking-unsafe-module-wrapper`)
-module.exports = wrapModuleWithTracking(`https`)
+module.exports = wrapModuleWithTracking(`https`, { ignore: [`https.Agent`] })
diff --git a/packages/gatsby/cache-dir/ssr-builtin-trackers/tracking-unsafe-module-wrapper.js b/packages/gatsby/cache-dir/ssr-builtin-trackers/tracking-unsafe-module-wrapper.js
index 419cd613f8bdb..c6393c5f27fc9 100644
--- a/packages/gatsby/cache-dir/ssr-builtin-trackers/tracking-unsafe-module-wrapper.js
+++ b/packages/gatsby/cache-dir/ssr-builtin-trackers/tracking-unsafe-module-wrapper.js
@@ -1,32 +1,38 @@
// initializing global here for unsafe builtin usage at import time
global.unsafeBuiltinUsage = []
-function createProxyHandler(prefix) {
+function createProxyHandler(prefix, options) {
return {
get: function (target, key) {
const value = target[key]
+ const path = key && key.toString ? `${prefix}.${key.toString()}` : prefix
+
+ if (options.ignore.includes(path)) {
+ return value
+ }
+
if (typeof value === `function`) {
return function wrapper(...args) {
const myErrorHolder = {
- name: `Unsafe builtin usage ${prefix}.${key}`,
+ name: `Unsafe builtin usage ${path}`,
}
Error.captureStackTrace(myErrorHolder, wrapper)
- // loadPageDataSync already is tracked with dedicated warning messages,
+ // - loadPageDataSync already is tracked with dedicated warning messages,
// so skipping marking it to avoid multiple messages for same usage
- if (!myErrorHolder.stack.includes(`loadPageDataSync`)) {
+ // - node-gyp-build will use fs.readDirSync in attempt to load binaries
+ // this should be ok to ignore.
+ if (
+ !myErrorHolder.stack.includes(`loadPageDataSync`) &&
+ !myErrorHolder.stack.includes(`node-gyp-build`)
+ ) {
global.unsafeBuiltinUsage.push(myErrorHolder.stack)
}
return value.apply(target, args)
}
} else if (typeof value === `object` && value !== null) {
- return new Proxy(
- value,
- createProxyHandler(
- key && key.toString ? `${prefix}.${key.toString()}` : prefix
- )
- )
+ return new Proxy(value, createProxyHandler(path, options))
}
return value
@@ -34,9 +40,13 @@ function createProxyHandler(prefix) {
}
}
-function wrapModuleWithTracking(moduleName) {
+function wrapModuleWithTracking(moduleName, options = {}) {
+ if (!options.ignore) {
+ options.ignore = []
+ }
+
const mod = require(moduleName)
- return new Proxy(mod, createProxyHandler(moduleName))
+ return new Proxy(mod, createProxyHandler(moduleName, options))
}
exports.wrapModuleWithTracking = wrapModuleWithTracking
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json
index b0ec69c17d0c9..bc2a4b35c0ec3 100644
--- a/packages/gatsby/package.json
+++ b/packages/gatsby/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby",
"description": "Blazing fast modern site generator for React",
- "version": "3.1.0-next.3",
+ "version": "3.2.0-next.0",
"author": "Kyle Mathews ",
"bin": {
"gatsby": "./cli.js"
@@ -34,8 +34,8 @@
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "^3.3.4",
- "babel-plugin-remove-graphql-queries": "^3.1.0-next.1",
- "babel-preset-gatsby": "^1.1.0-next.1",
+ "babel-plugin-remove-graphql-queries": "^3.2.0-next.0",
+ "babel-preset-gatsby": "^1.2.0-next.0",
"better-opn": "^2.0.0",
"better-queue": "^3.8.10",
"bluebird": "^3.7.2",
@@ -77,16 +77,16 @@
"find-cache-dir": "^3.3.1",
"fs-exists-cached": "1.0.0",
"fs-extra": "^8.1.0",
- "gatsby-cli": "^3.1.0-next.2",
- "gatsby-core-utils": "^2.1.0-next.1",
- "gatsby-graphiql-explorer": "^1.1.0-next.1",
- "gatsby-legacy-polyfills": "^1.1.0-next.1",
- "gatsby-link": "^3.1.0-next.2",
- "gatsby-plugin-page-creator": "^3.1.0-next.1",
- "gatsby-plugin-typescript": "^3.1.0-next.1",
- "gatsby-plugin-utils": "^1.1.0-next.1",
- "gatsby-react-router-scroll": "^4.1.0-next.2",
- "gatsby-telemetry": "^2.1.0-next.1",
+ "gatsby-cli": "^3.2.0-next.0",
+ "gatsby-core-utils": "^2.2.0-next.0",
+ "gatsby-graphiql-explorer": "^1.2.0-next.0",
+ "gatsby-legacy-polyfills": "^1.2.0-next.0",
+ "gatsby-link": "^3.2.0-next.0",
+ "gatsby-plugin-page-creator": "^3.2.0-next.0",
+ "gatsby-plugin-typescript": "^3.2.0-next.0",
+ "gatsby-plugin-utils": "^1.2.0-next.0",
+ "gatsby-react-router-scroll": "^4.2.0-next.0",
+ "gatsby-telemetry": "^2.2.0-next.0",
"glob": "^7.1.6",
"got": "8.3.2",
"graphql": "^15.4.0",
@@ -174,7 +174,7 @@
"@types/string-similarity": "^3.0.0",
"@types/tmp": "^0.2.0",
"@types/webpack-virtual-modules": "^0.1.0",
- "babel-preset-gatsby-package": "^1.1.0-next.1",
+ "babel-preset-gatsby-package": "^1.2.0-next.0",
"cross-env": "^7.0.3",
"documentation": "^13.1.0",
"enhanced-resolve": "^4.2.0",
diff --git a/packages/gatsby/src/bootstrap/__tests__/requires-writer.js b/packages/gatsby/src/bootstrap/__tests__/requires-writer.js
index 35d95e7c72397..dd772a3fab652 100644
--- a/packages/gatsby/src/bootstrap/__tests__/requires-writer.js
+++ b/packages/gatsby/src/bootstrap/__tests__/requires-writer.js
@@ -20,6 +20,7 @@ const generatePagesState = pages => {
jest.mock(`fs-extra`, () => {
return {
writeFile: () => Promise.resolve(),
+ outputFileSync: () => {},
move: () => {},
}
})
diff --git a/packages/gatsby/src/commands/build.ts b/packages/gatsby/src/commands/build.ts
index 8bdc30b3e87b6..30ab3b6f370de 100644
--- a/packages/gatsby/src/commands/build.ts
+++ b/packages/gatsby/src/commands/build.ts
@@ -46,7 +46,10 @@ import {
import { updateSiteMetadata, isTruthy } from "gatsby-core-utils"
module.exports = async function build(program: IBuildArgs): Promise {
- report.setVerbose(isTruthy(process.env.VERBOSE) || program.verbose)
+ if (isTruthy(process.env.VERBOSE)) {
+ program.verbose = true
+ }
+ report.setVerbose(program.verbose)
if (program.profile) {
report.warn(
diff --git a/packages/gatsby/src/commands/develop-process.ts b/packages/gatsby/src/commands/develop-process.ts
index 42f138d8a2376..ea523cfb84251 100644
--- a/packages/gatsby/src/commands/develop-process.ts
+++ b/packages/gatsby/src/commands/develop-process.ts
@@ -80,7 +80,10 @@ const openDebuggerPort = (debugInfo: IDebugInfo): void => {
}
module.exports = async (program: IDevelopArgs): Promise => {
- reporter.setVerbose(isTruthy(process.env.VERBOSE) || program.verbose)
+ if (isTruthy(process.env.VERBOSE)) {
+ program.verbose = true
+ }
+ reporter.setVerbose(program.verbose)
if (program.debugInfo) {
openDebuggerPort(program.debugInfo)
diff --git a/packages/gatsby/src/schema/__tests__/rebuild-sitepage-type.js b/packages/gatsby/src/schema/__tests__/rebuild-sitepage-type.js
index 2a7342fe130cb..d032dfa071374 100644
--- a/packages/gatsby/src/schema/__tests__/rebuild-sitepage-type.js
+++ b/packages/gatsby/src/schema/__tests__/rebuild-sitepage-type.js
@@ -1,4 +1,5 @@
const { store } = require(`../../redux`)
+const { graphql } = require(`../../../graphql`)
const { build, rebuildWithSitePage } = require(`..`)
jest.mock(`gatsby-cli/lib/reporter`, () => {
@@ -115,7 +116,7 @@ describe(`build and update schema for SitePage`, () => {
expect(sortFieldsEnum.getValue(`context___key`)).toBeDefined()
})
- it(`updates nested types on rebuild`, async () => {
+ const testNestedFields = async () => {
let fields
let inputFields
@@ -149,6 +150,25 @@ describe(`build and update schema for SitePage`, () => {
.map(value => value.name)
expect(fieldsEnum.includes(`fields___oldKey`)).toBeTruthy()
expect(fieldsEnum.includes(`fields___key`)).toBeTruthy()
+ }
+
+ it(`updates nested types on rebuild`, testNestedFields)
+
+ it(`updates nested types on rebuild (with query executed before rebuilding)`, async () => {
+ // Set a stage for the same test as above but with graphql query executed before updating schema
+ // See https://github.com/gatsbyjs/gatsby/issues/30107
+ const result = await graphql(
+ schema,
+ `
+ {
+ __typename
+ }
+ `,
+ null,
+ {}
+ )
+ expect(result).toEqual({ data: { __typename: `Query` } })
+ await testNestedFields()
})
it(`respects @dontInfer on SitePage`, async () => {
diff --git a/packages/gatsby/src/schema/schema.js b/packages/gatsby/src/schema/schema.js
index 87e20119acb3f..b4e30533d0d5b 100644
--- a/packages/gatsby/src/schema/schema.js
+++ b/packages/gatsby/src/schema/schema.js
@@ -76,9 +76,6 @@ const buildSchema = async ({
// const { printSchema } = require(`graphql`)
const schema = schemaComposer.buildSchema()
- // Freeze all type composers except SitePage (as we will rebuild it at a later stage)
- freezeTypeComposers(schemaComposer, new Set([`SitePage`]))
-
// console.log(printSchema(schema))
return schema
}
@@ -117,7 +114,11 @@ const rebuildSchemaWithSitePage = async ({
fieldExtensions,
parentSpan,
})
- return schemaComposer.buildSchema()
+ const schema = schemaComposer.buildSchema()
+
+ freezeTypeComposers(schemaComposer)
+
+ return schema
}
module.exports = {
@@ -127,7 +128,7 @@ module.exports = {
// Workaround for https://github.com/graphql-compose/graphql-compose/issues/319
// FIXME: remove this when fixed in graphql-compose
-const freezeTypeComposers = (schemaComposer, excluded) => {
+const freezeTypeComposers = (schemaComposer, excluded = new Set()) => {
Array.from(schemaComposer.values()).forEach(tc => {
const isCompositeTC =
tc instanceof ObjectTypeComposer || tc instanceof InterfaceTypeComposer
diff --git a/packages/gatsby/src/state-machines/develop/index.ts b/packages/gatsby/src/state-machines/develop/index.ts
index b510a965778a0..e3a1f76b9909b 100644
--- a/packages/gatsby/src/state-machines/develop/index.ts
+++ b/packages/gatsby/src/state-machines/develop/index.ts
@@ -276,8 +276,6 @@ const developConfig: MachineConfig = {
ADD_NODE_MUTATION: {
actions: `callApi`,
},
- // Ignore, because we're about to extract them anyway
- SOURCE_FILE_CHANGED: undefined,
},
invoke: {
src: `reloadData`,
diff --git a/packages/gatsby/src/utils/gatsby-webpack-virtual-modules.ts b/packages/gatsby/src/utils/gatsby-webpack-virtual-modules.ts
index b322f4e078103..a79eea382ae15 100644
--- a/packages/gatsby/src/utils/gatsby-webpack-virtual-modules.ts
+++ b/packages/gatsby/src/utils/gatsby-webpack-virtual-modules.ts
@@ -1,5 +1,6 @@
import VirtualModulesPlugin from "webpack-virtual-modules"
import * as path from "path"
+import * as fs from "fs-extra"
/*
* This module allows creating virtual (in memory only) modules / files
* that webpack compilation can access without the need to write module
@@ -46,6 +47,10 @@ export function writeModule(filePath: string, fileContents: string): void {
return
}
+ // workaround webpack marking virtual modules as deleted because those files don't really exist
+ // so we create those files just so watchpack doesn't mark them as initially missing
+ fs.outputFileSync(adjustedFilePath, fileContents)
+
fileContentLookup[adjustedFilePath] = fileContents
instances.forEach(instance => {
diff --git a/packages/gatsby/src/utils/start-server.ts b/packages/gatsby/src/utils/start-server.ts
index 9df9e4fb1b3cb..b7e9bad3921d5 100644
--- a/packages/gatsby/src/utils/start-server.ts
+++ b/packages/gatsby/src/utils/start-server.ts
@@ -78,6 +78,11 @@ export async function startServer(
})
webpackActivity.start()
+ // loading indicator
+ // write virtual module always to not fail webpack compilation, but only add express route handlers when
+ // query on demand is enabled and loading indicator is not disabled
+ writeVirtualLoadingIndicatorModule()
+
const THIRTY_SECONDS = 30 * 1000
let cancelDevJSNotice: CancelExperimentNoticeCallbackOrUndefined
if (
@@ -486,10 +491,6 @@ module.exports = {
route({ app, program, store })
}
- // loading indicator
- // write virtual module always to not fail webpack compilation, but only add express route handlers when
- // query on demand is enabled and loading indicator is not disabled
- writeVirtualLoadingIndicatorModule()
if (
process.env.GATSBY_EXPERIMENTAL_QUERY_ON_DEMAND &&
process.env.GATSBY_QUERY_ON_DEMAND_LOADING_INDICATOR === `true`
diff --git a/starters/gatsby-starter-wordpress-blog/README.md b/starters/gatsby-starter-wordpress-blog/README.md
index 6b957994a7a89..23f18cf8bcdb7 100644
--- a/starters/gatsby-starter-wordpress-blog/README.md
+++ b/starters/gatsby-starter-wordpress-blog/README.md
@@ -5,10 +5,10 @@
- Gatsby's blog starter
+ Gatsby WordPress blog starter
-Kick off your project with this blog boilerplate. This starter ships with the main Gatsby configuration files you might need to get up and running blazing fast with the blazing fast app generator for React.
+Kick off your WordPress Gatsby project with this blog boilerplate. This starter ships with the main Gatsby WordPress configuration files you might need to get up and running blazing fast with the blazing fast app generator for React.
_Have another more specific idea? You may want to check out our vibrant collection of [official and community-created starters](https://www.gatsbyjs.com/docs/gatsby-starters/)._
@@ -20,7 +20,7 @@ _Have another more specific idea? You may want to check out our vibrant collecti
```shell
# create a new Gatsby site using the blog starter
- gatsby new my-blog-starter https://github.com/gatsbyjs/gatsby-starter-blog
+ gatsby new my-blog-starter https://github.com/gatsbyjs/gatsby-starter-wordpress-blog
```
1. **Start developing.**
@@ -92,8 +92,8 @@ Looking for more guidance? Full documentation for Gatsby lives [on the website](
## π« Deploy
-[](https://app.netlify.com/start/deploy?repository=https://github.com/gatsbyjs/gatsby-starter-blog)
+[Build, Deploy, and Host On The Only Cloud Built For Gatsby](https://www.gatsbyjs.com/cloud/)
-[](https://vercel.com/import/project?template=https://github.com/gatsbyjs/gatsby-starter-blog)
+Gatsby Cloud is an end-to-end cloud platform specifically built for the Gatsby framework that combines a modern developer experience with an optimized, global edge network.
diff --git a/starters/upgrade-starters.sh b/starters/upgrade-starters.sh
old mode 100644
new mode 100755
diff --git a/yarn.lock b/yarn.lock
index 21fc5890edafc..4fdd7a03da431 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6015,14 +6015,14 @@ autolinker@~0.28.0:
dependencies:
gulp-header "^1.7.1"
-autoprefixer@^10.1.0, autoprefixer@^10.2.4:
- version "10.2.4"
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.2.4.tgz#c0e7cf24fcc6a1ae5d6250c623f0cb8beef2f7e1"
- integrity sha512-DCCdUQiMD+P/as8m3XkeTUkUKuuRqLGcwD0nll7wevhqoJfMRpJlkFd1+MQh1pvupjiQuip42lc/VFvfUTMSKw==
+autoprefixer@^10.1.0, autoprefixer@^10.2.4, autoprefixer@^10.2.5:
+ version "10.2.5"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.2.5.tgz#096a0337dbc96c0873526d7fef5de4428d05382d"
+ integrity sha512-7H4AJZXvSsn62SqZyJCP+1AWwOuoYpUfK6ot9vm0e87XD6mT8lDywc9D9OTJPMULyGcvmIxzTAMeG2Cc+YX+fA==
dependencies:
- browserslist "^4.16.1"
- caniuse-lite "^1.0.30001181"
- colorette "^1.2.1"
+ browserslist "^4.16.3"
+ caniuse-lite "^1.0.30001196"
+ colorette "^1.2.2"
fraction.js "^4.0.13"
normalize-range "^0.1.2"
postcss-value-parser "^4.1.0"
@@ -6886,7 +6886,7 @@ browserslist@4.14.2:
escalade "^3.0.2"
node-releases "^1.1.61"
-browserslist@^4.0.0, browserslist@^4.12.2, browserslist@^4.13.0, browserslist@^4.14.5, browserslist@^4.16.1, browserslist@^4.16.3:
+browserslist@^4.0.0, browserslist@^4.12.2, browserslist@^4.13.0, browserslist@^4.14.5, browserslist@^4.16.3:
version "4.16.3"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717"
integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==
@@ -7299,10 +7299,10 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001181:
- version "1.0.30001191"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz#bacb432b6701f690c8c5f7c680166b9a9f0843d9"
- integrity sha512-xJJqzyd+7GCJXkcoBiQ1GuxEiOBCLQ0aVW9HMekifZsAVGdj5eJ4mFB9fEhSHipq9IOk/QXFJUiIr9lZT+EsGw==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001181, caniuse-lite@^1.0.30001196:
+ version "1.0.30001197"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001197.tgz#47ad15b977d2f32b3ec2fe2b087e0c50443771db"
+ integrity sha512-8aE+sqBqtXz4G8g35Eg/XEaFr2N7rd/VQ6eABGBmNtcB8cN6qNJhMi6oSFy4UWWZgqgL3filHT8Nha4meu3tsw==
capitalize@^2.0.3:
version "2.0.3"
@@ -7356,7 +7356,7 @@ cfb@^1.1.4:
crc-32 "~1.2.0"
printj "~1.1.2"
-chalk@2.4.2, chalk@^2.0, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2:
+chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -7868,10 +7868,10 @@ color@^3.0.0, color@^3.1.3:
color-convert "^1.9.1"
color-string "^1.5.4"
-colorette@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
- integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==
+colorette@^1.2.1, colorette@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
+ integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
colors@^1.1.2:
version "1.3.2"
@@ -9074,10 +9074,10 @@ damerau-levenshtein@^1.0.6:
resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791"
integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==
-danger@^10.6.1:
- version "10.6.1"
- resolved "https://registry.yarnpkg.com/danger/-/danger-10.6.1.tgz#b19bd8f15f764b13a4bc3c1cb5b3a74e199f93c4"
- integrity sha512-uoAhEziWafPq9oCHFFr4d3gMcAmiLaybUT73c1ZEWnATGlwPthGKDOE9DE0TNpr2yMeV9GgpruOD5URivP8LBw==
+danger@^10.6.3:
+ version "10.6.3"
+ resolved "https://registry.yarnpkg.com/danger/-/danger-10.6.3.tgz#a312893991a7ceb3376b177a6643b1185a9cf34b"
+ integrity sha512-9aLh21tdJGb1CNuuk0xostg2jix8jFQ+CZuC4h38832Wbcaznj+hA8i7E1VPM5d797SIGURdemLvYBlLcgZ4YQ==
dependencies:
"@babel/polyfill" "^7.2.5"
"@octokit/rest" "^16.43.1"
@@ -15663,10 +15663,10 @@ json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
-json2csv@^5.0.4:
- version "5.0.4"
- resolved "https://registry.yarnpkg.com/json2csv/-/json2csv-5.0.4.tgz#f35bf7796dcc5108d863a85719b2d3143cdc2560"
- integrity sha512-ccKQVrhxPVz0xRh/YIrRomIC9BSRAJQcaWfycbLweXVpkiLWmVQ+jvhFOVnatXbJHQaQzCdVkUyATAlgDMkFZQ==
+json2csv@^5.0.6:
+ version "5.0.6"
+ resolved "https://registry.yarnpkg.com/json2csv/-/json2csv-5.0.6.tgz#590e0e1b9579e59baa53bda0c0d840f4d8009687"
+ integrity sha512-0/4Lv6IenJV0qj2oBdgPIAmFiKKnh8qh7bmLFJ+/ZZHLjSeiL3fKKGX3UryvKPbxFbhV+JcYo9KUC19GJ/Z/4A==
dependencies:
commander "^6.1.0"
jsonparse "^1.3.1"
@@ -16136,10 +16136,10 @@ linkify-it@^2.0.0:
dependencies:
uc.micro "^1.0.1"
-lint-staged@^10.5.3:
- version "10.5.3"
- resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.5.3.tgz#c682838b3eadd4c864d1022da05daa0912fb1da5"
- integrity sha512-TanwFfuqUBLufxCc3RUtFEkFraSPNR3WzWcGF39R3f2J7S9+iF9W0KTVLfSy09lYGmZS5NDCxjNvhGMSJyFCWg==
+lint-staged@^10.5.4:
+ version "10.5.4"
+ resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-10.5.4.tgz#cd153b5f0987d2371fc1d2847a409a2fe705b665"
+ integrity sha512-EechC3DdFic/TdOPgj/RB3FicqE6932LTHCUm0Y2fsD9KGlLB+RwJl2q1IYBIvEsKzDOgn0D4gll+YxG5RsrKg==
dependencies:
chalk "^4.1.0"
cli-truncate "^2.1.0"
@@ -17658,7 +17658,7 @@ mkdirp@*, mkdirp@^1.0.3, mkdirp@^1.0.4, mkdirp@~1.0.4:
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
-mkdirp@0.5.5, mkdirp@^0.5, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1:
+mkdirp@0.5.5, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1:
version "0.5.5"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
@@ -24418,13 +24418,13 @@ stylehacks@^4.0.0:
postcss "^6.0.0"
postcss-selector-parser "^3.0.0"
-styletron-engine-atomic@^1.4.6:
- version "1.4.6"
- resolved "https://registry.yarnpkg.com/styletron-engine-atomic/-/styletron-engine-atomic-1.4.6.tgz#0cfaa32dd8c386a4736b9cd25361711712c4fd98"
- integrity sha512-1dPXjIjdd3nrQdh1PYvQ3MOd0syzAkFVJzaH31rwy0lhSSsKzfCqn1WLtaLqvL5z89J9wwAsu9CaNZis06K+4g==
+styletron-engine-atomic@^1.4.7:
+ version "1.4.7"
+ resolved "https://registry.yarnpkg.com/styletron-engine-atomic/-/styletron-engine-atomic-1.4.7.tgz#0c6572491685308f3a5b4565016c7c5637bcb4fb"
+ integrity sha512-RDWbNjMNi4mCH+OhTSU76cnBxs4sPF1PAYwn5pwI8z6U8L9BVv1Q8lpci/zXqrwt6oqQZ05yj7gDoYxsXB6xZg==
dependencies:
inline-style-prefixer "^5.1.0"
- styletron-standard "^3.0.4"
+ styletron-standard "^3.0.5"
styletron-react@^5.2.7:
version "5.2.7"
@@ -24434,10 +24434,10 @@ styletron-react@^5.2.7:
prop-types "^15.6.0"
styletron-standard "^3.0.4"
-styletron-standard@^3.0.4:
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/styletron-standard/-/styletron-standard-3.0.4.tgz#2b286752f464e4c9824faaee466013aa8f13cf6b"
- integrity sha512-AozOYUEtB5m0s+6ieLCObqYsBitLJmag3IoD/yg0Y9X32AYKwtGO4emx9cljD25k2S/R1XmLPgThOU+orjXTKg==
+styletron-standard@^3.0.4, styletron-standard@^3.0.5:
+ version "3.0.5"
+ resolved "https://registry.yarnpkg.com/styletron-standard/-/styletron-standard-3.0.5.tgz#35dd4a584d668ef73b145988cdbece69a1e39085"
+ integrity sha512-0paxpsQg2QnlapGLnM49yEPZ015VEi/ovys9Hu0wBduimKshYUZLLl1Emfs5jx1LHVXrDn4j+DYVclJGWJC7Jw==
dependencies:
"@rtsao/csstype" "2.6.5-forked.0"
inline-style-prefixer "^5.1.0"
@@ -24992,10 +24992,10 @@ timsort@^0.3.0:
version "0.3.0"
resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
-tiny-async-pool@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.1.0.tgz#cd3fdafaae84f2aa2539a07b428b40f801219c5b"
- integrity sha512-jIglyHF/9QdCC3662m/UMVADE6SlocBDpXdFLMZyiAfrw8MSG1pml7lwRtBMT6L/z4dddAxfzw2lpW2Vm42fyQ==
+tiny-async-pool@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/tiny-async-pool/-/tiny-async-pool-1.2.0.tgz#22132957e18f8b6020a94b390d07718fd519cc71"
+ integrity sha512-PY/OiSenYGBU3c1nTuP1HLKRkhKFDXsAibYI5GeHbHw2WVpt6OFzAPIRP94dGnS66Jhrkheim2CHAXUNI4XwMg==
dependencies:
semver "^5.5.0"
yaassertion "^1.0.0"
@@ -26585,19 +26585,6 @@ webidl-conversions@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
-webpack-assets-manifest@^3.1.1:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/webpack-assets-manifest/-/webpack-assets-manifest-3.1.1.tgz#39bbc3bf2ee57fcd8ba07cda51c9ba4a3c6ae1de"
- integrity sha512-JV9V2QKc5wEWQptdIjvXDUL1ucbPLH2f27toAY3SNdGZp+xSaStAgpoMcvMZmqtFrBc9a5pTS1058vxyMPOzRQ==
- dependencies:
- chalk "^2.0"
- lodash.get "^4.0"
- lodash.has "^4.0"
- mkdirp "^0.5"
- schema-utils "^1.0.0"
- tapable "^1.0.0"
- webpack-sources "^1.0.0"
-
webpack-assets-manifest@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/webpack-assets-manifest/-/webpack-assets-manifest-5.0.1.tgz#5f2b45579e87f122dc9af714f9508c462383a722"
@@ -26714,7 +26701,7 @@ webpack-sources@^0.2.0:
source-list-map "^1.1.1"
source-map "~0.5.3"
-webpack-sources@^1.0.0, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
+webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
version "1.4.3"
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==