From 60b665844f1e2624d683e1dbd2a60985d25b4981 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Mon, 11 May 2020 20:11:56 -0700 Subject: [PATCH 1/6] fix(gatsby-recipes): support code blocks on cli --- packages/gatsby-recipes/src/cli.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages/gatsby-recipes/src/cli.js b/packages/gatsby-recipes/src/cli.js index fd4034876eeac..da381be9e80c2 100644 --- a/packages/gatsby-recipes/src/cli.js +++ b/packages/gatsby-recipes/src/cli.js @@ -192,6 +192,22 @@ function eliminateNewLines(children) { const components = { inlineCode: props => , + code: props => { + const children = props.children.trim() + // eslint-disable-next-line + let language = "```" + if (props.className) { + // eslint-disable-next-line + language = "```" + props.className.split(`-`)[1] + } + return ( +
+ {language} + {children} + ``` +
+ ) + }, h1: props => (
From 1c153a0128055dd277b502c63329e6ad46e544d3 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Mon, 11 May 2020 20:22:30 -0700 Subject: [PATCH 2/6] Squashed commit of the following: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 9bd54befeb04f0cf22643accdd4caa5a2708993f Author: Hashim Warren Date: Mon May 11 16:31:31 2020 -0400 (chore)Update Incremental Builds blog post with list (#23981) * Update steps with ordered list * Update docs/blog/2020-04-22-announcing-incremental-builds/index.md Co-authored-by: Matt Kane * Update docs/blog/2020-04-22-announcing-incremental-builds/index.md Co-authored-by: Matt Kane * Update link and SEO title * chore: format Co-authored-by: Matt Kane Co-authored-by: gatsbybot commit e8b6eea73b644655807c4e199690f3b7189fdb22 Author: shannonbux <32467162+shannonbux@users.noreply.github.com> Date: Mon May 11 10:37:30 2020 -0700 fixed capitalization commit f45791264f6b11745bbfa3ba6e9aebecff843ac6 Author: Diogo Capela Date: Mon May 11 18:04:08 2020 +0100 chore(showcase): Add Zona Digital to Gatsby Showcase (#23980) Co-authored-by: Capela Co-authored-by: Matt Kane commit eb0f0d885ff30b1407050b6e1405490e711298ed Author: Mike Dane Date: Tue May 12 02:42:34 2020 +1000 removed space on bootstrap finished time (#23925) Co-authored-by: gatsbybot commit c7e952b93340bfabf693623e1b0fe5bd28030c1e Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Date: Mon May 11 17:39:08 2020 +0100 chore: update www (#23971) Co-authored-by: Renovate Bot commit 224e84ed53907dbff4b7b0ddbfbed7fe2bfa19e5 Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Date: Mon May 11 17:38:30 2020 +0100 fix: update starters and examples (#23972) Co-authored-by: Renovate Bot commit 7b74535b43fb5454d87374c24669ed78ade2cf03 Author: Raz Lifshitz <30860151+razrez@users.noreply.github.com> Date: Mon May 11 19:13:43 2020 +0300 Update sites.yml (#23938) * Update sites.yml Added ofrilifshitz.com to sites.yml * chore: format Co-authored-by: gatsbybot commit e5a24617b863ef9a1391b6f18ac98302b46a1756 Author: Matt Kane Date: Mon May 11 17:11:20 2020 +0100 Add redirect for Vercel docs (#23979) commit 441f32aa9bfabea13b34d7b8507bc38dc1cb62e2 Author: Christian Rackerseder Date: Mon May 11 17:27:38 2020 +0200 Rename ZEIT Now to Vercel (#23961) commit 7a233927fd25e002b5ea0e962cdb5ad1fe5f2382 Author: Dede Hamzah Date: Mon May 11 21:45:23 2020 +0700 fix: handle nullish announcementRef to fix client side redirect error (#23956) commit 49dfc6f5c557376b647be02b1bd686c4dc289709 Author: Gabriel Ramos Date: Mon May 11 10:42:17 2020 -0300 chore(gatsby): Convert jobsV2 reducer to TS (#23708) * chore(ts): convert jobsv2 reducer to TS * Update packages/gatsby/src/redux/reducers/jobsv2.ts Co-authored-by: Ward Peeters * refactor(pr): refactor based on PR comments * Update packages/gatsby/src/redux/reducers/jobsv2.ts Co-authored-by: Ward Peeters * fix(lint): fix lint error * add result typing to jobs-manager Co-authored-by: Ward Peeters commit c5144ea797568bd1658f028a5196b949a10a0775 Author: Rajeesh C V Date: Mon May 11 18:53:21 2020 +0530 chore(docs): add Clodui deployment guide (#23587) * chore(docs): add Clodui deployment guide * update Clodui deployment doc with review comments * Update docs/docs/deploying-to-clodui.md * Update docs/docs/deploying-to-clodui.md * Update docs/docs/deploying-to-clodui.md * Update docs/docs/deploying-to-clodui.md * chore: format Co-authored-by: Obinna Ekwuno Co-authored-by: gatsbybot commit c34bd667b3ecdfaef365ced82d8c2fa46d73ad39 Author: Michal Piechowiak Date: Mon May 11 12:54:24 2020 +0200 chore(release): Publish - gatsby-admin@0.1.22 - gatsby-cli@2.12.16 - gatsby-recipes@0.1.15 - gatsby-theme-blog-core@1.4.22 - gatsby-theme-blog@1.5.22 - gatsby-theme-notes@1.3.22 - gatsby-theme-ui-preset@0.0.12 - gatsby@2.21.22 commit f7dc43fe310ebcecf99bc81cc25df256ffe38f51 Author: Albert Lash <31164347+albertlincoln@users.noreply.github.com> Date: Mon May 11 11:52:59 2020 +0100 fix(gatsby-cli): don't fail when using `--log-pages` and/or `--write-to-file` (#23951) * Adding new cli options for page optimization * prettier * make them hidden, add some description as well as comment about why they are hidden Co-authored-by: Michal Piechowiak commit 88056f054cb6a539f5cb371336174516e47a1c07 Author: Michal Piechowiak Date: Mon May 11 01:17:47 2020 +0200 fix(www): allow to tree shake lodash-es (#23967) commit e267ca00f519a1cddb230a34fc11acf5d8e2fc17 Author: Andrés Bedoya Date: Sat May 9 15:51:42 2020 -0500 Update deploying-to-zeit-now.md (#23946) --- .../index.md | 13 ++- docs/docs/deploying-to-clodui.md | 95 ++++++++++++++++++ ...-to-zeit-now.md => deploying-to-vercel.md} | 4 +- docs/docs/recipes.md | 2 +- docs/sites.yml | 23 +++++ examples/client-only-paths/package.json | 2 +- .../example-site/package.json | 2 +- .../source-plugin/package.json | 8 +- examples/data-fetching/package.json | 2 +- .../package.json | 2 +- examples/feed/package.json | 2 +- examples/gatsbygram/package.json | 2 +- examples/graphql-reference/package.json | 2 +- examples/hn/package.json | 2 +- examples/image-processing/package.json | 2 +- examples/no-plugins/package.json | 2 +- examples/no-trailing-slashes/package.json | 2 +- examples/recipe-createPage/package.json | 2 +- .../recipe-linking-between-pages/package.json | 2 +- .../recipe-sourcing-contentful/package.json | 2 +- .../recipe-sourcing-markdown/package.json | 2 +- examples/recipe-static-image/package.json | 2 +- examples/recipe-webpack-image/package.json | 2 +- examples/recipes-gatsby-image/package.json | 2 +- examples/simple-auth/package.json | 2 +- examples/sitemap/package.json | 2 +- examples/styleguide/package.json | 2 +- examples/using-MDX/package.json | 2 +- examples/using-asciidoc/package.json | 2 +- examples/using-contentful/package.json | 2 +- examples/using-css-modules/package.json | 2 +- examples/using-csv/package.json | 2 +- examples/using-cxs/package.json | 2 +- examples/using-cypress/package.json | 2 +- examples/using-drupal/package.json | 2 +- examples/using-emotion-prismjs/package.json | 2 +- examples/using-emotion/package.json | 2 +- examples/using-excel/package.json | 2 +- examples/using-faker/package.json | 2 +- examples/using-fragments/package.json | 2 +- examples/using-gatsby-image/package.json | 2 +- .../using-gatsby-source-graphql/package.json | 2 +- .../using-gatsby-with-json-yaml/package.json | 2 +- .../using-gatsby-without-graphql/package.json | 2 +- examples/using-glamor/package.json | 2 +- examples/using-hjson/package.json | 2 +- examples/using-i18n/package.json | 2 +- .../using-javascript-transforms/package.json | 2 +- examples/using-jest/package.json | 2 +- examples/using-js-search/package.json | 2 +- examples/using-jss/package.json | 2 +- examples/using-local-plugins/package.json | 2 +- examples/using-markdown-pages/package.json | 2 +- examples/using-medium/package.json | 2 +- examples/using-mobx/package.json | 2 +- examples/using-mongodb/package.json | 2 +- .../package.json | 2 +- .../using-multiple-providers/package.json | 4 +- examples/using-multiple-themes/package.json | 6 +- .../using-page-loading-indicator/package.json | 2 +- examples/using-page-transitions/package.json | 2 +- examples/using-path-prefix/package.json | 2 +- examples/using-plugin-options/package.json | 2 +- .../package.json | 2 +- examples/using-redirects/package.json | 2 +- examples/using-redux/package.json | 2 +- .../package.json | 2 +- examples/using-remark/package.json | 2 +- examples/using-sass/package.json | 2 +- examples/using-shopify/package.json | 2 +- examples/using-sqip/package.json | 2 +- examples/using-square-payments/package.json | 2 +- examples/using-styled-components/package.json | 2 +- examples/using-styled-jsx/package.json | 2 +- examples/using-styletron/package.json | 2 +- examples/using-stylus/package.json | 2 +- examples/using-type-definitions/package.json | 2 +- examples/using-typescript/package.json | 2 +- examples/using-video/package.json | 2 +- .../using-wordpress-with-acf/package.json | 2 +- examples/using-wordpress/package.json | 2 +- packages/gatsby-admin/CHANGELOG.md | 4 + packages/gatsby-admin/package.json | 4 +- packages/gatsby-cli/CHANGELOG.md | 6 ++ packages/gatsby-cli/package.json | 4 +- packages/gatsby-cli/src/create-cli.js | 14 +++ packages/gatsby-recipes/CHANGELOG.md | 6 ++ packages/gatsby-recipes/package.json | 2 +- packages/gatsby-theme-blog-core/CHANGELOG.md | 4 + packages/gatsby-theme-blog-core/package.json | 4 +- packages/gatsby-theme-blog/CHANGELOG.md | 4 + packages/gatsby-theme-blog/package.json | 6 +- packages/gatsby-theme-notes/CHANGELOG.md | 4 + packages/gatsby-theme-notes/package.json | 4 +- packages/gatsby-theme-ui-preset/CHANGELOG.md | 4 + packages/gatsby-theme-ui-preset/package.json | 4 +- packages/gatsby/CHANGELOG.md | 4 + packages/gatsby/cache-dir/navigation.js | 8 +- packages/gatsby/package.json | 4 +- packages/gatsby/src/bootstrap/index.js | 2 +- .../gatsby/src/bootstrap/remove-stale-jobs.ts | 19 ++-- packages/gatsby/src/redux/__tests__/jobsv2.js | 2 +- packages/gatsby/src/redux/reducers/index.js | 3 +- .../redux/reducers/{jobsv2.js => jobsv2.ts} | 32 +++++-- packages/gatsby/src/redux/types.ts | 44 +++++++-- packages/gatsby/src/utils/jobs-manager.js | 2 + starters/blog/package-lock.json | 64 ++++++------- starters/blog/package.json | 2 +- starters/default/package-lock.json | 64 ++++++------- starters/default/package.json | 2 +- .../package-lock.json | 82 ++++++++-------- .../package.json | 4 +- .../package-lock.json | 90 ++++++++--------- .../gatsby-starter-blog-theme/package.json | 4 +- .../package-lock.json | 82 ++++++++-------- .../gatsby-starter-notes-theme/package.json | 4 +- .../example/package.json | 2 +- .../gatsby-starter-theme/package-lock.json | 96 +++++++++---------- starters/gatsby-starter-theme/package.json | 6 +- starters/hello-world/package-lock.json | 76 +++++++-------- starters/hello-world/package.json | 2 +- www/package.json | 74 +++++++------- www/redirects.yaml | 4 +- www/src/components/tags-section.js | 2 +- www/src/data/diagram/static-hosts.yml | 4 +- www/src/data/sidebars/doc-links.yaml | 3 + 126 files changed, 696 insertions(+), 466 deletions(-) create mode 100644 docs/docs/deploying-to-clodui.md rename docs/docs/{deploying-to-zeit-now.md => deploying-to-vercel.md} (73%) rename packages/gatsby/src/redux/reducers/{jobsv2.js => jobsv2.ts} (53%) diff --git a/docs/blog/2020-04-22-announcing-incremental-builds/index.md b/docs/blog/2020-04-22-announcing-incremental-builds/index.md index d36f467cb5ddd..e4cfd5978b037 100644 --- a/docs/blog/2020-04-22-announcing-incremental-builds/index.md +++ b/docs/blog/2020-04-22-announcing-incremental-builds/index.md @@ -2,6 +2,7 @@ title: "From Static to Real-time: Introducing Incremental Builds in Gatsby Cloud" date: 2020-04-22 author: Kyle Mathews +seoTitle: "What is Gatsby Incremental Builds?" excerpt: "This is how the web should work. Whatever can be built ahead of time should be built ahead of time. When content changes, only relevant pages should be rebuilt. Introducing Incremental Builds on Gatsby Cloud: an evolutionary leap forward to a seamless, fast experience for the developers, content editors and end users of any website—even if that site has millions of pages." tags: - gatsby-cloud @@ -83,10 +84,14 @@ Now, with no extra work for developers and content authors, changes can be appli People have been asking us for incremental builds all along—it just makes sense: “When I change one thing, I only want that part rebuilt and not the whole thing, and I want it to happen immediately.” And now we can finally just be like, “Yeah, that's exactly what we're doing.” -## Get started with Incremental Builds +## How to enable Gatsby's Incremental Builds -Incremental Builds is now available in public beta on [Gatsby Cloud](http://gatsbyjs.com). All Gatsby Cloud users get a free 14 day trial, with full availability on all Professional, Business, and Enterprise plans. Incremental Builds works with Gatsby 2.20.4 and higher. +1. Head to [Gatsby Cloud](https://gatsbyjs.com/) to try Incremental Builds immediately. -We’re currently fully supporting incremental Builds for our first-class integrations with Gatsby Cloud, including Contentful, Sanity, DatoCMS and Cosmic. WordPress and Drupal support are in alpha. If you’re interested in building a first-class integration with Gatsby Cloud for Incremental Builds, please reach out to partners@gatsbyjs.com. +2. Incremental Builds is now available in public beta. So all Gatsby Cloud users get a free 14 day trial, with full availability on all Professional, Business, and Enterprise plans. -_Head to Gatsby Cloud (https://gatsbyjs.com/cloud/) to try Incremental Builds today! You can also join Dustin Schau, Gatsby's Head of Product, for a webinar on May 7th for a demonstration of how build times just got **seriously** faster. Visit http://gatsbyjs.com/incrbuilds-webinar to register._ +3. If you have an existing Gatsby site, you may need to upgrade. Incremental Builds works with Gatsby 2.20.4 and higher. + +4. To experience the fastest build times, update your site with content from Gatsby Cloud's first-class CMS integrations. These include Contentful, Sanity, DatoCMS and Cosmic. WordPress and Drupal support are in alpha. + +If you’re interested in building a first-class integration with Gatsby Cloud for Incremental Builds, please reach out to partners@gatsbyjs.com. diff --git a/docs/docs/deploying-to-clodui.md b/docs/docs/deploying-to-clodui.md new file mode 100644 index 0000000000000..20a4872b1dc5b --- /dev/null +++ b/docs/docs/deploying-to-clodui.md @@ -0,0 +1,95 @@ +--- +title: Deploying to Clodui +--- + +[Clodui] is a static hosting service; Clodui automatically optimizes your website files for speed. This guide explains how to deploy your Gatsby website to Clodui. + +Clodui supports the following features to improve your website speed and development efforts : + +- Serves a website served from a global CDN to reduce network latency. +- Compresses files to Brotli or GZip and serve it based on the browser support. +- Minifies all your HTML, CSS and JavaScript files. +- Generates [WebP](https://developers.google.com/speed/webp) version of all your images. Images then served based on browser support. +- Handles dynamic image resizes based on `Client-Hint` headers or query string parameters. +- Automatic form submission handling with support for webhook integration. +- Deployments are atomic with support for instant rollback. + +**Prerequisites :** + +- This guide assumes that you have a Gatsby site setup and ready to deploy + +## Steps to get started + +Follow these steps to deploy your website to Clodui. + +1. [Sign up](https://app.clodui.com/auth/signup) to create an account using your email and password. + _**Note :** Don't use social login like Google or Facebook to sign up because Clodui CLI doesn't support it yet._ +2. Install the [Clodui CLI]: + ```shell + npm install @clodui/cli -g + ``` +3. Set environment variables `CLODUI_USERNAME`, `CLODUI_PASSWORD` with Clodui username and password respectively. + In Linux/macOS terminal this can be done by: + + ```shell + export CLODUI_USERNAME= + export CLODUI_PASSWORD= + ``` + + On Windows command prompt this can be done by: + + ```shell + SET CLODUI_USERNAME= + SET CLODUI_PASSWORD= + ``` + +4. To create your Clodui website from Gatsby output directory `public`; run this command from the root of your Gatsby project: + + ```shell + clodui website create --source-dir public + ``` + + The command output shows website id, name(which is your website name), deployment status and URL to your website. URL to your website is of the following format `https://.clodui.com`. URL is accessible after the deployment completes, i.e. deployment status is `Deployed`. + + If the deployment is in progress, wait for the deployment to finish. To check the latest website status, run the following command. + + ```shell + clodui website status --website-id + ``` + +5. After your website created, to deploy new changes from `public` directory, run the following command. + + ```shell + clodui deploy create --website-id --source-dir public --publish + ``` + + `--publish` flag auto-publish the deployment so that changes are visible when you visit your website URL. + +## Deploying from GitHub Actions + +[GitHub Actions](https://github.com/features/actions) allows you to automate deployment workflows. Use custom +[Clodui Actions](https://github.com/marketplace/actions/clodui-actions) to deploy changes to your Clodui website. + +To enable continuous deployment, add this to your GitHub workflow file as a next step after building the Gatsby website. + +```yaml +- name: Deploy to Clodui + uses: clodui/actions-cli@v2.0 + with: + username: ${{ secrets.CLODUI_USERNAME }} + password: ${{ secrets.CLODUI_PASSWORD }} + website-id: ${{ secrets.WEBSITE_ID }} + source-dir: ./public + publish: publish +``` + +Here Clodui credentials and website id are fetched from the GitHub secret store. + +## Additional resources + +- [Clodui CLI documentation](https://www.clodui.com/docs/clodui-cli/) +- [Clodui Actions marketplace](https://github.com/marketplace/actions/clodui-actions) +- [Clodui CLI NPM package](https://www.npmjs.com/package/@clodui/cli) + +[clodui]: https://www.clodui.com +[clodui cli]: https://www.npmjs.com/package/@clodui/cli diff --git a/docs/docs/deploying-to-zeit-now.md b/docs/docs/deploying-to-vercel.md similarity index 73% rename from docs/docs/deploying-to-zeit-now.md rename to docs/docs/deploying-to-vercel.md index ffd0dbff68fcf..54857b85a05ae 100644 --- a/docs/docs/deploying-to-zeit-now.md +++ b/docs/docs/deploying-to-vercel.md @@ -1,8 +1,8 @@ --- -title: Deploying to ZEIT Now +title: Deploying to Vercel --- -[ZEIT Now](https://zeit.co/now) is a cloud platform for websites and serverless APIs, that you can use to deploy your Gatsby projects to your personal domain (or a free `.now.sh` suffixed URL). +[Vercel](https://vercel.com/home) is a cloud platform for websites and serverless APIs, that you can use to deploy your Gatsby projects to your personal domain (or a free `.vercel.app` suffixed URL). This guide will show you how to get started in a few quick steps: diff --git a/docs/docs/recipes.md b/docs/docs/recipes.md index fb55413c60c6e..94533baa3eb4e 100644 --- a/docs/docs/recipes.md +++ b/docs/docs/recipes.md @@ -31,7 +31,7 @@ See [docs templates](/docs/docs-templates/) in the contributing docs for more he ## New automated recipes available! -Looking for information on Gatsby CLI recipes? [Read the press release](/blog/2020-04-15-announcing-gatsby-recipes/) and [See the umbrella issue](https://github.com/gatsbyjs/gatsby/issues/22991) to learn more about automating your development workflows with `gatsby recipes`. Note that they are experimental. +Looking for information on Gatsby CLI recipes? [Read the press release](/blog/2020-04-15-announcing-gatsby-recipes/) and [see the umbrella issue](https://github.com/gatsbyjs/gatsby/issues/22991) to learn more about automating your development workflows with `gatsby recipes`. Note that they are experimental. ## What are recipes? diff --git a/docs/sites.yml b/docs/sites.yml index 740daa35dcd9c..51c586f51d731 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -10544,3 +10544,26 @@ built_by: Sadharani Music Works built_by_url: https://www.sadharani.com featured: false +- title: Zona Digital + url: https://zonadigital.pt + main_url: https://zonadigital.pt + description: > + We work with startups and small businesses building effective strategies through digital platforms. Based in Porto, Portugal. + categories: + - Web Development + - Programming + - Technology + - Design + - Business + built_by: Zona Digital + built_by_url: https://zonadigital.pt + featured: false +- title: Ofri Lifshitz Design + url: https://www.ofrilifshitz.com + main_url: https://www.ofrilifshitz.com + categories: + - Portfolio + - Design + built_by: Raz Lifshitz + built_by_url: https://www.linkedin.com/in/raz-lifshitz + featured: false diff --git a/examples/client-only-paths/package.json b/examples/client-only-paths/package.json index cfea98b8f6696..1ebb6b26074c2 100644 --- a/examples/client-only-paths/package.json +++ b/examples/client-only-paths/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-netlify": "^2.3.2", "gatsby-plugin-typography": "^2.5.1", "lodash": "^4.17.15", diff --git a/examples/creating-source-plugins/example-site/package.json b/examples/creating-source-plugins/example-site/package.json index e157060e7a95a..c149a15b4f698 100644 --- a/examples/creating-source-plugins/example-site/package.json +++ b/examples/creating-source-plugins/example-site/package.json @@ -14,7 +14,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-sharp": "^2.6.2", "gatsby-transformer-sharp": "^2.5.2", diff --git a/examples/creating-source-plugins/source-plugin/package.json b/examples/creating-source-plugins/source-plugin/package.json index bdf44dfe493a2..a0ff270e50354 100644 --- a/examples/creating-source-plugins/source-plugin/package.json +++ b/examples/creating-source-plugins/source-plugin/package.json @@ -13,16 +13,16 @@ "author": "Kyle Gill ", "license": "MIT", "dependencies": { - "apollo-cache-inmemory": "^1.6.5", - "apollo-client": "^2.6.8", + "apollo-cache-inmemory": "^1.6.6", + "apollo-client": "^2.6.9", "apollo-link": "^1.2.14", "apollo-link-http": "^1.5.17", "apollo-link-ws": "^1.0.20", - "apollo-utilities": "^1.3.3", + "apollo-utilities": "^1.3.4", "gatsby-source-filesystem": "^2.3.1", "graphql": "^15.0.0", "graphql-tag": "^2.10.3", "node-fetch": "^2.6.0", - "ws": "^7.2.5" + "ws": "^7.3.0" } } diff --git a/examples/data-fetching/package.json b/examples/data-fetching/package.json index 42d57cc91bcee..5b49a19b4571a 100644 --- a/examples/data-fetching/package.json +++ b/examples/data-fetching/package.json @@ -6,7 +6,7 @@ "author": "@gatsbyjs", "dependencies": { "dotenv": "^8.2.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-react-helmet": "^3.3.1", "gatsby-source-graphql": "^2.5.1", "prop-types": "^15.7.2", diff --git a/examples/ecommerce-tutorial-with-stripe/package.json b/examples/ecommerce-tutorial-with-stripe/package.json index ee951512b1524..60aedd7187a96 100644 --- a/examples/ecommerce-tutorial-with-stripe/package.json +++ b/examples/ecommerce-tutorial-with-stripe/package.json @@ -6,7 +6,7 @@ "author": "@thorwebdev", "dependencies": { "@stripe/stripe-js": "^1.5.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-offline": "^2.2.10", diff --git a/examples/feed/package.json b/examples/feed/package.json index 062fb2a4612d8..3c13275c97b6c 100644 --- a/examples/feed/package.json +++ b/examples/feed/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Nicholas Young ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-feed": "^2.5.1", "gatsby-source-filesystem": "^2.3.1", "gatsby-transformer-remark": "^2.8.7", diff --git a/examples/gatsbygram/package.json b/examples/gatsbygram/package.json index 24bf6a9b57b51..95308b08535d3 100644 --- a/examples/gatsbygram/package.json +++ b/examples/gatsbygram/package.json @@ -6,7 +6,7 @@ "author": "Kyle Mathews ", "dependencies": { "core-js": "^2.6.11", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-core-utils": "^1.2.1", "gatsby-image": "^2.4.3", "gatsby-plugin-glamor": "^2.3.1", diff --git a/examples/graphql-reference/package.json b/examples/graphql-reference/package.json index d52984b14561a..fb56261081e15 100644 --- a/examples/graphql-reference/package.json +++ b/examples/graphql-reference/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "LekoArts ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-react-helmet": "^3.3.1", "gatsby-plugin-sharp": "^2.6.2", diff --git a/examples/hn/package.json b/examples/hn/package.json index 16bd28e77a53a..1ff119fa8cb83 100644 --- a/examples/hn/package.json +++ b/examples/hn/package.json @@ -6,7 +6,7 @@ "author": "Kyle Mathews ", "dependencies": { "flat": "^2.0.1", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-core-utils": "^1.2.1", "gatsby-plugin-manifest": "^2.4.2", "gatsby-source-hacker-news": "^2.4.1", diff --git a/examples/image-processing/package.json b/examples/image-processing/package.json index cc62d4aa3a2b4..76cddc49d1e22 100644 --- a/examples/image-processing/package.json +++ b/examples/image-processing/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Florian Kissling ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", diff --git a/examples/no-plugins/package.json b/examples/no-plugins/package.json index f5930b5c6b4e3..2abbe8fa654d6 100644 --- a/examples/no-plugins/package.json +++ b/examples/no-plugins/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Scotty Eckenthal ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "lodash": "^4.17.15", "react": "^16.4.0", "react-dom": "^16.4.0", diff --git a/examples/no-trailing-slashes/package.json b/examples/no-trailing-slashes/package.json index 58e287f1b9c13..3080d66ab371c 100644 --- a/examples/no-trailing-slashes/package.json +++ b/examples/no-trailing-slashes/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Scotty Eckenthal ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", "lodash": "^4.17.15", diff --git a/examples/recipe-createPage/package.json b/examples/recipe-createPage/package.json index ae4c7b454d7dd..92363751785b0 100644 --- a/examples/recipe-createPage/package.json +++ b/examples/recipe-createPage/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "@gatsbyjs", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "prop-types": "^15.7.2", "react": "^16.9.0", "react-dom": "^16.9.0", diff --git a/examples/recipe-linking-between-pages/package.json b/examples/recipe-linking-between-pages/package.json index 8c15d8b948e39..63fed9a891155 100644 --- a/examples/recipe-linking-between-pages/package.json +++ b/examples/recipe-linking-between-pages/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "@gatsbyjs", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "prop-types": "^15.7.2", "react": "^16.9.0", "react-dom": "^16.9.0", diff --git a/examples/recipe-sourcing-contentful/package.json b/examples/recipe-sourcing-contentful/package.json index ce9a15a390844..618b60cfc30b0 100644 --- a/examples/recipe-sourcing-contentful/package.json +++ b/examples/recipe-sourcing-contentful/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "@gatsbyjs", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-offline": "^2.2.10", "gatsby-source-contentful": "^2.3.3", diff --git a/examples/recipe-sourcing-markdown/package.json b/examples/recipe-sourcing-markdown/package.json index 328265b869086..d3cf6be7ce552 100644 --- a/examples/recipe-sourcing-markdown/package.json +++ b/examples/recipe-sourcing-markdown/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "@gatsbyjs", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-source-filesystem": "^2.3.1", "gatsby-transformer-remark": "^2.8.7", "prop-types": "^15.7.2", diff --git a/examples/recipe-static-image/package.json b/examples/recipe-static-image/package.json index a7836aac401c5..f220ed9b21f44 100644 --- a/examples/recipe-static-image/package.json +++ b/examples/recipe-static-image/package.json @@ -13,7 +13,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"" }, "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.8.6", "react-dom": "^16.8.6" }, diff --git a/examples/recipe-webpack-image/package.json b/examples/recipe-webpack-image/package.json index af556e7667861..3749043e5fd9b 100644 --- a/examples/recipe-webpack-image/package.json +++ b/examples/recipe-webpack-image/package.json @@ -13,7 +13,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"" }, "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.8.6", "react-dom": "^16.8.6" }, diff --git a/examples/recipes-gatsby-image/package.json b/examples/recipes-gatsby-image/package.json index 8d945274b1748..3cbe93b1b6669 100644 --- a/examples/recipes-gatsby-image/package.json +++ b/examples/recipes-gatsby-image/package.json @@ -7,7 +7,7 @@ "dependencies": { "@mdx-js/mdx": "^1.6.1", "@mdx-js/react": "^1.6.1", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-mdx": "^1.2.6", diff --git a/examples/simple-auth/package.json b/examples/simple-auth/package.json index 3d27e3bba620f..060e1a9ee4db4 100644 --- a/examples/simple-auth/package.json +++ b/examples/simple-auth/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "Jason Lengstorf ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-react-helmet": "^3.3.1", "prop-types": "^15.7.2", "react": "^16.4.0", diff --git a/examples/sitemap/package.json b/examples/sitemap/package.json index c31737d6afeb8..6dfd928ad1986 100644 --- a/examples/sitemap/package.json +++ b/examples/sitemap/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Nicholas Young ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-core-utils": "^1.2.1", "gatsby-plugin-sitemap": "^2.4.2", "gatsby-source-filesystem": "^2.3.1", diff --git a/examples/styleguide/package.json b/examples/styleguide/package.json index f58e7014f95f1..355fbccff339a 100644 --- a/examples/styleguide/package.json +++ b/examples/styleguide/package.json @@ -5,7 +5,7 @@ "author": "scott.eckenthal@gmail.com", "dependencies": { "app-root-dir": "^1.0.2", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-source-filesystem": "^2.3.1", "gatsby-transformer-react-docgen": "^5.2.1", "gatsby-transformer-remark": "^2.8.7", diff --git a/examples/using-MDX/package.json b/examples/using-MDX/package.json index 3dafc5536b0b6..8441065daf85c 100644 --- a/examples/using-MDX/package.json +++ b/examples/using-MDX/package.json @@ -7,7 +7,7 @@ "dependencies": { "@mdx-js/mdx": "^1.6.1", "@mdx-js/react": "^1.6.1", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-mdx": "^1.2.6", diff --git a/examples/using-asciidoc/package.json b/examples/using-asciidoc/package.json index 197059fb467dd..cc9cf69076c45 100644 --- a/examples/using-asciidoc/package.json +++ b/examples/using-asciidoc/package.json @@ -6,7 +6,7 @@ "author": "Kyle Mathews ", "dependencies": { "asciidoctor.js": "^1.5.9", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-core-utils": "^1.2.1", "gatsby-plugin-offline": "^2.2.10", "gatsby-plugin-typography": "^2.5.1", diff --git a/examples/using-contentful/package.json b/examples/using-contentful/package.json index 9a93ea7a39685..de725c433bfcf 100644 --- a/examples/using-contentful/package.json +++ b/examples/using-contentful/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Marcus Ericsson (mericsson.com)", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-core-utils": "^1.2.1", "gatsby-image": "^2.4.3", "gatsby-plugin-google-analytics": "^2.3.1", diff --git a/examples/using-css-modules/package.json b/examples/using-css-modules/package.json index 7f340d38a1b5c..5f10dad0ad93f 100644 --- a/examples/using-css-modules/package.json +++ b/examples/using-css-modules/package.json @@ -4,7 +4,7 @@ "description": "Gatsby example site demonstrating using css modules in Gatsby with normal (Postcss) css and sass/scss.", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-sass": "^2.3.1", "node-sass": "^4.14.1", "react": "^16.4.0", diff --git a/examples/using-csv/package.json b/examples/using-csv/package.json index 98244b4a2f55e..8f66d4d231b9f 100644 --- a/examples/using-csv/package.json +++ b/examples/using-csv/package.json @@ -4,7 +4,7 @@ "description": "Gatsby example site using using-csv", "author": "Sonal Saldanha ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-source-filesystem": "^2.3.1", "gatsby-transformer-csv": "^2.3.1", diff --git a/examples/using-cxs/package.json b/examples/using-cxs/package.json index 5cc72c211e0c1..64d7dd42c4ded 100644 --- a/examples/using-cxs/package.json +++ b/examples/using-cxs/package.json @@ -6,7 +6,7 @@ "author": "Chen-Tai Hou ", "dependencies": { "cxs": "^6.2.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-cxs": "^2.3.1", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", diff --git a/examples/using-cypress/package.json b/examples/using-cypress/package.json index beff069936008..4b90f2382b2f8 100644 --- a/examples/using-cypress/package.json +++ b/examples/using-cypress/package.json @@ -17,7 +17,7 @@ "test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run" }, "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-offline": "^3.2.1", diff --git a/examples/using-drupal/package.json b/examples/using-drupal/package.json index d8913d97dd75c..4210031c4abc9 100644 --- a/examples/using-drupal/package.json +++ b/examples/using-drupal/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-glamor": "^2.3.1", "gatsby-plugin-google-analytics": "^2.3.1", diff --git a/examples/using-emotion-prismjs/package.json b/examples/using-emotion-prismjs/package.json index 3cb3c81810992..81274a43899e1 100644 --- a/examples/using-emotion-prismjs/package.json +++ b/examples/using-emotion-prismjs/package.json @@ -13,7 +13,7 @@ "@emotion/styled": "^10.0.27", "emotion": "^10.0.27", "emotion-server": "^10.0.27", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-emotion": "^4.3.1", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", diff --git a/examples/using-emotion/package.json b/examples/using-emotion/package.json index 121ec97e9b05d..b3165ab09dd9c 100644 --- a/examples/using-emotion/package.json +++ b/examples/using-emotion/package.json @@ -8,7 +8,7 @@ "@emotion/styled": "^10.0.27", "emotion": "^10.0.27", "emotion-server": "^10.0.27", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-emotion": "^4.3.1", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", diff --git a/examples/using-excel/package.json b/examples/using-excel/package.json index d0ca0ebf1fd44..e1f60c0e022dd 100644 --- a/examples/using-excel/package.json +++ b/examples/using-excel/package.json @@ -4,7 +4,7 @@ "description": "Gatsby example site using using-excel", "author": "SheetJS ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-source-filesystem": "^2.3.1", "gatsby-transformer-excel": "^2.4.1", "react": "^16.4.0", diff --git a/examples/using-faker/package.json b/examples/using-faker/package.json index 040c98acd6627..31156db3a1196 100644 --- a/examples/using-faker/package.json +++ b/examples/using-faker/package.json @@ -5,7 +5,7 @@ "author": "Kyle Mathews ", "dependencies": { "core-js": "^2.6.11", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-react-helmet": "^3.3.1", "gatsby-source-faker": "^2.3.1", "react": "^16.3.2", diff --git a/examples/using-fragments/package.json b/examples/using-fragments/package.json index fcf78b26629bc..06dc7e0f7ac36 100644 --- a/examples/using-fragments/package.json +++ b/examples/using-fragments/package.json @@ -13,7 +13,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"" }, "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.9.0", "react-dom": "^16.9.0" }, diff --git a/examples/using-gatsby-image/package.json b/examples/using-gatsby-image/package.json index b7fe9cc27f244..984622cc34ec0 100644 --- a/examples/using-gatsby-image/package.json +++ b/examples/using-gatsby-image/package.json @@ -7,7 +7,7 @@ "@emotion/core": "^10.0.28", "@emotion/styled": "^10.0.27", "emotion": "^10.0.27", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-emotion": "^4.3.1", "gatsby-plugin-netlify": "^2.3.2", diff --git a/examples/using-gatsby-source-graphql/package.json b/examples/using-gatsby-source-graphql/package.json index 577b87ae1a00d..c60ff2542bdcd 100644 --- a/examples/using-gatsby-source-graphql/package.json +++ b/examples/using-gatsby-source-graphql/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "dateformat": "^3.0.3", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-netlify": "^2.3.2", "gatsby-plugin-sharp": "^2.6.2", diff --git a/examples/using-gatsby-with-json-yaml/package.json b/examples/using-gatsby-with-json-yaml/package.json index a93ea4cec291a..d8e690cd8bd01 100644 --- a/examples/using-gatsby-with-json-yaml/package.json +++ b/examples/using-gatsby-with-json-yaml/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "jonniebigodes", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "js-yaml": "^3.13.1", "prop-types": "^15.7.2", "react": "^16.9.0", diff --git a/examples/using-gatsby-without-graphql/package.json b/examples/using-gatsby-without-graphql/package.json index 8097002928b37..871c5b9607d0e 100755 --- a/examples/using-gatsby-without-graphql/package.json +++ b/examples/using-gatsby-without-graphql/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "axios": "^0.19.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.5.1", "react-dom": "^16.5.1" }, diff --git a/examples/using-glamor/package.json b/examples/using-glamor/package.json index 399369e14f162..4ffbf30cb80f0 100644 --- a/examples/using-glamor/package.json +++ b/examples/using-glamor/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-glamor": "^2.3.1", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", diff --git a/examples/using-hjson/package.json b/examples/using-hjson/package.json index 33f0c5cfa6959..438cae8e6c25f 100644 --- a/examples/using-hjson/package.json +++ b/examples/using-hjson/package.json @@ -5,7 +5,7 @@ "author": "Remi Barraquand ", "dependencies": { "core-js": "^2.6.11", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-source-filesystem": "^2.3.1", "gatsby-transformer-hjson": "^2.4.1", "react": "^16.3.2", diff --git a/examples/using-i18n/package.json b/examples/using-i18n/package.json index 92fde675a042c..e8bb545927290 100644 --- a/examples/using-i18n/package.json +++ b/examples/using-i18n/package.json @@ -13,7 +13,7 @@ "dependencies": { "@mdx-js/mdx": "^1.6.1", "@mdx-js/react": "^1.6.1", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-mdx": "^1.2.6", "gatsby-source-filesystem": "^2.3.1", "gatsby-transformer-json": "^2.4.1", diff --git a/examples/using-javascript-transforms/package.json b/examples/using-javascript-transforms/package.json index 7af94c6a086a9..9b7fb0daeaf61 100644 --- a/examples/using-javascript-transforms/package.json +++ b/examples/using-javascript-transforms/package.json @@ -23,7 +23,7 @@ "dependencies": { "bulma": "0.8.2", "d3": "4.13.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-sass": "^2.3.1", "gatsby-remark-prismjs": "^3.5.1", "gatsby-source-filesystem": "^2.3.1", diff --git a/examples/using-jest/package.json b/examples/using-jest/package.json index df4f68d268e97..e1c411fecd84b 100644 --- a/examples/using-jest/package.json +++ b/examples/using-jest/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "Dustin Schau ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-offline": "^2.2.10", diff --git a/examples/using-js-search/package.json b/examples/using-js-search/package.json index 9e5222a2e81eb..42f5ef6998c6f 100644 --- a/examples/using-js-search/package.json +++ b/examples/using-js-search/package.json @@ -18,7 +18,7 @@ }, "dependencies": { "axios": "^0.19.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "js-search": "^1.4.3", "react": "^16.5.1", "react-dom": "^16.5.1" diff --git a/examples/using-jss/package.json b/examples/using-jss/package.json index ee817b11b2471..5fda6bc75ffd8 100644 --- a/examples/using-jss/package.json +++ b/examples/using-jss/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Vladimir Guguiev ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-flow": "^1.3.2", "gatsby-plugin-jss": "^2.3.1", "react": "^16.4.0", diff --git a/examples/using-local-plugins/package.json b/examples/using-local-plugins/package.json index 8097002928b37..871c5b9607d0e 100755 --- a/examples/using-local-plugins/package.json +++ b/examples/using-local-plugins/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "axios": "^0.19.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.5.1", "react-dom": "^16.5.1" }, diff --git a/examples/using-markdown-pages/package.json b/examples/using-markdown-pages/package.json index 3edc51f7bdb94..255fbbc48905b 100644 --- a/examples/using-markdown-pages/package.json +++ b/examples/using-markdown-pages/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "@gatsbyjs", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-offline": "^2.2.10", diff --git a/examples/using-medium/package.json b/examples/using-medium/package.json index 763baf829ef64..a08fbd5027b3d 100644 --- a/examples/using-medium/package.json +++ b/examples/using-medium/package.json @@ -7,7 +7,7 @@ "author": "Robert Vogt ", "license": "MIT", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-source-medium": "^2.3.1", "react": "^16.4.0", "react-dom": "^16.4.0" diff --git a/examples/using-mobx/package.json b/examples/using-mobx/package.json index d134a6ec45b5f..db3854f354bc3 100644 --- a/examples/using-mobx/package.json +++ b/examples/using-mobx/package.json @@ -16,7 +16,7 @@ ], "license": "MIT", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "mobx": "^5.15.4", "mobx-react": "^6.2.2", "prop-types": "^15.7.2", diff --git a/examples/using-mongodb/package.json b/examples/using-mongodb/package.json index 6cd1dc0a17de5..84dc311406912 100644 --- a/examples/using-mongodb/package.json +++ b/examples/using-mongodb/package.json @@ -4,7 +4,7 @@ "description": "Gatsby example site using gatsby-source-mongodb", "author": "jhermans85@hotmail.com", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-react-helmet": "^3.3.1", "gatsby-source-mongodb": "^2.3.1", "gatsby-transformer-remark": "^2.8.7", diff --git a/examples/using-multiple-local-plugins/gatsby-site-using-local-plugins/package.json b/examples/using-multiple-local-plugins/gatsby-site-using-local-plugins/package.json index ffe607a6ddf38..6f5ab31dc6c6a 100644 --- a/examples/using-multiple-local-plugins/gatsby-site-using-local-plugins/package.json +++ b/examples/using-multiple-local-plugins/gatsby-site-using-local-plugins/package.json @@ -3,7 +3,7 @@ "description": "A example with the default starter loading multiple local plugins", "version": "0.1.0", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-offline": "^3.2.1", diff --git a/examples/using-multiple-providers/package.json b/examples/using-multiple-providers/package.json index 2ea1a82f37ba6..4808c4c8f937a 100644 --- a/examples/using-multiple-providers/package.json +++ b/examples/using-multiple-providers/package.json @@ -5,9 +5,9 @@ "version": "1.0.0", "author": "Michal Piechowiak ", "dependencies": { - "apollo-boost": "^0.4.7", + "apollo-boost": "^0.4.8", "babel-plugin-styled-components": "^1.10.7", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-jss": "^2.3.1", "gatsby-plugin-styled-components": "^3.3.1", "isomorphic-fetch": "^2.2.1", diff --git a/examples/using-multiple-themes/package.json b/examples/using-multiple-themes/package.json index cc879d7cd5fc7..cf301d07e8ebd 100644 --- a/examples/using-multiple-themes/package.json +++ b/examples/using-multiple-themes/package.json @@ -15,9 +15,9 @@ }, "dependencies": { "@pauliescanlon/gatsby-mdx-embed": "0.0.19", - "gatsby": "^2.21.21", - "gatsby-theme-blog": "^1.5.21", - "gatsby-theme-notes": "^1.3.21", + "gatsby": "^2.21.22", + "gatsby-theme-blog": "^1.5.22", + "gatsby-theme-notes": "^1.3.22", "react": "^16.12.0", "react-dom": "^16.12.0" }, diff --git a/examples/using-page-loading-indicator/package.json b/examples/using-page-loading-indicator/package.json index 4e0d740859ff4..0f27277269654 100644 --- a/examples/using-page-loading-indicator/package.json +++ b/examples/using-page-loading-indicator/package.json @@ -4,7 +4,7 @@ "description": "Gatsby example site using using-page-loading-indicator", "author": "Kyle Mathews", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-nprogress": "^2.3.1", "react": "^16.4.0", "react-dom": "^16.4.0" diff --git a/examples/using-page-transitions/package.json b/examples/using-page-transitions/package.json index ce30a976de9c6..7844041deb13b 100644 --- a/examples/using-page-transitions/package.json +++ b/examples/using-page-transitions/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "Steven Surgnier ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-layout": "^1.3.1", "gatsby-plugin-react-helmet": "^3.3.1", "react": "^16.4.1", diff --git a/examples/using-path-prefix/package.json b/examples/using-path-prefix/package.json index b59b5a6d35cda..407a9f4b8693f 100644 --- a/examples/using-path-prefix/package.json +++ b/examples/using-path-prefix/package.json @@ -4,7 +4,7 @@ "description": "Gatsby example site using using-path-prefix", "author": "Kyle Mathews <mathews.kyle@gmail.com>", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.4.0", "react-dom": "^16.4.0" }, diff --git a/examples/using-plugin-options/package.json b/examples/using-plugin-options/package.json index adc4c17f10ac0..93dee2ce6d4bd 100644 --- a/examples/using-plugin-options/package.json +++ b/examples/using-plugin-options/package.json @@ -3,7 +3,7 @@ "description": "An example with the default starter using a plugin with options", "version": "0.1.0", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "prop-types": "^15.7.2", "react": "^16.12.0", "react-dom": "^16.12.0", diff --git a/examples/using-prefetching-preloading-modules/package.json b/examples/using-prefetching-preloading-modules/package.json index ce5c11762db94..22102938a714d 100644 --- a/examples/using-prefetching-preloading-modules/package.json +++ b/examples/using-prefetching-preloading-modules/package.json @@ -6,7 +6,7 @@ "author": "Nuttapol Laoticharoen ", "dependencies": { "babel-plugin-styled-components": "^1.10.7", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-offline": "^2.2.10", "gatsby-plugin-react-helmet": "^3.3.1", "gatsby-plugin-styled-components": "^3.3.1", diff --git a/examples/using-redirects/package.json b/examples/using-redirects/package.json index 0d91a37e1c741..052a87929ca8d 100644 --- a/examples/using-redirects/package.json +++ b/examples/using-redirects/package.json @@ -4,7 +4,7 @@ "description": "Gatsby example site demonstrating using createRedirect for client-side, in browser redirection in Gatsby", "author": "Ricky de Laveaga ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-react-helmet": "^3.3.1", "react": "^16.3.2", "react-dom": "^16.3.2", diff --git a/examples/using-redux/package.json b/examples/using-redux/package.json index 91174786e3883..aa6dff5405001 100644 --- a/examples/using-redux/package.json +++ b/examples/using-redux/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Scotty Eckenthal ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.4.0", "react-dom": "^16.4.0", "react-redux": "5.1.2", diff --git a/examples/using-remark-copy-linked-files/package.json b/examples/using-remark-copy-linked-files/package.json index ad0e8aa014103..7b98b82fe1bde 100644 --- a/examples/using-remark-copy-linked-files/package.json +++ b/examples/using-remark-copy-linked-files/package.json @@ -4,7 +4,7 @@ "description": "Gatsby example site on gatsby-remark-copy-linked-files", "author": "Florian Kissling ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", "gatsby-plugin-react-helmet": "^3.3.1", diff --git a/examples/using-remark/package.json b/examples/using-remark/package.json index 92d2dabf9d971..9b94ce582de23 100644 --- a/examples/using-remark/package.json +++ b/examples/using-remark/package.json @@ -7,7 +7,7 @@ "dependencies": { "babel-plugin-lodash": "^3.3.4", "es6-object-assign": "^1.1.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-core-utils": "^1.2.1", "gatsby-image": "^2.4.3", "gatsby-plugin-catch-links": "^2.3.1", diff --git a/examples/using-sass/package.json b/examples/using-sass/package.json index f8c40c456b191..e7db3ee2caeb3 100644 --- a/examples/using-sass/package.json +++ b/examples/using-sass/package.json @@ -11,7 +11,7 @@ "author": "Daniel Farrell ", "license": "MIT", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", "gatsby-plugin-sass": "^2.3.1", diff --git a/examples/using-shopify/package.json b/examples/using-shopify/package.json index 3e5cae346a301..df697f8164a9f 100644 --- a/examples/using-shopify/package.json +++ b/examples/using-shopify/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "Dustin Schau ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-offline": "^2.2.10", diff --git a/examples/using-sqip/package.json b/examples/using-sqip/package.json index 031d646ccb3c7..5af889ca6edcb 100644 --- a/examples/using-sqip/package.json +++ b/examples/using-sqip/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "Benedikt Rötsch ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-sharp": "^2.6.2", "gatsby-source-filesystem": "^2.3.1", diff --git a/examples/using-square-payments/package.json b/examples/using-square-payments/package.json index 50dfc8bf1d3f5..719caa13f14b1 100644 --- a/examples/using-square-payments/package.json +++ b/examples/using-square-payments/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-offline": "^3.2.1", diff --git a/examples/using-styled-components/package.json b/examples/using-styled-components/package.json index 1ec4827c8a59e..197b8c4fa90b8 100644 --- a/examples/using-styled-components/package.json +++ b/examples/using-styled-components/package.json @@ -6,7 +6,7 @@ "author": "Kyle Mathews ", "dependencies": { "babel-plugin-styled-components": "^1.10.7", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", "gatsby-plugin-react-helmet": "^3.3.1", diff --git a/examples/using-styled-jsx/package.json b/examples/using-styled-jsx/package.json index 326471a072121..096fe7e65fb3b 100644 --- a/examples/using-styled-jsx/package.json +++ b/examples/using-styled-jsx/package.json @@ -4,7 +4,7 @@ "description": "Gatsby example site using using-styled-jsx", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-styled-jsx": "^3.3.1", "react": "^16.2.0", "react-dom": "^16.2.0", diff --git a/examples/using-styletron/package.json b/examples/using-styletron/package.json index 26daf7ea33be7..e01cdd814cc58 100644 --- a/examples/using-styletron/package.json +++ b/examples/using-styletron/package.json @@ -5,7 +5,7 @@ "version": "1.0.0", "author": "Nadiia Dmytrenko ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-styletron": "^3.0.5", "react": "^16.4.0", "react-dom": "^16.4.0" diff --git a/examples/using-stylus/package.json b/examples/using-stylus/package.json index bf506cc00d155..531be45e9c4d2 100644 --- a/examples/using-stylus/package.json +++ b/examples/using-stylus/package.json @@ -11,7 +11,7 @@ "author": "Ian Sinnott ", "license": "MIT", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-google-analytics": "^2.3.1", "gatsby-plugin-offline": "^2.2.10", "gatsby-plugin-stylus": "^2.3.1", diff --git a/examples/using-type-definitions/package.json b/examples/using-type-definitions/package.json index 97cc52c479ab6..bf93246f3bc4d 100644 --- a/examples/using-type-definitions/package.json +++ b/examples/using-type-definitions/package.json @@ -4,7 +4,7 @@ "description": "An example site using createTypes action and createResolvers API", "version": "0.1.0", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-sharp": "^2.6.2", "gatsby-source-filesystem": "^2.3.1", diff --git a/examples/using-typescript/package.json b/examples/using-typescript/package.json index b3fa15dad8589..843c7f0188822 100644 --- a/examples/using-typescript/package.json +++ b/examples/using-typescript/package.json @@ -13,7 +13,7 @@ }, "sideEffects": false, "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-typography": "^2.5.1", "react": "^16.12.0", "react-dom": "^16.12.0", diff --git a/examples/using-video/package.json b/examples/using-video/package.json index 9d2d66847487d..346fe32eec75b 100644 --- a/examples/using-video/package.json +++ b/examples/using-video/package.json @@ -8,7 +8,7 @@ "license": "MIT", "dependencies": { "file-loader": "^4.3.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.4.0", "react-dom": "^16.4.0" }, diff --git a/examples/using-wordpress-with-acf/package.json b/examples/using-wordpress-with-acf/package.json index 7be848933f5a1..a66bf63e59025 100644 --- a/examples/using-wordpress-with-acf/package.json +++ b/examples/using-wordpress-with-acf/package.json @@ -5,7 +5,7 @@ "version": "1.0.0-beta.6", "author": "Sebastien Fichot ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-core-utils": "^1.2.1", "gatsby-image": "^2.4.3", "gatsby-plugin-glamor": "^2.3.1", diff --git a/examples/using-wordpress/package.json b/examples/using-wordpress/package.json index f53338adace21..3a8486343f012 100644 --- a/examples/using-wordpress/package.json +++ b/examples/using-wordpress/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "Vishwa Mehta ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-core-utils": "^1.2.1", "gatsby-source-wordpress": "^3.3.1", "react": "^16.9.0", diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index e7458cfd25eb8..8b192c2c7959b 100644 --- a/packages/gatsby-admin/CHANGELOG.md +++ b/packages/gatsby-admin/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.1.22](https://github.com/gatsbyjs/gatsby/compare/gatsby-admin@0.1.21...gatsby-admin@0.1.22) (2020-05-11) + +**Note:** Version bump only for package gatsby-admin + ## [0.1.21](https://github.com/gatsbyjs/gatsby/compare/gatsby-admin@0.1.20...gatsby-admin@0.1.21) (2020-05-08) **Note:** Version bump only for package gatsby-admin diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index 8cdf82cfd34fc..3adb4822c48d8 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-admin", - "version": "0.1.21", + "version": "0.1.22", "main": "index.js", "author": "Max Stoiber", "license": "MIT", @@ -8,7 +8,7 @@ "dependencies": { "@typescript-eslint/eslint-plugin": "^2.28.0", "@typescript-eslint/parser": "^2.28.0", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-plugin-typescript": "^2.4.2", "gatsby-source-graphql": "^2.5.1", "react": "^16.12.0", diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index 0ada29fb44ec2..ff335262f429c 100644 --- a/packages/gatsby-cli/CHANGELOG.md +++ b/packages/gatsby-cli/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.12.16](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@2.12.15...gatsby-cli@2.12.16) (2020-05-11) + +### Bug Fixes + +- **gatsby-cli:** don't fail when using `--log-pages` and/or `--write-to-file` ([#23951](https://github.com/gatsbyjs/gatsby/issues/23951)) ([f7dc43f](https://github.com/gatsbyjs/gatsby/commit/f7dc43f)) + ## [2.12.15](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@2.12.14...gatsby-cli@2.12.15) (2020-05-08) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index 0b5efdf688c6a..29c9f191b75bf 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": "2.12.15", + "version": "2.12.16", "author": "Kyle Mathews ", "bin": { "gatsby": "lib/index.js" @@ -26,7 +26,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.2.1", - "gatsby-recipes": "^0.1.14", + "gatsby-recipes": "^0.1.15", "gatsby-telemetry": "^1.3.3", "hosted-git-info": "^3.0.4", "is-valid-path": "^0.1.1", diff --git a/packages/gatsby-cli/src/create-cli.js b/packages/gatsby-cli/src/create-cli.js index 069093b783773..9e76b78f75654 100644 --- a/packages/gatsby-cli/src/create-cli.js +++ b/packages/gatsby-cli/src/create-cli.js @@ -190,6 +190,20 @@ function buildLocalCommands(cli, isLocalSite) { .option(`open-tracing-config-file`, { type: `string`, describe: `Tracer configuration file (OpenTracing compatible). See https://gatsby.dev/tracing`, + }) + // log-pages and write-to-file are specific to experimental GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES feature + // because of that they are hidden from `--help` but still defined so `yargs` know about them + .option(`log-pages`, { + type: `boolean`, + default: false, + describe: `Log the pages that changes since last build (only available when using GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES).`, + hidden: true, + }) + .option(`write-to-file`, { + type: `boolean`, + default: false, + describe: `Save the log of changed pages for future comparison (only available when using GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES).`, + hidden: true, }), handler: handlerP( getCommandHandler(`build`, (args, cmd) => { diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md index bacede81cfd41..0225be433cbcc 100644 --- a/packages/gatsby-recipes/CHANGELOG.md +++ b/packages/gatsby-recipes/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.15](https://github.com/gatsbyjs/gatsby/compare/gatsby-recipes@0.1.14...gatsby-recipes@0.1.15) (2020-05-11) + +### Features + +- **gatsby-recipes:** Improve ongoing summary of steps + add end summary ([#23888](https://github.com/gatsbyjs/gatsby/issues/23888)) ([251dc58](https://github.com/gatsbyjs/gatsby/commit/251dc58)) + ## [0.1.14](https://github.com/gatsbyjs/gatsby/compare/gatsby-recipes@0.1.13...gatsby-recipes@0.1.14) (2020-05-08) **Note:** Version bump only for package gatsby-recipes diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index 639ef9c6581b5..5e10ca2fc879e 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.1.14", + "version": "0.1.15", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-theme-blog-core/CHANGELOG.md b/packages/gatsby-theme-blog-core/CHANGELOG.md index a7cafe7aa37fe..45a6775d31056 100644 --- a/packages/gatsby-theme-blog-core/CHANGELOG.md +++ b/packages/gatsby-theme-blog-core/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.4.22](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.4.21...gatsby-theme-blog-core@1.4.22) (2020-05-11) + +**Note:** Version bump only for package gatsby-theme-blog-core + ## [1.4.21](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog-core@1.4.20...gatsby-theme-blog-core@1.4.21) (2020-05-08) **Note:** Version bump only for package gatsby-theme-blog-core diff --git a/packages/gatsby-theme-blog-core/package.json b/packages/gatsby-theme-blog-core/package.json index 44bfbf28dd72e..f30af7e3f0898 100644 --- a/packages/gatsby-theme-blog-core/package.json +++ b/packages/gatsby-theme-blog-core/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog-core", - "version": "1.4.21", + "version": "1.4.22", "main": "index.js", "author": "christopherbiscardi (@chrisbiscardi)", "license": "MIT", @@ -30,7 +30,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.6.1", - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "prettier": "2.0.5", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-blog/CHANGELOG.md b/packages/gatsby-theme-blog/CHANGELOG.md index a8cacd3aea6be..0124cfa28ddf7 100644 --- a/packages/gatsby-theme-blog/CHANGELOG.md +++ b/packages/gatsby-theme-blog/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.5.22](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.5.21...gatsby-theme-blog@1.5.22) (2020-05-11) + +**Note:** Version bump only for package gatsby-theme-blog + ## [1.5.21](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.5.20...gatsby-theme-blog@1.5.21) (2020-05-08) **Note:** Version bump only for package gatsby-theme-blog diff --git a/packages/gatsby-theme-blog/package.json b/packages/gatsby-theme-blog/package.json index ff24885f168c9..a01cc6ec5951d 100644 --- a/packages/gatsby-theme-blog/package.json +++ b/packages/gatsby-theme-blog/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-blog", - "version": "1.5.21", + "version": "1.5.22", "description": "A Gatsby theme for miscellaneous blogging with a dark/light mode", "main": "index.js", "keywords": [ @@ -29,7 +29,7 @@ "gatsby-plugin-react-helmet": "^3.3.1", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.3.1", - "gatsby-theme-blog-core": "^1.4.21", + "gatsby-theme-blog-core": "^1.4.22", "mdx-utils": "0.2.0", "react-helmet": "^5.2.1", "react-switch": "^5.0.1", @@ -39,7 +39,7 @@ "typography-theme-wordpress-2016": "^0.16.19" }, "devDependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "prettier": "2.0.5", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-theme-notes/CHANGELOG.md b/packages/gatsby-theme-notes/CHANGELOG.md index 2e735e0d93816..be57653614eb3 100644 --- a/packages/gatsby-theme-notes/CHANGELOG.md +++ b/packages/gatsby-theme-notes/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.3.22](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.3.21...gatsby-theme-notes@1.3.22) (2020-05-11) + +**Note:** Version bump only for package gatsby-theme-notes + ## [1.3.21](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-notes@1.3.20...gatsby-theme-notes@1.3.21) (2020-05-08) **Note:** Version bump only for package gatsby-theme-notes diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json index 9a5e7b6caa549..1b1da01c276a2 100644 --- a/packages/gatsby-theme-notes/package.json +++ b/packages/gatsby-theme-notes/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-theme-notes", "description": "Gatsby Theme for adding a notes section to your website", - "version": "1.3.21", + "version": "1.3.22", "author": "John Otander", "license": "MIT", "main": "index.js", @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-theme-notes#readme", "devDependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.12.0", "react-dom": "^16.12.0" }, diff --git a/packages/gatsby-theme-ui-preset/CHANGELOG.md b/packages/gatsby-theme-ui-preset/CHANGELOG.md index ca8c5e886031b..65714e16aedfc 100644 --- a/packages/gatsby-theme-ui-preset/CHANGELOG.md +++ b/packages/gatsby-theme-ui-preset/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.0.12](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-ui-preset@0.0.11...gatsby-theme-ui-preset@0.0.12) (2020-05-11) + +**Note:** Version bump only for package gatsby-theme-ui-preset + ## [0.0.11](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-ui-preset@0.0.10...gatsby-theme-ui-preset@0.0.11) (2020-05-08) **Note:** Version bump only for package gatsby-theme-ui-preset diff --git a/packages/gatsby-theme-ui-preset/package.json b/packages/gatsby-theme-ui-preset/package.json index 8b04022396ed6..4fb467d2da126 100644 --- a/packages/gatsby-theme-ui-preset/package.json +++ b/packages/gatsby-theme-ui-preset/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme-ui-preset", - "version": "0.0.11", + "version": "0.0.12", "description": "A Gatsby theme for theme-ui styles", "main": "index.js", "keywords": [ @@ -30,7 +30,7 @@ "typography-theme-wordpress-2016": "^0.16.19" }, "devDependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "prettier": "2.0.5", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index bfaff8dd0f42c..6335a562469e1 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/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.21.22](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.21.21...gatsby@2.21.22) (2020-05-11) + +**Note:** Version bump only for package gatsby + ## [2.21.21](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.21.20...gatsby@2.21.21) (2020-05-08) **Note:** Version bump only for package gatsby diff --git a/packages/gatsby/cache-dir/navigation.js b/packages/gatsby/cache-dir/navigation.js index 701871a6e704f..b3f22f6e4de5f 100644 --- a/packages/gatsby/cache-dir/navigation.js +++ b/packages/gatsby/cache-dir/navigation.js @@ -174,9 +174,11 @@ class RouteAnnouncer extends React.Component { pageName = pageHeadings[0].textContent } const newAnnouncement = `Navigated to ${pageName}` - const oldAnnouncement = this.announcementRef.current.innerText - if (oldAnnouncement !== newAnnouncement) { - this.announcementRef.current.innerText = newAnnouncement + if (this.announcementRef.current) { + const oldAnnouncement = this.announcementRef.current.innerText + if (oldAnnouncement !== newAnnouncement) { + this.announcementRef.current.innerText = newAnnouncement + } } }) } diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 854aa3ae8b3a4..2cb4161c6ca01 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": "2.21.21", + "version": "2.21.22", "author": "Kyle Mathews ", "bin": { "gatsby": "./dist/bin/gatsby.js" @@ -71,7 +71,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.15", + "gatsby-cli": "^2.12.16", "gatsby-core-utils": "^1.2.1", "gatsby-graphiql-explorer": "^0.4.1", "gatsby-link": "^2.4.2", diff --git a/packages/gatsby/src/bootstrap/index.js b/packages/gatsby/src/bootstrap/index.js index 550cd2e3290b1..3b7cde9c310e0 100644 --- a/packages/gatsby/src/bootstrap/index.js +++ b/packages/gatsby/src/bootstrap/index.js @@ -549,7 +549,7 @@ module.exports = async (args: BootstrapArgs) => { activity.end() reporter.log(``) - reporter.info(`bootstrap finished - ${process.uptime().toFixed(3)} s`) + reporter.info(`bootstrap finished - ${process.uptime().toFixed(3)}s`) reporter.log(``) emitter.emit(`BOOTSTRAP_FINISHED`) require(`../redux/actions`).boundActionCreators.setProgramStatus( diff --git a/packages/gatsby/src/bootstrap/remove-stale-jobs.ts b/packages/gatsby/src/bootstrap/remove-stale-jobs.ts index c4473ed25c239..64102c9802f7c 100644 --- a/packages/gatsby/src/bootstrap/remove-stale-jobs.ts +++ b/packages/gatsby/src/bootstrap/remove-stale-jobs.ts @@ -1,7 +1,8 @@ import { IGatsbyState, IRemoveStaleJobAction, - IGatsbyJobV2, + IGatsbyIncompleteJobV2, + IGatsbyCompleteJobV2, } from "../redux/types" import { isJobStale } from "../utils/jobs-manager" @@ -14,7 +15,7 @@ export const removeStaleJobs = ( // If any of our finished jobs are stale we remove them to keep our cache small state.jobsV2.complete.forEach( - (job: IGatsbyJobV2, contentDigest: string): void => { + (job: IGatsbyCompleteJobV2, contentDigest: string): void => { if (isJobStale(job)) { actions.push(internalActions.removeStaleJob(contentDigest)) } @@ -23,13 +24,15 @@ export const removeStaleJobs = ( // If any of our pending jobs do not have an existing inputPath or the inputPath changed // we remove it from the queue as they would fail anyway - state.jobsV2.incomplete.forEach(({ job, plugin }: IGatsbyJobV2): void => { - if (isJobStale(job)) { - actions.push(internalActions.removeStaleJob(job.contentDigest)) - } else { - actions.push(publicActions.createJobV2(job, plugin)) + state.jobsV2.incomplete.forEach( + ({ job, plugin }: IGatsbyIncompleteJobV2): void => { + if (isJobStale(job)) { + actions.push(internalActions.removeStaleJob(job.contentDigest)) + } else { + actions.push(publicActions.createJobV2(job, plugin)) + } } - }) + ) return actions } diff --git a/packages/gatsby/src/redux/__tests__/jobsv2.js b/packages/gatsby/src/redux/__tests__/jobsv2.js index 3bc3398b689c5..662e530d11da8 100644 --- a/packages/gatsby/src/redux/__tests__/jobsv2.js +++ b/packages/gatsby/src/redux/__tests__/jobsv2.js @@ -3,7 +3,7 @@ jest.spyOn(jobsManager, `enqueueJob`) jest.spyOn(jobsManager, `removeInProgressJob`) jest.mock(`uuid/v4`, () => () => `1234`) -const jobsReducer = require(`../reducers/jobsv2`) +import { jobsV2Reducer as jobsReducer } from "../reducers/jobsv2" describe(`Job v2 actions/reducer`, () => { const plugin = { diff --git a/packages/gatsby/src/redux/reducers/index.js b/packages/gatsby/src/redux/reducers/index.js index c888b2f57e07b..14371d6d81158 100644 --- a/packages/gatsby/src/redux/reducers/index.js +++ b/packages/gatsby/src/redux/reducers/index.js @@ -11,6 +11,7 @@ import { themesReducer } from "./themes" import { webpackCompilationHashReducer } from "./webpack-compilation-hash" import { reducer as logReducer } from "gatsby-cli/lib/reporter/redux/reducer" import { lastAction } from "./last-action" +import { jobsV2Reducer } from "./jobsv2" /** * @property exports.nodesTouched Set @@ -31,7 +32,7 @@ module.exports = { components: require(`./components`), staticQueryComponents: staticQueryComponentsReducer, jobs: require(`./jobs`), - jobsV2: require(`./jobsv2`), + jobsV2: jobsV2Reducer, webpack: webpackReducer, webpackCompilationHash: webpackCompilationHashReducer, redirects: redirectsReducer, diff --git a/packages/gatsby/src/redux/reducers/jobsv2.js b/packages/gatsby/src/redux/reducers/jobsv2.ts similarity index 53% rename from packages/gatsby/src/redux/reducers/jobsv2.js rename to packages/gatsby/src/redux/reducers/jobsv2.ts index ee5319ee6465c..33ad611394073 100644 --- a/packages/gatsby/src/redux/reducers/jobsv2.js +++ b/packages/gatsby/src/redux/reducers/jobsv2.ts @@ -1,7 +1,17 @@ -module.exports = ( - state = { incomplete: new Map(), complete: new Map() }, - action -) => { +import { + ActionsUnion, + IGatsbyState, + IGatsbyIncompleteJobV2, + IGatsbyCompleteJobV2, +} from "../types" + +export const jobsV2Reducer = ( + state: IGatsbyState["jobsV2"] = { + incomplete: new Map(), + complete: new Map(), + }, + action: ActionsUnion +): IGatsbyState["jobsV2"] => { switch (action.type) { case `CREATE_JOB_V2`: { const { job, plugin } = action.payload @@ -9,14 +19,22 @@ module.exports = ( state.incomplete.set(job.contentDigest, { job, plugin, - }) + } as IGatsbyIncompleteJobV2) return state } case `END_JOB_V2`: { const { jobContentDigest, result } = action.payload - const { job } = state.incomplete.get(jobContentDigest) + const { job } = state.incomplete.get( + jobContentDigest + ) as IGatsbyIncompleteJobV2 + + if (!job) { + throw new Error( + `If you encounter this error, it's probably a Gatsby internal bug. Please open an issue reporting us this.` + ) + } state.incomplete.delete(job.contentDigest) @@ -24,7 +42,7 @@ module.exports = ( state.complete.set(job.contentDigest, { result, inputPaths: job.inputPaths, - }) + } as IGatsbyCompleteJobV2) return state } diff --git a/packages/gatsby/src/redux/types.ts b/packages/gatsby/src/redux/types.ts index 569ceea30e911..82903dae858fa 100644 --- a/packages/gatsby/src/redux/types.ts +++ b/packages/gatsby/src/redux/types.ts @@ -3,6 +3,7 @@ import { GraphQLFieldExtensionDefinition } from "../schema/extensions" import { DocumentNode, GraphQLSchema } from "graphql" import { SchemaComposer } from "graphql-compose" import { IGatsbyCLIState } from "gatsby-cli/src/reporter/redux/types" +import { InternalJobInterface, JobResultInterface } from "../utils/jobs-manager" type SystemPath = string type Identifier = string @@ -95,15 +96,14 @@ export interface IGatsbyStaticQueryComponents { type GatsbyNodes = Map -export interface IGatsbyJobContent { - inputPaths: string[] - contentDigest: string +export interface IGatsbyIncompleteJobV2 { + job: InternalJobInterface + plugin: IGatsbyPlugin } -export interface IGatsbyJobV2 { - job: IGatsbyJobContent - plugin: IGatsbyPlugin - traceId?: string +export interface IGatsbyCompleteJobV2 { + result: JobResultInterface + inputPaths: InternalJobInterface["inputPaths"] } export interface IGatsbyState { @@ -171,8 +171,8 @@ export interface IGatsbyState { done: any[] // TODO } jobsV2: { - incomplete: Map - complete: Map + incomplete: Map + complete: Map } webpack: any // TODO This should be the output from ./utils/webpack.config.js webpackCompilationHash: string @@ -254,6 +254,32 @@ export type ActionsUnion = | IUpdatePluginsHashAction | IRemovePageDataAction | ISetPageDataAction + | ICreateJobV2Action + | IEndJobV2Action + | IRemoveStaleJobV2Action + +export interface ICreateJobV2Action { + type: `CREATE_JOB_V2` + payload: { + job: IGatsbyIncompleteJobV2["job"] + plugin: IGatsbyIncompleteJobV2["plugin"] + } +} + +export interface IEndJobV2Action { + type: `END_JOB_V2` + payload: { + jobContentDigest: string + result: JobResultInterface + } +} + +export interface IRemoveStaleJobV2Action { + type: `REMOVE_STALE_JOB_V2` + payload: { + contentDigest: string + } +} export interface ICreatePageDependencyAction { type: `CREATE_COMPONENT_DEPENDENCY` diff --git a/packages/gatsby/src/utils/jobs-manager.js b/packages/gatsby/src/utils/jobs-manager.js index 60a6941e5e134..85c232b429152 100644 --- a/packages/gatsby/src/utils/jobs-manager.js +++ b/packages/gatsby/src/utils/jobs-manager.js @@ -60,6 +60,8 @@ const createFileHash = path => hasha.fromFileSync(path, { algorithm: `sha1` }) * @property {{path: string, contentDigest: string}[]} inputPaths * @property {{name: string, version: string, resolve: string, isLocal: boolean}} plugin * + * @typedef {Record} JobResultInterface + * * I know this sucks but this is the only way to do it properly in jsdoc.. * @typedef {BaseJobInterface & JobInputInterface} JobInput * @typedef {BaseJobInterface & InternalJobInterface} InternalJob diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index e8c9dc974e21e..57c4ff058dd82 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -2078,9 +2078,9 @@ } }, "@types/react": { - "version": "16.9.34", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.34.tgz", - "integrity": "sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow==", + "version": "16.9.35", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.35.tgz", + "integrity": "sha512-q0n0SsWcGc8nDqH2GJfWQWUOmZSJhXV64CjVN5SvcNti3TdEaA3AH0D8DwNmMdzjMAC/78tB8nAZIlV8yTz+zQ==", "requires": { "@types/prop-types": "*", "csstype": "^2.2.0" @@ -2389,9 +2389,9 @@ } }, "acorn": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.2.0.tgz", + "integrity": "sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ==" }, "acorn-dynamic-import": { "version": "4.0.0", @@ -4047,9 +4047,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001054", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001054.tgz", - "integrity": "sha512-jiKlTI6Ur8Kjfj8z0muGrV6FscpRvefcQVPSuMuXnvRCfExU7zlVLNjmOz1TnurWgUrAY7MMmjyy+uTgIl1XHw==" + "version": "1.0.30001055", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001055.tgz", + "integrity": "sha512-MbwsBmKrBSKIWldfdIagO5OJWZclpJtS4h0Jrk/4HFrXJxTdVdH23Fd+xCiHriVGvYcWyW8mR/CPsYajlH8Iuw==" }, "caseless": { "version": "0.12.0", @@ -6164,9 +6164,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.431", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.431.tgz", - "integrity": "sha512-2okqkXCIda7qDwjYhUFxPcQdZDIZZ/zBLDzVOif7WW/TSNfEhdT6SO07O1x/sFteEHX189Z//UwjbZKKCOn2Fg==" + "version": "1.3.432", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.432.tgz", + "integrity": "sha512-/GdNhXyLP5Yl2322CUX/+Xi8NhdHBqL6lD9VJVKjH6CjoPGakvwZ5CpKgj/oOlbzuWWjOvMjDw1bBuAIRCNTlw==" }, "elliptic": { "version": "6.5.2", @@ -7887,9 +7887,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.21.21", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.21.tgz", - "integrity": "sha512-HJJHG4AUVvVCT6cRRROyDH1yMy7Ep6YuUVeUqpTiYXjYzZZldzVQlnbiQflQDl0H4qrTMfocyQoOsxfyU6vCcQ==", + "version": "2.21.22", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.22.tgz", + "integrity": "sha512-o27LT+own9vYbex7oJEtgfVxbvCIjpeRCNocRTeLwYrJyyqQ0MmQ2kMBsfBjqVrLndvv8Xqa0yiFLq9FQhOLkQ==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/core": "^7.9.6", @@ -7952,7 +7952,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.15", + "gatsby-cli": "^2.12.16", "gatsby-core-utils": "^1.2.1", "gatsby-graphiql-explorer": "^0.4.1", "gatsby-link": "^2.4.2", @@ -8097,9 +8097,9 @@ } }, "gatsby-cli": { - "version": "2.12.15", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.15.tgz", - "integrity": "sha512-lt3Umooa61evuttRB32K+kW1H5AQVtXXdgCPCJleILjyLjefhaQnkF2kAm04DOtACH1oG03cGdEbk0+Th3y5gQ==", + "version": "2.12.16", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.16.tgz", + "integrity": "sha512-XSaIRKUaRbHN+ACaBVbYkM7JPcP0ZyoCMKHfzIan6Yyx3Ic8coG+7sc/NJx5mzmAKcnAlK4/492pAcsxnaxlWw==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/runtime": "^7.9.6", @@ -8117,7 +8117,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.2.1", - "gatsby-recipes": "^0.1.14", + "gatsby-recipes": "^0.1.15", "gatsby-telemetry": "^1.3.3", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", @@ -8496,9 +8496,9 @@ } }, "gatsby-recipes": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.14.tgz", - "integrity": "sha512-raYrJXKGCAZ1mqfoa8V2gX8jhxX9K+Mwmp3vSUo+hOwFU1FfEjpRyrncvtL841lv4zI13MQ59aLe6dMehS3jIw==", + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.15.tgz", + "integrity": "sha512-sEzIpRGn5XY55FdDcWBMf2jEyAQZLtH5z4RDoPm3iB9I6yljkGU23ooHqqINDZVr33o8Ybeqep+XujjEG3jzdw==", "requires": { "@babel/core": "^7.9.6", "@babel/generator": "^7.9.6", @@ -9859,9 +9859,9 @@ } }, "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -10173,9 +10173,9 @@ }, "dependencies": { "eventemitter3": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.1.tgz", + "integrity": "sha512-MnI0l35oYL2C/c80rjJN7qu50MDx39yYE7y7oYck2YA3v+y7EaAenY8IU8AP4d1RWqE8VAKWFGSh3rfP87ll3g==" } } }, @@ -19681,9 +19681,9 @@ } }, "ws": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.5.tgz", - "integrity": "sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA==" + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.0.tgz", + "integrity": "sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w==" }, "x-is-string": { "version": "0.1.0", diff --git a/starters/blog/package.json b/starters/blog/package.json index 33b639ea5a12e..132840d579909 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -8,7 +8,7 @@ "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-feed": "^2.5.1", "gatsby-plugin-google-analytics": "^2.3.1", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index 9e0336cc4215f..371befdddfe01 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -2070,9 +2070,9 @@ } }, "@types/react": { - "version": "16.9.34", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.34.tgz", - "integrity": "sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow==", + "version": "16.9.35", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.35.tgz", + "integrity": "sha512-q0n0SsWcGc8nDqH2GJfWQWUOmZSJhXV64CjVN5SvcNti3TdEaA3AH0D8DwNmMdzjMAC/78tB8nAZIlV8yTz+zQ==", "requires": { "@types/prop-types": "*", "csstype": "^2.2.0" @@ -2363,9 +2363,9 @@ } }, "acorn": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.2.0.tgz", + "integrity": "sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ==" }, "acorn-dynamic-import": { "version": "4.0.0", @@ -4016,9 +4016,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001054", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001054.tgz", - "integrity": "sha512-jiKlTI6Ur8Kjfj8z0muGrV6FscpRvefcQVPSuMuXnvRCfExU7zlVLNjmOz1TnurWgUrAY7MMmjyy+uTgIl1XHw==" + "version": "1.0.30001055", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001055.tgz", + "integrity": "sha512-MbwsBmKrBSKIWldfdIagO5OJWZclpJtS4h0Jrk/4HFrXJxTdVdH23Fd+xCiHriVGvYcWyW8mR/CPsYajlH8Iuw==" }, "caseless": { "version": "0.12.0", @@ -6087,9 +6087,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.431", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.431.tgz", - "integrity": "sha512-2okqkXCIda7qDwjYhUFxPcQdZDIZZ/zBLDzVOif7WW/TSNfEhdT6SO07O1x/sFteEHX189Z//UwjbZKKCOn2Fg==" + "version": "1.3.432", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.432.tgz", + "integrity": "sha512-/GdNhXyLP5Yl2322CUX/+Xi8NhdHBqL6lD9VJVKjH6CjoPGakvwZ5CpKgj/oOlbzuWWjOvMjDw1bBuAIRCNTlw==" }, "elliptic": { "version": "6.5.2", @@ -7810,9 +7810,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.21.21", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.21.tgz", - "integrity": "sha512-HJJHG4AUVvVCT6cRRROyDH1yMy7Ep6YuUVeUqpTiYXjYzZZldzVQlnbiQflQDl0H4qrTMfocyQoOsxfyU6vCcQ==", + "version": "2.21.22", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.22.tgz", + "integrity": "sha512-o27LT+own9vYbex7oJEtgfVxbvCIjpeRCNocRTeLwYrJyyqQ0MmQ2kMBsfBjqVrLndvv8Xqa0yiFLq9FQhOLkQ==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/core": "^7.9.6", @@ -7875,7 +7875,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.15", + "gatsby-cli": "^2.12.16", "gatsby-core-utils": "^1.2.1", "gatsby-graphiql-explorer": "^0.4.1", "gatsby-link": "^2.4.2", @@ -8020,9 +8020,9 @@ } }, "gatsby-cli": { - "version": "2.12.15", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.15.tgz", - "integrity": "sha512-lt3Umooa61evuttRB32K+kW1H5AQVtXXdgCPCJleILjyLjefhaQnkF2kAm04DOtACH1oG03cGdEbk0+Th3y5gQ==", + "version": "2.12.16", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.16.tgz", + "integrity": "sha512-XSaIRKUaRbHN+ACaBVbYkM7JPcP0ZyoCMKHfzIan6Yyx3Ic8coG+7sc/NJx5mzmAKcnAlK4/492pAcsxnaxlWw==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/runtime": "^7.9.6", @@ -8040,7 +8040,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.2.1", - "gatsby-recipes": "^0.1.14", + "gatsby-recipes": "^0.1.15", "gatsby-telemetry": "^1.3.3", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", @@ -8390,9 +8390,9 @@ } }, "gatsby-recipes": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.14.tgz", - "integrity": "sha512-raYrJXKGCAZ1mqfoa8V2gX8jhxX9K+Mwmp3vSUo+hOwFU1FfEjpRyrncvtL841lv4zI13MQ59aLe6dMehS3jIw==", + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.15.tgz", + "integrity": "sha512-sEzIpRGn5XY55FdDcWBMf2jEyAQZLtH5z4RDoPm3iB9I6yljkGU23ooHqqINDZVr33o8Ybeqep+XujjEG3jzdw==", "requires": { "@babel/core": "^7.9.6", "@babel/generator": "^7.9.6", @@ -9243,9 +9243,9 @@ } }, "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -9504,9 +9504,9 @@ }, "dependencies": { "eventemitter3": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.1.tgz", + "integrity": "sha512-MnI0l35oYL2C/c80rjJN7qu50MDx39yYE7y7oYck2YA3v+y7EaAenY8IU8AP4d1RWqE8VAKWFGSh3rfP87ll3g==" } } }, @@ -18385,9 +18385,9 @@ } }, "ws": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.5.tgz", - "integrity": "sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA==" + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.0.tgz", + "integrity": "sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w==" }, "xdg-basedir": { "version": "4.0.0", diff --git a/starters/default/package.json b/starters/default/package.json index e264810dd249d..2be29a377d286 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-image": "^2.4.3", "gatsby-plugin-manifest": "^2.4.2", "gatsby-plugin-offline": "^3.2.1", diff --git a/starters/gatsby-starter-blog-theme-core/package-lock.json b/starters/gatsby-starter-blog-theme-core/package-lock.json index e121e20fd3085..841b5617abb4d 100644 --- a/starters/gatsby-starter-blog-theme-core/package-lock.json +++ b/starters/gatsby-starter-blog-theme-core/package-lock.json @@ -2070,9 +2070,9 @@ } }, "@types/react": { - "version": "16.9.34", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.34.tgz", - "integrity": "sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow==", + "version": "16.9.35", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.35.tgz", + "integrity": "sha512-q0n0SsWcGc8nDqH2GJfWQWUOmZSJhXV64CjVN5SvcNti3TdEaA3AH0D8DwNmMdzjMAC/78tB8nAZIlV8yTz+zQ==", "requires": { "@types/prop-types": "*", "csstype": "^2.2.0" @@ -2381,9 +2381,9 @@ } }, "acorn": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.2.0.tgz", + "integrity": "sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ==" }, "acorn-dynamic-import": { "version": "4.0.0", @@ -2531,9 +2531,9 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" }, "arch": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.1.tgz", - "integrity": "sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.2.tgz", + "integrity": "sha512-NTBIIbAfkJeIletyABbVtdPgeKfDafR+1mZV/AyyfC1UkVkp9iUjV+wwmqtUgphHYajbI86jejBJp5e+jkGTiQ==" }, "archive-type": { "version": "4.0.0", @@ -3999,9 +3999,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001054", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001054.tgz", - "integrity": "sha512-jiKlTI6Ur8Kjfj8z0muGrV6FscpRvefcQVPSuMuXnvRCfExU7zlVLNjmOz1TnurWgUrAY7MMmjyy+uTgIl1XHw==" + "version": "1.0.30001055", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001055.tgz", + "integrity": "sha512-MbwsBmKrBSKIWldfdIagO5OJWZclpJtS4h0Jrk/4HFrXJxTdVdH23Fd+xCiHriVGvYcWyW8mR/CPsYajlH8Iuw==" }, "caseless": { "version": "0.12.0", @@ -6101,9 +6101,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.431", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.431.tgz", - "integrity": "sha512-2okqkXCIda7qDwjYhUFxPcQdZDIZZ/zBLDzVOif7WW/TSNfEhdT6SO07O1x/sFteEHX189Z//UwjbZKKCOn2Fg==" + "version": "1.3.432", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.432.tgz", + "integrity": "sha512-/GdNhXyLP5Yl2322CUX/+Xi8NhdHBqL6lD9VJVKjH6CjoPGakvwZ5CpKgj/oOlbzuWWjOvMjDw1bBuAIRCNTlw==" }, "elliptic": { "version": "6.5.2", @@ -6252,9 +6252,9 @@ } }, "entities": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz", - "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.2.tgz", + "integrity": "sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw==" }, "envinfo": { "version": "7.5.1", @@ -7832,9 +7832,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.21.21", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.21.tgz", - "integrity": "sha512-HJJHG4AUVvVCT6cRRROyDH1yMy7Ep6YuUVeUqpTiYXjYzZZldzVQlnbiQflQDl0H4qrTMfocyQoOsxfyU6vCcQ==", + "version": "2.21.22", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.22.tgz", + "integrity": "sha512-o27LT+own9vYbex7oJEtgfVxbvCIjpeRCNocRTeLwYrJyyqQ0MmQ2kMBsfBjqVrLndvv8Xqa0yiFLq9FQhOLkQ==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/core": "^7.9.6", @@ -7897,7 +7897,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.15", + "gatsby-cli": "^2.12.16", "gatsby-core-utils": "^1.2.1", "gatsby-graphiql-explorer": "^0.4.1", "gatsby-link": "^2.4.2", @@ -8042,9 +8042,9 @@ } }, "gatsby-cli": { - "version": "2.12.15", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.15.tgz", - "integrity": "sha512-lt3Umooa61evuttRB32K+kW1H5AQVtXXdgCPCJleILjyLjefhaQnkF2kAm04DOtACH1oG03cGdEbk0+Th3y5gQ==", + "version": "2.12.16", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.16.tgz", + "integrity": "sha512-XSaIRKUaRbHN+ACaBVbYkM7JPcP0ZyoCMKHfzIan6Yyx3Ic8coG+7sc/NJx5mzmAKcnAlK4/492pAcsxnaxlWw==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/runtime": "^7.9.6", @@ -8062,7 +8062,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.2.1", - "gatsby-recipes": "^0.1.14", + "gatsby-recipes": "^0.1.15", "gatsby-telemetry": "^1.3.3", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", @@ -8482,9 +8482,9 @@ } }, "gatsby-recipes": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.14.tgz", - "integrity": "sha512-raYrJXKGCAZ1mqfoa8V2gX8jhxX9K+Mwmp3vSUo+hOwFU1FfEjpRyrncvtL841lv4zI13MQ59aLe6dMehS3jIw==", + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.15.tgz", + "integrity": "sha512-sEzIpRGn5XY55FdDcWBMf2jEyAQZLtH5z4RDoPm3iB9I6yljkGU23ooHqqINDZVr33o8Ybeqep+XujjEG3jzdw==", "requires": { "@babel/core": "^7.9.6", "@babel/generator": "^7.9.6", @@ -8954,9 +8954,9 @@ } }, "gatsby-theme-blog-core": { - "version": "1.4.21", - "resolved": "https://registry.npmjs.org/gatsby-theme-blog-core/-/gatsby-theme-blog-core-1.4.21.tgz", - "integrity": "sha512-iqd2qXvr+Q9refm1zmzVTu4JyMGtk/YYN/YHBT5nK1PS0wNQmJwxlsdrPwvnLvpT7YH79I0UawEDF1CsctY6bw==", + "version": "1.4.22", + "resolved": "https://registry.npmjs.org/gatsby-theme-blog-core/-/gatsby-theme-blog-core-1.4.22.tgz", + "integrity": "sha512-lwawuiZASQUaoE7JcITmFYwfisn1SCVcZKl2aO+0zRBUnI7D5j0T5eSenLaWt0UrP+cJccZj3kStz7z173CQfQ==", "requires": { "@mdx-js/mdx": "^1.6.1", "gatsby-core-utils": "^1.2.1", @@ -9549,9 +9549,9 @@ } }, "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -9819,9 +9819,9 @@ }, "dependencies": { "eventemitter3": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.1.tgz", + "integrity": "sha512-MnI0l35oYL2C/c80rjJN7qu50MDx39yYE7y7oYck2YA3v+y7EaAenY8IU8AP4d1RWqE8VAKWFGSh3rfP87ll3g==" } } }, @@ -19181,9 +19181,9 @@ } }, "ws": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.5.tgz", - "integrity": "sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA==" + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.0.tgz", + "integrity": "sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w==" }, "x-is-string": { "version": "0.1.0", diff --git a/starters/gatsby-starter-blog-theme-core/package.json b/starters/gatsby-starter-blog-theme-core/package.json index 22a20183526d8..300904f71807a 100644 --- a/starters/gatsby-starter-blog-theme-core/package.json +++ b/starters/gatsby-starter-blog-theme-core/package.json @@ -10,8 +10,8 @@ }, "dependencies": { "@mdx-js/react": "^1.6.1", - "gatsby": "^2.21.21", - "gatsby-theme-blog-core": "^1.4.21", + "gatsby": "^2.21.22", + "gatsby-theme-blog-core": "^1.4.22", "react": "^16.12.0", "react-dom": "^16.12.0" } diff --git a/starters/gatsby-starter-blog-theme/package-lock.json b/starters/gatsby-starter-blog-theme/package-lock.json index b4eb638ae0961..7f520d5f8e2c1 100644 --- a/starters/gatsby-starter-blog-theme/package-lock.json +++ b/starters/gatsby-starter-blog-theme/package-lock.json @@ -2201,9 +2201,9 @@ } }, "@types/react": { - "version": "16.9.34", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.34.tgz", - "integrity": "sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow==", + "version": "16.9.35", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.35.tgz", + "integrity": "sha512-q0n0SsWcGc8nDqH2GJfWQWUOmZSJhXV64CjVN5SvcNti3TdEaA3AH0D8DwNmMdzjMAC/78tB8nAZIlV8yTz+zQ==", "requires": { "@types/prop-types": "*", "csstype": "^2.2.0" @@ -2512,9 +2512,9 @@ } }, "acorn": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.2.0.tgz", + "integrity": "sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ==" }, "acorn-dynamic-import": { "version": "4.0.0", @@ -2662,9 +2662,9 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" }, "arch": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.1.tgz", - "integrity": "sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.2.tgz", + "integrity": "sha512-NTBIIbAfkJeIletyABbVtdPgeKfDafR+1mZV/AyyfC1UkVkp9iUjV+wwmqtUgphHYajbI86jejBJp5e+jkGTiQ==" }, "archive-type": { "version": "4.0.0", @@ -4152,9 +4152,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001054", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001054.tgz", - "integrity": "sha512-jiKlTI6Ur8Kjfj8z0muGrV6FscpRvefcQVPSuMuXnvRCfExU7zlVLNjmOz1TnurWgUrAY7MMmjyy+uTgIl1XHw==" + "version": "1.0.30001055", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001055.tgz", + "integrity": "sha512-MbwsBmKrBSKIWldfdIagO5OJWZclpJtS4h0Jrk/4HFrXJxTdVdH23Fd+xCiHriVGvYcWyW8mR/CPsYajlH8Iuw==" }, "caseless": { "version": "0.12.0", @@ -6278,9 +6278,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.431", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.431.tgz", - "integrity": "sha512-2okqkXCIda7qDwjYhUFxPcQdZDIZZ/zBLDzVOif7WW/TSNfEhdT6SO07O1x/sFteEHX189Z//UwjbZKKCOn2Fg==" + "version": "1.3.432", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.432.tgz", + "integrity": "sha512-/GdNhXyLP5Yl2322CUX/+Xi8NhdHBqL6lD9VJVKjH6CjoPGakvwZ5CpKgj/oOlbzuWWjOvMjDw1bBuAIRCNTlw==" }, "elliptic": { "version": "6.5.2", @@ -6429,9 +6429,9 @@ } }, "entities": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz", - "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.2.tgz", + "integrity": "sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw==" }, "envinfo": { "version": "7.5.1", @@ -8014,9 +8014,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.21.21", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.21.tgz", - "integrity": "sha512-HJJHG4AUVvVCT6cRRROyDH1yMy7Ep6YuUVeUqpTiYXjYzZZldzVQlnbiQflQDl0H4qrTMfocyQoOsxfyU6vCcQ==", + "version": "2.21.22", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.22.tgz", + "integrity": "sha512-o27LT+own9vYbex7oJEtgfVxbvCIjpeRCNocRTeLwYrJyyqQ0MmQ2kMBsfBjqVrLndvv8Xqa0yiFLq9FQhOLkQ==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/core": "^7.9.6", @@ -8079,7 +8079,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.15", + "gatsby-cli": "^2.12.16", "gatsby-core-utils": "^1.2.1", "gatsby-graphiql-explorer": "^0.4.1", "gatsby-link": "^2.4.2", @@ -8224,9 +8224,9 @@ } }, "gatsby-cli": { - "version": "2.12.15", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.15.tgz", - "integrity": "sha512-lt3Umooa61evuttRB32K+kW1H5AQVtXXdgCPCJleILjyLjefhaQnkF2kAm04DOtACH1oG03cGdEbk0+Th3y5gQ==", + "version": "2.12.16", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.16.tgz", + "integrity": "sha512-XSaIRKUaRbHN+ACaBVbYkM7JPcP0ZyoCMKHfzIan6Yyx3Ic8coG+7sc/NJx5mzmAKcnAlK4/492pAcsxnaxlWw==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/runtime": "^7.9.6", @@ -8244,7 +8244,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.2.1", - "gatsby-recipes": "^0.1.14", + "gatsby-recipes": "^0.1.15", "gatsby-telemetry": "^1.3.3", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", @@ -8716,9 +8716,9 @@ } }, "gatsby-recipes": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.14.tgz", - "integrity": "sha512-raYrJXKGCAZ1mqfoa8V2gX8jhxX9K+Mwmp3vSUo+hOwFU1FfEjpRyrncvtL841lv4zI13MQ59aLe6dMehS3jIw==", + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.15.tgz", + "integrity": "sha512-sEzIpRGn5XY55FdDcWBMf2jEyAQZLtH5z4RDoPm3iB9I6yljkGU23ooHqqINDZVr33o8Ybeqep+XujjEG3jzdw==", "requires": { "@babel/core": "^7.9.6", "@babel/generator": "^7.9.6", @@ -9188,9 +9188,9 @@ } }, "gatsby-theme-blog": { - "version": "1.5.21", - "resolved": "https://registry.npmjs.org/gatsby-theme-blog/-/gatsby-theme-blog-1.5.21.tgz", - "integrity": "sha512-UBriwU/o9PwOEVYiIycXxakt9iY5NM4SXalGTFL+HGCynOl3XBVMbVkxD7jk9HMiMg6FOKl7LusVuom+1AJH9w==", + "version": "1.5.22", + "resolved": "https://registry.npmjs.org/gatsby-theme-blog/-/gatsby-theme-blog-1.5.22.tgz", + "integrity": "sha512-IVhsIpjSrReB5BV333ZFkp2TS+DLD0Bz4XbdbdryGFjB4mC7jPA5m+vkHmWvRGIiPG9jcR1Rk7cHq1gE7JUMpg==", "requires": { "@emotion/core": "^10.0.28", "@mdx-js/react": "^1.6.1", @@ -9203,7 +9203,7 @@ "gatsby-plugin-react-helmet": "^3.3.1", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.3.1", - "gatsby-theme-blog-core": "^1.4.21", + "gatsby-theme-blog-core": "^1.4.22", "mdx-utils": "0.2.0", "react-helmet": "^5.2.1", "react-switch": "^5.0.1", @@ -9214,9 +9214,9 @@ } }, "gatsby-theme-blog-core": { - "version": "1.4.21", - "resolved": "https://registry.npmjs.org/gatsby-theme-blog-core/-/gatsby-theme-blog-core-1.4.21.tgz", - "integrity": "sha512-iqd2qXvr+Q9refm1zmzVTu4JyMGtk/YYN/YHBT5nK1PS0wNQmJwxlsdrPwvnLvpT7YH79I0UawEDF1CsctY6bw==", + "version": "1.4.22", + "resolved": "https://registry.npmjs.org/gatsby-theme-blog-core/-/gatsby-theme-blog-core-1.4.22.tgz", + "integrity": "sha512-lwawuiZASQUaoE7JcITmFYwfisn1SCVcZKl2aO+0zRBUnI7D5j0T5eSenLaWt0UrP+cJccZj3kStz7z173CQfQ==", "requires": { "@mdx-js/mdx": "^1.6.1", "gatsby-core-utils": "^1.2.1", @@ -9814,9 +9814,9 @@ } }, "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -10084,9 +10084,9 @@ }, "dependencies": { "eventemitter3": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.1.tgz", + "integrity": "sha512-MnI0l35oYL2C/c80rjJN7qu50MDx39yYE7y7oYck2YA3v+y7EaAenY8IU8AP4d1RWqE8VAKWFGSh3rfP87ll3g==" } } }, @@ -19569,9 +19569,9 @@ } }, "ws": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.5.tgz", - "integrity": "sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA==" + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.0.tgz", + "integrity": "sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w==" }, "x-is-string": { "version": "0.1.0", diff --git a/starters/gatsby-starter-blog-theme/package.json b/starters/gatsby-starter-blog-theme/package.json index 3d216eaceaea1..b85380084320f 100644 --- a/starters/gatsby-starter-blog-theme/package.json +++ b/starters/gatsby-starter-blog-theme/package.json @@ -9,8 +9,8 @@ "clean": "gatsby clean" }, "dependencies": { - "gatsby": "^2.21.21", - "gatsby-theme-blog": "^1.5.21", + "gatsby": "^2.21.22", + "gatsby-theme-blog": "^1.5.22", "react": "^16.12.0", "react-dom": "^16.12.0" } diff --git a/starters/gatsby-starter-notes-theme/package-lock.json b/starters/gatsby-starter-notes-theme/package-lock.json index 29e1b2cc68eb4..3646ef16ac65e 100644 --- a/starters/gatsby-starter-notes-theme/package-lock.json +++ b/starters/gatsby-starter-notes-theme/package-lock.json @@ -1619,9 +1619,9 @@ } }, "@types/react": { - "version": "16.9.34", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.34.tgz", - "integrity": "sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow==", + "version": "16.9.35", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.35.tgz", + "integrity": "sha512-q0n0SsWcGc8nDqH2GJfWQWUOmZSJhXV64CjVN5SvcNti3TdEaA3AH0D8DwNmMdzjMAC/78tB8nAZIlV8yTz+zQ==", "requires": { "@types/prop-types": "*", "csstype": "^2.2.0" @@ -1930,9 +1930,9 @@ } }, "acorn": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.2.0.tgz", + "integrity": "sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ==" }, "acorn-dynamic-import": { "version": "4.0.0", @@ -2070,9 +2070,9 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" }, "arch": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.1.tgz", - "integrity": "sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.2.tgz", + "integrity": "sha512-NTBIIbAfkJeIletyABbVtdPgeKfDafR+1mZV/AyyfC1UkVkp9iUjV+wwmqtUgphHYajbI86jejBJp5e+jkGTiQ==" }, "argparse": { "version": "1.0.10", @@ -3240,9 +3240,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001054", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001054.tgz", - "integrity": "sha512-jiKlTI6Ur8Kjfj8z0muGrV6FscpRvefcQVPSuMuXnvRCfExU7zlVLNjmOz1TnurWgUrAY7MMmjyy+uTgIl1XHw==" + "version": "1.0.30001055", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001055.tgz", + "integrity": "sha512-MbwsBmKrBSKIWldfdIagO5OJWZclpJtS4h0Jrk/4HFrXJxTdVdH23Fd+xCiHriVGvYcWyW8mR/CPsYajlH8Iuw==" }, "ccount": { "version": "1.0.5", @@ -5059,9 +5059,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.431", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.431.tgz", - "integrity": "sha512-2okqkXCIda7qDwjYhUFxPcQdZDIZZ/zBLDzVOif7WW/TSNfEhdT6SO07O1x/sFteEHX189Z//UwjbZKKCOn2Fg==" + "version": "1.3.432", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.432.tgz", + "integrity": "sha512-/GdNhXyLP5Yl2322CUX/+Xi8NhdHBqL6lD9VJVKjH6CjoPGakvwZ5CpKgj/oOlbzuWWjOvMjDw1bBuAIRCNTlw==" }, "elliptic": { "version": "6.5.2", @@ -5210,9 +5210,9 @@ } }, "entities": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz", - "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.2.tgz", + "integrity": "sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw==" }, "envinfo": { "version": "7.5.1", @@ -6629,9 +6629,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.21.21", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.21.tgz", - "integrity": "sha512-HJJHG4AUVvVCT6cRRROyDH1yMy7Ep6YuUVeUqpTiYXjYzZZldzVQlnbiQflQDl0H4qrTMfocyQoOsxfyU6vCcQ==", + "version": "2.21.22", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.22.tgz", + "integrity": "sha512-o27LT+own9vYbex7oJEtgfVxbvCIjpeRCNocRTeLwYrJyyqQ0MmQ2kMBsfBjqVrLndvv8Xqa0yiFLq9FQhOLkQ==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/core": "^7.9.6", @@ -6694,7 +6694,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.15", + "gatsby-cli": "^2.12.16", "gatsby-core-utils": "^1.2.1", "gatsby-graphiql-explorer": "^0.4.1", "gatsby-link": "^2.4.2", @@ -6839,9 +6839,9 @@ } }, "gatsby-cli": { - "version": "2.12.15", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.15.tgz", - "integrity": "sha512-lt3Umooa61evuttRB32K+kW1H5AQVtXXdgCPCJleILjyLjefhaQnkF2kAm04DOtACH1oG03cGdEbk0+Th3y5gQ==", + "version": "2.12.16", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.16.tgz", + "integrity": "sha512-XSaIRKUaRbHN+ACaBVbYkM7JPcP0ZyoCMKHfzIan6Yyx3Ic8coG+7sc/NJx5mzmAKcnAlK4/492pAcsxnaxlWw==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/runtime": "^7.9.6", @@ -6859,7 +6859,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.2.1", - "gatsby-recipes": "^0.1.14", + "gatsby-recipes": "^0.1.15", "gatsby-telemetry": "^1.3.3", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", @@ -7294,9 +7294,9 @@ } }, "gatsby-recipes": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.14.tgz", - "integrity": "sha512-raYrJXKGCAZ1mqfoa8V2gX8jhxX9K+Mwmp3vSUo+hOwFU1FfEjpRyrncvtL841lv4zI13MQ59aLe6dMehS3jIw==", + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.15.tgz", + "integrity": "sha512-sEzIpRGn5XY55FdDcWBMf2jEyAQZLtH5z4RDoPm3iB9I6yljkGU23ooHqqINDZVr33o8Ybeqep+XujjEG3jzdw==", "requires": { "@babel/core": "^7.9.6", "@babel/generator": "^7.9.6", @@ -7585,9 +7585,9 @@ } }, "gatsby-theme-notes": { - "version": "1.3.21", - "resolved": "https://registry.npmjs.org/gatsby-theme-notes/-/gatsby-theme-notes-1.3.21.tgz", - "integrity": "sha512-0Q5vT7CJecd2MhB3Ni5WZnquxHJsFNqLvWR19FGmlDBOpB9JymUWhidk2R/owj2ORAgD9ypO/VliOK8MrUejDA==", + "version": "1.3.22", + "resolved": "https://registry.npmjs.org/gatsby-theme-notes/-/gatsby-theme-notes-1.3.22.tgz", + "integrity": "sha512-XcoheoNZKLAHXZ+o3Bo22ojx0JH0ehL9wZlxdgeWuGEUWUlpk+Bpp8epL6vqsT4QNaL3bqA+q5SioZUysDptYw==", "requires": { "@emotion/core": "^10.0.28", "@mdx-js/mdx": "^1.6.1", @@ -8101,9 +8101,9 @@ } }, "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -8371,9 +8371,9 @@ }, "dependencies": { "eventemitter3": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.1.tgz", + "integrity": "sha512-MnI0l35oYL2C/c80rjJN7qu50MDx39yYE7y7oYck2YA3v+y7EaAenY8IU8AP4d1RWqE8VAKWFGSh3rfP87ll3g==" } } }, @@ -16511,9 +16511,9 @@ } }, "ws": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.5.tgz", - "integrity": "sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA==" + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.0.tgz", + "integrity": "sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w==" }, "x-is-string": { "version": "0.1.0", diff --git a/starters/gatsby-starter-notes-theme/package.json b/starters/gatsby-starter-notes-theme/package.json index db407298c0ce2..7e313b8d3701a 100644 --- a/starters/gatsby-starter-notes-theme/package.json +++ b/starters/gatsby-starter-notes-theme/package.json @@ -9,8 +9,8 @@ "clean": "gatsby clean" }, "dependencies": { - "gatsby": "^2.21.21", - "gatsby-theme-notes": "^1.3.21", + "gatsby": "^2.21.22", + "gatsby-theme-notes": "^1.3.22", "react": "^16.12.0", "react-dom": "^16.12.0" } diff --git a/starters/gatsby-starter-theme-workspace/example/package.json b/starters/gatsby-starter-theme-workspace/example/package.json index 54c7eef8068f8..d6df746d99760 100644 --- a/starters/gatsby-starter-theme-workspace/example/package.json +++ b/starters/gatsby-starter-theme-workspace/example/package.json @@ -9,7 +9,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "gatsby-theme-minimal": "^1.0.0", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/starters/gatsby-starter-theme/package-lock.json b/starters/gatsby-starter-theme/package-lock.json index 7b5d4f337ff96..4bca2abb4da70 100644 --- a/starters/gatsby-starter-theme/package-lock.json +++ b/starters/gatsby-starter-theme/package-lock.json @@ -2201,9 +2201,9 @@ } }, "@types/react": { - "version": "16.9.34", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.34.tgz", - "integrity": "sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow==", + "version": "16.9.35", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.35.tgz", + "integrity": "sha512-q0n0SsWcGc8nDqH2GJfWQWUOmZSJhXV64CjVN5SvcNti3TdEaA3AH0D8DwNmMdzjMAC/78tB8nAZIlV8yTz+zQ==", "requires": { "@types/prop-types": "*", "csstype": "^2.2.0" @@ -2512,9 +2512,9 @@ } }, "acorn": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.2.0.tgz", + "integrity": "sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ==" }, "acorn-dynamic-import": { "version": "4.0.0", @@ -2662,9 +2662,9 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" }, "arch": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.1.tgz", - "integrity": "sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.2.tgz", + "integrity": "sha512-NTBIIbAfkJeIletyABbVtdPgeKfDafR+1mZV/AyyfC1UkVkp9iUjV+wwmqtUgphHYajbI86jejBJp5e+jkGTiQ==" }, "archive-type": { "version": "4.0.0", @@ -4152,9 +4152,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001054", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001054.tgz", - "integrity": "sha512-jiKlTI6Ur8Kjfj8z0muGrV6FscpRvefcQVPSuMuXnvRCfExU7zlVLNjmOz1TnurWgUrAY7MMmjyy+uTgIl1XHw==" + "version": "1.0.30001055", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001055.tgz", + "integrity": "sha512-MbwsBmKrBSKIWldfdIagO5OJWZclpJtS4h0Jrk/4HFrXJxTdVdH23Fd+xCiHriVGvYcWyW8mR/CPsYajlH8Iuw==" }, "caseless": { "version": "0.12.0", @@ -6278,9 +6278,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.431", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.431.tgz", - "integrity": "sha512-2okqkXCIda7qDwjYhUFxPcQdZDIZZ/zBLDzVOif7WW/TSNfEhdT6SO07O1x/sFteEHX189Z//UwjbZKKCOn2Fg==" + "version": "1.3.432", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.432.tgz", + "integrity": "sha512-/GdNhXyLP5Yl2322CUX/+Xi8NhdHBqL6lD9VJVKjH6CjoPGakvwZ5CpKgj/oOlbzuWWjOvMjDw1bBuAIRCNTlw==" }, "elliptic": { "version": "6.5.2", @@ -6429,9 +6429,9 @@ } }, "entities": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz", - "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.2.tgz", + "integrity": "sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw==" }, "envinfo": { "version": "7.5.1", @@ -8014,9 +8014,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.21.21", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.21.tgz", - "integrity": "sha512-HJJHG4AUVvVCT6cRRROyDH1yMy7Ep6YuUVeUqpTiYXjYzZZldzVQlnbiQflQDl0H4qrTMfocyQoOsxfyU6vCcQ==", + "version": "2.21.22", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.22.tgz", + "integrity": "sha512-o27LT+own9vYbex7oJEtgfVxbvCIjpeRCNocRTeLwYrJyyqQ0MmQ2kMBsfBjqVrLndvv8Xqa0yiFLq9FQhOLkQ==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/core": "^7.9.6", @@ -8079,7 +8079,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.15", + "gatsby-cli": "^2.12.16", "gatsby-core-utils": "^1.2.1", "gatsby-graphiql-explorer": "^0.4.1", "gatsby-link": "^2.4.2", @@ -8224,9 +8224,9 @@ } }, "gatsby-cli": { - "version": "2.12.15", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.15.tgz", - "integrity": "sha512-lt3Umooa61evuttRB32K+kW1H5AQVtXXdgCPCJleILjyLjefhaQnkF2kAm04DOtACH1oG03cGdEbk0+Th3y5gQ==", + "version": "2.12.16", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.16.tgz", + "integrity": "sha512-XSaIRKUaRbHN+ACaBVbYkM7JPcP0ZyoCMKHfzIan6Yyx3Ic8coG+7sc/NJx5mzmAKcnAlK4/492pAcsxnaxlWw==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/runtime": "^7.9.6", @@ -8244,7 +8244,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.2.1", - "gatsby-recipes": "^0.1.14", + "gatsby-recipes": "^0.1.15", "gatsby-telemetry": "^1.3.3", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", @@ -8753,9 +8753,9 @@ } }, "gatsby-recipes": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.14.tgz", - "integrity": "sha512-raYrJXKGCAZ1mqfoa8V2gX8jhxX9K+Mwmp3vSUo+hOwFU1FfEjpRyrncvtL841lv4zI13MQ59aLe6dMehS3jIw==", + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.15.tgz", + "integrity": "sha512-sEzIpRGn5XY55FdDcWBMf2jEyAQZLtH5z4RDoPm3iB9I6yljkGU23ooHqqINDZVr33o8Ybeqep+XujjEG3jzdw==", "requires": { "@babel/core": "^7.9.6", "@babel/generator": "^7.9.6", @@ -9225,9 +9225,9 @@ } }, "gatsby-theme-blog": { - "version": "1.5.21", - "resolved": "https://registry.npmjs.org/gatsby-theme-blog/-/gatsby-theme-blog-1.5.21.tgz", - "integrity": "sha512-UBriwU/o9PwOEVYiIycXxakt9iY5NM4SXalGTFL+HGCynOl3XBVMbVkxD7jk9HMiMg6FOKl7LusVuom+1AJH9w==", + "version": "1.5.22", + "resolved": "https://registry.npmjs.org/gatsby-theme-blog/-/gatsby-theme-blog-1.5.22.tgz", + "integrity": "sha512-IVhsIpjSrReB5BV333ZFkp2TS+DLD0Bz4XbdbdryGFjB4mC7jPA5m+vkHmWvRGIiPG9jcR1Rk7cHq1gE7JUMpg==", "requires": { "@emotion/core": "^10.0.28", "@mdx-js/react": "^1.6.1", @@ -9240,7 +9240,7 @@ "gatsby-plugin-react-helmet": "^3.3.1", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.3.1", - "gatsby-theme-blog-core": "^1.4.21", + "gatsby-theme-blog-core": "^1.4.22", "mdx-utils": "0.2.0", "react-helmet": "^5.2.1", "react-switch": "^5.0.1", @@ -9251,9 +9251,9 @@ } }, "gatsby-theme-blog-core": { - "version": "1.4.21", - "resolved": "https://registry.npmjs.org/gatsby-theme-blog-core/-/gatsby-theme-blog-core-1.4.21.tgz", - "integrity": "sha512-iqd2qXvr+Q9refm1zmzVTu4JyMGtk/YYN/YHBT5nK1PS0wNQmJwxlsdrPwvnLvpT7YH79I0UawEDF1CsctY6bw==", + "version": "1.4.22", + "resolved": "https://registry.npmjs.org/gatsby-theme-blog-core/-/gatsby-theme-blog-core-1.4.22.tgz", + "integrity": "sha512-lwawuiZASQUaoE7JcITmFYwfisn1SCVcZKl2aO+0zRBUnI7D5j0T5eSenLaWt0UrP+cJccZj3kStz7z173CQfQ==", "requires": { "@mdx-js/mdx": "^1.6.1", "gatsby-core-utils": "^1.2.1", @@ -9268,9 +9268,9 @@ } }, "gatsby-theme-notes": { - "version": "1.3.21", - "resolved": "https://registry.npmjs.org/gatsby-theme-notes/-/gatsby-theme-notes-1.3.21.tgz", - "integrity": "sha512-0Q5vT7CJecd2MhB3Ni5WZnquxHJsFNqLvWR19FGmlDBOpB9JymUWhidk2R/owj2ORAgD9ypO/VliOK8MrUejDA==", + "version": "1.3.22", + "resolved": "https://registry.npmjs.org/gatsby-theme-notes/-/gatsby-theme-notes-1.3.22.tgz", + "integrity": "sha512-XcoheoNZKLAHXZ+o3Bo22ojx0JH0ehL9wZlxdgeWuGEUWUlpk+Bpp8epL6vqsT4QNaL3bqA+q5SioZUysDptYw==", "requires": { "@emotion/core": "^10.0.28", "@mdx-js/mdx": "^1.6.1", @@ -9878,9 +9878,9 @@ } }, "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -10148,9 +10148,9 @@ }, "dependencies": { "eventemitter3": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.1.tgz", + "integrity": "sha512-MnI0l35oYL2C/c80rjJN7qu50MDx39yYE7y7oYck2YA3v+y7EaAenY8IU8AP4d1RWqE8VAKWFGSh3rfP87ll3g==" } } }, @@ -19667,9 +19667,9 @@ } }, "ws": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.5.tgz", - "integrity": "sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA==" + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.0.tgz", + "integrity": "sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w==" }, "x-is-string": { "version": "0.1.0", diff --git a/starters/gatsby-starter-theme/package.json b/starters/gatsby-starter-theme/package.json index dfe2385e1e3ee..e3872d82f4517 100644 --- a/starters/gatsby-starter-theme/package.json +++ b/starters/gatsby-starter-theme/package.json @@ -9,9 +9,9 @@ "clean": "gatsby clean" }, "dependencies": { - "gatsby": "^2.21.21", - "gatsby-theme-blog": "^1.5.21", - "gatsby-theme-notes": "^1.3.21", + "gatsby": "^2.21.22", + "gatsby-theme-blog": "^1.5.22", + "gatsby-theme-notes": "^1.3.22", "react": "^16.12.0", "react-dom": "^16.12.0" } diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index 77714ca6e54dc..fbb85e9e5dac4 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -1488,9 +1488,9 @@ } }, "@types/react": { - "version": "16.9.34", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.34.tgz", - "integrity": "sha512-8AJlYMOfPe1KGLKyHpflCg5z46n0b5DbRfqDksxBLBTUpB75ypDBAO9eCUcjNwE6LCUslwTz00yyG/X9gaVtow==", + "version": "16.9.35", + "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.35.tgz", + "integrity": "sha512-q0n0SsWcGc8nDqH2GJfWQWUOmZSJhXV64CjVN5SvcNti3TdEaA3AH0D8DwNmMdzjMAC/78tB8nAZIlV8yTz+zQ==", "requires": { "@types/prop-types": "*", "csstype": "^2.2.0" @@ -1781,9 +1781,9 @@ } }, "acorn": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.1.tgz", - "integrity": "sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg==" + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.2.0.tgz", + "integrity": "sha512-apwXVmYVpQ34m/i71vrApRrRKCWQnZZF1+npOD0WV5xZFfwWOmKGQ2RWlfdy9vWITsenisM8M0Qeq8agcFHNiQ==" }, "acorn-dynamic-import": { "version": "4.0.0", @@ -1921,9 +1921,9 @@ "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" }, "arch": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.1.tgz", - "integrity": "sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg==" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.1.2.tgz", + "integrity": "sha512-NTBIIbAfkJeIletyABbVtdPgeKfDafR+1mZV/AyyfC1UkVkp9iUjV+wwmqtUgphHYajbI86jejBJp5e+jkGTiQ==" }, "argparse": { "version": "1.0.10", @@ -3055,9 +3055,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001054", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001054.tgz", - "integrity": "sha512-jiKlTI6Ur8Kjfj8z0muGrV6FscpRvefcQVPSuMuXnvRCfExU7zlVLNjmOz1TnurWgUrAY7MMmjyy+uTgIl1XHw==" + "version": "1.0.30001055", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001055.tgz", + "integrity": "sha512-MbwsBmKrBSKIWldfdIagO5OJWZclpJtS4h0Jrk/4HFrXJxTdVdH23Fd+xCiHriVGvYcWyW8mR/CPsYajlH8Iuw==" }, "ccount": { "version": "1.0.5", @@ -4759,9 +4759,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.431", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.431.tgz", - "integrity": "sha512-2okqkXCIda7qDwjYhUFxPcQdZDIZZ/zBLDzVOif7WW/TSNfEhdT6SO07O1x/sFteEHX189Z//UwjbZKKCOn2Fg==" + "version": "1.3.432", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.432.tgz", + "integrity": "sha512-/GdNhXyLP5Yl2322CUX/+Xi8NhdHBqL6lD9VJVKjH6CjoPGakvwZ5CpKgj/oOlbzuWWjOvMjDw1bBuAIRCNTlw==" }, "elliptic": { "version": "6.5.2", @@ -4910,9 +4910,9 @@ } }, "entities": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz", - "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.2.tgz", + "integrity": "sha512-dmD3AvJQBUjKpcNkoqr+x+IF0SdRtPz9Vk0uTy4yWqga9ibB6s4v++QFWNohjiUGoMlF552ZvNyXDxz5iW0qmw==" }, "envinfo": { "version": "7.5.1", @@ -6311,9 +6311,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.21.21", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.21.tgz", - "integrity": "sha512-HJJHG4AUVvVCT6cRRROyDH1yMy7Ep6YuUVeUqpTiYXjYzZZldzVQlnbiQflQDl0H4qrTMfocyQoOsxfyU6vCcQ==", + "version": "2.21.22", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.21.22.tgz", + "integrity": "sha512-o27LT+own9vYbex7oJEtgfVxbvCIjpeRCNocRTeLwYrJyyqQ0MmQ2kMBsfBjqVrLndvv8Xqa0yiFLq9FQhOLkQ==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/core": "^7.9.6", @@ -6376,7 +6376,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.15", + "gatsby-cli": "^2.12.16", "gatsby-core-utils": "^1.2.1", "gatsby-graphiql-explorer": "^0.4.1", "gatsby-link": "^2.4.2", @@ -6521,9 +6521,9 @@ } }, "gatsby-cli": { - "version": "2.12.15", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.15.tgz", - "integrity": "sha512-lt3Umooa61evuttRB32K+kW1H5AQVtXXdgCPCJleILjyLjefhaQnkF2kAm04DOtACH1oG03cGdEbk0+Th3y5gQ==", + "version": "2.12.16", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-2.12.16.tgz", + "integrity": "sha512-XSaIRKUaRbHN+ACaBVbYkM7JPcP0ZyoCMKHfzIan6Yyx3Ic8coG+7sc/NJx5mzmAKcnAlK4/492pAcsxnaxlWw==", "requires": { "@babel/code-frame": "^7.8.3", "@babel/runtime": "^7.9.6", @@ -6541,7 +6541,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.2.1", - "gatsby-recipes": "^0.1.14", + "gatsby-recipes": "^0.1.15", "gatsby-telemetry": "^1.3.3", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", @@ -6812,9 +6812,9 @@ } }, "gatsby-recipes": { - "version": "0.1.14", - "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.14.tgz", - "integrity": "sha512-raYrJXKGCAZ1mqfoa8V2gX8jhxX9K+Mwmp3vSUo+hOwFU1FfEjpRyrncvtL841lv4zI13MQ59aLe6dMehS3jIw==", + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/gatsby-recipes/-/gatsby-recipes-0.1.15.tgz", + "integrity": "sha512-sEzIpRGn5XY55FdDcWBMf2jEyAQZLtH5z4RDoPm3iB9I6yljkGU23ooHqqINDZVr33o8Ybeqep+XujjEG3jzdw==", "requires": { "@babel/core": "^7.9.6", "@babel/generator": "^7.9.6", @@ -7519,9 +7519,9 @@ } }, "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" } } }, @@ -7780,9 +7780,9 @@ }, "dependencies": { "eventemitter3": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==" + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.1.tgz", + "integrity": "sha512-MnI0l35oYL2C/c80rjJN7qu50MDx39yYE7y7oYck2YA3v+y7EaAenY8IU8AP4d1RWqE8VAKWFGSh3rfP87ll3g==" } } }, @@ -15254,9 +15254,9 @@ } }, "ws": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.5.tgz", - "integrity": "sha512-C34cIU4+DB2vMyAbmEKossWq2ZQDr6QEyuuCzWrM9zfw1sGc0mYiJ0UnG9zzNykt49C2Fi34hvr2vssFQRS6EA==" + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.3.0.tgz", + "integrity": "sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w==" }, "xdg-basedir": { "version": "4.0.0", diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 62ff3607ee59b..05312fcaa2c6c 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -14,7 +14,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^2.21.21", + "gatsby": "^2.21.22", "react": "^16.12.0", "react-dom": "^16.12.0" }, diff --git a/www/package.json b/www/package.json index 9f9017ecbf5fc..c209dff41185f 100644 --- a/www/package.json +++ b/www/package.json @@ -20,54 +20,54 @@ "dotenv": "^8.2.0", "email-validator": "^1.2.3", "fuse.js": "^3.6.1", - "gatsby": "^2.21.11", + "gatsby": "^2.21.22", "gatsby-alias-imports": "^1.0.4", - "gatsby-core-utils": "^1.2.0", + "gatsby-core-utils": "^1.2.1", "gatsby-design-tokens": "^2.0.5", - "gatsby-image": "^2.4.0", - "gatsby-plugin-canonical-urls": "^2.3.0", - "gatsby-plugin-catch-links": "^2.3.0", - "gatsby-plugin-emotion": "^4.3.0", - "gatsby-plugin-feed": "^2.5.0", - "gatsby-plugin-google-analytics": "^2.3.0", - "gatsby-plugin-google-tagmanager": "^2.3.0", - "gatsby-plugin-guess-js": "^1.3.0", - "gatsby-plugin-layout": "^1.3.0", + "gatsby-image": "^2.4.3", + "gatsby-plugin-canonical-urls": "^2.3.1", + "gatsby-plugin-catch-links": "^2.3.1", + "gatsby-plugin-emotion": "^4.3.1", + "gatsby-plugin-feed": "^2.5.1", + "gatsby-plugin-google-analytics": "^2.3.1", + "gatsby-plugin-google-tagmanager": "^2.3.1", + "gatsby-plugin-guess-js": "^1.3.2", + "gatsby-plugin-layout": "^1.3.1", "gatsby-plugin-mailchimp": "^2.2.3", - "gatsby-plugin-manifest": "^2.4.1", - "gatsby-plugin-mdx": "1.2.5", - "gatsby-plugin-netlify": "^2.3.1", + "gatsby-plugin-manifest": "^2.4.2", + "gatsby-plugin-mdx": "1.2.6", + "gatsby-plugin-netlify": "^2.3.2", "gatsby-plugin-netlify-cache": "^0.1.0", - "gatsby-plugin-nprogress": "^2.3.0", - "gatsby-plugin-offline": "^3.2.0", - "gatsby-plugin-react-helmet": "^3.3.0", - "gatsby-plugin-sharp": "^2.6.0", - "gatsby-plugin-sitemap": "^2.4.1", + "gatsby-plugin-nprogress": "^2.3.1", + "gatsby-plugin-offline": "^3.2.1", + "gatsby-plugin-react-helmet": "^3.3.1", + "gatsby-plugin-sharp": "^2.6.2", + "gatsby-plugin-sitemap": "^2.4.2", "gatsby-plugin-theme-ui": "^0.3.0", - "gatsby-plugin-twitter": "^2.3.0", - "gatsby-plugin-typography": "^2.5.0", - "gatsby-remark-autolink-headers": "^2.3.0", + "gatsby-plugin-twitter": "^2.3.1", + "gatsby-plugin-typography": "^2.5.1", + "gatsby-remark-autolink-headers": "^2.3.1", "gatsby-remark-code-titles": "^1.1.0", - "gatsby-remark-copy-linked-files": "^2.3.1", + "gatsby-remark-copy-linked-files": "^2.3.2", "gatsby-remark-embedder": "^1.16.0", - "gatsby-remark-graphviz": "^1.3.0", + "gatsby-remark-graphviz": "^1.3.1", "gatsby-remark-http-to-https": "^1.0.2", - "gatsby-remark-images": "^3.3.0", + "gatsby-remark-images": "^3.3.2", "gatsby-remark-normalize-paths": "^1.0.0", - "gatsby-remark-prismjs": "^3.5.0", - "gatsby-remark-responsive-iframe": "^2.4.1", - "gatsby-remark-smartypants": "^2.3.0", + "gatsby-remark-prismjs": "^3.5.1", + "gatsby-remark-responsive-iframe": "^2.4.2", + "gatsby-remark-smartypants": "^2.3.1", "gatsby-source-airtable": "^2.1.1", - "gatsby-source-filesystem": "^2.3.0", + "gatsby-source-filesystem": "^2.3.1", "gatsby-source-git": "^1.0.2", - "gatsby-source-npm-package-search": "^2.3.0", - "gatsby-transformer-csv": "^2.3.0", - "gatsby-transformer-documentationjs": "^4.3.0", + "gatsby-source-npm-package-search": "^2.3.2", + "gatsby-transformer-csv": "^2.3.1", + "gatsby-transformer-documentationjs": "^4.3.1", "gatsby-transformer-gitinfo": "^1.1.0", - "gatsby-transformer-remark": "^2.8.5", - "gatsby-transformer-screenshot": "^2.3.1", - "gatsby-transformer-sharp": "^2.5.0", - "gatsby-transformer-yaml": "^2.4.0", + "gatsby-transformer-remark": "^2.8.7", + "gatsby-transformer-screenshot": "^2.3.3", + "gatsby-transformer-sharp": "^2.5.2", + "gatsby-transformer-yaml": "^2.4.1", "get-package-json-from-github": "^1.2.1", "graphql-request": "1.8.2", "gray-percentage": "^2.0.0", @@ -153,7 +153,7 @@ "devDependencies": { "@lingui/cli": "^2.9.1", "@lingui/macro": "^2.9.1", - "@testing-library/jest-dom": "^5.5.0", + "@testing-library/jest-dom": "^5.7.0", "@testing-library/react": "^10.0.4", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^24.9.0", diff --git a/www/redirects.yaml b/www/redirects.yaml index c8795c665e80d..f9cd4b2ee3d74 100644 --- a/www/redirects.yaml +++ b/www/redirects.yaml @@ -15,7 +15,9 @@ - fromPath: /docs/community/ # Moved "Community" page from /docs/community to /contributing/community toPath: /contributing/community/ - fromPath: /docs/deploying-to-now/ - toPath: /docs/deploying-to-zeit-now/ + toPath: /docs/deploying-to-vercel/ +- fromPath: /docs/deploying-to-zeit-now/ + toPath: /docs/deploying-to-vercel/ - fromPath: /docs/pair-programming/ toPath: /contributing/pair-programming/ - fromPath: /docs/how-to-create-an-issue/ diff --git a/www/src/components/tags-section.js b/www/src/components/tags-section.js index 803ebfb97b43e..9aa1a6463987f 100644 --- a/www/src/components/tags-section.js +++ b/www/src/components/tags-section.js @@ -2,7 +2,7 @@ import { jsx } from "theme-ui" import Link from "./localized-link" import { TiTags as TagsIcon } from "react-icons/ti" -const { kebabCase } = require(`lodash-es`) +import { kebabCase } from "lodash-es" import Button from "./button" diff --git a/www/src/data/diagram/static-hosts.yml b/www/src/data/diagram/static-hosts.yml index 9548c9dcd31fd..4693dfb4fcf45 100644 --- a/www/src/data/diagram/static-hosts.yml +++ b/www/src/data/diagram/static-hosts.yml @@ -8,5 +8,5 @@ url: /docs/deploying-to-surge/ - title: Aerobatic url: /docs/deploying-to-aerobatic/ -- title: ZEIT Now - url: /docs/deploying-to-zeit-now/ +- title: Vercel + url: /docs/deploying-to-vercel/ diff --git a/www/src/data/sidebars/doc-links.yaml b/www/src/data/sidebars/doc-links.yaml index f3309c2b88745..04e967172e1a1 100644 --- a/www/src/data/sidebars/doc-links.yaml +++ b/www/src/data/sidebars/doc-links.yaml @@ -105,6 +105,9 @@ - title: Deploying to Gatsby Cloud link: /docs/deploying-to-gatsby-cloud/ breadcrumbTitle: Gatsby Cloud + - title: Deploying to Clodui + link: /docs/deploying-to-clodui/ + breadcrumbTitle: Clodui - title: Adding a Path Prefix link: /docs/path-prefix/ - title: How Gatsby Works with GitHub Pages From caac1bef4553c5639c06773e081b351a3dff7f5d Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 13 May 2020 13:45:02 -0700 Subject: [PATCH 3/6] Add hicat to do syntax highlighting --- packages/gatsby-recipes/package.json | 12 +++--------- packages/gatsby-recipes/src/cli.js | 15 +++++++++------ 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index 5e10ca2fc879e..ad80f1678c15f 100644 --- a/packages/gatsby-recipes/package.json +++ b/packages/gatsby-recipes/package.json @@ -39,6 +39,7 @@ "graphql-compose": "^6.3.8", "graphql-subscriptions": "^1.1.0", "graphql-type-json": "^0.3.1", + "hicat": "^0.7.0", "html-tag-names": "^1.1.5", "humanize-list": "^1.0.1", "import-jsx": "^4.0.0", @@ -80,11 +81,7 @@ "tmp-promise": "^2.1.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-recipes#readme", - "keywords": [ - "gatsby", - "gatsby-recipes", - "mdx" - ], + "keywords": ["gatsby", "gatsby-recipes", "mdx"], "license": "MIT", "repository": { "type": "git", @@ -95,10 +92,7 @@ "graphql": "^14.6.0" }, "jest": { - "testPathIgnorePatterns": [ - "/.cache/", - "dist" - ], + "testPathIgnorePatterns": ["/.cache/", "dist"], "testEnvironment": "node" }, "scripts": { diff --git a/packages/gatsby-recipes/src/cli.js b/packages/gatsby-recipes/src/cli.js index da381be9e80c2..ef5e5ae10fbf2 100644 --- a/packages/gatsby-recipes/src/cli.js +++ b/packages/gatsby-recipes/src/cli.js @@ -7,6 +7,7 @@ const { render, Box, Text, Color, useInput, useApp, Static } = require(`ink`) const Spinner = require(`ink-spinner`).default const Link = require(`ink-link`) const MDX = require(`@mdx-js/runtime`) +const hicat = require(`hicat`) import { trackCli } from "gatsby-telemetry" const { createClient, @@ -193,18 +194,20 @@ function eliminateNewLines(children) { const components = { inlineCode: props => , code: props => { - const children = props.children.trim() // eslint-disable-next-line let language = "```" if (props.className) { // eslint-disable-next-line - language = "```" + props.className.split(`-`)[1] + language = props.className.split(`-`)[1] } + const children = hicat(props.children.trim(), { lang: language }) + const regex = /^/gm + + const ansi = children.ansi.replace(regex, `·· `) + return ( -
- {language} - {children} - ``` +
+ {ansi}
) }, From a35c9f59068843a467f82e67d0d8c903d6c9f230 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 13 May 2020 14:08:29 -0700 Subject: [PATCH 4/6] fix --- packages/gatsby-theme-blog/CHANGELOG.md | 3 --- packages/gatsby-theme-notes/package.json | 8 -------- 2 files changed, 11 deletions(-) diff --git a/packages/gatsby-theme-blog/CHANGELOG.md b/packages/gatsby-theme-blog/CHANGELOG.md index 78ac8143fa2b4..04e8daa7c754b 100644 --- a/packages/gatsby-theme-blog/CHANGELOG.md +++ b/packages/gatsby-theme-blog/CHANGELOG.md @@ -3,8 +3,6 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -<<<<<<< HEAD -======= ## [1.6.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.6.2...gatsby-theme-blog@1.6.3) (2020-05-13) **Note:** Version bump only for package gatsby-theme-blog @@ -41,7 +39,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package gatsby-theme-blog ->>>>>>> origin/master ## [1.5.22](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme-blog@1.5.21...gatsby-theme-blog@1.5.22) (2020-05-11) **Note:** Version bump only for package gatsby-theme-blog diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json index 3ef7870cd305d..10a09d90e25db 100644 --- a/packages/gatsby-theme-notes/package.json +++ b/packages/gatsby-theme-notes/package.json @@ -1,11 +1,7 @@ { "name": "gatsby-theme-notes", "description": "Gatsby Theme for adding a notes section to your website", -<<<<<<< HEAD "version": "1.3.22", -======= - "version": "1.3.29", ->>>>>>> origin/master "author": "John Otander", "license": "MIT", "main": "index.js", @@ -24,11 +20,7 @@ }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-theme-notes#readme", "devDependencies": { -<<<<<<< HEAD "gatsby": "^2.21.22", -======= - "gatsby": "^2.21.28", ->>>>>>> origin/master "react": "^16.12.0", "react-dom": "^16.12.0" }, From f676814cde97c9a1c97b3d3869b5d7127fe52dec Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 13 May 2020 14:09:16 -0700 Subject: [PATCH 5/6] Fix --- packages/gatsby-theme-notes/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json index 10a09d90e25db..94540963df90c 100644 --- a/packages/gatsby-theme-notes/package.json +++ b/packages/gatsby-theme-notes/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-theme-notes", "description": "Gatsby Theme for adding a notes section to your website", - "version": "1.3.22", + "version": "1.3.29", "author": "John Otander", "license": "MIT", "main": "index.js", @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-theme-notes#readme", "devDependencies": { - "gatsby": "^2.21.22", + "gatsby": "^2.21.28", "react": "^16.12.0", "react-dom": "^16.12.0" }, From c8eb63dbbd14d64618023b33d05736666ce5e5f3 Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Wed, 13 May 2020 14:10:41 -0700 Subject: [PATCH 6/6] Add hicat --- packages/gatsby-recipes/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index 66784dff92d11..d2205ea1246eb 100644 --- a/packages/gatsby-recipes/package.json +++ b/packages/gatsby-recipes/package.json @@ -39,6 +39,7 @@ "graphql-compose": "^6.3.8", "graphql-subscriptions": "^1.1.0", "graphql-type-json": "^0.3.1", + "hicat": "^0.7.0", "html-tag-names": "^1.1.5", "humanize-list": "^1.0.1", "import-jsx": "^4.0.0",