hash
stringlengths
40
40
date
stringdate
2016-07-06 04:11:39
2024-11-19 20:41:05
author
stringlengths
2
35
commit_message
stringlengths
13
137
is_merge
bool
1 class
masked_commit_message
stringlengths
6
127
type
stringclasses
7 values
git_diff
stringlengths
104
6.64M
8dee9cf560e10a1f68b23c5c2a663dd9ec3dd82c
2019-09-09 06:26:25
Alex Crocker
chore(starters): add gatsby-starter-headless-wordpress (#17463)
false
add gatsby-starter-headless-wordpress (#17463)
chore
diff --git a/docs/starters.yml b/docs/starters.yml index cb0c683094d4b..f4b9971e07f35 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -3794,3 +3794,14 @@ - Extensible & responsive design - Blog integration - SEO +- url: https://gatsby-starter-headless-wp.netlify.com + repo: https://github.com/crock/gatsby-starter-headless-wordpress + description: A starter Gatsby site to quickly implement a site for headless WordPress + tags: + - Blog + - CMS:Headless + - CMS:Wordpress + features: + - New Header + - Responsive + - Sidebar that displays recent blog posts
6f9c15a5d4895a9e79b27286aad2fb466d51b0a0
2019-11-06 18:25:09
Filipe Oliveira
docs: remove redundant word to make a statement clearer (#19303)
false
remove redundant word to make a statement clearer (#19303)
docs
diff --git a/docs/contributing/setting-up-your-local-dev-environment.md b/docs/contributing/setting-up-your-local-dev-environment.md index 31b35410fa835..208feae388a7c 100644 --- a/docs/contributing/setting-up-your-local-dev-environment.md +++ b/docs/contributing/setting-up-your-local-dev-environment.md @@ -27,7 +27,7 @@ Yarn is a package manager for your code, similar to [NPM](https://www.npmjs.com/ - Set up repo and install dependencies: `yarn run bootstrap` - Make sure tests are passing for you: `yarn test` - Create a topic branch: `git checkout -b topics/new-feature-name` -- See [docs setup instructions](/contributing/docs-contributions#docs-site-setup-instructions) below for docs-only changes. +- See [docs setup instructions](/contributing/docs-contributions#docs-site-setup-instructions) for docs-only changes. - Run `yarn run watch` from the root of the repo to watch for changes to packages' source code and compile these changes on-the-fly as you work. - Note that the watch command can be resource intensive. To limit it to the packages you're working on, add a scope flag, like `yarn run watch --scope={gatsby,gatsby-cli}`. - To watch just one package, run `yarn run watch --scope=gatsby`.
c502d8468e242b9b642f34754a6501517a46ea81
2022-06-22 12:50:48
Lennart
chore(docs): Clean up Tailwind CSS guide (#35972)
false
Clean up Tailwind CSS guide (#35972)
chore
diff --git a/docs/docs/how-to/styling/tailwind-css.md b/docs/docs/how-to/styling/tailwind-css.md index cb8a0cec2054a..26f09a052f449 100644 --- a/docs/docs/how-to/styling/tailwind-css.md +++ b/docs/docs/how-to/styling/tailwind-css.md @@ -2,214 +2,27 @@ title: Tailwind CSS --- -Tailwind is a utility-first CSS framework for rapidly building custom user interfaces. This guide will show you how to get started with Gatsby and [Tailwind CSS](https://tailwindcss.com/). - -## Overview - -There are three ways you can use Tailwind with Gatsby: - -1. Standard: Use PostCSS to generate Tailwind classes, then you can apply those classes using `className`. -2. CSS-in-JS: Integrate Tailwind classes into Styled Components. -3. SCSS: Use [gatsby-plugin-sass](/plugins/gatsby-plugin-sass) to support Tailwind classes in your SCSS files. - -You have to install and configure Tailwind for all of these methods, so this guide will walk through that step first, then you can follow the instructions for PostCSS, CSS-in-JS or SCSS. +Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces. This guide will show you how to get started with Gatsby and [Tailwind CSS](https://tailwindcss.com/). ## Installing and configuring Tailwind -This guide assumes that you have a Gatsby project set up. If you need to set up a project, head to the [**Quick Start guide**](/docs/quick-start), then come back. - -### 1. Install Tailwind - -```shell -npm install tailwindcss autoprefixer -``` - -### 2. Generate Tailwind config file (optional) - -**Note**: A config file isn't required for Tailwind 1.0.0+ - -To configure Tailwind, you'll need to add a Tailwind configuration file. Luckily, Tailwind has a built-in script to do this. Just run the following command: - -```shell -npx tailwindcss init -``` - -#### Option #1: PostCSS - -1. Install the Gatsby PostCSS plugin [**gatsby-plugin-postcss**](/plugins/gatsby-plugin-postcss). - -```shell -npm install postcss gatsby-plugin-postcss -``` - -2. Include the plugin in your `gatsby-config.js` file. - -```javascript:title=gatsby-config.js -plugins: [`gatsby-plugin-postcss`], -``` - -3. Configure PostCSS to use Tailwind - -Create a `postcss.config.js` in your project's root folder with the following contents. - -```javascript:title=postcss.config.js -module.exports = () => ({ - plugins: [require("tailwindcss")], -}) -``` - -4. Use the Tailwind Directives in your CSS - -You can now use the `@tailwind` directives to add Tailwind's utilities, preflight, and components into your CSS. You can also use `@apply` and all of Tailwind's other directives and functions! - -To learn more about how to use Tailwind in your CSS, visit the [Tailwind Documentation](https://tailwindcss.com/docs/installation#add-tailwind-to-your-css) - -#### Option #2: CSS-in-JS - -These steps assume you have a CSS-in-JS library already installed, and the examples are based on Emotion. - -1. Install the [Twin Babel Macro](https://github.com/ben-rogerson/twin.macro) and [Emotion](https://emotion.sh/docs/introduction) - -```shell -npm install -D twin.macro @emotion/react @emotion/styled gatsby-plugin-emotion -``` - -2. Import the Tailwind base styles - -```javascript:title=gatsby-browser.js -import "tailwindcss/dist/base.min.css" -``` - -3. Enable the Gatsby emotion plugin - -```javascript:title=gatsby-config.js -module.exports = { - plugins: [`gatsby-plugin-emotion`], -} -``` - -4. Use `twin.macro` to create your styled component - -```jsx:title=src/pages/index.js -import React from "react" -import tw, { styled } from "twin.macro" //highlight-line - -const Button = styled.button` - ${tw`bg-blue-500 hover:bg-blue-800 text-white p-2 rounded`} -` - -// or use the shorthand version - -const Button = tw.button` - bg-blue-500 hover:bg-blue-800 text-white p-2 rounded -` - -const IndexPage = () => ( - <div> - <h1>Hi people</h1> - <Button>Activate</Button> // highlight-line - </div> -) - -export default IndexPage -``` - -See the [Twin + Gatsby + Emotion installation guide](https://github.com/ben-rogerson/twin.examples/tree/master/gatsby-emotion) for more information. - -#### Option #3: SCSS - -1. Install the Gatsby SCSS plugin [**gatsby-plugin-sass**](/plugins/gatsby-plugin-sass) and `sass`. - -```shell -npm install sass gatsby-plugin-sass -``` - -2. To be able to use Tailwind classes in your SCSS files, add the `tailwindcss` package into the `postCssPlugins` parameter in your `gatsby-config.js`. - -```javascript:title=gatsby-config.js -plugins: [ - { - resolve: `gatsby-plugin-sass`, - options: { - postCssPlugins: [ - require("tailwindcss"), - require("./tailwind.config.js"), // Optional: Load custom Tailwind CSS configuration - ], - }, - }, -], -``` - -**Note:** Optionally you can add a corresponding configuration file (by default it will be `tailwind.config.js`). -If you are adding a custom configuration, you will need to load it after `tailwindcss`. - -### 3. Add base CSS/SCSS files - -**Note**: This approach is not needed if you chose CSS-in-JS above, as you can already nest styles and `@apply` rules directly from your `.js` files. - -In case you need to create custom classes for elements for nested selectors, or for overriding external packages, you can create your own CSS/SCSS files. - -1. Create a new file and import your Tailwind directives. - -This will be your 'master' CSS file, which you will import all other CSS within. - -```css:title=src/css/index.css -@tailwind base; -@tailwind components; -@tailwind utilities; -``` - -**Note**: if using SCSS (or another supported language, rename files/folders appropriately). - -2. Import any custom CSS files or add any custom CSS you need (optional) - -```css:title=src/css/index.css -@tailwind base; -@tailwind components; -@tailwind utilities; - -@import popup.css body { - @apply bg-purple-200; -} -``` - -Tailwind will swap these directives out at build-time with all of the styles it generates based on your configured design system. - -3. Import this file into your `gatsby-browser.js` - -In `gatsby-browser.js` add an import rule for your Tailwind directives and custom CSS to pull them into your site. - -```js:title=gatsby-browser.js -import "./src/css/index.css" -``` - -### 4. Configuring your content path - -By default, Tailwind ensures that only the classes we need are delivered to the browser. Rather than including every combination of every class you might think of, Tailwind automatically removes unused classes. Because of this, it requires a configuration file to tell it which content to scan. - -**3.0.0 and above** - -You can mark files to process directly from your Tailwind config. You need to provide an array of strings telling it which files to process. - -```js:title=tailwind.config.js -module.exports = { - content: ["./src/**/*.{js,jsx,ts,tsx}"], - theme: {}, - variants: {}, - plugins: [], -} -``` - -See Tailwind's documentation for [usage with Gatsby](https://tailwindcss.com/docs/guides/gatsby) and [extended content configuration options](https://tailwindcss.com/docs/content-configuration) for more information. - -> **Note:** It is **not recommended** that you include Gatsby's output directories (e.g. `public`, `.cache`) in your content array in your Tailwind config. You should only need to include your source files to have Tailwind work as expected. - -**Older versions** - -It is recommended you install the latest version of Tailwind CSS to get all available features. If you need to use an older version, you can follow the instructions on the PurgeCSS website - [Purge CSS manually in older Tailwind versions](https://purgecss.com/plugins/gatsby.html#installation) +Please follow the [official "Install Tailwind CSS with Gatsby" guide](https://tailwindcss.com/docs/guides/gatsby) to install and configure Tailwind CSS with Gatsby. Some important notes when configuring Tailwind with Gatsby: + +- It is **not recommended** that you include Gatsby's output directories (`public` and `.cache`) in your `content` array in your `tailwind.config.js`. You should only include your source files to have Tailwind working as expected. +- If you use [GraphQL Typegen](/docs/how-to/local-development/graphql-typegen/) a file at `src/gatsby-types.d.ts` will be generated and with the default configuration for `content` in `tailwind.config.js` this will trigger an infinite loop. You have two options to fix this: + 1. Configure GraphQL Typegen's [`typesOutputPath` option](/docs/reference/config-files/gatsby-config/#graphqltypegen) to generate the file in another place + 2. Adapt the `content` array to not include the `src/gatsby-types.d.ts` file, for example: + ```diff:title=tailwind.config.js + module.exports = { + content: [ + - "./src/**/*.{js,jsx,ts,tsx}", + + "./src/pages/*.{js,jsx,ts,tsx}", + + "./src/components/**/*.{js,jsx,ts,tsx}" + ], + } + ``` ## Other resources -- [Introduction to PostCSS](https://www.smashingmagazine.com/2015/12/introduction-to-postcss/) - [Tailwind Documentation](https://tailwindcss.com/) -- [Gatsby starters that use Tailwind](/starters/?c=Styling%3ATailwind&v=2) +- [Using Tailwind with CSS-in-JS](https://github.com/ben-rogerson/twin.macro)
0c3b3d3b899699b5abda04a6746fc01e6e1943c7
2020-04-09 18:42:22
Obinna Ekwuno
chore(doc): Add using cloudinary plugin for images to reference guides. (#22798)
false
Add using cloudinary plugin for images to reference guides. (#22798)
chore
diff --git a/docs/docs/using-cloudinary-image-service.md b/docs/docs/using-cloudinary-image-service.md new file mode 100644 index 0000000000000..c8417801350a1 --- /dev/null +++ b/docs/docs/using-cloudinary-image-service.md @@ -0,0 +1,156 @@ +--- +title: Using Cloudinary image service for media optimization +--- + +Cloudinary is a cloud-based end-to-end media management platform that provides solutions to help site creators serve optimized media files (images and videos) to their audiences. It also provides a lot of optional transformations that can be carried out on these media assets. + +In this guide you will take a look at the [gatsby-source-cloudinary](/packages/gatsby-source-cloudinary/) and [gatsby-transformer-cloudinary](/packages/gatsby-transformer-cloudinary/) plugins which you can use to improve the experience of handling images on Gatsby sites. + +Plugins are generally used to abstract functionality in Gatsby. In this case, the `gatsby-source-cloudinary` plugin is a [source plugin](/docs/creating-a-source-plugin/) which helps to connect Cloudinary media storage capabilities to your site. + +> Here's a [demo site that uses the gatsby-source-cloudinary](https://gsc-sample.netlify.com) showcasing optimized images in a masonry grid, served from Cloudinary. + +## The problem with handling images on the web + +Dealing with images on the web has always been a problem as unoptimized images can slow down your site. The processes put in place to create the best media experience can take a lot of time to implement. + +## Solutions Cloudinary provides + +Cloudinary provides a couple of amazing solutions to this problem, namely: + +- Remote storage and delivery of images via CDN +- Offers a wider range of transformations than [gatsby-image](/docs/using-gatsby-image/). +- [Digital Asset Management](https://cloudinary.com/documentation/digital_asset_management_overview) for enterprise assets + +## Gatsby-source-cloudinary + +This plugin fetches media assets from Cloudinary that are specified in a folder. It then transforms these images into Cloudinary file nodes, which can be queried with GraphQL in a Gatsby project. +`gatsby-source-cloudinary` applies [f_auto and q_auto](https://cloudinary.com/documentation/image_transformations) transformation parameters which aid in automatic optimisation of format and quality for media assets by over 70 percent. + +### Prerequisites + +Before using the `gatsby-source-cloudinary` plugin you should do the following: + +- Upload your images to a folder on Cloudinary. This folder can have any name of your choosing. +- Obtain your API key and API secret from your Cloudinary dashboard. +- Have the [dotenv](https://www.npmjs.com/package/dotenv) module installed for loading environment variables from a `.env` file. + +### Using gatsby-source-cloudinary + +Add the plugin to your project. + +1. Install `gatsby-source-cloudinary` + +```shell + npm install gatsby-source-cloudinary +``` + +2. In the root of your project, create an environment file called `.env` and add your Cloudinary credentials and their values + +``` +CLOUDINARY_API_KEY=xxxxxxxxxxxxxx +CLOUDINARY_API_SECRET=xxxxxxxxxxxxxxxxxxxx +CLOUDINARY_CLOUD_NAME=xxxxx +``` + +3. Configure `gatsby-config.js` + +```js:title=gatsby-config.js +require('dotenv').config(); // highlight-line +module.exports = { + ... + plugins:[ + ... + { + resolve: `gatsby-source-cloudinary`, + options: { + cloudName: process.env.CLOUDINARY_CLOUD_NAME, + apiKey: process.env.CLOUDINARY_API_KEY, + apiSecret: process.env.CLOUDINARY_API_SECRET, + resourceType: `image`, + prefix: `gatsby-source-cloudinary/` + } + } + ] +} +``` + +Note that `gatsby-source-cloudinary` takes the following options: + +- **`cloudName`** , **`apiKey`** , and **`apiSecret`** **:** These are credentials from your Cloudinary console, stored as three separate environment variables for security. +- **`resourceType`** **:** This is the resource type of the media assets - either an image or a video. +- **`prefix`** **:** This is the folder (in your Cloudinary account) in which the files reside. In the example above, the folder is called `gatsby-source-cloudinary`. Assign a name of your choice. + Other optional options are `type`, `tags`, and `maxResult`. + +Here's a [link to the README](https://github.com/Chuloo/gatsby-source-cloudinary#query-parameters) for more information. + +## Gatsby-transformer-cloudinary + +After sourcing media files from Cloudinary, you will be able to leverage Cloudinary’s media transformation capabilities. To do so, use `gatsby-transformer-cloudinary` which is a type of [transformer plugin](/docs/creating-a-transformer-plugin/) that is used to change image formats, styles and dimensions. It also optimizes images for minimal file size alongside high visual quality for an improved user experience and minimal bandwidth. + +Here's a [demo site that uses the gatsby-transformer-plugin](https://gatsby-transformer-cloudinary.netlify.com/fluid/) + +### Prerequisites + +Before using the `gatsby-transformer-cloudinary` plugin you should do the following: + +- Upload your images to a folder on Cloudinary. This folder can have any name of your choosing. +- Have the `gatsby-source-cloudinary` plugin installed and configured. +- Obtain your API key and API secret from your Cloudinary dashboard. +- Have the [dotenv](https://www.npmjs.com/package/dotenv) module installed for loading environment variables from a `.env` file. + +### Using gatsby-transformer-cloudinary + +1. Install `gatsby-transformer-cloudinary` and `gatsby-source-filesystem` which creates the File nodes that the Cloudinary transformer plugin works on. + +```shell + npm install gatsby-transformer-cloudinary gatsby-source-filesystem +``` + +2. In the root of your project, create an environment file called `.env` to which to add your Cloudinary credentials and their values. + +``` +CLOUDINARY_API_KEY=xxxxxxxxxxxxxx +CLOUDINARY_API_SECRET=xxxxxxxxxxxxxxxxxxxx +CLOUDINARY_CLOUD_NAME=xxxxx +``` + +3. Configure `gatsby-config.js` + +```js:title=gatsby-config.js +require('dotenv').config({ + path: `.env.${process.env.NODE_ENV}`, +}); + +module.exports = { + plugins: [ + { + resolve: `gatsby-source-filesystem`, + options: { + name: `images`, + path: `${__dirname}/src/images`, + }, + }, + { + resolve: 'gatsby-transformer-cloudinary', + options: { + cloudName: process.env.CLOUDINARY_CLOUD_NAME, + apiKey: process.env.CLOUDINARY_API_KEY, + apiSecret: process.env.CLOUDINARY_API_SECRET, + + // This folder will be created if it doesn’t exist. + uploadFolder: 'gatsby-cloudinary', + + }, + ], +}; +``` + +> In `gatsby-config.js`, responsive breakpoints can be created for each image, use the `fluidMaxWidth` and `fluidMinWidth` options to set them. Take a look at the [plugin documentation](https://www.npmjs.com/package/gatsby-transformer-cloudinary#api) for more information on how these parameters can be set. + +## Additional resources + +- [Faster Sites with Optimized Media Assets by William Imoh](/blog/2020-01-12-faster-sites-with-optimized-media-assets/) +- [Gatsby Transformer Cloudinary](https://www.npmjs.com/package/gatsby-transformer-cloudinary) +- [Gatsby Source Cloudinary](/packages/gatsby-source-cloudinary/) +- [Aspect ratio parameter ](https://cloudinary.com/documentation/image_transformation_reference#aspect_ratio_parameter) diff --git a/www/src/data/sidebars/doc-links.yaml b/www/src/data/sidebars/doc-links.yaml index 3c3745a2f8382..930f2b96f225d 100644 --- a/www/src/data/sidebars/doc-links.yaml +++ b/www/src/data/sidebars/doc-links.yaml @@ -150,6 +150,8 @@ breadcrumbTitle: Static Folder - title: Using gatsby-image link: /docs/using-gatsby-image/ + - title: Using Cloudinary Image service + link: /docs/using-cloudinary-image-service/ - title: Working with Images in Gatsby link: /docs/working-with-images/ breadcrumbTitle: Images in Gatsby
da9a8f52e37c1e995198e19dafa1542d20807cca
2023-04-19 12:24:28
Tyler Barnes
fix(gatsby-source-contentful): don't call `createNode` on `null` (#37958)
false
don't call `createNode` on `null` (#37958)
fix
diff --git a/packages/gatsby-source-contentful/src/normalize.js b/packages/gatsby-source-contentful/src/normalize.js index 41c42c601f64c..6ef8a70e03322 100644 --- a/packages/gatsby-source-contentful/src/normalize.js +++ b/packages/gatsby-source-contentful/src/normalize.js @@ -787,14 +787,20 @@ export const createNodesForContentType = async ({ }) entryNodes.forEach((entryNode, index) => { - create(entryNode, () => { - entryNodes[index] = undefined - }) + // entry nodes may be undefined here if the node was previously already created + if (entryNode) { + create(entryNode, () => { + entryNodes[index] = undefined + }) + } }) childrenNodes.forEach((entryNode, index) => { - create(entryNode, () => { - childrenNodes[index] = undefined - }) + // entry nodes may be undefined here if the node was previously already created + if (entryNode) { + create(entryNode, () => { + childrenNodes[index] = undefined + }) + } }) })
de134364baf3a962f95bf111e120b0f048dd852d
2020-12-17 20:43:36
renovate[bot]
chore(deps): update dependency @testing-library/react to ^11.2.2 (#28221)
false
update dependency @testing-library/react to ^11.2.2 (#28221)
chore
diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json index cbfe9d0acf68a..b54a188ae2902 100644 --- a/packages/gatsby-plugin-image/package.json +++ b/packages/gatsby-plugin-image/package.json @@ -52,7 +52,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "@testing-library/react": "^11.1.2", + "@testing-library/react": "^11.2.2", "@types/babel__core": "^7.1.12", "@types/babel__traverse": "^7.0.15", "@types/fs-extra": "^8.1.1", diff --git a/yarn.lock b/yarn.lock index 0a3e5d92148bc..a67b7547052f6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1232,7 +1232,7 @@ core-js-pure "^3.0.0" regenerator-runtime "^0.13.4" -"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.3.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.3.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": version "7.12.5" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e" integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== @@ -3667,10 +3667,10 @@ pretty-format "^25.1.0" wait-for-expect "^3.0.2" -"@testing-library/dom@^7.26.6": - version "7.26.6" - resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.26.6.tgz#d558db63070a3acea5bea7e2497e631cd12541cc" - integrity sha512-/poL7WMpolcGFOHMcxfcFkf1u38DcBUjk3YwNYpBs/MdJ546lg0YdvP2Lq3ujuQzAZxgs8vVvadj3MBnZsBjjA== +"@testing-library/dom@^7.28.1": + version "7.28.1" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.28.1.tgz#dea78be6e1e6db32ddcb29a449e94d9700c79eb9" + integrity sha512-acv3l6kDwZkQif/YqJjstT3ks5aaI33uxGNVIQmdKzbZ2eMKgg3EV2tB84GDdc72k3Kjhl6mO8yUt6StVIdRDg== dependencies: "@babel/code-frame" "^7.10.4" "@babel/runtime" "^7.12.5" @@ -3681,13 +3681,13 @@ lz-string "^1.4.4" pretty-format "^26.6.2" -"@testing-library/react@^11.1.2": - version "11.1.2" - resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-11.1.2.tgz#089b06d3828e76fc1ff0092dd69c7b59c454c998" - integrity sha512-foL0/Mo68M51DdgFwEsO2SDEkUpocuEYidOTcJACGEcoakZDINuERYwVdd6T5e3pPE+BZyGwwURaXcrX1v9RbQ== +"@testing-library/react@^11.2.2": + version "11.2.2" + resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-11.2.2.tgz#099c6c195140ff069211143cb31c0f8337bdb7b7" + integrity sha512-jaxm0hwUjv+hzC+UFEywic7buDC9JQ1q3cDsrWVSDAPmLotfA6E6kUHlYm/zOeGCac6g48DR36tFHxl7Zb+N5A== dependencies: - "@babel/runtime" "^7.12.1" - "@testing-library/dom" "^7.26.6" + "@babel/runtime" "^7.12.5" + "@testing-library/dom" "^7.28.1" "@testing-library/react@^9.5.0": version "9.5.0"
f1f1064f8dc8487ae29ea9d6e7bd4b7899d13697
2021-11-16 12:51:57
Lennart
chore: CircleCI updates (#33896)
false
CircleCI updates (#33896)
chore
diff --git a/.circleci/config.yml b/.circleci/config.yml index 099804fcac572..e27c9773792a2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ executors: parameters: image: type: string - default: "14.17.0" + default: "14.15.0" docker: - image: cimg/node:<< parameters.image >> environment: @@ -63,7 +63,6 @@ aliases: branches: ignore: - /docs.+/ - - /blog.+/ test_template: &test_template parallelism: 4 @@ -101,7 +100,6 @@ aliases: ignore: - master - /docs.+/ - - /blog.+/ requires: - lint - typecheck @@ -231,19 +229,10 @@ jobs: - run: yarn check-repo-fields unit_tests_node14: + # GATSBY_EXPERIMENTAL_LMDB_INDEXES is not activated yet executor: name: node - image: "14.17.0" - <<: *test_template - - unit_tests_node14_lmdb_store: - executor: - name: node - image: "14.17.0" - environment: - GATSBY_EXPERIMENTAL_LMDB_STORE: 1 - GATSBY_EXPERIMENTAL_LMDB_INDEXES: 1 - GATSBY_EXPERIMENTAL_PARALLEL_QUERY_RUNNING: 1 + image: "14.15.0" <<: *test_template integration_tests_gatsby_source_wordpress: @@ -494,32 +483,7 @@ jobs: - run: git config --global user.name "GatsbyJS Bot" - run: git config --global user.email "[email protected]" - run: node scripts/gatsby-changelog-generator/update-and-open-pr.js - - update_i18n_source: - executor: node - steps: - - checkout - - run: git config --global user.name "GatsbyJS Bot" - - run: git config --global user.email "[email protected]" - - run: - command: yarn - working_directory: ~/project/scripts/i18n - - run: - command: yarn run update-source - working_directory: ~/project/scripts/i18n - - sync_translation_repo: - executor: node - steps: - - checkout - - run: git config --global user.name "GatsbyJS Bot" - - run: git config --global user.email "[email protected]" - - run: - command: yarn - working_directory: ~/project/scripts/i18n - - run: - command: yarn run-all sync - working_directory: ~/project/scripts/i18n + - run: yarn format:other windows_unit_tests: parallelism: 4 @@ -539,11 +503,11 @@ jobs: - <<: *attach_to_bootstrap - run: - name: Install node 14.17 and yarn + name: Install node 14.15.0 and yarn command: | - nvm install 14.17.0 - nvm alias default 14.17.0 - nvm use 14.17.0 + nvm install 14.15.0 + nvm alias default 14.15.0 + nvm use 14.15.0 choco install yarn - run: name: Rebuild packages for windows @@ -585,17 +549,6 @@ jobs: workflows: version: 2 - weekly-i18n-sync: - triggers: - - schedule: - cron: "0 1 * * 6" - filters: - branches: - only: - - master - jobs: - - sync_translation_repo - nightly-react-next: triggers: - schedule: @@ -669,14 +622,6 @@ workflows: - lint - typecheck - bootstrap - - unit_tests_node14_lmdb_store: - <<: *ignore_docs - # rebuild to get correct version of lmdb-store (compiled for node14 not node12) - npm_rebuild: true - requires: - - lint - - typecheck - - bootstrap - integration_tests_gatsby_source_wordpress: <<: *e2e-test-workflow - integration_tests_node_manifest: @@ -727,8 +672,3 @@ workflows: branches: only: - master - - update_i18n_source: - filters: - branches: - only: - - master
c91ed287fd319a345c2f27877e20656826767e92
2024-04-10 17:19:39
Michal Piechowiak
fix(gatsby-adapter-netlify): handler generation on windows (#38900)
false
handler generation on windows (#38900)
fix
diff --git a/.circleci/config.yml b/.circleci/config.yml index 986e966a16a2d..d12ffd7e09754 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -580,6 +580,43 @@ jobs: - store_test_results: path: ./test-results/jest-node/ + windows_adapters_smoke: + executor: + name: win/default + shell: bash.exe + steps: + - checkout + - run: + command: ./scripts/assert-changed-files.sh "packages/*|(e2e|integration)-tests/*|.circleci/*|scripts/e2e-test.sh|yarn.lock" + - <<: *attach_to_bootstrap + - run: + name: Install node 18.19.0, yarn and netlify-cli + command: | + nvm install 18.19.0 + nvm alias default 18.19.0 + nvm use 18.19.0 + npm install -g yarn netlify-cli + - run: + name: Clear out sharp + command: | + Remove-Item -Recurse -Force -Path "node_modules/sharp/" + shell: powershell.exe + - run: + command: yarn + - run: + command: mkdir -p /tmp/e2e-tests/ + - run: + command: cp -r ./e2e-tests/adapters /tmp/e2e-tests/adapters + - run: + command: pwd && ls + working_directory: /tmp/e2e-tests/adapters + - run: # Set project dir + command: node ./packages/gatsby-dev-cli/dist/index.js --set-path-to-repo . + - run: # Copy over packages + command: cd /tmp/e2e-tests/adapters && node ~/project/packages/gatsby-dev-cli/dist/index.js --force-install --scan-once + - run: # run smoke test + command: cd /tmp/e2e-tests/adapters && node scripts/deploy-and-run/netlify.mjs test:smoke + workflows: version: 2 @@ -611,6 +648,14 @@ workflows: requires: - lint - bootstrap + - windows_adapters_smoke: + requires: + # ideally we wait for windows unit tests here, but because those are flaky + # feedback loop would be not practical, so at least wait for linux unit tests + # to resemble setup for more robust E2E tests + - lint + - bootstrap + - unit_tests_node18 - unit_tests_node18: <<: *ignore_docs requires: diff --git a/e2e-tests/adapters/package.json b/e2e-tests/adapters/package.json index fc0ab2364df08..4fe0dc05c56ce 100644 --- a/e2e-tests/adapters/package.json +++ b/e2e-tests/adapters/package.json @@ -17,6 +17,7 @@ "test:template:debug": "cross-env-shell CYPRESS_GROUP_NAME=\"adapter:$ADAPTER / trailingSlash:${TRAILING_SLASH:-always} / pathPrefix:${PATH_PREFIX:--}\" TRAILING_SLASH=$TRAILING_SLASH PATH_PREFIX=$PATH_PREFIX npm run cy:open -- --config-file \"cypress/configs/$ADAPTER.ts\" --env TRAILING_SLASH=$TRAILING_SLASH,PATH_PREFIX=$PATH_PREFIX", "test:debug": "npm-run-all -s build:debug ssat:debug", "test:netlify": "cross-env TRAILING_SLASH=always node scripts/deploy-and-run/netlify.mjs test:template", + "test:smoke": "node smoke-test.mjs", "test:netlify:debug": "cross-env TRAILING_SLASH=always node scripts/deploy-and-run/netlify.mjs test:template:debug", "test:netlify:prefix-never": "cross-env TRAILING_SLASH=never PATH_PREFIX=/prefix node scripts/deploy-and-run/netlify.mjs test:template", "test:netlify:prefix-never:debug": "cross-env TRAILING_SLASH=never PATH_PREFIX=/prefix node scripts/deploy-and-run/netlify.mjs test:template:debug", diff --git a/e2e-tests/adapters/smoke-test.mjs b/e2e-tests/adapters/smoke-test.mjs new file mode 100644 index 0000000000000..901a8f6f35505 --- /dev/null +++ b/e2e-tests/adapters/smoke-test.mjs @@ -0,0 +1,24 @@ +import assert from "node:assert" + +{ + // check index page (SSG) + const response = await fetch(process.env.DEPLOY_URL) + assert.equal(response.status, 200) + + const body = await response.text() + assert.match(body, /<h1>Adapters<\/h1>/) + assert.match(body, /<title[^>]*>Adapters E2E<\/title>/) +} + +{ + // check SSR page + const response = await fetch( + process.env.DEPLOY_URL + `/routes/ssr/remote-file/` + ) + assert.equal(response.status, 200) + + const body = await response.text() + // inline css for placeholder - this tests both LMDB and SHARP + // (LMDB because of page query and sharp because page query will use sharp to generate placeholder values) + assert.match(body, /background-color:rgb\(232,184,8\)/) +} diff --git a/integration-tests/lmdb-regeneration/__tests__/index.js b/integration-tests/lmdb-regeneration/__tests__/index.js index 3da14d6ce0d54..08bab95b7d587 100644 --- a/integration-tests/lmdb-regeneration/__tests__/index.js +++ b/integration-tests/lmdb-regeneration/__tests__/index.js @@ -38,7 +38,13 @@ describe(`Lmdb regeneration`, () => { // If the fix worked correctly we should have installed the prebuilt binary for our platform under our `.cache` directory const lmdbRequire = mod.createRequire( - path.resolve(rootPath, ".cache", "internal-packages", "package.json") + path.resolve( + rootPath, + ".cache", + "internal-packages", + `${process.platform}-${process.arch}`, + "package.json" + ) ) expect(() => { lmdbRequire.resolve(lmdbPackage) diff --git a/packages/gatsby-adapter-netlify/package.json b/packages/gatsby-adapter-netlify/package.json index cb8e0327a9622..817ee2b0f489b 100644 --- a/packages/gatsby-adapter-netlify/package.json +++ b/packages/gatsby-adapter-netlify/package.json @@ -37,7 +37,8 @@ "@netlify/functions": "^1.6.0", "cookie": "^0.6.0", "fastq": "^1.15.0", - "fs-extra": "^11.2.0" + "fs-extra": "^11.2.0", + "gatsby-core-utils": "^4.14.0-next.2" }, "devDependencies": { "@babel/cli": "^7.20.7", diff --git a/packages/gatsby-adapter-netlify/src/__tests__/fixtures/lambda-handler/entry.js b/packages/gatsby-adapter-netlify/src/__tests__/fixtures/lambda-handler/entry.js new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/packages/gatsby-adapter-netlify/src/__tests__/fixtures/lambda-handler/included.js b/packages/gatsby-adapter-netlify/src/__tests__/fixtures/lambda-handler/included.js new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/packages/gatsby-adapter-netlify/src/__tests__/lambda-handler.ts b/packages/gatsby-adapter-netlify/src/__tests__/lambda-handler.ts new file mode 100644 index 0000000000000..c101f616fcf9f --- /dev/null +++ b/packages/gatsby-adapter-netlify/src/__tests__/lambda-handler.ts @@ -0,0 +1,46 @@ +import fs from "fs-extra" +import { prepareFunction } from "../lambda-handler" +import { join, relative } from "path" +import { slash } from "gatsby-core-utils/path" + +const writeFileSpy = jest + .spyOn(fs, `writeFile`) + .mockImplementation(async () => {}) +const writeJsonSpy = jest + .spyOn(fs, `writeJSON`) + .mockImplementation(async () => {}) + +const fixturePath = join( + relative(process.cwd(), __dirname), + `fixtures`, + `lambda-handler` +) +const pathToEntryPoint = join(fixturePath, `entry.js`) +const requiredFile = join(fixturePath, `included.js`) + +test(`produced handler is correct`, async () => { + await prepareFunction({ + functionId: `test`, + name: `test`, + pathToEntryPoint, + requiredFiles: [requiredFile], + }) + const handlerCode = writeFileSpy.mock.calls[0][1] + // expect require in produced code (this is to mostly to make sure handlerCode is actual handler code) + expect(handlerCode).toMatch(/require\(["'][^"']*["']\)/) + // require paths should not have backward slashes (win paths) + expect(handlerCode).not.toMatch(/require\(["'][^"']*\\[^"']*["']\)/) + + expect(writeJsonSpy).toBeCalledWith( + expect.any(String), + expect.objectContaining({ + config: expect.objectContaining({ + name: `test`, + generator: expect.stringContaining(`gatsby-adapter-netlify`), + includedFiles: [slash(requiredFile)], + externalNodeModules: [`msgpackr-extract`], + }), + version: 1, + }) + ) +}) diff --git a/packages/gatsby-adapter-netlify/src/index.ts b/packages/gatsby-adapter-netlify/src/index.ts index b34fafbb8718a..57769b7f8c671 100644 --- a/packages/gatsby-adapter-netlify/src/index.ts +++ b/packages/gatsby-adapter-netlify/src/index.ts @@ -162,6 +162,8 @@ const createNetlifyAdapter: AdapterInit<INetlifyAdapterOptions> = options => { fileCDNUrlGeneratorModulePath: useNetlifyImageCDN ? require.resolve(`./file-cdn-url-generator`) : undefined, + functionsPlatform: `linux`, + functionsArch: `x64`, } }, } diff --git a/packages/gatsby-adapter-netlify/src/lambda-handler.ts b/packages/gatsby-adapter-netlify/src/lambda-handler.ts index ab617a0b7edc7..ef70257ba2c2e 100644 --- a/packages/gatsby-adapter-netlify/src/lambda-handler.ts +++ b/packages/gatsby-adapter-netlify/src/lambda-handler.ts @@ -2,6 +2,7 @@ import type { IFunctionDefinition } from "gatsby" import packageJson from "gatsby-adapter-netlify/package.json" import fs from "fs-extra" import * as path from "path" +import { slash } from "gatsby-core-utils/path" interface INetlifyFunctionConfig { externalNodeModules?: Array<string> @@ -25,7 +26,7 @@ interface INetlifyFunctionManifest { version: number } -async function prepareFunction( +export async function prepareFunction( fun: IFunctionDefinition, odbfunctionName?: string ): Promise<void> { @@ -58,7 +59,7 @@ async function prepareFunction( name: displayName, generator: `gatsby-adapter-netlify@${packageJson?.version ?? `unknown`}`, includedFiles: fun.requiredFiles.map(file => - file.replace(/\[/g, `*`).replace(/]/g, `*`) + slash(file).replace(/\[/g, `*`).replace(/]/g, `*`) ), externalNodeModules: [`msgpackr-extract`], }, @@ -73,7 +74,10 @@ async function prepareFunction( function getRelativePathToModule(modulePath: string): string { const absolutePath = require.resolve(modulePath) - return `./` + path.relative(internalFunctionsDir, absolutePath) + return ( + `./` + + path.posix.relative(slash(internalFunctionsDir), slash(absolutePath)) + ) } const handlerSource = /* javascript */ ` diff --git a/packages/gatsby-cli/src/create-cli.ts b/packages/gatsby-cli/src/create-cli.ts index dc25aa3afb9f7..2c3d605b2a18d 100644 --- a/packages/gatsby-cli/src/create-cli.ts +++ b/packages/gatsby-cli/src/create-cli.ts @@ -273,6 +273,14 @@ function buildLocalCommands(cli: yargs.Argv, isLocalSite: boolean): void { default: false, describe: `Save the log of changed pages for future comparison.`, hidden: true, + }) + .option(`functions-platform`, { + type: `string`, + describe: `The platform bundled functions will execute on. Defaults to current platform or settings provided by used adapter.`, + }) + .option(`functions-arch`, { + type: `string`, + describe: `The architecture bundled functions will execute on. Defaults to current architecture or settings provided by used adapter.`, }), handler: handlerP( getCommandHandler( diff --git a/packages/gatsby-cli/src/structured-errors/error-map.ts b/packages/gatsby-cli/src/structured-errors/error-map.ts index 1ec3757c1cf8a..c0aea02ca5318 100644 --- a/packages/gatsby-cli/src/structured-errors/error-map.ts +++ b/packages/gatsby-cli/src/structured-errors/error-map.ts @@ -83,6 +83,12 @@ const errors: Record<string, IErrorMapEntry> = { level: Level.ERROR, category: ErrorCategory.USER, }, + "98051": { + text: (): string => `Built Rendering Engines failed to load.`, + type: Type.ENGINE_EXECUTION, + level: Level.ERROR, + category: ErrorCategory.UNKNOWN, + }, "98123": { text: (context): string => `${context.stageLabel} failed\n\n${ diff --git a/packages/gatsby-legacy-polyfills/package.json b/packages/gatsby-legacy-polyfills/package.json index dd1c62aaae62c..c9cd999b38bd7 100644 --- a/packages/gatsby-legacy-polyfills/package.json +++ b/packages/gatsby-legacy-polyfills/package.json @@ -16,7 +16,7 @@ "license": "MIT", "scripts": { "build": "npm-run-all --npm-path npm -p build:*", - "build:exclude": "cpy 'exclude.js' '../dist' --cwd=./src", + "build:exclude": "cpy \"exclude.js\" \"../dist\" --cwd=./src", "build:polyfills": "microbundle -f iife -i src/polyfills.js --no-sourcemap --external=none", "prepare": "cross-env NODE_ENV=production npm run build", "watch": "npm-run-all --npm-path npm -p watch:*", diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json index 4f50ecdd28b91..235e58563bb9e 100644 --- a/packages/gatsby-plugin-offline/package.json +++ b/packages/gatsby-plugin-offline/package.json @@ -47,7 +47,7 @@ "scripts": { "build": "npm run build:src && npm run build:sw-append", "build:src": "babel src --out-dir . --ignore \"**/__tests__,src/sw-append.js\"", - "build:sw-append": "cpy 'sw-append.js' '../' --cwd=./src", + "build:sw-append": "cpy \"sw-append.js\" \"../\" --cwd=./src", "prepare": "cross-env NODE_ENV=production npm run build", "watch": "npm run build:sw-append -- --watch & npm run build:src -- --watch" }, diff --git a/packages/gatsby/src/commands/build-html.ts b/packages/gatsby/src/commands/build-html.ts index 02a8c5494ee25..701fdda2c5d4b 100644 --- a/packages/gatsby/src/commands/build-html.ts +++ b/packages/gatsby/src/commands/build-html.ts @@ -42,6 +42,8 @@ export interface IBuildArgs extends IProgram { profile: boolean graphqlTracing: boolean openTracingConfigFile: string + functionsPlatform?: string + functionsArch?: string // TODO remove in v4 keepPageRenderer: boolean } diff --git a/packages/gatsby/src/commands/build.ts b/packages/gatsby/src/commands/build.ts index 364329e7b26cc..489d99ada5c6f 100644 --- a/packages/gatsby/src/commands/build.ts +++ b/packages/gatsby/src/commands/build.ts @@ -66,7 +66,7 @@ import { getPageMode, preparePageTemplateConfigs, } from "../utils/page-mode" -import { validateEngines } from "../utils/validate-engines" +import { validateEnginesWithActivity } from "../utils/validate-engines" import { constructConfigObject } from "../utils/gatsby-cloud-config" import { waitUntilWorkerJobsAreComplete } from "../utils/jobs/worker-messaging" import { getSSRChunkHashes } from "../utils/webpack/get-ssr-chunk-hashes" @@ -295,20 +295,7 @@ module.exports = async function build( } if (shouldGenerateEngines()) { - const validateEnginesActivity = report.activityTimer( - `Validating Rendering Engines`, - { - parentSpan: buildSpan, - } - ) - validateEnginesActivity.start() - try { - await validateEngines(store.getState().program.directory) - } catch (error) { - validateEnginesActivity.panic({ id: `98001`, context: {}, error }) - } finally { - validateEnginesActivity.end() - } + await validateEnginesWithActivity(program.directory, buildSpan) } const cacheActivity = report.activityTimer(`Caching Webpack compilations`, { diff --git a/packages/gatsby/src/commands/serve.ts b/packages/gatsby/src/commands/serve.ts index 3ce95bb8fa96c..1727e2c0c420e 100644 --- a/packages/gatsby/src/commands/serve.ts +++ b/packages/gatsby/src/commands/serve.ts @@ -29,6 +29,7 @@ import { thirdPartyProxyPath, partytownProxy, } from "../internal-plugins/partytown/proxy" +import { slash } from "gatsby-core-utils/path" interface IMatchPath { path: string @@ -184,125 +185,146 @@ module.exports = async (program: IServeProgram): Promise<void> => { } // Handle SSR & DSG Pages + let graphqlEnginePath: string | undefined + let pageSSRModule: string | undefined try { - const { GraphQLEngine } = require(path.join( - program.directory, - `.cache`, - `query-engine` - )) as typeof import("../schema/graphql-engine/entry") - const { getData, renderPageData, renderHTML } = require(path.join( - program.directory, - `.cache`, - `page-ssr` - )) as typeof import("../utils/page-ssr-module/entry") - const graphqlEngine = new GraphQLEngine({ - dbPath: path.join(program.directory, `.cache`, `data`, `datastore`), - }) + graphqlEnginePath = require.resolve( + path.posix.join(slash(program.directory), `.cache`, `query-engine`) + ) + pageSSRModule = require.resolve( + path.posix.join(slash(program.directory), `.cache`, `page-ssr`) + ) + } catch (error) { + // TODO: Handle case of engine not being generated + } - router.get( - `/page-data/:pagePath(*)/page-data.json`, - async (req, res, next) => { - const requestedPagePath = req.params.pagePath - if (!requestedPagePath) { - return void next() - } + if (graphqlEnginePath && pageSSRModule) { + try { + const { GraphQLEngine } = + require(graphqlEnginePath) as typeof import("../schema/graphql-engine/entry") + const { getData, renderPageData, renderHTML } = + require(pageSSRModule) as typeof import("../utils/page-ssr-module/entry") + const graphqlEngine = new GraphQLEngine({ + dbPath: path.posix.join( + slash(program.directory), + `.cache`, + `data`, + `datastore` + ), + }) + + router.get( + `/page-data/:pagePath(*)/page-data.json`, + async (req, res, next) => { + const requestedPagePath = req.params.pagePath + if (!requestedPagePath) { + return void next() + } + + const potentialPagePath = reverseFixedPagePath(requestedPagePath) + const page = graphqlEngine.findPageByPath(potentialPagePath) - const potentialPagePath = reverseFixedPagePath(requestedPagePath) - const page = graphqlEngine.findPageByPath(potentialPagePath) - - if (page && (page.mode === `DSG` || page.mode === `SSR`)) { - const requestActivity = report.phantomActivity( - `request for "${req.path}"` - ) - requestActivity.start() - try { - const spanContext = requestActivity.span.context() - const data = await getData({ - pathName: req.path, - graphqlEngine, - req, - spanContext, - }) - const results = await renderPageData({ data, spanContext }) - if (data.serverDataHeaders) { - for (const [name, value] of Object.entries( - data.serverDataHeaders - )) { - res.setHeader(name, value) + if (page && (page.mode === `DSG` || page.mode === `SSR`)) { + const requestActivity = report.phantomActivity( + `request for "${req.path}"` + ) + requestActivity.start() + try { + const spanContext = requestActivity.span.context() + const data = await getData({ + pathName: req.path, + graphqlEngine, + req, + spanContext, + }) + const results = await renderPageData({ data, spanContext }) + if (data.serverDataHeaders) { + for (const [name, value] of Object.entries( + data.serverDataHeaders + )) { + res.setHeader(name, value) + } } - } - if (page.mode === `SSR` && data.serverDataStatus) { - return void res.status(data.serverDataStatus).send(results) - } else { - return void res.send(results) + if (page.mode === `SSR` && data.serverDataStatus) { + return void res.status(data.serverDataStatus).send(results) + } else { + return void res.send(results) + } + } catch (e) { + report.error( + `Generating page-data for "${requestedPagePath}" / "${potentialPagePath}" failed.`, + e + ) + return res + .status(500) + .contentType(`text/plain`) + .send(`Internal server error.`) + } finally { + requestActivity.end() } - } catch (e) { - report.error( - `Generating page-data for "${requestedPagePath}" / "${potentialPagePath}" failed.`, - e - ) - return res - .status(500) - .contentType(`text/plain`) - .send(`Internal server error.`) - } finally { - requestActivity.end() } - } - return void next() - } - ) + return void next() + } + ) - router.use(async (req, res, next) => { - if (req.accepts(`html`)) { - const potentialPagePath = req.path - const page = graphqlEngine.findPageByPath(potentialPagePath) - if (page && (page.mode === `DSG` || page.mode === `SSR`)) { - const requestActivity = report.phantomActivity( - `request for "${req.path}"` - ) - requestActivity.start() - - try { - const spanContext = requestActivity.span.context() - const data = await getData({ - pathName: potentialPagePath, - graphqlEngine, - req, - spanContext, - }) - const results = await renderHTML({ data, spanContext }) - if (data.serverDataHeaders) { - for (const [name, value] of Object.entries( - data.serverDataHeaders - )) { - res.setHeader(name, value) + router.use(async (req, res, next) => { + if (req.accepts(`html`)) { + const potentialPagePath = req.path + const page = graphqlEngine.findPageByPath(potentialPagePath) + if (page && (page.mode === `DSG` || page.mode === `SSR`)) { + const requestActivity = report.phantomActivity( + `request for "${req.path}"` + ) + requestActivity.start() + + try { + const spanContext = requestActivity.span.context() + const data = await getData({ + pathName: potentialPagePath, + graphqlEngine, + req, + spanContext, + }) + const results = await renderHTML({ data, spanContext }) + if (data.serverDataHeaders) { + for (const [name, value] of Object.entries( + data.serverDataHeaders + )) { + res.setHeader(name, value) + } } - } - if (page.mode === `SSR` && data.serverDataStatus) { - return void res.status(data.serverDataStatus).send(results) - } else { - return void res.send(results) - } - } catch (e) { - report.error(`Rendering html for "${potentialPagePath}" failed.`, e) - return res.status(500).sendFile(`500.html`, { root }, err => { - if (err) { - res.contentType(`text/plain`).send(`Internal server error.`) + if (page.mode === `SSR` && data.serverDataStatus) { + return void res.status(data.serverDataStatus).send(results) + } else { + return void res.send(results) } - }) - } finally { - requestActivity.end() + } catch (e) { + report.error( + `Rendering html for "${potentialPagePath}" failed.`, + e + ) + return res.status(500).sendFile(`500.html`, { root }, err => { + if (err) { + res.contentType(`text/plain`).send(`Internal server error.`) + } + }) + } finally { + requestActivity.end() + } } } - } - return next() - }) - } catch (error) { - // TODO: Handle case of engine not being generated + return next() + }) + } catch (error) { + report.panic({ + id: `98051`, + error, + context: {}, + }) + } } const matchPaths = await readMatchPaths(program) diff --git a/packages/gatsby/src/commands/types.ts b/packages/gatsby/src/commands/types.ts index 9f481af90fd90..45e9c62ad0b02 100644 --- a/packages/gatsby/src/commands/types.ts +++ b/packages/gatsby/src/commands/types.ts @@ -34,6 +34,8 @@ export interface IProgram { graphqlTracing?: boolean verbose?: boolean prefixPaths?: boolean + functionsPlatform?: string + functionsArch?: string setStore?: (store: Store<IGatsbyState, AnyAction>) => void disablePlugins?: Array<{ name: string diff --git a/packages/gatsby/src/internal-plugins/functions/api-function-webpack-loader.ts b/packages/gatsby/src/internal-plugins/functions/api-function-webpack-loader.ts index 2642f691431c8..2b6905b2c55eb 100644 --- a/packages/gatsby/src/internal-plugins/functions/api-function-webpack-loader.ts +++ b/packages/gatsby/src/internal-plugins/functions/api-function-webpack-loader.ts @@ -10,17 +10,17 @@ const APIFunctionLoader: LoaderDefinition = async function () { return /* javascript */ ` const preferDefault = m => (m && m.default) || m - const functionModule = require('${modulePath}'); + const functionModule = require('${slash(modulePath)}'); const functionToExecute = preferDefault(functionModule); const matchPath = '${matchPath}'; - const { match: reachMatch } = require('${require.resolve( - `@gatsbyjs/reach-router` + const { match: reachMatch } = require('${slash( + require.resolve(`@gatsbyjs/reach-router`) )}'); - const { urlencoded, text, json, raw } = require('${require.resolve( - `body-parser` + const { urlencoded, text, json, raw } = require('${slash( + require.resolve(`body-parser`) )}') - const multer = require('${require.resolve(`multer`)}') - const { createConfig } = require('${require.resolve(`./config`)}') + const multer = require('${slash(require.resolve(`multer`))}') + const { createConfig } = require('${slash(require.resolve(`./config`))}') function functionWrapper(req, res) { if (matchPath) { diff --git a/packages/gatsby/src/schema/graphql-engine/bootstrap.ts b/packages/gatsby/src/schema/graphql-engine/bootstrap.ts index 8b7c0c1033572..e4e4b9cf81e72 100644 --- a/packages/gatsby/src/schema/graphql-engine/bootstrap.ts +++ b/packages/gatsby/src/schema/graphql-engine/bootstrap.ts @@ -1,6 +1,7 @@ // "engines-fs-provider" must be first import, as it sets up global // fs and this need to happen before anything else tries to import fs import "../../utils/engines-fs-provider" +import "./platform-and-arch-check" import { getCache as getGatsbyCache } from "../../utils/get-cache" diff --git a/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts b/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts index bf73d6021cdd3..0a559b951ea97 100644 --- a/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts +++ b/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts @@ -9,20 +9,32 @@ import { dependencies } from "gatsby/package.json" import { printQueryEnginePlugins } from "./print-plugins" import mod from "module" import { WebpackLoggingPlugin } from "../../utils/webpack/plugins/webpack-logging" +import { getAssetMeta } from "@vercel/webpack-asset-relocator-loader" import reporter from "gatsby-cli/lib/reporter" import { schemaCustomizationAPIs } from "./print-plugins" import type { GatsbyNodeAPI } from "../../redux/types" import * as nodeApis from "../../utils/api-node-docs" import { store } from "../../redux" import { PackageJson } from "../../.." +import { slash } from "gatsby-core-utils/path" +import { isEqual } from "lodash" +import { + IPlatformAndArch, + getCurrentPlatformAndTarget, + getFunctionsTargetPlatformAndTarget, +} from "../../utils/engines-helpers" type Reporter = typeof reporter const extensions = [`.mjs`, `.js`, `.json`, `.node`, `.ts`, `.tsx`] -const outputDir = path.join(process.cwd(), `.cache`, `query-engine`) -const cacheLocation = path.join( - process.cwd(), +const outputDir = path.posix.join( + slash(process.cwd()), + `.cache`, + `query-engine` +) +const cacheLocation = path.posix.join( + slash(process.cwd()), `.cache`, `webpack`, `query-engine` @@ -38,69 +50,236 @@ function getApisToRemoveForQueryEngine(): Array<GatsbyNodeAPI> { return apisToRemove } -const getInternalPackagesCacheDir = (): string => - path.join(process.cwd(), `.cache/internal-packages`) +const getInternalPackagesCacheDir = ( + functionsTarget: IPlatformAndArch +): string => + path.posix.join( + slash(process.cwd()), + `.cache`, + `internal-packages`, + `${functionsTarget.platform}-${functionsTarget.arch}` + ) // Create a directory and JS module where we install internally used packages -const createInternalPackagesCacheDir = async (): Promise<void> => { - const cacheDir = getInternalPackagesCacheDir() +const createInternalPackagesCacheDir = async ( + functionsTarget: IPlatformAndArch +): Promise<void> => { + const cacheDir = getInternalPackagesCacheDir(functionsTarget) await fs.ensureDir(cacheDir) - await fs.emptyDir(cacheDir) const packageJsonPath = path.join(cacheDir, `package.json`) - await fs.outputJson(packageJsonPath, { - name: `gatsby-internal-packages`, - description: `This directory contains internal packages installed by Gatsby used to comply with the current platform requirements`, - version: `1.0.0`, - private: true, - author: `Gatsby`, - license: `MIT`, - }) + if (!fs.existsSync(packageJsonPath)) { + await fs.emptyDir(cacheDir) + + await fs.outputJson(packageJsonPath, { + name: `gatsby-internal-packages`, + description: `This directory contains internal packages installed by Gatsby used to comply with the current platform requirements`, + version: `1.0.0`, + private: true, + author: `Gatsby`, + license: `MIT`, + functionsTarget, + }) + } } -// lmdb module with prebuilt binaries for our platform -const lmdbPackage = `@lmdb/lmdb-${process.platform}-${process.arch}` - -// Detect if the prebuilt binaries for lmdb have been installed. These are installed under @lmdb and are tied to each platform/arch. We've seen instances where regular installations lack these modules because of a broken lockfile or skipping optional dependencies installs -function installPrebuiltLmdb(): boolean { +function getLMDBBinaryFromSiteLocation( + lmdbPackageName: string, + version: string, + functionsTarget: IPlatformAndArch +): string | undefined { // Read lmdb's package.json, go through its optional depedencies and validate if there's a prebuilt lmdb module with a compatible binary to our platform and arch let packageJson: PackageJson try { const modulePath = path - .dirname(require.resolve(`lmdb`)) + .dirname(slash(require.resolve(`lmdb`))) .replace(`/dist`, ``) const packageJsonPath = path.join(modulePath, `package.json`) packageJson = JSON.parse(fs.readFileSync(packageJsonPath, `utf-8`)) } catch (e) { // If we fail to read lmdb's package.json there's bigger problems here so just skip installation - return false + return undefined } // If there's no lmdb prebuilt package for our arch/platform listed as optional dep no point in trying to install it - const { optionalDependencies } = packageJson - if (!optionalDependencies) return false - if (!Object.keys(optionalDependencies).find(p => p === lmdbPackage)) - return false + const { optionalDependencies = {} } = packageJson + if (!Object.keys(optionalDependencies).find(p => p === lmdbPackageName)) { + throw new Error( + `Target platform/arch for functions execution (${functionsTarget.platform}/${functionsTarget.arch}) is not supported.` + ) + } + return getPackageLocationFromRequireContext( + slash(require.resolve(`lmdb`)), + lmdbPackageName, + version + ) +} + +function getPackageLocationFromRequireContext( + location: string, + packageName: string, + packageVersion?: string +): string | undefined { try { - const lmdbRequire = mod.createRequire(require.resolve(`lmdb`)) - lmdbRequire.resolve(lmdbPackage) - return false + const requireId = `${packageName}/package.json` + const locationRequire = mod.createRequire(location) + const packageJsonLocation = slash(locationRequire.resolve(requireId)) + + if (packageVersion) { + // delete locationRequire.cache[requireId] + const { version } = JSON.parse( + fs.readFileSync(packageJsonLocation, `utf-8`) + ) + if (packageVersion !== version) { + return undefined + } + } + + return path.dirname(packageJsonLocation) } catch (e) { - return true + return undefined + } +} + +interface ILMDBBinaryPackageStatusBase { + packageName: string + needToInstall: boolean + packageVersion: string +} + +interface ILMDBBinaryPackageStatusInstalled + extends ILMDBBinaryPackageStatusBase { + needToInstall: false + packageLocation: string +} + +interface ILMDBBinaryPackageStatusNeedAlternative + extends ILMDBBinaryPackageStatusBase { + needToInstall: true +} + +type IBinaryPackageStatus = + | ILMDBBinaryPackageStatusInstalled + | ILMDBBinaryPackageStatusNeedAlternative + +function checkIfInstalledInInternalPackagesCache( + packageStatus: IBinaryPackageStatus, + functionsTarget: IPlatformAndArch +): IBinaryPackageStatus { + const cacheDir = getInternalPackagesCacheDir(functionsTarget) + + const packageLocationFromInternalPackageCache = + getPackageLocationFromRequireContext( + path.posix.join(cacheDir, `:internal:`), + packageStatus.packageName, + packageStatus.packageVersion + ) + + if ( + packageLocationFromInternalPackageCache && + !path.posix + .relative(cacheDir, packageLocationFromInternalPackageCache) + .startsWith(`..`) + ) { + return { + ...packageStatus, + needToInstall: false, + packageLocation: packageLocationFromInternalPackageCache, + } + } + + return { + ...packageStatus, + needToInstall: true, } } // Install lmdb's native system module under our internal cache if we detect the current installation // isn't using the pre-build binaries -async function installIfMissingLmdb(): Promise<string | undefined> { - if (!installPrebuiltLmdb()) return undefined +function checkIfNeedToInstallMissingLmdb( + functionsTarget: IPlatformAndArch +): IBinaryPackageStatus { + // lmdb module with prebuilt binaries for target platform + const lmdbPackageName = `@lmdb/lmdb-${functionsTarget.platform}-${functionsTarget.arch}` + + const lmdbBinaryFromSiteLocation = getLMDBBinaryFromSiteLocation( + lmdbPackageName, + dependencies.lmdb, + functionsTarget + ) + + const sharedPackageStatus: ILMDBBinaryPackageStatusNeedAlternative = { + needToInstall: true, + packageName: lmdbPackageName, + packageVersion: dependencies.lmdb, + } + + if (lmdbBinaryFromSiteLocation) { + return { + ...sharedPackageStatus, + needToInstall: false, + packageLocation: lmdbBinaryFromSiteLocation, + } + } + + return checkIfInstalledInInternalPackagesCache( + sharedPackageStatus, + functionsTarget + ) +} + +function checkIfNeedToInstallMissingSharp( + functionsTarget: IPlatformAndArch, + currentTarget: IPlatformAndArch +): IBinaryPackageStatus | undefined { + try { + // check if shapr is resolvable + const { version: sharpVersion } = require(`sharp/package.json`) + + if (isEqual(functionsTarget, currentTarget)) { + return undefined + } + + return checkIfInstalledInInternalPackagesCache( + { + needToInstall: true, + packageName: `sharp`, + packageVersion: sharpVersion, + }, + functionsTarget + ) + } catch (e) { + return undefined + } +} - await createInternalPackagesCacheDir() +async function installMissing( + packages: Array<IBinaryPackageStatus | undefined>, + functionsTarget: IPlatformAndArch +): Promise<Array<IBinaryPackageStatus | undefined>> { + function shouldInstall( + p: IBinaryPackageStatus | undefined + ): p is IBinaryPackageStatus { + return Boolean(p?.needToInstall) + } + + const packagesToInstall = packages.filter(shouldInstall) + + if (packagesToInstall.length === 0) { + return packages + } + + await createInternalPackagesCacheDir(functionsTarget) + + const cacheDir = getInternalPackagesCacheDir(functionsTarget) - const cacheDir = getInternalPackagesCacheDir() const options: ExecaOptions = { stderr: `inherit`, cwd: cacheDir, + env: { + npm_config_arch: functionsTarget.arch, + npm_config_platform: functionsTarget.platform, + }, } const npmAdditionalCliArgs = [ @@ -113,15 +292,35 @@ async function installIfMissingLmdb(): Promise<string | undefined> { `always`, `--legacy-peer-deps`, `--save-exact`, + // target platform might be different than current and force allows us to install it + `--force`, ] await execa( `npm`, - [`install`, ...npmAdditionalCliArgs, `${lmdbPackage}@${dependencies.lmdb}`], + [ + `install`, + ...npmAdditionalCliArgs, + ...packagesToInstall.map(p => `${p.packageName}@${p.packageVersion}`), + ], options ) - return path.join(cacheDir, `node_modules`, lmdbPackage) + return packages.map(info => + info + ? info.needToInstall + ? { + ...info, + needToInstall: false, + packageLocation: path.posix.join( + cacheDir, + `node_modules`, + info.packageName + ), + } + : info + : undefined + ) } export async function createGraphqlEngineBundle( @@ -151,17 +350,45 @@ export async function createGraphqlEngineBundle( require.resolve(`gatsby-plugin-typescript`) ) - // Alternative lmdb path we've created to self heal from a "broken" lmdb installation - const alternativeLmdbPath = await installIfMissingLmdb() + const currentTarget = getCurrentPlatformAndTarget() + const functionsTarget = getFunctionsTargetPlatformAndTarget() - // We force a specific lmdb binary module if we detected a broken lmdb installation or if we detect the presence of an adapter + const dynamicAliases: Record<string, string> = {} let forcedLmdbBinaryModule: string | undefined = undefined - if (state.adapter.instance) { - forcedLmdbBinaryModule = `${lmdbPackage}/node.abi83.glibc.node` + + // we need to make sure we have internal packages cache directory setup for current lambda target + // before we attempt to check if we can reuse those packages + await createInternalPackagesCacheDir(functionsTarget) + + const [lmdbPackageInfo, sharpPackageInfo] = await installMissing( + [ + checkIfNeedToInstallMissingLmdb(functionsTarget), + checkIfNeedToInstallMissingSharp(functionsTarget, currentTarget), + ], + functionsTarget + ) + + if (!lmdbPackageInfo) { + throw new Error(`Failed to find required LMDB binary`) + } else if (functionsTarget.platform === `linux`) { + // function execution platform is primarily linux, which is tested the most, so we only force that specific binary + // to not cause untested code paths + if (lmdbPackageInfo.needToInstall) { + throw new Error( + `Failed to locate or install LMDB binary for functions execution platform/arch (${functionsTarget.platform}/${functionsTarget.arch})` + ) + } + + forcedLmdbBinaryModule = `${lmdbPackageInfo.packageLocation}/node.abi83.glibc.node` } - // We always force the binary if we've installed an alternative path - if (alternativeLmdbPath) { - forcedLmdbBinaryModule = `${alternativeLmdbPath}/node.abi83.glibc.node` + + if (sharpPackageInfo) { + if (sharpPackageInfo.needToInstall) { + throw new Error( + `Failed to locate or install Sharp binary for functions execution platform/arch (${functionsTarget.platform}/${functionsTarget.arch})` + ) + } + dynamicAliases[`sharp$`] = sharpPackageInfo.packageLocation } const compiler = webpack({ @@ -185,6 +412,7 @@ export async function createGraphqlEngineBundle( buildDependencies: { config: [__filename], }, + version: JSON.stringify(functionsTarget), }, // those are required in some runtime paths, but we don't need them externals: [ @@ -299,6 +527,7 @@ export async function createGraphqlEngineBundle( resolve: { extensions, alias: { + ...dynamicAliases, ".cache": process.cwd() + `/.cache/`, [require.resolve(`gatsby-cli/lib/reporter/loggers/ink/index.js`)]: @@ -318,7 +547,6 @@ export async function createGraphqlEngineBundle( plugins: [ new webpack.EnvironmentPlugin([`GATSBY_CLOUD_IMAGE_CDN`]), new webpack.DefinePlugin({ - // "process.env.GATSBY_LOGGER": JSON.stringify(`yurnalist`), "process.env.GATSBY_SKIP_WRITING_SCHEMA_TO_FILE": `true`, "process.env.NODE_ENV": JSON.stringify(`production`), SCHEMA_SNAPSHOT: JSON.stringify(schemaSnapshotString), @@ -327,6 +555,12 @@ export async function createGraphqlEngineBundle( "process.env.GATSBY_SLICES": JSON.stringify( !!process.env.GATSBY_SLICES ), + "process.env.GATSBY_FUNCTIONS_PLATFORM": JSON.stringify( + functionsTarget.platform + ), + "process.env.GATSBY_FUNCTIONS_ARCH": JSON.stringify( + functionsTarget.arch + ), }), process.env.GATSBY_WEBPACK_LOGGING?.includes(`query-engine`) && new WebpackLoggingPlugin(rootDir, reporter, isVerbose), @@ -334,7 +568,7 @@ export async function createGraphqlEngineBundle( }) return new Promise((resolve, reject) => { - compiler.run((err, stats): void => { + compiler.run(async (err, stats): Promise<void> => { function getResourcePath( webpackModule?: Module | NormalModule | ConcatenatedModule | null ): string | undefined { @@ -387,6 +621,36 @@ export async function createGraphqlEngineBundle( iterateModules(stats.compilation.modules, stats.compilation) } + if (!isEqual(functionsTarget, currentTarget)) { + const binaryFixingPromises: Array<Promise<void>> = [] + // sigh - emitAsset used by relocator seems to corrupt binaries + // resulting in "ELF file's phentsize not the expected size" errors + // - see size diff + // > find . -name node.abi83.glibc.node + // ./.cache/internal-packages/node_modules/@lmdb/lmdb-linux-x64/node.abi83.glibc.node + // ./.cache/query-engine/assets/node.abi83.glibc.node + // > ls -al ./.cache/query-engine/assets/node.abi83.glibc.node + // -rw-r--r-- 1 misiek 197121 1285429 Mar 14 11:36 ./.cache/query-engine/assets/node.abi83.glibc.node + // > ls -al ./.cache/internal-packages/node_modules/@lmdb/lmdb-linux-x64/node.abi83.glibc.node + // -rw-r--r-- 1 misiek 197121 693544 Mar 14 11:35 ./.cache/internal-packages/node_modules/@lmdb/lmdb-linux-x64/node.abi83.glibc.node + // so this tries to fix it by straight copying it over + for (const asset of ( + stats?.compilation?.assetsInfo ?? new Map() + ).keys()) { + if (asset?.endsWith(`.node`)) { + const targetRelPath = path.posix.relative(`assets`, asset) + const assetMeta = getAssetMeta(targetRelPath, stats?.compilation) + const sourcePath = assetMeta?.path + if (sourcePath) { + const dist = path.join(outputDir, asset) + binaryFixingPromises.push(fs.copyFile(sourcePath, dist)) + } + } + } + + await Promise.all(binaryFixingPromises) + } + compiler.close(closeErr => { if (err) { return reject(err) diff --git a/packages/gatsby/src/schema/graphql-engine/platform-and-arch-check.ts b/packages/gatsby/src/schema/graphql-engine/platform-and-arch-check.ts new file mode 100644 index 0000000000000..d608d6094f25c --- /dev/null +++ b/packages/gatsby/src/schema/graphql-engine/platform-and-arch-check.ts @@ -0,0 +1,12 @@ +if ( + process.env.GATSBY_FUNCTIONS_PLATFORM !== process.platform || + process.env.GATSBY_FUNCTIONS_ARCH !== process.arch +) { + throw new Error( + `Incompatible DSG/SSR executing environment. Function was built for "${process.env.GATSBY_FUNCTIONS_PLATFORM}/${process.env.GATSBY_FUNCTIONS_ARCH}" but is executing on "${process.platform}/${process.arch}".` + + (process.env.gatsby_executing_command === `serve` + ? `\n\nIf you are trying to run DSG/SSR engine locally, consider using experimental utility to rebuild functions for your local platform:\n\nnode node_modules/gatsby/dist/schema/graphql-engine/standalone-regenerate.js` + : ``) + + `\n\nTo generate engines for "${process.platform}/${process.arch}" run 'gatsby build --functions-platform=${process.platform} --functions-arch=${process.arch}' or run 'gatsby build' with following envirnment variables:\n\nGATSBY_FUNCTIONS_PLATFORM=${process.platform}\nGATSBY_FUNCTIONS_ARCH=${process.arch}` + ) +} diff --git a/packages/gatsby/src/schema/graphql-engine/standalone-regenerate.ts b/packages/gatsby/src/schema/graphql-engine/standalone-regenerate.ts index a76ef7bc14a96..8bbb8ae92a3e0 100644 --- a/packages/gatsby/src/schema/graphql-engine/standalone-regenerate.ts +++ b/packages/gatsby/src/schema/graphql-engine/standalone-regenerate.ts @@ -1,16 +1,19 @@ #!/usr/bin/env node /* -this is used for development purposes only -to be able to run `gatsby build` once to source data -and print schema and then just rebundle graphql-engine +This is used mostly for development purposes, but can be attempted to be used +to regenerate just engines for local platform/arch if previous full build +was done to deploy on platform with different arch/platform. + +For development purposes this is used to be able to run `gatsby build` once to +source data and print schema and then just rebundle graphql-engine with source file changes and test re-built engine quickly Usage: There need to be at least one successful `gatsby build` before starting to use this script (warm up datastore, generate "page-ssr" bundle). Once that's done you can -run following command in test site directory: +run following command in site directory: ```shell node node_modules/gatsby/dist/schema/graphql-engine/standalone-regenerate.js @@ -23,18 +26,18 @@ import reporter from "gatsby-cli/lib/reporter" import { loadConfigAndPlugins } from "../../utils/worker/child/load-config-and-plugins" import * as fs from "fs-extra" import { store } from "../../redux" -import { validateEngines } from "../../utils/validate-engines" +import { validateEnginesWithActivity } from "../../utils/validate-engines" async function run(): Promise<void> { process.env.GATSBY_SLICES = `1` // load config - console.log(`loading config and plugins`) + reporter.verbose(`loading config and plugins`) await loadConfigAndPlugins({ siteDirectory: process.cwd(), }) try { - console.log(`clearing webpack cache\n\n`) + reporter.verbose(`clearing webpack cache`) // get rid of cache if it exist await fs.remove(process.cwd() + `/.cache/webpack/query-engine`) await fs.remove(process.cwd() + `/.cache/webpack/page-ssr`) @@ -46,7 +49,7 @@ async function run(): Promise<void> { // recompile const buildActivityTimer = reporter.activityTimer( - `Building Rendering Engines` + `(Re)Building Rendering Engines` ) try { buildActivityTimer.start() @@ -67,20 +70,9 @@ async function run(): Promise<void> { buildActivityTimer.end() } - // validate - const validateEnginesActivity = reporter.activityTimer( - `Validating Rendering Engines` - ) - validateEnginesActivity.start() - try { - await validateEngines(process.cwd()) - } catch (error) { - validateEnginesActivity.panic({ id: `98001`, context: {}, error }) - } finally { - validateEnginesActivity.end() - } + await validateEnginesWithActivity(process.cwd()) - console.log(`DONE`) + reporter.info(`Rebuilding Rendering Engines finished`) } run() diff --git a/packages/gatsby/src/utils/adapter/init.ts b/packages/gatsby/src/utils/adapter/init.ts index 5d7aecd50edc9..0afab63c2f5e2 100644 --- a/packages/gatsby/src/utils/adapter/init.ts +++ b/packages/gatsby/src/utils/adapter/init.ts @@ -9,6 +9,7 @@ import { satisfies } from "semver" import type { AdapterInit } from "./types" import { preferDefault } from "../../bootstrap/prefer-default" import { getLatestAdapters } from "../get-latest-gatsby-files" +import { maybeAddFileProtocol } from "../../bootstrap/resolve-js-file-path" export const getAdaptersCacheDir = (): string => join(process.cwd(), `.cache/adapters`) @@ -85,7 +86,9 @@ const tryLoadingAlreadyInstalledAdapter = async ({ } } - const required = locationRequire.resolve(adapterToUse.module) + const required = maybeAddFileProtocol( + locationRequire.resolve(adapterToUse.module) + ) if (required) { return { found: true, diff --git a/packages/gatsby/src/utils/adapter/manager.ts b/packages/gatsby/src/utils/adapter/manager.ts index 0178da120c4f9..7879565715030 100644 --- a/packages/gatsby/src/utils/adapter/manager.ts +++ b/packages/gatsby/src/utils/adapter/manager.ts @@ -286,6 +286,8 @@ export async function initAdapterManager(): Promise<IAdapterManager> { deployURL: configFromAdapter?.deployURL, supports: configFromAdapter?.supports, pluginsToDisable: configFromAdapter?.pluginsToDisable ?? [], + functionsArch: configFromAdapter?.functionsArch, + functionsPlatform: configFromAdapter?.functionsPlatform, } }, } diff --git a/packages/gatsby/src/utils/adapter/types.ts b/packages/gatsby/src/utils/adapter/types.ts index c23dee9667294..3536ae0b2b8bf 100644 --- a/packages/gatsby/src/utils/adapter/types.ts +++ b/packages/gatsby/src/utils/adapter/types.ts @@ -201,6 +201,18 @@ export interface IAdapterConfig { * example for the Netlify adapter. */ fileCDNUrlGeneratorModulePath?: string + /** + * The platform bundled functions will execute on. Usually should be `linux`. + * This will be used if user didn't specify `GATSBY_FUNCTIONS_PLATFORM` environment variable + * or used `-functions-platform` CLI toggle. If none is defined current platform (process.platform) will be used. + */ + functionsPlatform?: string + /** + * The architecture bundled functions will execute on. Usually should be `x64`. + * This will be used if user didn't specify `GATSBY_FUNCTIONS_ARCH` environment variable + * or used `-functions-arch` CLI toggle. If none is defined current arch (process.arch) will be used. + */ + functionsArch?: string } type WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] } diff --git a/packages/gatsby/src/utils/engines-helpers.ts b/packages/gatsby/src/utils/engines-helpers.ts index 20c7814986339..0e01e5e6eb7de 100644 --- a/packages/gatsby/src/utils/engines-helpers.ts +++ b/packages/gatsby/src/utils/engines-helpers.ts @@ -33,3 +33,34 @@ function getCDNObfuscatedPath(path: string): string { } export const LmdbOnCdnPath = getCDNObfuscatedPath(`data.mdb`) + +export interface IPlatformAndArch { + platform: string + arch: string +} + +const currentTarget: IPlatformAndArch = { + platform: process.platform, + arch: process.arch, +} + +export function getCurrentPlatformAndTarget(): IPlatformAndArch { + return currentTarget +} + +export function getFunctionsTargetPlatformAndTarget(): IPlatformAndArch { + const state = store.getState() + + return { + platform: + process.env.GATSBY_FUNCTIONS_PLATFORM ?? + state.program.functionsPlatform ?? + state.adapter.config.functionsPlatform ?? + currentTarget.platform, + arch: + process.env.GATSBY_FUNCTIONS_ARCH ?? + state.program.functionsArch ?? + state.adapter.config.functionsArch ?? + currentTarget.arch, + } +} diff --git a/packages/gatsby/src/utils/validate-engines/index.ts b/packages/gatsby/src/utils/validate-engines/index.ts index 276e7c780c8f5..50f3a8b3f8b43 100644 --- a/packages/gatsby/src/utils/validate-engines/index.ts +++ b/packages/gatsby/src/utils/validate-engines/index.ts @@ -1,6 +1,45 @@ +import reporter from "gatsby-cli/lib/reporter" import { WorkerPool } from "gatsby-worker" +import { isEqual } from "lodash" +import type { Span } from "opentracing" +import { + getCurrentPlatformAndTarget, + getFunctionsTargetPlatformAndTarget, +} from "../engines-helpers" -export async function validateEngines(directory: string): Promise<void> { +export async function validateEnginesWithActivity( + directory: string, + buildSpan?: Span +): Promise<void> { + if ( + !isEqual( + getCurrentPlatformAndTarget(), + getFunctionsTargetPlatformAndTarget() + ) + ) { + reporter.info( + `Skipping Rendering Engines validation as they are build for different platform and/or architecture` + ) + return + } + + const validateEnginesActivity = reporter.activityTimer( + `Validating Rendering Engines`, + { + parentSpan: buildSpan, + } + ) + validateEnginesActivity.start() + try { + await validateEngines(directory) + } catch (error) { + validateEnginesActivity.panic({ id: `98001`, context: {}, error }) + } finally { + validateEnginesActivity.end() + } +} + +async function validateEngines(directory: string): Promise<void> { const worker = new WorkerPool<typeof import("./child")>( require.resolve(`./child`), {
e4a14548d4780969052ba2eee4670b6f59160621
2018-10-30 05:13:07
Michal Piechowiak
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 37f0ad07c8fca..d6db1bec4ed46 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="2.0.34"></a> + +## [2.0.34](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.34) (2018-10-29) + +### Features + +- **gatsby:** use json-stream-stringify to serialize redux state ([#9370](https://github.com/gatsbyjs/gatsby/issues/9370)) ([c334075](https://github.com/gatsbyjs/gatsby/commit/c334075)), closes [#9362](https://github.com/gatsbyjs/gatsby/issues/9362) + <a name="2.0.33"></a> ## [2.0.33](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.33) (2018-10-29) diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 277c12331cb84..f0790ee0d01c6 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.0.33", + "version": "2.0.34", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js"
bdb9352bed68e384970c8bf152643304bc228dcf
2021-07-20 01:57:46
Vladimir Razuvaev
feat(gatsby): PQR: merge data dependencies from workers to the main process (#32305)
false
PQR: merge data dependencies from workers to the main process (#32305)
feat
diff --git a/packages/gatsby/src/utils/worker/__tests__/queries.ts b/packages/gatsby/src/utils/worker/__tests__/queries.ts index bcae5e4febecb..4b802adb23111 100644 --- a/packages/gatsby/src/utils/worker/__tests__/queries.ts +++ b/packages/gatsby/src/utils/worker/__tests__/queries.ts @@ -7,6 +7,7 @@ import sourceNodesAndRemoveStaleNodes from "../../source-nodes" import { savePartialStateToDisk, store, + emitter, loadPartialStateFromDisk, } from "../../../redux" import { loadConfigAndPlugins } from "../../../bootstrap/load-config-and-plugins" @@ -167,7 +168,6 @@ describeWhenLMDB(`worker (queries)`, () => { savePartialStateToDisk([`components`, `staticQueryComponents`]) await Promise.all(worker.all.buildSchema()) - await worker.single.runQueries(queryIdsSmall) }) afterAll(() => { @@ -180,9 +180,15 @@ describeWhenLMDB(`worker (queries)`, () => { } }) + // This was the original implementation of state syncing between a worker and the main process. + // We switched to "replaying actions" as a mechanism for state syncing. + // But we can get back to state saving / merging if "replaying actions" proves to be too expensive + // TODO: delete or re-activate depending on results yielded by "replaying actions" approach. + // The logic for `loadPartialStateFromDisk` itself is tested in `share-state` tests it(`should save worker "queries" state to disk`, async () => { if (!worker) fail(`worker not defined`) + await worker.single.runQueries(queryIdsSmall) await Promise.all(worker.all.saveQueries()) // Pass "1" as workerId as the test only have one worker const result = loadPartialStateFromDisk([`queries`], `1`) @@ -233,6 +239,8 @@ describeWhenLMDB(`worker (queries)`, () => { it(`should execute static queries`, async () => { if (!worker) fail(`worker not defined`) + + await worker.single.runQueries(queryIdsSmall) const stateFromWorker = await worker.single.getState() const staticQueryResult = await fs.readJson( @@ -250,6 +258,8 @@ describeWhenLMDB(`worker (queries)`, () => { it(`should execute page queries`, async () => { if (!worker) fail(`worker not defined`) + + await worker.single.runQueries(queryIdsSmall) const stateFromWorker = await worker.single.getState() const pageQueryResult = await fs.readJson( @@ -265,6 +275,8 @@ describeWhenLMDB(`worker (queries)`, () => { it(`should execute page queries with context variables`, async () => { if (!worker) fail(`worker not defined`) + + await worker.single.runQueries(queryIdsSmall) const stateFromWorker = await worker.single.getState() const pageQueryResult = await fs.readJson( @@ -331,4 +343,131 @@ describeWhenLMDB(`worker (queries)`, () => { spy.mockRestore() }) + + it(`should return actions occurred in worker to replay in the main process`, async () => { + const result = await worker.single.runQueries(queryIdsSmall) + + const expectedActionShapes = { + QUERY_START: [`componentPath`, `isPage`, `path`], + PAGE_QUERY_RUN: [`componentPath`, `isPage`, `path`, `resultHash`], + CREATE_COMPONENT_DEPENDENCY: [`nodeId`, `path`], + ADD_PENDING_PAGE_DATA_WRITE: [`path`], + } + expect(result).toBeArrayOfSize(11) + + for (const action of result) { + expect(action.type).toBeOneOf(Object.keys(expectedActionShapes)) + expect(action.payload).toContainKeys(expectedActionShapes[action.type]) + } + // Double-check that important actions are actually present + expect(result).toContainValue( + expect.objectContaining({ type: `QUERY_START` }) + ) + expect(result).toContainValue( + expect.objectContaining({ type: `PAGE_QUERY_RUN` }) + ) + }) + + it(`should replay selected worker actions in runQueriesInWorkersQueue`, async () => { + const expectedActions = [ + { + payload: { + componentPath: `/static-query-component.js`, + isPage: false, + path: `sq--q1`, + }, + type: `QUERY_START`, + }, + { + payload: { + nodeId: `ceb8e742-a2ce-5110-a560-94c93d1c71a5`, + path: `sq--q1`, + }, + plugin: ``, + type: `CREATE_COMPONENT_DEPENDENCY`, + }, + { + payload: { + componentPath: `/static-query-component.js`, + isPage: false, + path: `sq--q1`, + queryHash: `q1-hash`, + resultHash: `Dr5hgCDB+R0S9oRBWeZYj3lB7VI=`, + }, + type: `PAGE_QUERY_RUN`, + }, + { + payload: { + componentPath: `/foo.js`, + isPage: true, + path: `/foo`, + }, + type: `QUERY_START`, + }, + { + payload: { + componentPath: `/bar.js`, + isPage: true, + path: `/bar`, + }, + type: `QUERY_START`, + }, + { + payload: { + nodeId: `ceb8e742-a2ce-5110-a560-94c93d1c71a5`, + path: `/foo`, + }, + plugin: ``, + type: `CREATE_COMPONENT_DEPENDENCY`, + }, + { + payload: { + nodeId: `ceb8e742-a2ce-5110-a560-94c93d1c71a5`, + path: `/bar`, + }, + plugin: ``, + type: `CREATE_COMPONENT_DEPENDENCY`, + }, + { + payload: { + path: `/foo`, + }, + type: `ADD_PENDING_PAGE_DATA_WRITE`, + }, + { + payload: { + componentPath: `/foo.js`, + isPage: true, + path: `/foo`, + resultHash: `8dW7PoqwZNk/0U8LO6kTj1qBCwU=`, + }, + type: `PAGE_QUERY_RUN`, + }, + { + payload: { + path: `/bar`, + }, + type: `ADD_PENDING_PAGE_DATA_WRITE`, + }, + { + payload: { + componentPath: `/bar.js`, + isPage: true, + path: `/bar`, + resultHash: `iKmhf9XgbsfK7qJw0tw95pmGwJM=`, + }, + type: `PAGE_QUERY_RUN`, + }, + ] + + const actualActions: Array<any> = [] + function listenActions(action): void { + actualActions.push(action) + } + emitter.on(`*`, listenActions) + await runQueriesInWorkersQueue(worker, queryIdsSmall) + emitter.off(`*`, listenActions) + + expect(actualActions).toContainAllValues(expectedActions) + }) }) diff --git a/packages/gatsby/src/utils/worker/child/queries.ts b/packages/gatsby/src/utils/worker/child/queries.ts index 7e3094bf8e6dc..534dbb39179bb 100644 --- a/packages/gatsby/src/utils/worker/child/queries.ts +++ b/packages/gatsby/src/utils/worker/child/queries.ts @@ -8,6 +8,12 @@ import { GraphQLRunner } from "../../../query/graphql-runner" import { getDataStore } from "../../../datastore" import { setState } from "./state" import { buildSchema } from "./schema" +import { + IAddPendingPageDataWriteAction, + ICreatePageDependencyAction, + IPageQueryRunAction, + IQueryStartAction, +} from "../../../redux/types" export function setComponents(): void { setState([`components`, `staticQueryComponents`]) @@ -29,7 +35,39 @@ function getGraphqlRunner(): GraphQLRunner { return gqlRunner } -export async function runQueries(queryIds: IGroupedQueryIds): Promise<void> { +type ActionsToReplay = Array< + | IQueryStartAction + | IPageQueryRunAction + | IAddPendingPageDataWriteAction + | ICreatePageDependencyAction +> + +export async function runQueries( + queryIds: IGroupedQueryIds +): Promise<ActionsToReplay> { + const actionsToReplay: ActionsToReplay = [] + + const unsubscribe = store.subscribe(() => { + const action = store.getState().lastAction + if ( + action.type === `QUERY_START` || + action.type === `PAGE_QUERY_RUN` || + action.type === `ADD_PENDING_PAGE_DATA_WRITE` || + action.type === `CREATE_COMPONENT_DEPENDENCY` + ) { + actionsToReplay.push(action) + } + }) + + try { + await doRunQueries(queryIds) + return actionsToReplay + } finally { + unsubscribe() + } +} + +async function doRunQueries(queryIds: IGroupedQueryIds): Promise<void> { const workerStore = store.getState() // If buildSchema() didn't run yet, execute it diff --git a/packages/gatsby/src/utils/worker/pool.ts b/packages/gatsby/src/utils/worker/pool.ts index 949549a042641..cda547a7a545d 100644 --- a/packages/gatsby/src/utils/worker/pool.ts +++ b/packages/gatsby/src/utils/worker/pool.ts @@ -8,6 +8,8 @@ import { initJobsMessagingInMainProcess } from "../jobs/worker-messaging" import { initReporterMessagingInMainProcess } from "./reporter" import { GatsbyWorkerPool } from "./types" +import { store } from "../../redux" +import { ActionsUnion } from "../../redux/types" export type { GatsbyWorkerPool } @@ -48,6 +50,7 @@ export async function runQueriesInWorkersQueue( promises.push( pool.single .runQueries({ pageQueryIds: [], staticQueryIds: segment }) + .then(replayWorkerActions) .then(() => { activity.tick(segment.length) }) @@ -58,6 +61,7 @@ export async function runQueriesInWorkersQueue( promises.push( pool.single .runQueries({ pageQueryIds: segment, staticQueryIds: [] }) + .then(replayWorkerActions) .then(() => { activity.tick(segment.length) }) @@ -68,3 +72,17 @@ export async function runQueriesInWorkersQueue( activity.end() } + +async function replayWorkerActions( + actions: Array<ActionsUnion> +): Promise<void> { + let i = 1 + for (const action of actions) { + store.dispatch(action) + + // Give event loop some breath + if (i++ % 100 === 0) { + await new Promise(resolve => process.nextTick(resolve)) + } + } +}
5016071e69576de2faccf7d45a674d97fd3ef778
2019-12-11 14:41:57
vaporwavy
fix(docs): typo in adding-search-with-algolia (#20061)
false
typo in adding-search-with-algolia (#20061)
fix
diff --git a/docs/docs/adding-search-with-algolia.md b/docs/docs/adding-search-with-algolia.md index e5e2dd71b7e9d..9bf3fd9f9a3ca 100644 --- a/docs/docs/adding-search-with-algolia.md +++ b/docs/docs/adding-search-with-algolia.md @@ -78,7 +78,7 @@ Since your .env file contains your real private API keys, it is considered a sec ```text:title=.env.example # rename this file to .env and supply the values listed below # also make sure they are available to the build tool (e.g. Netlify) -# warning: variables prexifed with GATSBY_ will be made available to client-side code +# warning: variables prefixed with GATSBY_ will be made available to client-side code # be careful not to expose sensitive data (in this case your Algolia admin key) GATSBY_ALGOLIA_APP_ID=insertValue @@ -157,7 +157,7 @@ It might look a little intimidating at first, but basically you're just letting Transformers allow you to modify the data returned by the queries to bring it into a format ready for searching. All you're doing here is 'flattening' posts and pages to 'unnest' the frontmatter fields (such as `author`, `date`, `tags`) but transformers could do much more for you if required. This makes the whole process of indexing your data really flexible and powerful. You could for instance use them to filter the results of your queries, format fields, add or merge them, etc. -If you've come this far, then the "backend" is done. You should now be able to run `gatsby build` and see your indices in Algolia's webinterface be flooded with your data. +If you've come this far, then the "backend" is done. You should now be able to run `gatsby build` and see your indices in Algolia's web interface be flooded with your data. ## Adding a search interface to your site
6ee422e08d1a5898556e2914ee58aa6b224e6696
2020-11-02 14:40:42
Stephan Weinhold
chore(docs): Updated Snipcart blog entry (#27748)
false
Updated Snipcart blog entry (#27748)
chore
diff --git a/docs/docs/adding-a-shopping-cart-with-snipcart.md b/docs/docs/adding-a-shopping-cart-with-snipcart.md index f6ae45859f3cd..c1eda1c31b1f6 100644 --- a/docs/docs/adding-a-shopping-cart-with-snipcart.md +++ b/docs/docs/adding-a-shopping-cart-with-snipcart.md @@ -190,5 +190,5 @@ The following quote is from the Snipcart [payment gateway page](https://app.snip - [OneShopper Gatsby starter](/starters/rohitguptab/OneShopper/) - Reference guide on [sourcing from Etsy](/docs/sourcing-from-etsy/) - Reference guide on [processing payments with Stripe](/docs/processing-payments-with-stripe/) -- From the Snipcart blog: [E-Commerce for React Developers \[w/ Gatsby Tutorial\]](https://snipcart.com/blog/react-ecommerce-gatsby-tutorial) +- From the Snipcart blog: [Gatsby E-Commerce Recipe: Integrate a Cart in a Few Steps](https://snipcart.com/blog/gatsby-recipes-ecommerce) - [Snipcart documentation](https://docs.snipcart.com/v3/setup/installation)
c8bb232076d681e64d2010f56d350eceb1a73c51
2020-05-27 19:41:34
Abhishek Jakhar
fix(www): mobile layout for `/guidelines/logo` + convert to theme-ui (#24481)
false
mobile layout for `/guidelines/logo` + convert to theme-ui (#24481)
fix
diff --git a/www/src/pages/guidelines/logo.js b/www/src/pages/guidelines/logo.js index 9947e49ec21bd..79c6f992b54fa 100644 --- a/www/src/pages/guidelines/logo.js +++ b/www/src/pages/guidelines/logo.js @@ -1,10 +1,9 @@ /** @jsx jsx */ import { jsx } from "theme-ui" import { graphql } from "gatsby" +import { mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org" import Img from "gatsby-image" -import styled from "@emotion/styled" import { MdArrowDownward as ArrowDownwardIcon } from "react-icons/md" -import themeGet from "@styled-system/theme-get" import { useColorMode } from "theme-ui" import Link from "../../components/localized-link" @@ -33,37 +32,65 @@ import PartnershipLockups from "!raw-loader!../../assets/guidelines/partnership- import ColorSwatch from "../../components/guidelines/color/card" -import { Box, Button, Flex, Text } from "../../components/guidelines/system" +import { Button, Text } from "../../components/guidelines/system" +import { Box, Flex } from "theme-ui" import theme from "gatsby-design-tokens/dist/theme-gatsbyjs-org" import palette from "../../utils/guidelines/extend-palette-info" -const List = styled(`ul`)` - margin-left: 0; - padding: 0; - list-style: none; -` +const List = ({ children }) => ( + <ul + sx={{ + marginLeft: 0, + padding: 0, + listStyle: `none`, + }} + > + {children} + </ul> +) -const ListItem = styled(`li`)` - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='${props => - encodeURIComponent( - themeGet(`colors.green.50`)(props) - )}' d='M23,12L20.56,9.22L20.9,5.54L17.29,4.72L15.4,1.54L12,3L8.6,1.54L6.71,4.72L3.1,5.53L3.44,9.21L1,12L3.44,14.78L3.1,18.47L6.71,19.29L8.6,22.47L12,21L15.4,22.46L17.29,19.28L20.9,18.46L20.56,14.78L23,12M10,17L6,13L7.41,11.59L10,14.17L16.59,7.58L18,9L10,17Z' /%3E%3C/svg%3E"); - background-position: 0 0.25em; - background-repeat: no-repeat; - background-size: 1em; - padding-left: 1.5em; - margin-bottom: 1em; -` +const listItemStyle = { + backgroundPosition: `0 0.25em`, + backgroundRepeat: `no-repeat`, + backgroundSize: `1em`, + paddingLeft: `1.5em`, + marginBottom: `1em`, +} -const DontListItem = styled(ListItem)` - background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='${props => - encodeURIComponent( - themeGet(`colors.red.50`)(props) - )}' d='M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z' /%3E%3C/svg%3E"); -` +const ListItem = ({ children }) => ( + <li + sx={{ + ...listItemStyle, + backgroundImage: `url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='${encodeURIComponent( + theme.colors.green[`50`] + )}' d='M23,12L20.56,9.22L20.9,5.54L17.29,4.72L15.4,1.54L12,3L8.6,1.54L6.71,4.72L3.1,5.53L3.44,9.21L1,12L3.44,14.78L3.1,18.47L6.71,19.29L8.6,22.47L12,21L15.4,22.46L17.29,19.28L20.9,18.46L20.56,14.78L23,12M10,17L6,13L7.41,11.59L10,14.17L16.59,7.58L18,9L10,17Z' /%3E%3C/svg%3E")`, + }} + > + {children} + </li> +) + +const DontListItem = ({ children }) => ( + <li + sx={{ + ...listItemStyle, + backgroundImage: `url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='${encodeURIComponent( + theme.colors.red[`50`] + )}' d='M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z' /%3E%3C/svg%3E")`, + }} + > + {children} + </li> +) const Guidance = ({ children, image }) => ( - <Box mb={5} mr="20px" width={`calc(50% - 20px)`}> + <div + sx={{ + mb: 5, + mr: 5, + width: `calc(50% - 1.25rem)`, + }} + > {image && ( <BoxWithBorder withBorder width="100%"> <Img fluid={image.childImageSharp.fluid} /> @@ -72,19 +99,30 @@ const Guidance = ({ children, image }) => ( <Text fontSize={1} color="grey.50" mt={2}> {children} </Text> - </Box> + </div> ) -const Monogram = ({ size, ...props }) => ( +const Monogram = ({ size, isLast }) => ( <Box - mt={6} - display="flex" - css={{ flexShrink: 0, alignItems: `center`, flexDirection: `column` }} - {...props} + sx={{ + display: isLast ? `none` : `flex`, + flexShrink: 0, + alignItems: `center`, + flexDirection: `column`, + mt: 0, + mr: 4, + [mediaQueries.md]: { + display: isLast ? `block` : `flex`, + mt: 6, + mr: 6, + }, + }} > <Flex - width={size} - mb={4} + sx={{ + width: size, + mb: 4, + }} css={{ svg: { display: `block`, @@ -110,10 +148,12 @@ const GatsbyLogoContainered = ({ }) => ( <Box {...rest} - height={height} - maxWidth="400px" - css={{ + sx={{ + height: height, + maxWidth: `400px`, opacity: opacity || 1, + }} + css={{ svg: { display: `block`, width: height ? `auto` : `100%`, @@ -136,9 +176,9 @@ const LogoContainer = ({ bg, color, inverted, withBorder, ...rest }) => ( {...rest} > <Flex - alignItems="center" - justifyContent="center" - css={{ + sx={{ + alignItems: `center`, + justifyContent: `center`, position: `absolute`, top: 0, left: 0, @@ -149,7 +189,12 @@ const LogoContainer = ({ bg, color, inverted, withBorder, ...rest }) => ( }} > <Box - height={{ xxs: `40px`, xxl: `48px` }} + sx={{ + height: `40px`, + [mediaQueries.lg]: { + height: `48px`, + }, + }} css={{ svg: { display: `block`, @@ -194,14 +239,16 @@ const Logo = ({ data, location }) => { contains everything you need. </p> <Box - bg="highlightedBox.background" - py={3} - px={4} - my={4} - fontSize={1} - borderRadius={2} - maxWidth="30rem" - color="highlightedBox.color" + sx={{ + py: 3, + px: 4, + my: 4, + fontSize: 1, + borderRadius: 2, + maxWidth: `30rem`, + bg: `highlightedBox.background`, + color: `highlightedBox.color`, + }} > Please{` `} <a href="https://github.com/gatsbyjs/gatsby/issues"> @@ -342,11 +389,16 @@ const Logo = ({ data, location }) => { </p> </CopyColumn> <ContentColumn> - <Flex alignItems="flex-end" flexWrap="wrap"> - <Monogram size={128} mr={{ xxs: 4, lg: 6 }} /> - <Monogram size={64} mr={{ xxs: 4, lg: 6 }} /> - <Monogram size={32} mr={{ xxs: 4, lg: 6 }} /> - <Monogram size={16} display={{ xxs: `none`, lg: `block` }} /> + <Flex + sx={{ + alignItems: `flex-end`, + flexWrap: `wrap`, + }} + > + <Monogram size={128} /> + <Monogram size={64} /> + <Monogram size={32} /> + <Monogram size={16} isLast /> </Flex> </ContentColumn> </Columns> @@ -364,15 +416,23 @@ const Logo = ({ data, location }) => { </p> </CopyColumn> <ContentColumn> - <Flex alignItems="flex-end" flexWrap="wrap" /> - <Box - maxWidth="542px" - mb={4} - dangerouslySetInnerHTML={{ - __html: PartnershipLockups, + <Flex + sx={{ + alignItems: `flex-end`, + flexWrap: `wrap`, }} - css={{ svg: { display: `block`, width: `100%` } }} - /> + > + <Box + sx={{ + maxWidth: `542px`, + mb: 4, + }} + dangerouslySetInnerHTML={{ + __html: PartnershipLockups, + }} + css={{ svg: { display: `block`, width: `100%` } }} + /> + </Flex> </ContentColumn> </Columns> </Section> @@ -404,8 +464,10 @@ const Logo = ({ data, location }) => { </CopyColumn> <ContentColumn> <Box - maxWidth="257px" - mb={4} + sx={{ + maxWidth: `257px`, + mb: 4, + }} dangerouslySetInnerHTML={{ __html: Wordmark, }} @@ -415,8 +477,10 @@ const Logo = ({ data, location }) => { }} /> <Box - maxWidth="257px" - mb={3} + sx={{ + maxWidth: `257px`, + mb: 3, + }} dangerouslySetInnerHTML={{ __html: ManuallyTracked, }} @@ -446,18 +510,50 @@ const Logo = ({ data, location }) => { </CopyColumn> <ContentColumn> <LogoContainer bg="white" withBorder mb={4} /> - <Box display={{ md: `flex` }}> + <Box + sx={{ + display: `flex`, + flexDirection: `column`, + [mediaQueries.md]: { + flexDirection: `row`, + }, + }} + > <ColorSwatch color={palette.purple.colors[`60`]} - mr={{ md: 4 }} - mb={{ xxs: 4, md: 0 }} + sx={{ + mr: 0, + mb: 4, + width: `100%`, + [mediaQueries.md]: { + mr: 4, + mb: 0, + }, + }} /> <ColorSwatch color={palette.black.color} - mr={{ md: 4 }} - mb={{ xxs: 4, md: 0 }} + sx={{ + mr: 0, + mb: 4, + width: `100%`, + [mediaQueries.md]: { + mr: 4, + mb: 0, + }, + }} + /> + <ColorSwatch + color={palette.white.color} + sx={{ + mr: 0, + mb: 4, + width: `100%`, + [mediaQueries.md]: { + mb: 0, + }, + }} /> - <ColorSwatch color={palette.white.color} /> </Box> </ContentColumn> </Columns> @@ -526,7 +622,9 @@ const Logo = ({ data, location }) => { </CopyColumn> <ContentColumn> <Box - mb={4} + sx={{ + mb: 4, + }} dangerouslySetInnerHTML={{ __html: Clearspace, }} @@ -567,13 +665,17 @@ const Logo = ({ data, location }) => { </p> </CopyColumn> <ContentColumn> - <div css={{ position: `relative` }}> + <div + sx={{ + position: `relative`, + }} + > <GatsbyLogoContainered opacity={0.025} /> <div - css={{ + sx={{ position: `absolute`, zIndex: 1, - height: 24, + height: `24px`, top: `auto`, bottom: 0, }} @@ -607,7 +709,11 @@ const Logo = ({ data, location }) => { </p> </CopyColumn> <ContentColumn> - <Flex flexWrap="wrap"> + <Flex + sx={{ + flexWrap: `wrap`, + }} + > {data.allGuidanceYaml.nodes.map((node, index) => ( <Guidance image={node.image && node.image} @@ -637,7 +743,7 @@ const Logo = ({ data, location }) => { <Text as="li" key={`logo-footnotes-${index}`} mb={3}> {node.description}:<br /> <a - css={{ + sx={{ color: theme.colors.purple[`50`], textDecoration: `none`, }}
8cde80cabf4462cf5bfbb0a7ff31c9c19c0dd167
2019-03-21 20:19:16
Jonathan
chore(docs): tweak unused variable in transformer plugin docs (#12705)
false
tweak unused variable in transformer plugin docs (#12705)
chore
diff --git a/docs/docs/creating-a-transformer-plugin.md b/docs/docs/creating-a-transformer-plugin.md index 62851f4600a94..82203d25650b0 100644 --- a/docs/docs/creating-a-transformer-plugin.md +++ b/docs/docs/creating-a-transformer-plugin.md @@ -117,7 +117,7 @@ async function onCreateNode({ node, loadNodeContent }) { return } - const fileContent = await loadNodeContent(node) + const content = await loadNodeContent(node) const parsedContent = jsYaml.load(content) }
b2d25547dac051fed2a54745e0d31ce0dbb49ff6
2020-01-06 19:24:40
Dmytro Chumak
chore(doc): Replace {titleofthesite} in description for showcase (#20373)
false
Replace {titleofthesite} in description for showcase (#20373)
chore
diff --git a/docs/contributing/site-showcase-submissions.md b/docs/contributing/site-showcase-submissions.md index d54268ff7853a..26f1d1ef51df5 100644 --- a/docs/contributing/site-showcase-submissions.md +++ b/docs/contributing/site-showcase-submissions.md @@ -28,7 +28,7 @@ There are three major steps: # optional: short paragraph describing the content and/or purpose of the site that will appear in the modal detail view and permalink views for your site description: > - {titleofthesite} is a shiny new website built with Gatsby v2 that makes important contributions towards a faster web for everyone. + This blog is a shiny new website built with Gatsby v2 that makes important contributions towards a faster web for everyone. # You can list as many categories as you want here. Check list of Categories below in this doc! # If you'd like to create a new category, simply list it here.
a7a3991ca2ad450abaacdc168e9900dad995b584
2021-02-17 21:17:41
Ward Peeters
feat(gatsby): upgrade webpack to version 5 (#29145)
false
upgrade webpack to version 5 (#29145)
feat
diff --git a/e2e-tests/development-runtime/cypress/integration/eslint-rules/limited-exports-page-templates.js b/e2e-tests/development-runtime/cypress/integration/eslint-rules/limited-exports-page-templates.js index 3464d8de60a7a..5c32d2bd47cb6 100644 --- a/e2e-tests/development-runtime/cypress/integration/eslint-rules/limited-exports-page-templates.js +++ b/e2e-tests/development-runtime/cypress/integration/eslint-rules/limited-exports-page-templates.js @@ -1,14 +1,21 @@ if (Cypress.env("HOT_LOADER") === `fast-refresh`) { describe(`limited-exports-page-templates`, () => { - it(`should log warning to console for invalid export`, () => { + // Skipped because HMR not show warnings because of https://github.com/webpack-contrib/webpack-hot-middleware/pull/397 + it.skip(`should log warning to console for invalid export`, () => { cy.visit(`/eslint-rules/limited-exports-page-templates`, { onBeforeLoad(win) { - cy.stub(win.console, 'log').as(`consoleLog`) - } + cy.stub(win.console, "log").as(`consoleLog`) + }, }).waitForRouteChange() - cy.get(`@consoleLog`).should(`be.calledWithMatch`, /15:1 warning In page templates only a default export of a valid React component and the named export of a page query is allowed./i) - cy.get(`@consoleLog`).should(`not.be.calledWithMatch`, /17:1 warning In page templates only a default export of a valid React component and the named export of a page query is allowed./i) + cy.get(`@consoleLog`).should( + `be.calledWithMatch`, + /15:1 warning In page templates only a default export of a valid React component and the named export of a page query is allowed./i + ) + cy.get(`@consoleLog`).should( + `not.be.calledWithMatch`, + /17:1 warning In page templates only a default export of a valid React component and the named export of a page query is allowed./i + ) }) }) } diff --git a/e2e-tests/development-runtime/cypress/integration/eslint-rules/no-anonymous-exports-page-templates.js b/e2e-tests/development-runtime/cypress/integration/eslint-rules/no-anonymous-exports-page-templates.js index 53aacb74fea8b..04d7a521b5d87 100644 --- a/e2e-tests/development-runtime/cypress/integration/eslint-rules/no-anonymous-exports-page-templates.js +++ b/e2e-tests/development-runtime/cypress/integration/eslint-rules/no-anonymous-exports-page-templates.js @@ -1,22 +1,29 @@ if (Cypress.env("HOT_LOADER") === `fast-refresh`) { describe(`no-anonymous-exports-page-templates`, () => { - it(`should log warning to console for arrow functions`, () => { + // Skipped because HMR not show warnings because of https://github.com/webpack-contrib/webpack-hot-middleware/pull/397 + it.skip(`should log warning to console for arrow functions`, () => { cy.visit(`/eslint-rules/no-anonymous-exports-page-templates`, { onBeforeLoad(win) { - cy.stub(win.console, 'log').as(`consoleLog`) - } + cy.stub(win.console, "log").as(`consoleLog`) + }, }).waitForRouteChange() - cy.get(`@consoleLog`).should(`be.calledWithMatch`, /Anonymous arrow functions cause Fast Refresh to not preserve local component state./i) + cy.get(`@consoleLog`).should( + `be.calledWithMatch`, + /Anonymous arrow functions cause Fast Refresh to not preserve local component state./i + ) }) - it(`should log warning to console for function declarations`, () => { + it.skip(`should log warning to console for function declarations`, () => { cy.visit(`/eslint-rules/no-anonymous-exports-page-templates-function`, { onBeforeLoad(win) { - cy.stub(win.console, 'log').as(`consoleLog`) - } + cy.stub(win.console, "log").as(`consoleLog`) + }, }).waitForRouteChange() - cy.get(`@consoleLog`).should(`be.calledWithMatch`, /Anonymous function declarations cause Fast Refresh to not preserve local component state./i) + cy.get(`@consoleLog`).should( + `be.calledWithMatch`, + /Anonymous function declarations cause Fast Refresh to not preserve local component state./i + ) }) }) } diff --git a/e2e-tests/development-runtime/gatsby-config.js b/e2e-tests/development-runtime/gatsby-config.js index 907d2f3e3c910..186b0e809a2c0 100644 --- a/e2e-tests/development-runtime/gatsby-config.js +++ b/e2e-tests/development-runtime/gatsby-config.js @@ -6,6 +6,9 @@ module.exports = { twitter: `kylemathews`, }, }, + flags: { + DEV_SSR: false, + }, plugins: [ `gatsby-plugin-react-helmet`, { diff --git a/e2e-tests/development-runtime/src/components/static-query/use-static-query/destructuring.js b/e2e-tests/development-runtime/src/components/static-query/use-static-query/destructuring.js index eb068622e0dac..05f692c214866 100644 --- a/e2e-tests/development-runtime/src/components/static-query/use-static-query/destructuring.js +++ b/e2e-tests/development-runtime/src/components/static-query/use-static-query/destructuring.js @@ -12,7 +12,7 @@ function DestructuringQuery(props) { return ( <ul {...props}> {plugins.map(plugin => ( - <li key={plugin.name}> + <li key={plugin.id}> {plugin.name}: {plugin.version} </li> ))} @@ -25,6 +25,7 @@ const variableQuery = graphql` allSitePlugin { edges { node { + id name version pluginFilepath diff --git a/integration-tests/artifacts/gatsby-browser.js b/integration-tests/artifacts/gatsby-browser.js index ac57b42fe1cc4..af169d50fce67 100644 --- a/integration-tests/artifacts/gatsby-browser.js +++ b/integration-tests/artifacts/gatsby-browser.js @@ -2,12 +2,14 @@ const React = require(`react`) const { useMoreInfoQuery } = require("./src/hooks/use-more-info-query") const Github = require(`./src/components/github`).default -exports.wrapRootElement = ({ element }) => ( - <> - <Github /> - {element} - </> -) +exports.wrapRootElement = ({ element }) => { + return ( + <> + <Github /> + {element} + </> + ) +} function PageWrapper({ children }) { const data = useMoreInfoQuery() diff --git a/integration-tests/gatsby-cli/__tests__/build-errors.js b/integration-tests/gatsby-cli/__tests__/build-errors.js index 3578d1d188aab..6d5fec5880d8e 100644 --- a/integration-tests/gatsby-cli/__tests__/build-errors.js +++ b/integration-tests/gatsby-cli/__tests__/build-errors.js @@ -34,7 +34,9 @@ describe(`gatsby build (errors)`, () => { `WebpackError: TypeError: Cannot read property 'bar' of null` ) logs.should.contain(`- index.js:5`) - logs.should.contain(` src/pages/index.js:5:5`) + logs.should.contain( + ` gatsby-starter-default-build-errors/src/pages/index.js:5:5` + ) expect(code).not.toBe(0) }) diff --git a/integration-tests/gatsby-cli/__tests__/build-ssr-errors.js b/integration-tests/gatsby-cli/__tests__/build-ssr-errors.js index b942bafd3feb1..d6c5a13758341 100644 --- a/integration-tests/gatsby-cli/__tests__/build-ssr-errors.js +++ b/integration-tests/gatsby-cli/__tests__/build-ssr-errors.js @@ -35,7 +35,9 @@ describe(`gatsby build (SSR errors)`, () => { // // Stack trace logs.should.contain(`WebpackError: ReferenceError: window is not defined`) logs.should.contain(`- gatsby-ssr.js:3`) - logs.should.contain(` gatsby-ssr.js:3:3`) + logs.should.contain( + ` gatsby-starter-default-build-ssr-errors/gatsby-ssr.js:3:3` + ) expect(code).not.toBe(0) }) diff --git a/package.json b/package.json index 0a97c408b6e37..a48d10eed274b 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,6 @@ "@types/bluebird": "^3.5.33", "@types/cache-manager": "^2.10.3", "@types/common-tags": "^1.8.0", - "@types/eslint": "^6.8.1", "@types/express": "^4.17.3", "@types/fs-extra": "^8.1.1", "@types/got": "^9.6.11", @@ -25,7 +24,6 @@ "@types/semver": "^7.3.4", "@types/signal-exit": "^3.0.0", "@types/stack-trace": "^0.0.29", - "@types/webpack": "^4.41.24", "@types/webpack-merge": "^4.1.5", "@typescript-eslint/eslint-plugin": "^2.34.0", "@typescript-eslint/parser": "^2.34.0", @@ -161,4 +159,4 @@ "workspaces": [ "packages/*" ] -} +} \ No newline at end of file diff --git a/packages/gatsby-admin/gatsby-node.js b/packages/gatsby-admin/gatsby-node.js index a82ea6cf8c268..f8701b58a67a8 100644 --- a/packages/gatsby-admin/gatsby-node.js +++ b/packages/gatsby-admin/gatsby-node.js @@ -1,7 +1,9 @@ exports.onCreateWebpackConfig = ({ actions }) => { actions.setWebpackConfig({ - node: { - fs: 'empty' + resolve: { + alias: { + path: require.resolve("path-browserify") + } } }) - } \ No newline at end of file + } diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index 1c6036afd1dd0..204e6b7e1b4ea 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -29,6 +29,7 @@ "ncp": "^2.0.0", "nodemon": "^2.0.7", "normalize.css": "^8.0.1", + "path-browserify": "^1.0.1", "prism-react-renderer": "^1.1.1", "query-string": "^6.13.8", "react": "^16.12.0", @@ -55,4 +56,4 @@ "postbuild": "ncp public ../gatsby/gatsby-admin-public", "watch": "nodemon --watch src --ext js,ts,tsx,json --exec \"yarn run build\"" } -} +} \ No newline at end of file diff --git a/packages/gatsby/cache-dir/__tests__/__snapshots__/static-entry.js.snap b/packages/gatsby/cache-dir/__tests__/__snapshots__/static-entry.js.snap index 1a2b6021ebb85..3cf65cc12c462 100644 --- a/packages/gatsby/cache-dir/__tests__/__snapshots__/static-entry.js.snap +++ b/packages/gatsby/cache-dir/__tests__/__snapshots__/static-entry.js.snap @@ -6,11 +6,11 @@ exports[`develop-static-entry SSR: onPreRenderHTML can be used to replace postBo exports[`develop-static-entry SSR: onPreRenderHTML can be used to replace preBodyComponents 1`] = `"<!DOCTYPE html><html><head><meta charSet=\\"utf-8\\"/><meta http-equiv=\\"x-ua-compatible\\" content=\\"ie=edge\\"/><meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1, shrink-to-fit=no\\"/><meta name=\\"note\\" content=\\"environment=development\\"/><script src=\\"/socket.io/socket.io.js\\"></script></head><body><div> div3 </div><div> div2 </div><div> div1 </div><div id=\\"___gatsby\\"><div style=\\"outline:none\\" tabindex=\\"-1\\" id=\\"gatsby-focus-wrapper\\"></div><div id=\\"gatsby-announcer\\" style=\\"position:absolute;top:0;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0\\" aria-live=\\"assertive\\" aria-atomic=\\"true\\"></div></div><script src=\\"/polyfill.js\\" nomodule=\\"\\"></script><script src=\\"/commons.js\\"></script></body></html>"`; -exports[`develop-static-entry onPreRenderHTML can be used to replace headComponents 1`] = `"<!DOCTYPE html><html><head><meta charSet=\\"utf-8\\"/><meta http-equiv=\\"x-ua-compatible\\" content=\\"ie=edge\\"/><meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1, shrink-to-fit=no\\"/><style> .style3 </style><style> .style2 </style><style> .style1 </style><meta name=\\"note\\" content=\\"environment=development\\"/><script src=\\"/socket.io/socket.io.js\\"></script></head><body><div id=\\"___gatsby\\"></div><script src=\\"/polyfill.js\\" nomodule=\\"\\"></script><script src=\\"/commons.js\\"></script></body></html>"`; +exports[`develop-static-entry onPreRenderHTML can be used to replace headComponents 1`] = `"<!DOCTYPE html><html><head><meta charSet=\\"utf-8\\"/><meta http-equiv=\\"x-ua-compatible\\" content=\\"ie=edge\\"/><meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1, shrink-to-fit=no\\"/><style> .style3 </style><style> .style2 </style><style> .style1 </style><meta name=\\"note\\" content=\\"environment=development\\"/><script src=\\"/socket.io/socket.io.js\\"></script><link rel=\\"stylesheet\\" href=\\"/commons.css\\"/></head><body><div id=\\"___gatsby\\"></div><script src=\\"/polyfill.js\\" nomodule=\\"\\"></script><script src=\\"/commons.js\\"></script></body></html>"`; -exports[`develop-static-entry onPreRenderHTML can be used to replace postBodyComponents 1`] = `"<!DOCTYPE html><html><head><meta charSet=\\"utf-8\\"/><meta http-equiv=\\"x-ua-compatible\\" content=\\"ie=edge\\"/><meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1, shrink-to-fit=no\\"/><meta name=\\"note\\" content=\\"environment=development\\"/><script src=\\"/socket.io/socket.io.js\\"></script></head><body><div id=\\"___gatsby\\"></div><div> div3 </div><div> div2 </div><div> div1 </div><script src=\\"/polyfill.js\\" nomodule=\\"\\"></script><script src=\\"/commons.js\\"></script></body></html>"`; +exports[`develop-static-entry onPreRenderHTML can be used to replace postBodyComponents 1`] = `"<!DOCTYPE html><html><head><meta charSet=\\"utf-8\\"/><meta http-equiv=\\"x-ua-compatible\\" content=\\"ie=edge\\"/><meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1, shrink-to-fit=no\\"/><meta name=\\"note\\" content=\\"environment=development\\"/><script src=\\"/socket.io/socket.io.js\\"></script><link rel=\\"stylesheet\\" href=\\"/commons.css\\"/></head><body><div id=\\"___gatsby\\"></div><div> div3 </div><div> div2 </div><div> div1 </div><script src=\\"/polyfill.js\\" nomodule=\\"\\"></script><script src=\\"/commons.js\\"></script></body></html>"`; -exports[`develop-static-entry onPreRenderHTML can be used to replace preBodyComponents 1`] = `"<!DOCTYPE html><html><head><meta charSet=\\"utf-8\\"/><meta http-equiv=\\"x-ua-compatible\\" content=\\"ie=edge\\"/><meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1, shrink-to-fit=no\\"/><meta name=\\"note\\" content=\\"environment=development\\"/><script src=\\"/socket.io/socket.io.js\\"></script></head><body><div> div3 </div><div> div2 </div><div> div1 </div><div id=\\"___gatsby\\"></div><script src=\\"/polyfill.js\\" nomodule=\\"\\"></script><script src=\\"/commons.js\\"></script></body></html>"`; +exports[`develop-static-entry onPreRenderHTML can be used to replace preBodyComponents 1`] = `"<!DOCTYPE html><html><head><meta charSet=\\"utf-8\\"/><meta http-equiv=\\"x-ua-compatible\\" content=\\"ie=edge\\"/><meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1, shrink-to-fit=no\\"/><meta name=\\"note\\" content=\\"environment=development\\"/><script src=\\"/socket.io/socket.io.js\\"></script><link rel=\\"stylesheet\\" href=\\"/commons.css\\"/></head><body><div> div3 </div><div> div2 </div><div> div1 </div><div id=\\"___gatsby\\"></div><script src=\\"/polyfill.js\\" nomodule=\\"\\"></script><script src=\\"/commons.js\\"></script></body></html>"`; exports[`static-entry onPreRenderHTML can be used to replace headComponents 1`] = `"<!DOCTYPE html><html><head><meta charSet=\\"utf-8\\"/><meta http-equiv=\\"x-ua-compatible\\" content=\\"ie=edge\\"/><meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1, shrink-to-fit=no\\"/><link as=\\"fetch\\" rel=\\"preload\\" href=\\"/page-data/app-data.json\\" crossorigin=\\"anonymous\\"/><link as=\\"fetch\\" rel=\\"preload\\" href=\\"/page-data/about/page-data.json\\" crossorigin=\\"anonymous\\"/><style> .style3 </style><style> .style2 </style><style> .style1 </style><meta name=\\"generator\\" content=\\"Gatsby 2.0.0\\"/></head><body><div id=\\"___gatsby\\"><div style=\\"outline:none\\" tabindex=\\"-1\\" id=\\"gatsby-focus-wrapper\\"></div><div id=\\"gatsby-announcer\\" style=\\"position:absolute;top:0;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0\\" aria-live=\\"assertive\\" aria-atomic=\\"true\\"></div></div><script id=\\"gatsby-script-loader\\">/*<![CDATA[*/window.pagePath=\\"/about/\\";/*]]>*/</script><script id=\\"gatsby-chunk-mapping\\">/*<![CDATA[*/window.___chunkMapping={};/*]]>*/</script></body></html>"`; diff --git a/packages/gatsby/cache-dir/create-react-context.js b/packages/gatsby/cache-dir/create-react-context.js deleted file mode 100644 index 8e4f972d134c0..0000000000000 --- a/packages/gatsby/cache-dir/create-react-context.js +++ /dev/null @@ -1,26 +0,0 @@ -/* - Why commonjs and not ES imports/exports? - - This module is used to alias `create-react-context` package, but drop the the actual implementation part - because Gatsby requires version of react that has implementatoin baked in. - - Package source is using ES modules: - - https://github.com/jamiebuilds/create-react-context/blob/v0.3.0/src/index.js - - But to build this package `babel-plugin-add-module-exports` is used ( https://www.npmjs.com/package/babel-plugin-add-module-exports). - Which result in both `module.exports` and `exports.default` being set to same thing. - - We don't use that babel plugin so we only have `exports.default`. - - This cause problems in various 3rd party react components that rely on `module.exports` being set. - See https://github.com/gatsbyjs/gatsby/issues/23645 for example of it. - - Instead of adding same babel plugin we mimic output here. Adding babel plugin just for this would: - a) unnecesairly slow down compilation for all other files (if we just apply it everywhere) - b) or complicate babel-loader configuration with overwrite specifically for this file -*/ - -const { createContext } = require(`react`) - -module.exports = createContext -module.exports.default = createContext diff --git a/packages/gatsby/cache-dir/develop-static-entry.js b/packages/gatsby/cache-dir/develop-static-entry.js index 3b0493a4fed4a..923de768a9f1b 100644 --- a/packages/gatsby/cache-dir/develop-static-entry.js +++ b/packages/gatsby/cache-dir/develop-static-entry.js @@ -104,6 +104,7 @@ export default ({ pagePath }) => { body: ``, headComponents: headComponents.concat([ <script key={`io`} src="/socket.io/socket.io.js" />, + <link key="styles" rel="stylesheet" href="/commons.css" />, ]), htmlAttributes, bodyAttributes, diff --git a/packages/gatsby/cache-dir/ssr-develop-static-entry.js b/packages/gatsby/cache-dir/ssr-develop-static-entry.js index c0ef75edca9d5..3e54c58f3637a 100644 --- a/packages/gatsby/cache-dir/ssr-develop-static-entry.js +++ b/packages/gatsby/cache-dir/ssr-develop-static-entry.js @@ -136,7 +136,7 @@ export default (pagePath, isClientOnlyPage, callback) => { }) namedChunkGroups[chunkKey].assets.forEach(asset => - chunks.push({ rel: `preload`, name: asset }) + chunks.push({ rel: `preload`, name: asset.name }) ) const childAssets = namedChunkGroups[chunkKey].childAssets diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index bc455f5fd3ff7..64fbc663c4190 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -20,7 +20,7 @@ "@mikaelkristiansson/domready": "^1.0.10", "@nodelib/fs.walk": "^1.2.4", "@pieh/friendly-errors-webpack-plugin": "1.7.0-chalk-2", - "@pmmmwh/react-refresh-webpack-plugin": "^0.4.1", + "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", "@reach/router": "^1.3.4", "@types/http-proxy": "^1.17.4", "@typescript-eslint/eslint-plugin": "^2.24.0", @@ -32,7 +32,7 @@ "axios": "^0.21.1", "babel-core": "7.0.0-bridge.0", "babel-eslint": "^10.1.0", - "babel-loader": "^8.1.0", + "babel-loader": "^8.2.2", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", @@ -52,7 +52,7 @@ "copyfiles": "^2.3.0", "core-js": "^3.6.5", "cors": "^2.8.5", - "css-loader": "^1.0.1", + "css-loader": "^5.0.1", "date-fns": "^2.14.0", "debug": "^3.2.7", "del": "^5.1.0", @@ -61,7 +61,7 @@ "dotenv": "^8.2.0", "eslint": "^6.8.0", "eslint-config-react-app": "^5.2.1", - "eslint-loader": "^2.2.1", + "eslint-loader": "^4.0.2", "eslint-plugin-flowtype": "^3.13.0", "eslint-plugin-graphql": "^4.0.0", "eslint-plugin-import": "^2.22.0", @@ -74,7 +74,7 @@ "express-graphql": "^0.9.0", "fastest-levenshtein": "^1.0.12", "fastq": "^1.10.0", - "file-loader": "^1.1.11", + "file-loader": "^6.2.0", "find-cache-dir": "^3.3.1", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", @@ -109,29 +109,30 @@ "memoizee": "^0.4.15", "micromatch": "^4.0.2", "mime": "^2.4.6", - "mini-css-extract-plugin": "^0.11.2", + "mini-css-extract-plugin": "^1.3.4", "mitt": "^1.2.0", "mkdirp": "^0.5.1", "moment": "^2.27.0", "name-all-modules-plugin": "^1.0.1", "normalize-path": "^3.0.0", - "null-loader": "^3.0.0", + "null-loader": "^4.0.1", "opentracing": "^0.14.4", - "optimize-css-assets-webpack-plugin": "^5.0.3", + "css-minimizer-webpack-plugin": "^1.2.0", "p-defer": "^3.0.0", "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "pnp-webpack-plugin": "^1.6.4", + "postcss": "8.2.5", "postcss-flexbugs-fixes": "^4.2.1", - "postcss-loader": "^3.0.0", + "postcss-loader": "^5.0.0", "prompts": "^2.3.2", "prop-types": "^15.7.2", "query-string": "^6.13.1", - "raw-loader": "^0.5.1", - "react-dev-utils": "^4.2.3", + "raw-loader": "^4.0.2", + "react-dev-utils": "^11.0.1", "react-error-overlay": "^3.0.0", - "react-hot-loader": "^4.12.21", - "react-refresh": "^0.8.3", + "react-hot-loader": "^4.13.0", + "react-refresh": "^0.9.0", "redux": "^4.0.5", "redux-thunk": "^2.3.0", "semver": "^7.3.2", @@ -146,28 +147,29 @@ "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^5.2.0", - "style-loader": "^0.23.1", - "terser-webpack-plugin": "^2.3.8", + "style-loader": "^2.0.0", + "terser-webpack-plugin": "^5.1.1", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", - "url-loader": "^1.1.2", + "url-loader": "^4.1.1", "util.promisify": "^1.0.1", "uuid": "3.4.0", "v8-compile-cache": "^2.2.0", - "webpack": "^4.44.1", - "webpack-dev-middleware": "^3.7.2", + "webpack": "^5.16.0", + "webpack-dev-middleware": "^4.1.0", "webpack-dev-server": "^3.11.2", "webpack-hot-middleware": "^2.25.0", - "webpack-merge": "^4.2.2", - "webpack-stats-plugin": "^0.3.2", - "webpack-virtual-modules": "^0.2.2", + "webpack-merge": "^5.7.3", + "webpack-stats-plugin": "^1.0.3", + "webpack-virtual-modules": "^0.4.2", "xstate": "^4.11.0", "yaml-loader": "^0.6.0" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/runtime": "^7.12.5", + "@types/eslint": "^7.2.6", "@types/hapi__joi": "^16.0.12", "@types/micromatch": "^4.0.1", "@types/normalize-path": "^3.0.0", @@ -177,7 +179,6 @@ "@types/socket.io": "^2.1.4", "@types/string-similarity": "^3.0.0", "@types/tmp": "^0.2.0", - "@types/webpack-dev-middleware": "^3.7.1", "@types/webpack-virtual-modules": "^0.1.0", "babel-preset-gatsby-package": "^1.0.0-next.0", "cross-env": "^7.0.3", @@ -259,4 +260,4 @@ "yargs": { "boolean-negation": false } -} +} \ No newline at end of file diff --git a/packages/gatsby/src/commands/build-html.ts b/packages/gatsby/src/commands/build-html.ts index 399a736d3dba1..d4031aab9b15a 100644 --- a/packages/gatsby/src/commands/build-html.ts +++ b/packages/gatsby/src/commands/build-html.ts @@ -7,6 +7,7 @@ import webpack from "webpack" import * as path from "path" import { emitter, store } from "../redux" +import { IWebpackWatchingPauseResume } from "../utils/start-server" import webpackConfig from "../utils/webpack.config" import { structureWebpackErrors } from "../utils/webpack-error-utils" import * as buildUtils from "./build-utils" @@ -18,11 +19,6 @@ import { PackageJson } from "../.." type IActivity = any // TODO type IWorkerPool = any // TODO -export interface IWebpackWatchingPauseResume extends webpack.Watching { - suspend: () => void - resume: () => void -} - export interface IBuildArgs extends IProgram { directory: string sitePackageJson: PackageJson @@ -37,11 +33,12 @@ export interface IBuildArgs extends IProgram { let devssrWebpackCompiler: webpack.Compiler let devssrWebpackWatcher: IWebpackWatchingPauseResume let needToRecompileSSRBundle = true -export const getDevSSRWebpack = (): Record< - IWebpackWatchingPauseResume, - webpack.Compiler, - needToRecompileSSRBundle -> => { + +export const getDevSSRWebpack = (): { + devssrWebpackWatcher: IWebpackWatchingPauseResume + devssrWebpackCompiler: webpack.Compiler + needToRecompileSSRBundle: boolean +} => { if (process.env.gatsby_executing_command !== `develop`) { throw new Error(`This function can only be called in development`) } diff --git a/packages/gatsby/src/commands/build-javascript.ts b/packages/gatsby/src/commands/build-javascript.ts index 1e364609bbb25..82f0711509249 100644 --- a/packages/gatsby/src/commands/build-javascript.ts +++ b/packages/gatsby/src/commands/build-javascript.ts @@ -1,24 +1,12 @@ import { Span } from "opentracing" -import webpack from "webpack" -import { isEqual } from "lodash" -import flatMap from "lodash/flatMap" - +import webpack, { WebpackError } from "webpack" import webpackConfig from "../utils/webpack.config" -import { store } from "../redux" -import mapTemplatesToStaticQueryHashes from "../utils/map-templates-to-static-query-hashes" - import { IProgram } from "./types" -import { reportWebpackWarnings } from "../utils/webpack-error-utils" - -interface IWebpackCompilerWithParentCompilation extends webpack.Compiler { - parentCompilation?: webpack.compilation.Compilation -} - export const buildProductionBundle = async ( program: IProgram, parentSpan: Span -): Promise<webpack.Stats> => { +): Promise<webpack.Stats | Error | Array<WebpackError>> => { const { directory } = program const compilerConfig = await webpackConfig( @@ -32,67 +20,14 @@ export const buildProductionBundle = async ( return new Promise((resolve, reject) => { const compiler = webpack(compilerConfig) - compiler.hooks.compilation.tap(`webpack-dep-tree-plugin`, compilation => { - // "compilation" callback gets called for child compilers. - // We only want to attach "seal" hook on main compilation - // so we ignore compilations that have parent. - // (mini-css-extract-plugin is one example of child compilations) - const compilationCompiler: IWebpackCompilerWithParentCompilation = - compilation.compiler - if (compilationCompiler.parentCompilation) { - return - } - - compilation.hooks.seal.tap(`webpack-dep-tree-plugin`, () => { - const state = store.getState() - const mapOfTemplatesToStaticQueryHashes = mapTemplatesToStaticQueryHashes( - state, - compilation - ) - - mapOfTemplatesToStaticQueryHashes.forEach( - (staticQueryHashes, componentPath) => { - if ( - !isEqual( - state.staticQueriesByTemplate.get(componentPath), - staticQueryHashes - ) - ) { - store.dispatch({ - type: `ADD_PENDING_TEMPLATE_DATA_WRITE`, - payload: { - componentPath, - pages: state.components.get(componentPath)?.pages ?? [], - }, - }) - store.dispatch({ - type: `SET_STATIC_QUERIES_BY_TEMPLATE`, - payload: { - componentPath, - staticQueryHashes, - }, - }) - } - } - ) - }) - }) - compiler.run((err, stats) => { - if (err) { + // stats can only be empty when an error occurs. Adding it to the if makes typescript happy. + if (err || !stats) { return reject(err) } - reportWebpackWarnings(stats) - if (stats.hasErrors()) { - const flattenStatsErrors = (stats: webpack.Stats): Array<Error> => [ - ...stats.compilation.errors, - ...flatMap(stats.compilation.children, child => - flattenStatsErrors(child.getStats()) - ), - ] - return reject(flattenStatsErrors(stats)) + return reject(stats.compilation.errors) } return resolve(stats) diff --git a/packages/gatsby/src/commands/build.ts b/packages/gatsby/src/commands/build.ts index 79c99a74827ce..b4ec3872d6428 100644 --- a/packages/gatsby/src/commands/build.ts +++ b/packages/gatsby/src/commands/build.ts @@ -20,7 +20,10 @@ import { store } from "../redux" import * as appDataUtil from "../utils/app-data" import { flush as flushPendingPageDataWrites } from "../utils/page-data" import * as WorkerPool from "../utils/worker/pool" -import { structureWebpackErrors } from "../utils/webpack-error-utils" +import { + structureWebpackErrors, + reportWebpackWarnings, +} from "../utils/webpack-error-utils" import { userGetsSevenDayFeedback, userPassesFeedbackRequestHeuristic, @@ -122,6 +125,10 @@ module.exports = async function build(program: IBuildArgs): Promise<void> { let stats try { stats = await buildProductionBundle(program, buildActivityTimer.span) + + if (stats.hasWarnings()) { + reportWebpackWarnings(stats.compilation.warnings, report) + } } catch (err) { buildActivityTimer.panic(structureWebpackErrors(Stage.BuildJavascript, err)) } finally { diff --git a/packages/gatsby/src/redux/actions/public.js b/packages/gatsby/src/redux/actions/public.js index dc719e67176ee..362e2e5e09fbd 100644 --- a/packages/gatsby/src/redux/actions/public.js +++ b/packages/gatsby/src/redux/actions/public.js @@ -50,6 +50,8 @@ const ensureWindowsDriveIsUppercase = filePath => { : filePath } +const deprecationWarnings = new Set() + const findChildren = initialChildren => { const children = [...initialChildren] const queue = [...initialChildren] @@ -944,6 +946,24 @@ actions.createParentChildLink = ( * @param {Object} config partial webpack config, to be merged into the current one */ actions.setWebpackConfig = (config: Object, plugin?: ?Plugin = null) => { + if (config.module?.rules) { + config.module.rules.forEach(rule => { + if (!rule.resolve) { + // TODO move message to gatsbyjs.com/docs - change to structured + const key = `${plugin.name}-setWebpackConfig` + if (!deprecationWarnings.has(key)) { + report.warn( + `[deprecation] ${plugin.name} added a new module rule to the webpack config without specyfing the resolve property. This option will become mandatory in the next release. For more information go to https://webpack.js.org/configuration/module/#ruleresolve` + ) + } + deprecationWarnings.add(key) + rule.resolve = { + fullySpecified: false, + } + } + }) + } + return { type: `SET_WEBPACK_CONFIG`, plugin, @@ -961,6 +981,24 @@ actions.setWebpackConfig = (config: Object, plugin?: ?Plugin = null) => { * @param {Object} config complete webpack config */ actions.replaceWebpackConfig = (config: Object, plugin?: ?Plugin = null) => { + if (config.module?.rules && plugin) { + config.module.rules.forEach(rule => { + if (!rule.resolve) { + // TODO move message to gatsbyjs.com/docs - change to structured + const key = `${plugin.name}-setWebpackConfig` + if (!deprecationWarnings.has(key)) { + report.warn( + `[deprecation] ${plugin.name} added a new module rule to the webpack config without specyfing the resolve property. This option will become mandatory in the next release. For more information go to https://webpack.js.org/configuration/module/#ruleresolve` + ) + } + deprecationWarnings.add(key) + rule.resolve = { + fullySpecified: false, + } + } + }) + } + return { type: `REPLACE_WEBPACK_CONFIG`, plugin, diff --git a/packages/gatsby/src/redux/types.ts b/packages/gatsby/src/redux/types.ts index d466256b24c29..19f8054643038 100644 --- a/packages/gatsby/src/redux/types.ts +++ b/packages/gatsby/src/redux/types.ts @@ -97,6 +97,14 @@ export interface IGatsbyStaticQueryComponents { query: string hash: string } + +export interface IGatsbyPageComponent { + componentPath: SystemPath + query: string + pages: Set<string> + isInBootstrap: boolean +} + export interface IDefinitionMeta { name: string def: DefinitionNode @@ -228,15 +236,7 @@ export interface IGatsbyState { deletedQueries: Set<Identifier> dirtyQueriesListToEmitViaWebsocket: Array<string> } - components: Map< - SystemPath, - { - componentPath: SystemPath - query: string - pages: Set<string> - isInBootstrap: boolean - } - > + components: Map<IGatsbyPageComponent["componentPath"], IGatsbyPageComponent> staticQueryComponents: Map< IGatsbyStaticQueryComponents["id"], IGatsbyStaticQueryComponents diff --git a/packages/gatsby/src/services/start-webpack-server.ts b/packages/gatsby/src/services/start-webpack-server.ts index 5337da46cd84f..6698b31938a8b 100644 --- a/packages/gatsby/src/services/start-webpack-server.ts +++ b/packages/gatsby/src/services/start-webpack-server.ts @@ -1,9 +1,7 @@ import openurl from "better-opn" import report from "gatsby-cli/lib/reporter" -import formatWebpackMessages from "react-dev-utils/formatWebpackMessages" import chalk from "chalk" import { Compiler } from "webpack" -import { isEqual } from "lodash" import { Stage } from "../commands/types" import { @@ -22,8 +20,6 @@ import { markWebpackStatusAsPending, markWebpackStatusAsDone, } from "../utils/webpack-status" -import { enqueueFlush } from "../utils/page-data" -import mapTemplatesToStaticQueryHashes from "../utils/map-templates-to-static-query-hashes" import { emitter } from "../redux" export async function startWebpackServer({ @@ -83,19 +79,12 @@ export async function startWebpackServer({ cancelDevJSNotice() } - // "done" event fires when Webpack has finished recompiling the bundle. - // Whether or not you have warnings or errors, you will get this event. - - // We have switched off the default Webpack output in WebpackDevServer - // options so we are going to "massage" the warnings and errors and present - // them in a readable focused way. - const messages = formatWebpackMessages(stats.toJson({}, true)) const urls = prepareUrls( program.https ? `https` : `http`, program.host, program.proxyPort ) - const isSuccessful = !messages.errors.length + const isSuccessful = !stats.hasErrors() if (isSuccessful && isFirstCompile) { // Show notices to users about potential experiments/feature flags they could @@ -122,7 +111,9 @@ export async function startWebpackServer({ isFirstCompile = false if (webpackActivity) { - reportWebpackWarnings(stats) + if (stats.hasWarnings()) { + reportWebpackWarnings(stats.compilation.warnings, report) + } if (!isSuccessful) { const errors = structureWebpackErrors( @@ -135,42 +126,6 @@ export async function startWebpackServer({ webpackActivity = null } - if (isSuccessful) { - const state = store.getState() - const mapOfTemplatesToStaticQueryHashes = mapTemplatesToStaticQueryHashes( - state, - stats.compilation - ) - - mapOfTemplatesToStaticQueryHashes.forEach( - (staticQueryHashes, componentPath) => { - if ( - !isEqual( - state.staticQueriesByTemplate.get(componentPath), - staticQueryHashes - ) - ) { - store.dispatch({ - type: `ADD_PENDING_TEMPLATE_DATA_WRITE`, - payload: { - componentPath, - pages: state.components.get(componentPath)?.pages ?? [], - }, - }) - store.dispatch({ - type: `SET_STATIC_QUERIES_BY_TEMPLATE`, - payload: { - componentPath, - staticQueryHashes, - }, - }) - } - } - ) - - enqueueFlush() - } - markWebpackStatusAsDone() done() emitter.emit(`COMPILATION_DONE`, stats) diff --git a/packages/gatsby/src/utils/__tests__/__snapshots__/develop-html-route.ts.snap b/packages/gatsby/src/utils/__tests__/__snapshots__/develop-html-route.ts.snap deleted file mode 100644 index 763a113a60a1b..0000000000000 --- a/packages/gatsby/src/utils/__tests__/__snapshots__/develop-html-route.ts.snap +++ /dev/null @@ -1,47 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`error parsing returns an object w/ the parsed error & codeframe 1`] = ` -Object { - "codeFrame": "<span style=\\"font-weight:normal;opacity:1;color:#452475;background:#ffffff;\\"> <span style=\\"color:#527713;\\"> 14 | </span> <span style=\\"color:#527713;\\">//console.log(post)</span></span> -<span style=\\"font-weight:normal;opacity:1;color:#452475;background:#ffffff;\\"> <span style=\\"color:#527713;\\"> 15 | </span></span> -<span style=\\"font-weight:normal;opacity:1;color:#452475;background:#ffffff;\\"><span style=\\"color:#096fb3;\\"><span style=\\"font-weight:bold;\\">></span></span><span style=\\"color:#527713;\\"> 16 | </span> let pizza <span style=\\"color:#DB3A00;\\">=</span> window<span style=\\"color:#DB3A00;\\">.</span>width2</span> -<span style=\\"font-weight:normal;opacity:1;color:#452475;background:#ffffff;\\"> <span style=\\"color:#527713;\\"> | </span> <span style=\\"color:#096fb3;\\"><span style=\\"font-weight:bold;\\">^</span></span></span> -<span style=\\"font-weight:normal;opacity:1;color:#452475;background:#ffffff;\\"> <span style=\\"color:#527713;\\"> 17 | </span> let tags</span> -<span style=\\"font-weight:normal;opacity:1;color:#452475;background:#ffffff;\\"> <span style=\\"color:#527713;\\"> 18 | </span> let tagsSection</span> -<span style=\\"font-weight:normal;opacity:1;color:#452475;background:#ffffff;\\"> <span style=\\"color:#527713;\\"> 19 | </span> <span style=\\"color:#006500;\\">if</span> (<span style=\\"color:#006500;\\">this</span><span style=\\"color:#DB3A00;\\">.</span>props<span style=\\"color:#DB3A00;\\">.</span>data<span style=\\"color:#DB3A00;\\">.</span>markdownRemark<span style=\\"color:#DB3A00;\\">.</span>fields<span style=\\"color:#DB3A00;\\">.</span>tagSlugs) {</span>", - "filename": "fixtures/blog-post.js", - "line": 16, - "message": "window is not defined", - "row": 17, - "stack": "ReferenceError: window is not defined - at BlogPostRoute.render (<HOME_DIR>/programs/blog/public/webpack:/lib/fixtures/blog-post.js:16:17) - at processChild (<HOME_DIR>/programs/blog/node_modules/react-dom/cjs/react-dom-server.node.development.js:3134:18) - at resolve (<HOME_DIR>/programs/blog/node_modules/react-dom/cjs/react-dom-server.node.development.js:2960:5) - at ReactDOMServerRenderer.render (<HOME_DIR>/programs/blog/node_modules/react-dom/cjs/react-dom-server.node.development.js:3435:22) - at ReactDOMServerRenderer.read (<HOME_DIR>/programs/blog/node_modules/react-dom/cjs/react-dom-server.node.development.js:3373:29) - at renderToString (<HOME_DIR>/programs/blog/node_modules/react-dom/cjs/react-dom-server.node.development.js:3988:27) - at Module.default (<HOME_DIR>/programs/blog/public/webpack:/lib/.cache/develop-static-entry.js:248:32) - at <HOME_DIR>/programs/blog/node_modules/gatsby/src/utils/worker/render-html.ts:32:11 - at <HOME_DIR>/programs/blog/node_modules/gatsby/src/utils/worker/render-html.ts:25:7 -From previous event: - at renderHTML (<HOME_DIR>/programs/blog/node_modules/gatsby/src/utils/worker/render-html.ts:22:18) - at <HOME_DIR>/programs/blog/node_modules/gatsby/src/utils/develop-html-route.ts:140:36 - at Layer.handle [as handle_request] (<HOME_DIR>/programs/blog/node_modules/express/lib/router/layer.js:95:5) - at next (<HOME_DIR>/programs/blog/node_modules/express/lib/router/route.js:137:13) - at Route.dispatch (<HOME_DIR>/programs/blog/node_modules/express/lib/router/route.js:112:3) - at Layer.handle [as handle_request] (<HOME_DIR>/programs/blog/node_modules/express/lib/router/layer.js:95:5) - at <HOME_DIR>/programs/blog/node_modules/express/lib/router/index.js:281:22 - at param (<HOME_DIR>/programs/blog/node_modules/express/lib/router/index.js:354:14) - at param (<HOME_DIR>/programs/blog/node_modules/express/lib/router/index.js:365:14) - at Function.process_params (<HOME_DIR>/programs/blog/node_modules/express/lib/router/index.js:410:3) - at next (<HOME_DIR>/programs/blog/node_modules/express/lib/router/index.js:275:10) - at cors (<HOME_DIR>/programs/blog/node_modules/cors/lib/index.js:188:7) - at <HOME_DIR>/programs/blog/node_modules/cors/lib/index.js:224:17 - at originCallback (<HOME_DIR>/programs/blog/node_modules/cors/lib/index.js:214:15) - at <HOME_DIR>/programs/blog/node_modules/cors/lib/index.js:219:13 - at optionsCallback (<HOME_DIR>/programs/blog/node_modules/cors/lib/index.js:199:9) - at corsMiddleware (<HOME_DIR>/programs/blog/node_modules/cors/lib/index.js:204:7) - at Layer.handle [as handle_request] (<HOME_DIR>/programs/blog/node_modules/express/lib/router/layer.js:95:5)", - "type": "ReferenceError", -} -`; diff --git a/packages/gatsby/src/utils/__tests__/__snapshots__/webpack-utils.ts.snap b/packages/gatsby/src/utils/__tests__/__snapshots__/webpack-utils.ts.snap index a2a1f50ac7037..35ec3f2d86a81 100644 --- a/packages/gatsby/src/utils/__tests__/__snapshots__/webpack-utils.ts.snap +++ b/packages/gatsby/src/utils/__tests__/__snapshots__/webpack-utils.ts.snap @@ -3,6 +3,9 @@ exports[`webpack utils dependencies returns default values without any options 1`] = ` Object { "exclude": [Function], + "resolve": Object { + "fullySpecified": false, + }, "test": /\\\\\\.\\(js\\|mjs\\)\\$/, "type": "javascript/auto", "use": Array [ @@ -32,6 +35,9 @@ Object { exports[`webpack utils js returns default values without any options 1`] = ` Object { "include": [Function], + "resolve": Object { + "fullySpecified": false, + }, "test": /\\\\\\.\\(js\\|mjs\\|jsx\\)\\$/, "type": "javascript/auto", "use": Array [ diff --git a/packages/gatsby/src/utils/__tests__/develop-html-route.ts b/packages/gatsby/src/utils/__tests__/develop-html-route.ts deleted file mode 100644 index e427f258d30a2..0000000000000 --- a/packages/gatsby/src/utils/__tests__/develop-html-route.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { parseError } from "../dev-ssr/render-dev-html-child" -import error from "./fixtures/error-object" - -describe(`error parsing`, () => { - it(`returns an object w/ the parsed error & codeframe`, () => { - expect( - parseError({ - err: error, - directory: __dirname, - componentPath: __filename, - }) - ).toMatchSnapshot() - }) -}) diff --git a/packages/gatsby/src/utils/__tests__/map-templates-to-static-query-hashes.js b/packages/gatsby/src/utils/__tests__/map-templates-to-static-query-hashes.js deleted file mode 100644 index c8c0499808bac..0000000000000 --- a/packages/gatsby/src/utils/__tests__/map-templates-to-static-query-hashes.js +++ /dev/null @@ -1,78 +0,0 @@ -import path from "path" -import { slash } from "gatsby-core-utils" -import mapTemplatesToStaticQueryHashes from "../map-templates-to-static-query-hashes" - -const page1 = slash(`${process.cwd()}/src/pages/index.js`) -const page2 = slash(`${process.cwd()}/src/pages/pages-2.js`) -const components = new Map() -components.set(page1, { - componentPath: page1, - query: ``, - pages: new Set([`/`]), -}) - -components.set(page2, { - componentPath: page2, - query: ``, - pages: new Set([`/`]), -}) - -const staticQueryComponents = new Map() -staticQueryComponents.set(`sq--src-components-image-js`, { - id: `sq--src-components-image-js`, - componentPath: slash(`${process.cwd()}/src/components/image.js`), - query: `query { placeholderImage: file(relativePath: {eq: "gatsby-astronaut.png"}) { public { publicUrl } } }`, - hash: 1, -}) -staticQueryComponents.set(`sq--src-components-seo-js`, { - id: `sq--src-components-seo-js`, - componentPath: slash(`${process.cwd()}/src/components/seo.js`), - query: `query { site { siteMetadata { title } } }`, - hash: 2, -}) - -const createModule = (resource, reasons = []) => { - return { - hasReasons: () => !!reasons.length, - identifier: () => resource, - resource: path.join(process.cwd(), resource), - reasons: reasons.map(r => { - return { - module: r, - } - }), - } -} - -describe(`map-templates-to-static-query-hashes`, () => { - it(`should map static-queries to a component file on all platforms`, () => { - const asyncRequires = createModule( - `.cache/_this_is_virtual_fs_path_/$virtual/async-requires.js` - ) - - const templateMap = mapTemplatesToStaticQueryHashes( - { - components, - staticQueryComponents, - }, - { - modules: [ - createModule(`src/components/layout.js`, [ - createModule(`src/pages/index.js`, [asyncRequires]), - createModule(`src/pages/pages-2.js`, [asyncRequires]), - ]), - createModule(`src/components/image.js`, [ - createModule(`src/pages/index.js`, [asyncRequires]), - ]), - createModule(`src/components/seo.js`, [ - createModule(`src/pages/pages-2.js`, [asyncRequires]), - ]), - ], - } - ) - - expect(templateMap.size).toBe(2) - expect(templateMap.get(page1)).toEqual([`1`]) - expect(templateMap.get(page2)).toEqual([`2`]) - }) -}) diff --git a/packages/gatsby/src/utils/__tests__/webpack-error-utils.ts b/packages/gatsby/src/utils/__tests__/webpack-error-utils.ts index 3a0cac905bdad..781ad4afd452f 100644 --- a/packages/gatsby/src/utils/__tests__/webpack-error-utils.ts +++ b/packages/gatsby/src/utils/__tests__/webpack-error-utils.ts @@ -1,3 +1,4 @@ +import ModuleNotFoundError from "webpack/lib/ModuleNotFoundError" import { structureWebpackErrors } from "../webpack-error-utils" import { Stage } from "../../commands/types" @@ -11,14 +12,19 @@ describe(`structureWebpackErrors`, () => { describe.each(stages)(`stage: %s`, (stage: Stage) => { it(`Can't resolve (98124)`, () => { - const error = new Error(`Can't resolve 'wat.js' in 'foo.js'`) as any - error.module = { resource: `foo.js` } - error.error = { - loc: { - line: 5, - column: 10, + const error = new ModuleNotFoundError( + { + resource: `foo.js`, }, - } + { + message: `Can't resolve 'wat.js' in 'foo.js'`, + loc: { + line: 5, + column: 10, + }, + } + ) + let structuredError = structureWebpackErrors(stage, error) if (Array.isArray(structuredError)) { structuredError = structuredError[0] diff --git a/packages/gatsby/src/utils/__tests__/webpack-utils.ts b/packages/gatsby/src/utils/__tests__/webpack-utils.ts index 4e03c042e4ddf..39ccc3db8b12f 100644 --- a/packages/gatsby/src/utils/__tests__/webpack-utils.ts +++ b/packages/gatsby/src/utils/__tests__/webpack-utils.ts @@ -188,7 +188,7 @@ describe(`webpack utils`, () => { postcss = config.loaders.postcss() }) it(`initialises autoprefixer with defaults`, () => { - postcss.options.plugins(postcss.loader) + postcss.options.postcssOptions(postcss.loader) expect(autoprefixer).toBeCalled() expect(autoprefixer).toBeCalledWith({ flexbox: `no-2009`, @@ -209,7 +209,7 @@ describe(`webpack utils`, () => { }) }) it(`initialises autoprefixer with overrides`, () => { - postcss.options.plugins(postcss.loader) + postcss.options.postcssOptions(postcss.loader) expect(autoprefixer).toBeCalled() expect(autoprefixer).toBeCalledWith({ flexbox: `no-2009`, diff --git a/packages/gatsby/src/utils/dev-ssr/__tests__/develop-html-route.ts b/packages/gatsby/src/utils/dev-ssr/__tests__/develop-html-route.ts new file mode 100644 index 0000000000000..d80c46b574c22 --- /dev/null +++ b/packages/gatsby/src/utils/dev-ssr/__tests__/develop-html-route.ts @@ -0,0 +1,25 @@ +import * as os from "os" +import { parseError } from "../render-dev-html-child" +import error from "./fixtures/error-object" + +describe(`error parsing`, () => { + it(`returns an object w/ the parsed error & codeframe`, () => { + // stack traces have real paths so \\, the fixture does not have them + if (os.platform() === `win32`) { + error.stack = error.stack.replace(/\//g, `\\`) + } + + const parsedError = parseError({ + err: error, + directory: __dirname, + componentPath: __filename, + }) + + expect(parsedError).toMatchObject({ + filename: `fixtures/blog-post.js`, + message: `window is not defined`, + type: `ReferenceError`, + stack: expect.any(String), + }) + }) +}) diff --git a/packages/gatsby/src/utils/__tests__/fixtures/error-object.js b/packages/gatsby/src/utils/dev-ssr/__tests__/fixtures/error-object.js similarity index 100% rename from packages/gatsby/src/utils/__tests__/fixtures/error-object.js rename to packages/gatsby/src/utils/dev-ssr/__tests__/fixtures/error-object.js diff --git a/packages/gatsby/src/utils/dev-ssr/render-dev-html-child.js b/packages/gatsby/src/utils/dev-ssr/render-dev-html-child.js index 2e3c1054e0076..b071b1bcb5e1d 100644 --- a/packages/gatsby/src/utils/dev-ssr/render-dev-html-child.js +++ b/packages/gatsby/src/utils/dev-ssr/render-dev-html-child.js @@ -3,6 +3,7 @@ const { codeFrameColumns } = require(`@babel/code-frame`) const ansiHTML = require(`ansi-html`) const fs = require(`fs-extra`) const sysPath = require(`path`) +const { slash } = require(`gatsby-core-utils`) const getPosition = function (stackObject) { let filename @@ -33,9 +34,9 @@ const getPosition = function (stackObject) { row = 0 } return { - filename: filename, - line: line, - row: row, + filename, + line, + row, } } // Colors taken from Gatsby's design tokens @@ -61,7 +62,7 @@ const parseError = function ({ err, directory, componentPath }) { directory, // Don't need to use path.sep as webpack always uses a single forward slash // as a path separator. - ...position.filename.split(`/`).slice(2) + ...position.filename.split(sysPath.sep).slice(2) ) const splitMessage = err.message ? err.message.split(`\n`) : [``] @@ -76,7 +77,7 @@ const parseError = function ({ err, directory, componentPath }) { ? componentPath : filename const data = { - filename: sysPath.relative(directory, trueFileName), + filename: slash(sysPath.relative(directory, trueFileName)), message: message, type: type, stack: stack, @@ -153,7 +154,7 @@ exports.renderHTML = ({ // Only generate error pages for webpack errors. If it's not a webpack // error, it's not a user error so probably a system error so we'll just // panic and quit. - const regex = /webpack:\/lib\//gm + const regex = /webpack:[/\\]/gm const moduleBuildFailed = /Module.build.failed/gm if (stack.match(moduleBuildFailed)) { reject(`500 page`) diff --git a/packages/gatsby/src/utils/eslint-rules-helpers.ts b/packages/gatsby/src/utils/eslint-rules-helpers.ts index 2cf1cd0f0fa3b..cfa2784d25a96 100644 --- a/packages/gatsby/src/utils/eslint-rules-helpers.ts +++ b/packages/gatsby/src/utils/eslint-rules-helpers.ts @@ -1,4 +1,5 @@ import { Rule } from "eslint" +import { slash } from "gatsby-core-utils" import { GatsbyReduxStore } from "../redux" export function isPageTemplate( @@ -9,7 +10,8 @@ export function isPageTemplate( if (!filename) { return false } - return s.getState().components.has(filename) + + return s.getState().components.has(slash(filename)) } export function test(t): any { diff --git a/packages/gatsby/src/utils/map-templates-to-static-query-hashes.ts b/packages/gatsby/src/utils/map-templates-to-static-query-hashes.ts deleted file mode 100644 index 359a659c7d89f..0000000000000 --- a/packages/gatsby/src/utils/map-templates-to-static-query-hashes.ts +++ /dev/null @@ -1,213 +0,0 @@ -import { uniqBy, List } from "lodash" -import path from "path" -import { slash } from "gatsby-core-utils" -import { IGatsbyState } from "../redux/types" -import { Stats } from "webpack" - -interface ICompilation { - modules: Array<IModule> -} - -interface IReason extends Omit<Stats.Reason, "module"> { - module: IModule -} - -interface IModule extends Omit<Stats.FnModules, "identifier" | "reasons"> { - hasReasons: () => boolean - resource?: string - identifier: () => string - reasons: Array<IReason> -} - -/* When we traverse upwards, we need to know where to stop. We'll call these terminal nodes. - * `async-requires.js` is the entry point for every page, while `api-runner-browser-plugins.js` - * is the one for `gatsby-browser` (where one would use wrapRootElement or wrapPageElement APIs) - */ -const entryNodes = [ - `.cache/api-runner-browser-plugins.js`, - `.cache/_this_is_virtual_fs_path_/$virtual/async-requires.js`, -] - -/* This function takes the current Redux state and a compilation - * object from webpack and returns a map of unique templates - * to static queries included in each (as hashes). - * - * This isn't super straightforward because templates may include - * deep component trees with static queries present at any depth. - * This is why it is necessary to map templates to all their (user land and node_modules) - * dependencies first and then map those dependencies to known static queries. - * - * Also, Gatsby makes it possible to wrap an entire site or page with a layout - * or other component(s) via the wrapRootElement and wrapPageElement APIs. These must - * also be handled when computing static queries for a page. - * - * Let's go through the implementation step by step. - */ -export default function mapTemplatesToStaticQueryHashes( - reduxState: IGatsbyState, - compilation: ICompilation -): Map<string, Array<number>> { - /* The `staticQueryComponents` slice of state is useful because - * it is a pre extracted collection of all static queries found in a Gatsby site. - * This lets us traverse upwards from those to templates that - * may contain components that contain them. - * Note that this upward traversal is much shallower (and hence more performant) - * than an equivalent downward one from an entry point. - */ - const { components, staticQueryComponents } = reduxState - const { modules } = compilation - - /* We call the queries included above a page (via wrapRootElement or wrapPageElement APIs) - * global queries. For now, we include these in every single page for simplicity. Overhead - * here is not much since we are storing hashes (that reference separate result files) - * as opposed to inlining results. We may move these to app-data perhaps in the future. - */ - const globalStaticQueries = new Set<string>() - - /* This function takes a webpack module corresponding - * to the file containing a static query and returns - * a Set of strings, each an absolute path of a dependent - * of this module - */ - function getDeps(mod: IModule): Set<string> { - const staticQueryModuleComponentPath = mod.resource - const result = new Set<string>() - const seen = new Set<string>( - staticQueryModuleComponentPath ? [staticQueryModuleComponentPath] : [] - ) - - // This is the body of the recursively called function - function getDepsRec(m: IModule, seen: Set<string>): Set<string> { - // Reasons in webpack are literally reasons of why this module was included in the tree - const hasReasons = m.hasReasons() - - // Is this node one of our known terminal nodes? See explanation above - const isEntryNode = entryNodes.some(entryNode => - m?.resource?.includes(entryNode) - ) - - // Exit if we don't have any reasons or we have reached a possible terminal node - if (!hasReasons || isEntryNode) { - return result - } - - // These are non terminal dependents and hence modules that need - // further upward traversal - const nonTerminalDependents: List<IModule> = m.reasons - .filter(r => { - const dependentModule = r.module - const isTerminal = entryNodes.some(entryNode => - dependentModule?.resource?.includes(entryNode) - ) - return !isTerminal - }) - .map(r => r.module) - .filter(Boolean) - .filter(r => !r.resource || !seen.has(r.resource)) - - const uniqDependents = uniqBy(nonTerminalDependents, d => d?.identifier()) - - for (const uniqDependent of uniqDependents) { - if (uniqDependent.resource) { - result.add(slash(uniqDependent.resource)) - // Queries used in gatsby-browser are global and should be added to all pages - if (isGatsbyBrowser(uniqDependent)) { - if (staticQueryModuleComponentPath) { - globalStaticQueries.add(slash(staticQueryModuleComponentPath)) - } - } else { - seen.add(uniqDependent.resource) - } - } - - getDepsRec(uniqDependent, seen) - } - - return result - } - - return getDepsRec(mod, seen) - } - - const mapOfStaticQueryComponentsToDependants = new Map() - - // For every known static query, we get its dependents. - staticQueryComponents.forEach(({ componentPath }) => { - // componentPaths are slashed by gatsby-core-utils we undo it - const nonSlashedPath = path.resolve(componentPath) - - const staticQueryComponentModule = modules.find( - m => m.resource === nonSlashedPath - ) - const dependants = staticQueryComponentModule - ? getDeps(staticQueryComponentModule) - : new Set() - - mapOfStaticQueryComponentsToDependants.set(componentPath, dependants) - }) - - const mapOfComponentsToStaticQueryHashes = mapComponentsToStaticQueryHashes( - staticQueryComponents - ) - - const globalStaticQueryHashes: Array<string> = [] - - globalStaticQueries.forEach(q => { - const hash = mapOfComponentsToStaticQueryHashes.get(q) - if (hash) { - globalStaticQueryHashes.push(hash) - } - }) - - // For every known page, we get queries - const mapOfTemplatesToStaticQueryHashes = new Map() - - components.forEach(page => { - const staticQueryHashes = [...globalStaticQueryHashes] - - // Does this page contain an inline static query? - if (mapOfComponentsToStaticQueryHashes.has(page.componentPath)) { - const hash = mapOfComponentsToStaticQueryHashes.get(page.componentPath) - if (hash) { - staticQueryHashes.push(hash) - } - } - - // Check dependencies - mapOfStaticQueryComponentsToDependants.forEach( - (setOfDependants, staticQueryComponentPath) => { - if (setOfDependants.has(page.componentPath)) { - const hash = mapOfComponentsToStaticQueryHashes.get( - staticQueryComponentPath - ) - if (hash) { - staticQueryHashes.push(hash) - } - } - } - ) - - mapOfTemplatesToStaticQueryHashes.set( - page.componentPath, - staticQueryHashes.sort().map(String) - ) - }) - - return mapOfTemplatesToStaticQueryHashes -} - -function mapComponentsToStaticQueryHashes( - staticQueryComponents: IGatsbyState["staticQueryComponents"] -): Map<string, string> { - const map = new Map() - - staticQueryComponents.forEach(({ componentPath, hash }) => { - map.set(componentPath, hash) - }) - - return map -} - -function isGatsbyBrowser(m: IModule): boolean { - return !!m?.resource?.includes(`gatsby-browser.js`) -} diff --git a/packages/gatsby/src/utils/start-server.ts b/packages/gatsby/src/utils/start-server.ts index 27e06034c40c0..6475ed6984b4e 100644 --- a/packages/gatsby/src/utils/start-server.ts +++ b/packages/gatsby/src/utils/start-server.ts @@ -1,7 +1,5 @@ import webpackHotMiddleware from "webpack-hot-middleware" -import webpackDevMiddleware, { - WebpackDevMiddleware, -} from "webpack-dev-middleware" +import webpackDevMiddleware from "webpack-dev-middleware" import got from "got" import webpack from "webpack" import express from "express" @@ -63,20 +61,11 @@ interface IServer { webpackWatching: IWebpackWatchingPauseResume } -export interface IWebpackWatchingPauseResume extends webpack.Watching { +export interface IWebpackWatchingPauseResume { suspend: () => void resume: () => void } -// context seems to be public, but not documented API -// see https://github.com/webpack/webpack-dev-middleware/issues/656 -type PatchedWebpackDevMiddleware = WebpackDevMiddleware & - express.RequestHandler & { - context: { - watching: IWebpackWatchingPauseResume - } - } - export async function startServer( program: IProgram, app: Express, @@ -346,33 +335,40 @@ module.exports = { // We serve by default an empty index.html that sets up the dev environment. app.use(developStatic(`public`, { index: false })) - const webpackDevMiddlewareInstance = (webpackDevMiddleware(compiler, { - logLevel: `silent`, + const webpackDevMiddlewareInstance = webpackDevMiddleware(compiler, { publicPath: devConfig.output.publicPath, - watchOptions: devConfig.devServer ? devConfig.devServer.watchOptions : null, stats: `errors-only`, serverSideRender: true, - }) as unknown) as PatchedWebpackDevMiddleware + }) app.use(webpackDevMiddlewareInstance) app.get(`/__original-stack-frame`, async (req, res) => { - const { - webpackStats: { - compilation: { modules }, - }, - } = res.locals + const compilation = res.locals?.webpack?.devMiddleware?.stats?.compilation const emptyResponse = { codeFrame: `No codeFrame could be generated`, sourcePosition: null, sourceContent: null, } + if (!compilation) { + res.json(emptyResponse) + return + } + const moduleId = req?.query?.moduleId const lineNumber = parseInt(req.query.lineNumber, 10) const columnNumber = parseInt(req.query.columnNumber, 10) - const fileModule = modules.find(m => m.id === moduleId) + let fileModule + for (const module of compilation.modules) { + const moduleIdentifier = compilation.chunkGraph.getModuleId(module) + if (moduleIdentifier === moduleId) { + fileModule = module + break + } + } + const sourceMap = fileModule?._source?._sourceMap if (!sourceMap) { diff --git a/packages/gatsby/src/utils/webpack-error-utils.ts b/packages/gatsby/src/utils/webpack-error-utils.ts index e350c9442373a..24d788dcf78af 100644 --- a/packages/gatsby/src/utils/webpack-error-utils.ts +++ b/packages/gatsby/src/utils/webpack-error-utils.ts @@ -1,7 +1,7 @@ -import reporter from "gatsby-cli/lib/reporter" -import { Stats } from "webpack" -import { IMatch } from "../types" +import { Reporter } from "gatsby-cli/lib/reporter/reporter" +import { WebpackError, Module, NormalModule } from "webpack" import { Stage as StageEnum } from "../commands/types" +import formatWebpackMessages from "react-dev-utils/formatWebpackMessages" const stageCodeToReadableLabel: Record<StageEnum, string> = { [StageEnum.BuildJavascript]: `Generating JavaScript bundles`, @@ -10,11 +10,35 @@ const stageCodeToReadableLabel: Record<StageEnum, string> = { [StageEnum.Develop]: `Generating development JavaScript bundle`, } +interface IFileLocation { + line: number + column: number +} + +interface IWebpackError { + name: string + message: string + file?: string + error?: { + message: string + loc?: { + start: IFileLocation + end: IFileLocation + } + } + module: Module + loc?: { + start: IFileLocation + end: IFileLocation + } +} + interface ITransformedWebpackError { id: string - filePath?: string + filePath: string location?: { - start: string + start: IFileLocation + end: IFileLocation } context: { stage: StageEnum @@ -26,81 +50,81 @@ interface ITransformedWebpackError { const transformWebpackError = ( stage: StageEnum, - webpackError: any + webpackError: WebpackError ): ITransformedWebpackError => { - const handlers = [ - { - regex: /Can't resolve '(.*?)' in '(.*?)'/m, - cb: (match): IMatch => { - return { - id: `98124`, - context: { - sourceMessage: match[0], - packageName: match[1], - }, - } - }, - }, - ] - - const webpackMessage = webpackError?.error?.message || webpackError?.message - - const shared = { - filePath: webpackError?.module?.resource, - location: - webpackError?.module?.resource && webpackError?.error?.loc - ? { - start: webpackError.error.loc, - } - : undefined, - context: { - stage, - stageLabel: stageCodeToReadableLabel[stage], - sourceMessage: webpackMessage, - }, - // We use original error to display stack trace for the most part. - // In case of webpack error stack will include internals of webpack - // or one of loaders (for example babel-loader) and doesn't provide - // much value to user, so it's purposely omitted. + const castedWebpackError = (webpackError as unknown) as IWebpackError - // error: webpackError?.error || webpackError, + let location + if (castedWebpackError.loc && castedWebpackError.loc.start) { + location = { + start: castedWebpackError.loc.start, + end: castedWebpackError.loc.end, + } } - let structured: ITransformedWebpackError | undefined - - for (const { regex, cb } of handlers) { - const matched = webpackMessage?.match(regex) - if (matched) { - const match = cb(matched) + if (!location && castedWebpackError.error?.loc) { + if (castedWebpackError.error.loc.start) { + location = castedWebpackError.error.loc + } else { + location = { + start: castedWebpackError.error.loc, + } + } + } - structured = { - id: match.id, - ...shared, - context: { - ...shared.context, - packageName: match.context.packageName, - sourceMessage: match.context.sourceMessage, + // try to get location out of stacktrace + if (!location) { + const matches = castedWebpackError.message.match(/\((\d+):(\d+)\)/) + if (matches && matches[1] && matches[2]) { + location = { + start: { + line: Number(matches[1]), + column: Number(matches[2]), }, } - - break } } - // If we haven't found any known error - if (!structured) { - return { - id: `98123`, - ...shared, - } + let id = `98123` + const context: ITransformedWebpackError["context"] = { + stage, + stageLabel: stageCodeToReadableLabel[stage], + // TODO use formatWebpackMessages like in warnings + sourceMessage: + castedWebpackError.error?.message ?? castedWebpackError.message, + } + + // When a module cannot be found we can short circuit + if (castedWebpackError.name === `ModuleNotFoundError`) { + const matches = + castedWebpackError.error?.message.match( + /Can't resolve '(.*?)' in '(.*?)'/m + ) ?? [] + + id = `98124` + context.packageName = matches?.[1] + context.sourceMessage = matches?.[0] } - return structured + return { + id, + filePath: + (castedWebpackError?.module as NormalModule)?.resource ?? + castedWebpackError.file, + location, + context, + // We use original error to display stack trace for the most part. + // In case of webpack error stack will include internals of webpack + // or one of loaders (for example babel-loader) and doesn't provide + // much value to user, so it's purposely omitted. + + // error: webpackError?.error || webpackError, + } } export const structureWebpackErrors = ( stage: StageEnum, - webpackError: any + webpackError: WebpackError | Array<WebpackError> ): Array<ITransformedWebpackError> | ITransformedWebpackError => { if (Array.isArray(webpackError)) { return webpackError.map(e => transformWebpackError(stage, e)) @@ -109,13 +133,14 @@ export const structureWebpackErrors = ( return transformWebpackError(stage, webpackError) } -export const reportWebpackWarnings = (stats: Stats): void => { - stats.compilation.warnings.forEach(webpackWarning => { - if (webpackWarning.warning) { - // grab inner Exception if it exists - reporter.warn(webpackWarning.warning.toString()) - } else { - reporter.warn(webpackWarning.message) - } - }) +export const reportWebpackWarnings = ( + warnings: Array<WebpackError>, + reporter: Reporter +): void => { + const warningMessages = warnings.map(warning => warning.message) + + formatWebpackMessages({ + errors: [], + warnings: warningMessages, + }).warnings.forEach(warning => reporter.warn(warning)) } diff --git a/packages/gatsby/src/utils/webpack-plugins.ts b/packages/gatsby/src/utils/webpack-plugins.ts index adc4da75388b6..add1ea7725ad0 100644 --- a/packages/gatsby/src/utils/webpack-plugins.ts +++ b/packages/gatsby/src/utils/webpack-plugins.ts @@ -2,10 +2,16 @@ import webpack, { Plugin } from "webpack" const plugin = ( name: string, - optimize?: boolean -): ((...args: any) => Plugin) => { + optimize?: boolean, + deprecationReason?: string +): ((...args: any) => Plugin) => (...args: any): Plugin => { + if (deprecationReason) { + // TODO add proper deprecation function to reporter + console.warn(`[deprecated]: ${deprecationReason}`) + } + const WebpackPlugin = (optimize ? webpack.optimize : webpack)[name] - return (...args: any): Plugin => new WebpackPlugin(...args) + return new WebpackPlugin(...args) } export const builtinPlugins = { @@ -26,7 +32,11 @@ export const builtinPlugins = { extendedAPI: plugin(`ExtendedAPIPlugin`), externals: plugin(`ExternalsPlugin`), jsonpTemplate: plugin(`JsonpTemplatePlugin`), - libraryTemplate: plugin(`LibraryTemplatePlugin`), + libraryTemplate: plugin( + `LibraryTemplatePlugin`, + false, + `plugins.libraryTemplate is deprecated and has been replaced by compilation.outputOptions.library or compilation.addEntry + passing a library option` + ), loaderTarget: plugin(`LoaderTargetPlugin`), memoryOutputFile: plugin(`MemoryOutputFileSystem`), progress: plugin(`ProgressPlugin`), @@ -45,7 +55,11 @@ export const builtinPlugins = { moduleFilenameH: plugin(`ModuleFilenameHelpers`), aggressiveMerging: plugin(`AggressiveMergingPlugin`, true), - aggressiveSplitting: plugin(`AggressiveSplittingPlugin`, true), + aggressiveSplitting: plugin( + `AggressiveSplittingPlugin`, + true, + `plugins.aggressiveSplitting is deprecated in favor of plugins.splitChunks.` + ), splitChunks: plugin(`SplitChunks`, true), chunkModuleIdRange: plugin(`ChunkModuleIdRangePlugin`, true), dedupe: plugin(`DedupePlugin`, true), diff --git a/packages/gatsby/src/utils/webpack-utils.ts b/packages/gatsby/src/utils/webpack-utils.ts index dcb6fee9253c0..3d70b713ff811 100644 --- a/packages/gatsby/src/utils/webpack-utils.ts +++ b/packages/gatsby/src/utils/webpack-utils.ts @@ -6,10 +6,9 @@ import autoprefixer from "autoprefixer" import flexbugs from "postcss-flexbugs-fixes" import TerserPlugin from "terser-webpack-plugin" import MiniCssExtractPlugin from "mini-css-extract-plugin" -import OptimizeCssAssetsPlugin from "optimize-css-assets-webpack-plugin" +import CssMinimizerPlugin from "css-minimizer-webpack-plugin" import ReactRefreshWebpackPlugin from "@pmmmwh/react-refresh-webpack-plugin" import { getBrowsersList } from "./browserslist" -import semver from "semver" import { GatsbyWebpackStatsExtractor } from "./gatsby-webpack-stats-extractor" import { GatsbyWebpackEslintGraphqlSchemaReload } from "./gatsby-webpack-eslint-graphql-schema-reload-plugin" @@ -36,17 +35,40 @@ type PluginFactory = (...args: any) => Plugin type BuiltinPlugins = typeof builtinPlugins +type CSSModulesOptions = + | boolean + | string + | { + mode?: "local" | "global" | "pure" | Function + auto?: boolean + exportGlobals?: boolean + localIdentName?: string + localIdentContext?: string + localIdentHashPrefix?: string + namedExport?: boolean + exportLocalsConvention?: + | "asIs" + | "camelCaseOnly" + | "camelCase" + | "dashes" + | "dashesOnly" + exportOnlyLocals?: boolean + } + /** * Utils that produce webpack `loader` objects */ interface ILoaderUtils { - json: LoaderResolver yaml: LoaderResolver - null: LoaderResolver - raw: LoaderResolver - style: LoaderResolver - css: LoaderResolver + css: LoaderResolver<{ + url?: boolean | Function + import?: boolean | Function + modules?: CSSModulesOptions + sourceMap?: boolean + importLoaders?: number + esModule?: boolean + }> postcss: LoaderResolver<{ browsers?: Array<string> overrideBrowserslist?: Array<string> @@ -159,8 +181,6 @@ export const createWebpackUtils = ( return rule } - let ident = 0 - const loaders: ILoaderUtils = { json: (options = {}) => { return { @@ -168,7 +188,6 @@ export const createWebpackUtils = ( loader: require.resolve(`json-loader`), } }, - yaml: (options = {}) => { return { options, @@ -198,48 +217,42 @@ export const createWebpackUtils = ( }, miniCssExtract: (options = {}) => { - if (PRODUCTION) { - // production always uses MiniCssExtractPlugin - return { - loader: MiniCssExtractPlugin.loader, - options, - } - } else if (process.env.GATSBY_EXPERIMENTAL_DEV_SSR) { - // develop with ssr also uses MiniCssExtractPlugin - return { - loader: MiniCssExtractPlugin.loader, - options: { - ...options, - // enable hmr for browser bundle, ssr bundle doesn't need it - hmr: stage === `develop`, - }, - } - } else { - // develop without ssr is using style-loader - return { - loader: require.resolve(`style-loader`), - options, - } + return { + loader: MiniCssExtractPlugin.loader, + options, } }, css: (options = {}) => { + let modulesOptions: CSSModulesOptions = false + if (options.modules) { + modulesOptions = { + auto: false, + localIdentName: `[name]--[local]--[hash:base64:5]`, + exportLocalsConvention: `dashesOnly`, + exportOnlyLocals: isSSR, + } + + if (typeof options.modules === `object`) { + modulesOptions = { + ...modulesOptions, + ...options.modules, + } + } + } + return { - loader: isSSR - ? require.resolve(`css-loader/locals`) - : require.resolve(`css-loader`), + loader: require.resolve(`css-loader`), options: { + url: false, sourceMap: !PRODUCTION, - camelCase: `dashesOnly`, - // https://github.com/webpack-contrib/css-loader/issues/406 - localIdentName: `[name]--[local]--[hash:base64:5]`, - ...options, + modules: modulesOptions, }, } }, postcss: (options = {}) => { - let { + const { plugins, overrideBrowserslist = supportedBrowsers, ...postcssOpts @@ -248,23 +261,33 @@ export const createWebpackUtils = ( return { loader: require.resolve(`postcss-loader`), options: { - ident: `postcss-${++ident}`, + execute: false, sourceMap: !PRODUCTION, - plugins: (loader: Loader): Array<postcss.Plugin<any>> => { - plugins = - (typeof plugins === `function` ? plugins(loader) : plugins) || [] + // eslint-disable-next-line @typescript-eslint/explicit-function-return-type + postcssOptions: (loaderContext: any) => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let postCSSPlugins: Array<postcss.Plugin<any>> = [] + if (plugins) { + postCSSPlugins = + typeof plugins === `function` ? plugins(loaderContext) : plugins + } const autoprefixerPlugin = autoprefixer({ overrideBrowserslist, flexbox: `no-2009`, - ...((plugins.find( + ...((postCSSPlugins.find( plugin => plugin.postcssPlugin === `autoprefixer` ) as autoprefixer.Autoprefixer)?.options ?? {}), }) - return [flexbugs, autoprefixerPlugin, ...plugins] + postCSSPlugins.unshift(autoprefixerPlugin) + postCSSPlugins.unshift(flexbugs) + + return { + plugins: postCSSPlugins, + ...postcssOpts, + } }, - ...postcssOpts, }, } }, @@ -339,20 +362,6 @@ export const createWebpackUtils = ( loader: require.resolve(`eslint-loader`), } }, - - imports: (options = {}) => { - return { - options, - loader: require.resolve(`imports-loader`), - } - }, - - exports: (options = {}) => { - return { - options, - loader: require.resolve(`exports-loader`), - } - }, } /** @@ -373,6 +382,9 @@ export const createWebpackUtils = ( } = {}): RuleSetRule => { return { test: /\.(js|mjs|jsx)$/, + resolve: { + fullySpecified: false, + }, include: (modulePath: string): boolean => { // when it's not coming from node_modules we treat it as a source file. if (!vendorRegex.test(modulePath)) { @@ -466,6 +478,9 @@ export const createWebpackUtils = ( return { test: /\.(js|mjs)$/, + resolve: { + fullySpecified: false, + }, exclude: (modulePath: string): boolean => { // If dep is user land code, exclude if (!vendorRegex.test(modulePath)) { @@ -515,7 +530,8 @@ export const createWebpackUtils = ( rules.yaml = (): RuleSetRule => { return { test: /\.ya?ml$/, - use: [loaders.json(), loaders.yaml()], + type: `json`, + use: [loaders.yaml()], } } @@ -568,13 +584,10 @@ export const createWebpackUtils = ( const css: IRuleUtils["css"] = (options = {}): RuleSetRule => { const { browsers, ...restOptions } = options const use = [ + loaders.miniCssExtract(), loaders.css({ ...restOptions, importLoaders: 1 }), loaders.postcss({ browsers }), ] - if (!isSSR) - use.unshift( - loaders.miniCssExtract({ hmr: !PRODUCTION && !restOptions.modules }) - ) return { use, @@ -630,10 +643,7 @@ export const createWebpackUtils = ( ...options }: { terserOptions?: TerserPlugin.TerserPluginOptions } = {}): Plugin => new TerserPlugin({ - // TODO add proper cache keys - cache: path.join(program.directory, `.cache`, `webpack`, `terser`), exclude: /\.min\.js/, - sourceMap: true, terserOptions: { ie8: false, mangle: { @@ -655,7 +665,7 @@ export const createWebpackUtils = ( plugins.minifyCss = ( options = { - cssProcessorPluginOptions: { + minimizerOptions: { preset: [ `default`, { @@ -718,7 +728,7 @@ export const createWebpackUtils = ( ], }, } - ): OptimizeCssAssetsPlugin => new OptimizeCssAssetsPlugin(options) + ): CssMinimizerPlugin => new CssMinimizerPlugin(options) plugins.fastRefresh = (): Plugin => new ReactRefreshWebpackPlugin({ diff --git a/packages/gatsby/src/utils/webpack.config.js b/packages/gatsby/src/utils/webpack.config.js index b8d6b419293d7..eb56d9ada0f25 100644 --- a/packages/gatsby/src/utils/webpack.config.js +++ b/packages/gatsby/src/utils/webpack.config.js @@ -5,7 +5,6 @@ const crypto = require(`crypto`) const fs = require(`fs-extra`) const path = require(`path`) const dotenv = require(`dotenv`) -const PnpWebpackPlugin = require(`pnp-webpack-plugin`) const { CoreJSResolver } = require(`./webpack/corejs-resolver`) const { store } = require(`../redux`) const { actions } = require(`../redux/actions`) @@ -18,6 +17,9 @@ const apiRunnerNode = require(`./api-runner-node`) import { createWebpackUtils } from "./webpack-utils" import { hasLocalEslint } from "./local-eslint-config-finder" import { getAbsolutePathForVirtualModule } from "./gatsby-webpack-virtual-modules" +import { StaticQueryMapper } from "./webpack/static-query-mapper" +import { TmpMiniCssExtractContentHashOverWrite } from "./webpack/tmp-mini-css-extract-contenthash-overwrite" +import { getBrowsersList } from "./browserslist" const FRAMEWORK_BUNDLES = [`react`, `react-dom`, `scheduler`, `prop-types`] @@ -150,10 +152,7 @@ module.exports = async ( return { path: directoryPath(`public`), filename: `render-page.js`, - libraryTarget: `umd`, - library: `lib`, - umdNamedDefine: true, - globalObject: `this`, + libraryTarget: `commonjs`, publicPath: withTrailingSlash(publicPath), } case `build-javascript`: @@ -228,15 +227,19 @@ module.exports = async ( plugins.hotModuleReplacement(), plugins.noEmitOnErrors(), plugins.eslintGraphqlSchemaReload(), + new StaticQueryMapper(store), ]) .filter(Boolean) + + configPlugins.push( + plugins.extractText({ + filename: `[name].css`, + chunkFilename: `[id].css`, + }) + ) + if (process.env.GATSBY_EXPERIMENTAL_DEV_SSR) { - // Don't use the default mini-css-extract-plugin setup as that - // breaks hmr. - configPlugins.push( - plugins.extractText({ filename: `[name].css` }), - plugins.extractStats() - ) + configPlugins.push(plugins.extractStats()) } break case `build-javascript`: { @@ -245,9 +248,12 @@ module.exports = async ( filename: `[name].[contenthash].css`, chunkFilename: `[name].[contenthash].css`, }), + // remove after https://github.com/webpack-contrib/mini-css-extract-plugin/issues/701 + new TmpMiniCssExtractContentHashOverWrite(), // Write out stats object mapping named dynamic imports (aka page // components) to all their async chunks. plugins.extractStats(), + new StaticQueryMapper(store), ]) break } @@ -293,6 +299,15 @@ module.exports = async ( rules.js({ modulesThatUseGatsby, }), + // Webpack expects extensions when importing to mimic ESM spec. + // Not all libraries have adapted so we don't enforce its behaviour + // @see https://github.com/webpack/webpack/issues/11467 + { + test: /\.m?js/, + resolve: { + fullySpecified: false + } + }, rules.yaml(), rules.fonts(), rules.images(), @@ -402,6 +417,10 @@ module.exports = async ( return { rules: configRules } } + function getPackageRoot(pkg) { + return path.dirname(require.resolve(`${pkg}/package.json`)) + } + function getResolve(stage) { const { program } = store.getState() const resolve = { @@ -413,54 +432,36 @@ module.exports = async ( // Using directories for module resolution is mandatory because // relative path imports are used sometimes // See https://stackoverflow.com/a/49455609/6420957 for more details - "@babel/runtime": path.dirname( - require.resolve(`@babel/runtime/package.json`) - ), + "@babel/runtime": getPackageRoot(`@babel/runtime`), // TODO: Remove entire block when we make fast-refresh the default ...(process.env.GATSBY_HOT_LOADER !== `fast-refresh` ? { - "react-hot-loader": path.dirname( - require.resolve(`react-hot-loader/package.json`) - ), + "react-hot-loader": getPackageRoot(`react-hot-loader`), } : {}), "react-lifecycles-compat": directoryPath( `.cache/react-lifecycles-compat.js` ), - "create-react-context": directoryPath(`.cache/create-react-context.js`), - "@pmmmwh/react-refresh-webpack-plugin": path.dirname( - require.resolve(`@pmmmwh/react-refresh-webpack-plugin/package.json`) - ), - "socket.io-client": path.dirname( - require.resolve(`socket.io-client/package.json`) + "@pmmmwh/react-refresh-webpack-plugin": getPackageRoot( + `@pmmmwh/react-refresh-webpack-plugin` ), + "socket.io-client": getPackageRoot(`socket.io-client`), $virtual: getAbsolutePathForVirtualModule(`$virtual`), + + // SSR can have many react versions as some packages use their own version. React works best with 1 version. + // By resolving react,react-dom from gatsby we'll get the site versions of react & react-dom because it's specified as a peerdependency. + react: getPackageRoot(`react`), + "react-dom": getPackageRoot(`react-dom`), }, - plugins: [ - // Those two folders are special and contain gatsby-generated files - // whose dependencies should be resolved through the `gatsby` package - PnpWebpackPlugin.bind(directoryPath(`.cache`), module), - PnpWebpackPlugin.bind(directoryPath(`public`), module), - // Transparently resolve packages via PnP when needed; noop otherwise - PnpWebpackPlugin, - new CoreJSResolver(), - ], + plugins: [new CoreJSResolver()], } const target = stage === `build-html` || stage === `develop-html` ? `node` : `web` if (target === `web`) { - resolve.alias = Object.assign( - {}, - { - // force to use es modules when importing internals of @reach.router - // for browser bundles - "@reach/router": path.join( - path.dirname(require.resolve(`@reach/router/package.json`)), - `es` - ), - }, - resolve.alias + resolve.alias[`@reach/router`] = path.join( + path.dirname(require.resolve(`@reach/router/package.json`)), + `es` ) } @@ -486,9 +487,6 @@ module.exports = async ( return { modules: [...root, path.join(__dirname, `../loaders`), `node_modules`], - // Bare loaders should always be loaded via the user dependencies (loaders - // configured via third-party like gatsby use require.resolve) - plugins: [PnpWebpackPlugin.moduleLoader(`${directory}/`)], } } @@ -501,12 +499,6 @@ module.exports = async ( module: getModule(), plugins: getPlugins(), - // Certain "isomorphic" packages have different entry points for browser - // and server (see - // https://github.com/defunctzombie/package-browser-field-spec); setting - // the target tells webpack which file to include, ie. browser vs main. - target: stage === `build-html` || stage === `develop-html` ? `node` : `web`, - devtool: getDevtool(), // Turn off performance hints as we (for now) don't want to show the normal // webpack output anywhere. @@ -514,13 +506,19 @@ module.exports = async ( hints: false, }, mode: getMode(), + cache: false, resolveLoader: getResolveLoader(), resolve: getResolve(stage), + } - node: { - __filename: true, - }, + if (stage === `build-html` || stage === `develop-html`) { + const [major, minor] = process.version.replace(`v`, ``).split(`.`) + config.target = `node12.13` + } else { + config.target = `browserslist:${getBrowsersList(program.directory).join( + `,` + )}` } if (stage === `build-javascript`) { @@ -531,7 +529,7 @@ module.exports = async ( chunks: `all`, cacheGroups: { default: false, - vendors: false, + defaultVendors: false, framework: { chunks: `all`, name: `framework`, @@ -619,10 +617,6 @@ module.exports = async ( runtimeChunk: { name: `webpack-runtime`, }, - // use hashes instead of ids for module identifiers - // TODO update to deterministic in webpack 5 (hashed is deprecated) - // @see https://webpack.js.org/guides/caching/#module-identifiers - moduleIds: `hashed`, splitChunks, minimizer: [ // TODO: maybe this option should be noMinimize? @@ -643,26 +637,18 @@ module.exports = async ( } if (stage === `build-html` || stage === `develop-html`) { + // removes node internals from bundle + // https://webpack.js.org/configuration/externals/#externalspresets + config.externalsPresets = { + node: true, + } + // Packages we want to externalize to save some build time // https://github.com/gatsbyjs/gatsby/pull/14208#pullrequestreview-240178728 - const externalList = [ - `@reach/router/lib/history`, - `@reach/router`, - `common-tags`, - `crypto`, - `debug`, - `fs`, - `https`, - `http`, - `lodash`, - `path`, - `semver`, - /^lodash\//, - `zlib`, - ] + // const externalList = [`common-tags`, `lodash`, `semver`, /^lodash\//] // Packages we want to externalize because meant to be user-provided - const userExternalList = [`react-helmet`, `react`, /^react-dom\//] + const userExternalList = [`react`, /^react-dom\//] const checkItem = (item, request) => { if (typeof item === `string` && item === request) { @@ -670,44 +656,60 @@ module.exports = async ( } else if (item instanceof RegExp && item.test(request)) { return true } - return false - } - const isExternal = request => { - if (externalList.some(item => checkItem(item, request))) { - return `umd ${require.resolve(request)}` - } - if (userExternalList.some(item => checkItem(item, request))) { - return `umd ${request}` - } - return null + return false } config.externals = [ - function (context, request, callback) { - if ( - stage === `develop-html` && - isCI() && - process.env.GATSBY_EXPERIMENTAL_DEV_SSR - ) { - if (request === `react`) { - callback(null, `react/cjs/react.production.min.js`) - return - } else if (request === `react-dom/server`) { - callback( - null, - `react-dom/cjs/react-dom-server.node.production.min.js` - ) - return + function ({ context, getResolve, request }, callback) { + // allows us to resolve webpack aliases from our config + // helpful for when react is aliased to preact-compat + // Force commonjs as we're in node land + const resolver = getResolve({ + dependencyType: `commonjs`, + }) + + // User modules that do not need to be part of the bundle + if (userExternalList.some(item => checkItem(item, request))) { + // TODO figure out to make preact work with this too + let modifiedRequest = request + if ( + stage === `develop-html` && + isCI() && + process.env.GATSBY_EXPERIMENTAL_DEV_SSR + ) { + if (request === `react`) { + modifiedRequest = `react/cjs/react.production.min.js` + } else if (request === `react-dom/server`) { + modifiedRequest = `react-dom/cjs/react-dom-server.node.production.min.js` + } } - } - const external = isExternal(request) - if (external !== null) { - callback(null, external) - } else { - callback() + resolver(context, modifiedRequest, (err, newRequest) => { + if (err) { + callback(err) + return + } + + callback(null, newRequest) + }) + return } + // TODO look into re-enabling, breaks builds right now because of esm + // User modules that do not need to be part of the bundle + // if (externalList.some(item => checkItem(item, request))) { + // resolver(context, request, (err, request) => { + // if (err) { + // callback(err) + // return + // } + + // callback(null, `commonjs2 ${request}`) + // }) + // return + // } + + callback() }, ] } diff --git a/packages/gatsby/src/utils/webpack/static-query-mapper.ts b/packages/gatsby/src/utils/webpack/static-query-mapper.ts new file mode 100644 index 0000000000000..90c6509f8c37e --- /dev/null +++ b/packages/gatsby/src/utils/webpack/static-query-mapper.ts @@ -0,0 +1,274 @@ +import path from "path" +import { Store } from "redux" +import { Compiler, Module, NormalModule, Compilation } from "webpack" +import ConcatenatedModule from "webpack/lib/optimize/ConcatenatedModule" +import { isEqual } from "lodash" +import { + IGatsbyState, + IGatsbyPageComponent, + IGatsbyStaticQueryComponents, +} from "../../redux/types" +import { generateComponentChunkName } from "../js-chunk-names" +import { enqueueFlush } from "../page-data" + +type ChunkGroup = Compilation["chunkGroups"][0] +type EntryPoint = Compilation["asyncEntrypoints"][0] + +/** + * Checks if a module matches a resourcePath + */ +function doesModuleMatchResourcePath( + resourcePath: string, + webpackModule: Module | NormalModule | ConcatenatedModule +): boolean { + if (!(webpackModule instanceof ConcatenatedModule)) { + return (webpackModule as NormalModule).resource === resourcePath + } + + // ConcatenatedModule is a collection of modules so we have to go deeper to actually get it + return webpackModule.modules.some( + innerModule => (innerModule as NormalModule).resource === resourcePath + ) +} + +/** + * A helper to set/get path resolving + */ +function getRealPath( + cache: Map<string, string>, + componentPath: string +): string { + if (!cache.has(componentPath)) { + cache.set(componentPath, path.resolve(componentPath)) + } + + return cache.get(componentPath) as string +} + +/** + * Grab the actual webpackModule from the resourcePath + * We return staticQueries and componentPaths cause that's what we care about + */ +function getWebpackModulesByResourcePaths( + modules: Set<Module>, + staticQueries: IGatsbyState["staticQueryComponents"], + components: IGatsbyState["components"] +): { + webpackModulesByStaticQueryId: Map<string, Module> + webpackModulesByComponentId: Map<string, Module> +} { + const realPathCache = new Map<string, string>() + const webpackModulesByStaticQueryId = new Map<string, Module>() + const webpackModulesByComponentId = new Map<string, Module>() + + modules.forEach(webpackModule => { + for (const [id, staticQuery] of staticQueries) { + const staticQueryComponentPath = getRealPath( + realPathCache, + staticQuery.componentPath + ) + + if ( + !doesModuleMatchResourcePath(staticQueryComponentPath, webpackModule) + ) { + continue + } + + webpackModulesByStaticQueryId.set(id, webpackModule) + } + + for (const [id, component] of components) { + const componentComponentPath = getRealPath( + realPathCache, + component.componentPath + ) + if (!doesModuleMatchResourcePath(componentComponentPath, webpackModule)) { + continue + } + + webpackModulesByComponentId.set(id, webpackModule) + } + }) + + return { webpackModulesByStaticQueryId, webpackModulesByComponentId } +} + +/** + * Chunks can be async so the group might not represent a pageComponent group + * We'll need to search for it. + */ +function getChunkGroupsDerivedFromEntrypoint( + chunkGroup: ChunkGroup, + entrypoint: EntryPoint +): Array<ChunkGroup> { + // when it's imported by any globals or async-requires we know we have the correct chunkgroups. + // Async modules won't have hasParent listed + if (chunkGroup.hasParent(entrypoint)) { + return [chunkGroup] + } + + let chunkGroups: Array<ChunkGroup> = [] + for (const parentChunkGroup of chunkGroup.getParents()) { + const newChunkGroup = getChunkGroupsDerivedFromEntrypoint( + parentChunkGroup, + entrypoint + ) + chunkGroups = chunkGroups.concat(newChunkGroup) + } + + return chunkGroups +} + +export class StaticQueryMapper { + private store: Store<IGatsbyState> + private name: string + + constructor(store) { + this.store = store + this.name = `StaticQueryMapper` + } + + apply(compiler: Compiler): void { + const { components, staticQueryComponents } = this.store.getState() + + compiler.hooks.done.tap(this.name, stats => { + const compilation = stats.compilation + // We only care about the main compilation + // Chunkgraph should always be available when it's done but you know typescript. + if (compilation.compiler.parentCompilation || !compilation.chunkGraph) { + return + } + + const staticQueriesByChunkGroup = new Map<ChunkGroup, Array<string>>() + const chunkGroupsWithPageComponents = new Set<ChunkGroup>() + const chunkGroupsByComponentPath = new Map< + IGatsbyPageComponent["componentPath"], + ChunkGroup + >() + + const { + webpackModulesByStaticQueryId, + webpackModulesByComponentId, + } = getWebpackModulesByResourcePaths( + compilation.modules, + staticQueryComponents, + components + ) + + const appEntryPoint = (compilation.entrypoints.has(`app`) + ? compilation.entrypoints.get(`app`) + : compilation.entrypoints.get(`commons`)) as EntryPoint + + // group hashes by chunkGroup for ease of use + for (const [ + staticQueryId, + webpackModule, + ] of webpackModulesByStaticQueryId) { + let chunkGroupsDerivedFromEntrypoints: Array<ChunkGroup> = [] + for (const chunk of compilation.chunkGraph.getModuleChunksIterable( + webpackModule + )) { + for (const chunkGroup of chunk.groupsIterable) { + if (chunkGroup === appEntryPoint) { + chunkGroupsDerivedFromEntrypoints.push(chunkGroup) + } else { + chunkGroupsDerivedFromEntrypoints = chunkGroupsDerivedFromEntrypoints.concat( + getChunkGroupsDerivedFromEntrypoint(chunkGroup, appEntryPoint) + ) + } + } + } + + // loop over all component chunkGroups or global ones + chunkGroupsDerivedFromEntrypoints.forEach(chunkGroup => { + const staticQueryHashes = + staticQueriesByChunkGroup.get(chunkGroup) ?? [] + + staticQueryHashes.push( + (staticQueryComponents.get( + staticQueryId + ) as IGatsbyStaticQueryComponents).hash + ) + + staticQueriesByChunkGroup.set(chunkGroup, staticQueryHashes) + }) + } + + // group chunkGroups by componentPaths for ease of use + for (const [ + componentPath, + webpackModule, + ] of webpackModulesByComponentId) { + for (const chunk of compilation.chunkGraph.getModuleChunksIterable( + webpackModule + )) { + for (const chunkGroup of chunk.groupsIterable) { + // When it's a direct import from app entrypoint (async-requires) we know we have the correct chunkGroup + if (chunkGroup.name === generateComponentChunkName(componentPath)) { + chunkGroupsWithPageComponents.add(chunkGroup) + chunkGroupsByComponentPath.set(componentPath, chunkGroup) + } + } + } + } + + let globalStaticQueries: Array<string> = [] + for (const [chunkGroup, staticQueryHashes] of staticQueriesByChunkGroup) { + // When a chunkgroup is not part of a pageComponent we know it's part of a global group. + if (!chunkGroupsWithPageComponents.has(chunkGroup)) { + globalStaticQueries = globalStaticQueries.concat(staticQueryHashes) + } + } + + components.forEach(component => { + const allStaticQueries = new Set(globalStaticQueries) + if (chunkGroupsByComponentPath.has(component.componentPath)) { + const chunkGroup = chunkGroupsByComponentPath.get( + component.componentPath + ) + if (chunkGroup && staticQueriesByChunkGroup.has(chunkGroup)) { + ;(staticQueriesByChunkGroup.get(chunkGroup) as Array< + string + >).forEach(staticQuery => { + allStaticQueries.add(staticQuery) + }) + } + } + + // modules, chunks, chunkgroups can all have not-deterministic orders so + // just sort array of static queries we produced to ensure final result is deterministic + const staticQueryHashes = Array.from(allStaticQueries).sort() + + if ( + !isEqual( + this.store + .getState() + .staticQueriesByTemplate.get(component.componentPath), + staticQueryHashes + ) + ) { + this.store.dispatch({ + type: `ADD_PENDING_TEMPLATE_DATA_WRITE`, + payload: { + componentPath: component.componentPath, + pages: component.pages, + }, + }) + + this.store.dispatch({ + type: `SET_STATIC_QUERIES_BY_TEMPLATE`, + payload: { + componentPath: component.componentPath, + staticQueryHashes, + }, + }) + } + }) + + // In dev mode we want to write page-data when compilation succeeds + if (!stats.hasErrors() && compiler.watchMode) { + enqueueFlush() + } + }) + } +} diff --git a/packages/gatsby/src/utils/webpack/tmp-mini-css-extract-contenthash-overwrite.ts b/packages/gatsby/src/utils/webpack/tmp-mini-css-extract-contenthash-overwrite.ts new file mode 100644 index 0000000000000..a50e59e51aea1 --- /dev/null +++ b/packages/gatsby/src/utils/webpack/tmp-mini-css-extract-contenthash-overwrite.ts @@ -0,0 +1,67 @@ +import { Compiler, Module } from "webpack" + +const MODULE_TYPE = `css/mini-extract` + +function deterministicModuleOrderComparator( + modA: Module, + modB: Module +): -1 | 0 | 1 { + const modAIdentifier = modA.identifier() + const modBIdentifier = modB.identifier() + if (modAIdentifier < modBIdentifier) { + return -1 + } else if (modAIdentifier > modBIdentifier) { + return 1 + } else { + return 0 + } +} + +/** + * This is temporary hack to override `contentHash` that `mini-css-extract-plugin` sets + * because it's not deterministic currently (at least for webpack@5). + * Important part is to have this temporary plugin instance AFTER `mini-css-extract-plugin` + * because we can't really remove what that plugin is doing, we can only overwrite it + * @see https://github.com/webpack-contrib/mini-css-extract-plugin/issues/701 + */ +export class TmpMiniCssExtractContentHashOverWrite { + private name: string + + constructor() { + this.name = `TmpMiniCssExtractContentHashOverWrite` + } + + apply(compiler: Compiler): void { + compiler.hooks.thisCompilation.tap(this.name, compilation => { + compilation.hooks.contentHash.tap(this.name, chunk => { + const { outputOptions, chunkGraph } = compilation + if (!chunkGraph) { + throw new Error(`No chunkGraph`) + } + const modules = chunkGraph.getOrderedChunkModulesIterableBySourceType( + chunk, + MODULE_TYPE, + deterministicModuleOrderComparator + ) + + if (modules) { + const { hashFunction, hashDigest, hashDigestLength } = outputOptions + + if (!hashFunction) { + throw new Error(`No hashFunction`) + } + const createHash = compiler.webpack.util.createHash + const hash = createHash(hashFunction) + + for (const m of modules) { + m.updateHash(hash, { chunkGraph, runtime: undefined }) + } + + chunk.contentHash[MODULE_TYPE] = (hash.digest( + hashDigest + ) as string).substring(0, hashDigestLength) + } + }) + }) + } +} diff --git a/packages/gatsby/src/utils/worker/render-html.ts b/packages/gatsby/src/utils/worker/render-html.ts index af0d66f97931c..52b78ffdc39b3 100644 --- a/packages/gatsby/src/utils/worker/render-html.ts +++ b/packages/gatsby/src/utils/worker/render-html.ts @@ -137,9 +137,10 @@ async function getScriptsAndStylesForTemplate( } for (const asset of namedChunkGroup.assets) { - handleAsset(asset, `preload`) + handleAsset(asset.name, `preload`) } + // TODO: figure out childAssets for webpack@5 - there is no longer `childAssets` in webpack.stats.json // Handling for webpack magic comments, for example: // import(/* webpackChunkName: "<chunk_name>", webpackPrefetch: true */ `<path_to_module>`) // will produce @@ -156,12 +157,12 @@ async function getScriptsAndStylesForTemplate( // } // } // } - for (const [rel, assets] of Object.entries(namedChunkGroup.childAssets)) { - // @ts-ignore TS doesn't like that assets is not typed and especially that it doesn't know that it's Iterable - for (const asset of assets) { - handleAsset(asset, rel) - } - } + // for (const [rel, assets] of Object.entries(namedChunkGroup.childAssets)) { + // // @ts-ignore TS doesn't like that assets is not typed and especially that it doesn't know that it's Iterable + // for (const asset of assets) { + // handleAsset(asset, rel) + // } + // } } // create scripts array, making sure "preload" scripts have priority diff --git a/yarn.lock b/yarn.lock index d74dbf91eb801..ad65c3ef5cab0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -169,7 +169,14 @@ "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents" chokidar "^3.4.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.11", "@babel/code-frame@^7.5.5": +"@babel/[email protected]", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.0.0-beta.35", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.5.5": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" + integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/code-frame@^7.12.11": version "7.12.11" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== @@ -538,6 +545,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.11.tgz#9ce3595bcd74bc5c466905e86c535b8b25011e79" integrity sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg== +"@babel/parser@^7.10.4": + version "7.12.15" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.15.tgz#2b20de7f0b4b332d9b119dd9c33409c538b8aacf" + integrity sha512-AQBOU2Z9kWwSZMd6lNjCX0GUgFonL1wAM1db8L8PMk9UDaGsRCArBkU4Sc+UCM3AE4hjbXx+h58Lb3QT4oRmrA== + "@babel/plugin-proposal-async-generator-functions@^7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz#dc6c1170e27d8aca99ff65f4925bd06b1c90550e" @@ -1378,7 +1390,16 @@ resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.12.6.tgz#fa59cf6f1cea940a790179f1375394ab31f025b9" integrity sha512-yA/OV3jN1nhr0JsAdYWAqbeZ7cAOw/6Fh52rxVMzujr0HF4Z3cau0JBzJfQppFfR9IArrUtcqhBu/+Q/IevoyQ== -"@babel/template@^7.0.0", "@babel/template@^7.10.4", "@babel/template@^7.12.7": +"@babel/template@^7.0.0", "@babel/template@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278" + integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/parser" "^7.10.4" + "@babel/types" "^7.10.4" + +"@babel/template@^7.12.7": version "7.12.7" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.7.tgz#c817233696018e39fbb6c491d2fb684e05ed43bc" integrity sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow== @@ -1402,7 +1423,16 @@ globals "^11.1.0" lodash "^4.17.19" -"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.5", "@babel/types@^7.12.1", "@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.12", "@babel/types@^7.12.5", "@babel/types@^7.12.6", "@babel/types@^7.12.7", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0": +"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.5", "@babel/types@^7.12.1", "@babel/types@^7.12.5", "@babel/types@^7.12.6", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.12.6" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.6.tgz#ae0e55ef1cce1fbc881cd26f8234eb3e657edc96" + integrity sha512-hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA== + dependencies: + "@babel/helper-validator-identifier" "^7.10.4" + lodash "^4.17.19" + to-fast-properties "^2.0.0" + +"@babel/types@^7.12.10", "@babel/types@^7.12.11", "@babel/types@^7.12.12", "@babel/types@^7.12.7": version "7.12.12" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.12.tgz#4608a6ec313abbd87afa55004d373ad04a96c299" integrity sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ== @@ -3268,6 +3298,14 @@ "@nodelib/fs.scandir" "2.1.3" fastq "^1.6.0" +"@npmcli/move-file@^1.0.1": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.0.tgz#4ef8a53d727b9e43facf35404caf55ebf92cfec8" + integrity sha512-Iv2iq0JuyYjKeFkSR4LPaCdDZwlGK9X2cP/01nJcp3yMJ1FjNd9vpiEYvLUgzBxKPg2SFmaOhizoQsPc0LWeOQ== + dependencies: + mkdirp "^1.0.4" + rimraf "^2.7.1" + "@octokit/auth-token@^2.4.0": version "2.4.2" resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.4.2.tgz#10d0ae979b100fa6b72fa0e8e63e27e6d0dbff8a" @@ -3390,7 +3428,7 @@ string-width "^2.0.0" strip-ansi "^3" -"@pmmmwh/react-refresh-webpack-plugin@^0.4.1", "@pmmmwh/react-refresh-webpack-plugin@^0.4.3": +"@pmmmwh/react-refresh-webpack-plugin@^0.4.3": version "0.4.3" resolved "https://registry.yarnpkg.com/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz#1eec460596d200c0236bf195b078a5d1df89b766" integrity sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ== @@ -4110,23 +4148,31 @@ resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd" integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== +"@types/eslint-scope@^3.7.0": + version "3.7.0" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.0.tgz#4792816e31119ebd506902a482caec4951fabd86" + integrity sha512-O/ql2+rrCUe2W2rs7wMR+GqPRcgB6UiqN5RhrR5xruFlY7l9YLMn0ZkDzjoHLeiFkR8MCQZVudUuuvQ2BLC9Qw== + dependencies: + "@types/eslint" "*" + "@types/estree" "*" + "@types/eslint-visitor-keys@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== -"@types/eslint@^6.8.1": - version "6.8.1" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-6.8.1.tgz#e26f365a5dda12445d1d5a17eb70efd7c844a3d8" - integrity sha512-eutiEpQ4SN7kdF8QVDPyiSSy7ZFM+werJVw6/mRxLGbG4oet6/p81WFjSIcuY9PzM+dsu25Yh5EAUmQ9aJC1gg== +"@types/eslint@*", "@types/eslint@^7.2.6": + version "7.2.6" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.2.6.tgz#5e9aff555a975596c03a98b59ecd103decc70c3c" + integrity sha512-I+1sYH+NPQ3/tVqCeUSBwTE/0heyvtXqpIopUUArlBm0Kpocb8FbMa3AZ/ASKIFpN3rnEx932TTXDbt9OXsNDw== dependencies: "@types/estree" "*" "@types/json-schema" "*" -"@types/estree@*": - version "0.0.42" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.42.tgz#8d0c1f480339efedb3e46070e22dd63e0430dd11" - integrity sha512-K1DPVvnBCPxzD+G51/cxVIoc2X8uUVl1zpJeE6iKcgHMj4+tbat5Xu4TjV7v2QSDbIeAfLi2hIk+u2+s0MlpUQ== +"@types/estree@*", "@types/estree@^0.0.45": + version "0.0.45" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.45.tgz#e9387572998e5ecdac221950dab3e8c3b16af884" + integrity sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g== "@types/[email protected]": version "0.0.39" @@ -4315,13 +4361,6 @@ dependencies: "@types/unist" "*" -"@types/memory-fs@*": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@types/memory-fs/-/memory-fs-0.3.2.tgz#5d4753f9b390cb077c8c8af97bc96463399ceccd" - integrity sha512-j5AcZo7dbMxHoOimcHEIh0JZe5e1b8q8AqGSpZJrYc7xOgCIP79cIjTdx5jSDLtySnQDwkDTqwlC7Xw7uXw7qg== - dependencies: - "@types/node" "*" - "@types/micromatch@^4.0.1": version "4.0.1" resolved "https://registry.yarnpkg.com/@types/micromatch/-/micromatch-4.0.1.tgz#9381449dd659fc3823fd2a4190ceacc985083bc7" @@ -4627,16 +4666,6 @@ resolved "https://registry.yarnpkg.com/@types/warning/-/warning-3.0.0.tgz#0d2501268ad8f9962b740d387c4654f5f8e23e52" integrity sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI= -"@types/webpack-dev-middleware@^3.7.1": - version "3.7.1" - resolved "https://registry.yarnpkg.com/@types/webpack-dev-middleware/-/webpack-dev-middleware-3.7.1.tgz#2d4e7d9abf6eec2988476f9f8f1e9b7acb2a7f82" - integrity sha512-+U6zP6/jlQ9Mw4zBOiuKOe/delLS4f0kvzAJCVK9wsW00hi4TD9u6TIaE5x5xy6xrkCiXMSf56bsAosORjP3/Q== - dependencies: - "@types/connect" "*" - "@types/memory-fs" "*" - "@types/webpack" "*" - loglevel "^1.6.2" - "@types/webpack-merge@^4.1.5": version "4.1.5" resolved "https://registry.yarnpkg.com/@types/webpack-merge/-/webpack-merge-4.1.5.tgz#265fbee4810474860d0f4c17e0107032881eed47" @@ -4660,7 +4689,7 @@ dependencies: "@types/webpack" "*" -"@types/webpack@*", "@types/webpack@^4.41.24": +"@types/webpack@*": version "4.41.24" resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.24.tgz#75b664abe3d5bcfe54e64313ca3b43e498550422" integrity sha512-1A0MXPwZiMOD3DPMuOKUKcpkdPo8Lq33UGggZ7xio6wJ/jV1dAu5cXDrOfGDnldUroPIRLsr/DT43/GqOA4RFQ== @@ -4813,6 +4842,14 @@ resolved "https://registry.yarnpkg.com/@verdaccio/ui-theme/-/ui-theme-1.14.0.tgz#22b397f399bf1dfcc8e471d1895c3f74bd340691" integrity sha512-vTzZYnC+HpeeW6pGFBa51rwbqwjqYkgJE1DEF5fSK5V2QbHi+XPIPucm6hrnaZjMlSYbe+4DaMN1XOKLqOJlzg== +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.0.tgz#a5aa679efdc9e51707a4207139da57920555961f" + integrity sha512-kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg== + dependencies: + "@webassemblyjs/helper-numbers" "1.11.0" + "@webassemblyjs/helper-wasm-bytecode" "1.11.0" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" @@ -4822,16 +4859,31 @@ "@webassemblyjs/helper-wasm-bytecode" "1.9.0" "@webassemblyjs/wast-parser" "1.9.0" +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz#34d62052f453cd43101d72eab4966a022587947c" + integrity sha512-Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA== + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4" integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA== +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz#aaea8fb3b923f4aaa9b512ff541b013ffb68d2d4" + integrity sha512-baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w== + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2" integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw== +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz#d026c25d175e388a7dbda9694e91e743cbe9b642" + integrity sha512-u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA== + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00" @@ -4856,11 +4908,35 @@ dependencies: "@webassemblyjs/ast" "1.9.0" +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz#7ab04172d54e312cc6ea4286d7d9fa27c88cd4f9" + integrity sha512-DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ== + dependencies: + "@webassemblyjs/floating-point-hex-parser" "1.11.0" + "@webassemblyjs/helper-api-error" "1.11.0" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz#85fdcda4129902fe86f81abf7e7236953ec5a4e1" + integrity sha512-MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA== + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790" integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw== +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz#9ce2cc89300262509c801b4af113d1ca25c1a75b" + integrity sha512-3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew== + dependencies: + "@webassemblyjs/ast" "1.11.0" + "@webassemblyjs/helper-buffer" "1.11.0" + "@webassemblyjs/helper-wasm-bytecode" "1.11.0" + "@webassemblyjs/wasm-gen" "1.11.0" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346" @@ -4871,6 +4947,13 @@ "@webassemblyjs/helper-wasm-bytecode" "1.9.0" "@webassemblyjs/wasm-gen" "1.9.0" +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz#46975d583f9828f5d094ac210e219441c4e6f5cf" + integrity sha512-KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA== + dependencies: + "@xtuc/ieee754" "^1.2.0" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4" @@ -4878,6 +4961,13 @@ dependencies: "@xtuc/ieee754" "^1.2.0" +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.0.tgz#f7353de1df38aa201cba9fb88b43f41f75ff403b" + integrity sha512-aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g== + dependencies: + "@xtuc/long" "4.2.2" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95" @@ -4885,11 +4975,30 @@ dependencies: "@xtuc/long" "4.2.2" +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.0.tgz#86e48f959cf49e0e5091f069a709b862f5a2cadf" + integrity sha512-A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw== + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab" integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w== +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz#ee4a5c9f677046a210542ae63897094c2027cb78" + integrity sha512-JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ== + dependencies: + "@webassemblyjs/ast" "1.11.0" + "@webassemblyjs/helper-buffer" "1.11.0" + "@webassemblyjs/helper-wasm-bytecode" "1.11.0" + "@webassemblyjs/helper-wasm-section" "1.11.0" + "@webassemblyjs/wasm-gen" "1.11.0" + "@webassemblyjs/wasm-opt" "1.11.0" + "@webassemblyjs/wasm-parser" "1.11.0" + "@webassemblyjs/wast-printer" "1.11.0" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf" @@ -4904,6 +5013,17 @@ "@webassemblyjs/wasm-parser" "1.9.0" "@webassemblyjs/wast-printer" "1.9.0" +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz#3cdb35e70082d42a35166988dda64f24ceb97abe" + integrity sha512-BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ== + dependencies: + "@webassemblyjs/ast" "1.11.0" + "@webassemblyjs/helper-wasm-bytecode" "1.11.0" + "@webassemblyjs/ieee754" "1.11.0" + "@webassemblyjs/leb128" "1.11.0" + "@webassemblyjs/utf8" "1.11.0" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c" @@ -4915,6 +5035,16 @@ "@webassemblyjs/leb128" "1.9.0" "@webassemblyjs/utf8" "1.9.0" +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz#1638ae188137f4bb031f568a413cd24d32f92978" + integrity sha512-tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg== + dependencies: + "@webassemblyjs/ast" "1.11.0" + "@webassemblyjs/helper-buffer" "1.11.0" + "@webassemblyjs/wasm-gen" "1.11.0" + "@webassemblyjs/wasm-parser" "1.11.0" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61" @@ -4925,6 +5055,18 @@ "@webassemblyjs/wasm-gen" "1.9.0" "@webassemblyjs/wasm-parser" "1.9.0" +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz#3e680b8830d5b13d1ec86cc42f38f3d4a7700754" + integrity sha512-6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw== + dependencies: + "@webassemblyjs/ast" "1.11.0" + "@webassemblyjs/helper-api-error" "1.11.0" + "@webassemblyjs/helper-wasm-bytecode" "1.11.0" + "@webassemblyjs/ieee754" "1.11.0" + "@webassemblyjs/leb128" "1.11.0" + "@webassemblyjs/utf8" "1.11.0" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e" @@ -4949,6 +5091,14 @@ "@webassemblyjs/helper-fsm" "1.9.0" "@xtuc/long" "4.2.2" +"@webassemblyjs/[email protected]": + version "1.11.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.0.tgz#680d1f6a5365d6d401974a8e949e05474e1fab7e" + integrity sha512-Fg5OX46pRdTgB7rKIUojkh9vXaVN6sGYCnEiJN1GYkb0RPwShZXp6KTDqmoMdQPKhcroOXh3fEzmkWmCYaKYhQ== + dependencies: + "@webassemblyjs/ast" "1.11.0" + "@xtuc/long" "4.2.2" + "@webassemblyjs/[email protected]": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899" @@ -5114,10 +5264,6 @@ add-stream@^1.0.0: resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" integrity sha1-anmQQ3ynNtXhKI25K9MmbV9csqo= [email protected]: - version "1.0.3" - resolved "https://registry.yarnpkg.com/address/-/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9" - [email protected], address@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" @@ -5531,10 +5677,6 @@ array-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" -array-filter@~0.0.0: - version "0.0.1" - resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec" - array-find-index@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" @@ -5569,14 +5711,6 @@ array-iterate@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/array-iterate/-/array-iterate-1.1.2.tgz#f66a57e84426f8097f4197fbb6c051b8e5cdf7d8" -array-map@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662" - -array-reduce@~0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b" - array-slice@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" @@ -5906,7 +6040,7 @@ axobject-query@^2.2.0: resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== [email protected], babel-code-frame@^6.26.0: +babel-code-frame@^6.26.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" dependencies: @@ -5998,7 +6132,7 @@ babel-jsx-utils@^1.0.1: resolved "https://registry.yarnpkg.com/babel-jsx-utils/-/babel-jsx-utils-1.0.1.tgz#f2d171cba526594e7d69e9893d634502cf950f07" integrity sha512-Qph/atlQiSvfmkoIZ9VA+t8dA0ex2TwL37rkhLT9YLJdhaTMZ2HSM2QGzbqjLWanKA+I3wRQJjjhtuIEgesuLw== -babel-loader@^8.1.0, babel-loader@^8.2.2: +babel-loader@^8.2.2: version "8.2.2" resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz#9363ce84c10c9a40e6c753748e1441b60c8a0b81" integrity sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g== @@ -6571,7 +6705,7 @@ boxen@^4.2.0: type-fest "^0.8.1" widest-line "^3.1.0" -brace-expansion@^1.0.0, brace-expansion@^1.1.7: +brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" dependencies: @@ -6705,6 +6839,16 @@ browserify-zlib@^0.2.0: dependencies: pako "~1.0.5" [email protected]: + version "4.14.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.2.tgz#1b3cec458a1ba87588cc5e9be62f19b6d48813ce" + integrity sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw== + dependencies: + caniuse-lite "^1.0.30001125" + electron-to-chromium "^1.3.564" + escalade "^3.0.2" + node-releases "^1.1.61" + browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.12.2, browserslist@^4.13.0, browserslist@^4.14.5, browserslist@^4.8.5: version "4.16.1" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766" @@ -6892,28 +7036,27 @@ cacache@^12.0.0, cacache@^12.0.2, cacache@^12.0.3: unique-filename "^1.1.1" y18n "^4.0.0" -cacache@^13.0.1: - version "13.0.1" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c" - integrity sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w== +cacache@^15.0.5: + version "15.0.5" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0" + integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A== dependencies: - chownr "^1.1.2" - figgy-pudding "^3.5.1" + "@npmcli/move-file" "^1.0.1" + chownr "^2.0.0" fs-minipass "^2.0.0" glob "^7.1.4" - graceful-fs "^4.2.2" infer-owner "^1.0.4" - lru-cache "^5.1.1" - minipass "^3.0.0" + lru-cache "^6.0.0" + minipass "^3.1.1" minipass-collect "^1.0.2" minipass-flush "^1.0.5" minipass-pipeline "^1.2.2" - mkdirp "^0.5.1" - move-concurrently "^1.0.1" - p-map "^3.0.0" + mkdirp "^1.0.3" + p-map "^4.0.0" promise-inflight "^1.0.1" - rimraf "^2.7.1" - ssri "^7.0.0" + rimraf "^3.0.2" + ssri "^8.0.0" + tar "^6.0.2" unique-filename "^1.1.1" cache-base@^1.0.1: @@ -7101,6 +7244,11 @@ camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" +camelcase@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" + integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== + caniuse-api@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" @@ -7110,10 +7258,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001087, caniuse-lite@^1.0.30001173: - version "1.0.30001173" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001173.tgz#3c47bbe3cd6d7a9eda7f50ac016d158005569f56" - integrity sha512-R3aqmjrICdGCTAnSXtNyvWYMK3YtV5jwudbq0T7nN9k4kmE4CBuwPqyJ+KBzepSTh0huivV2gLbSMEzTTmfeYw== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001087, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001173: + version "1.0.30001178" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001178.tgz#3ad813b2b2c7d585b0be0a2440e1e233c6eabdbc" + integrity sha512-VtdZLC0vsXykKni8Uztx45xynytOi71Ufx9T8kHptSw9AL4dpqailUJJHavttuzUe1KYuBYtChiWv+BAb7mPmQ== capitalize@^2.0.3: version "2.0.3" @@ -7167,7 +7315,16 @@ cfb@^1.1.4: crc-32 "~1.2.0" printj "~1.1.2" [email protected], chalk@^1.0.0, chalk@^1.1.3: [email protected], chalk@^2.0, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^1.0.0, chalk@^1.1.3: version "1.1.3" resolved "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" dependencies: @@ -7177,15 +7334,6 @@ [email protected], chalk@^1.0.0, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.3.1, chalk@^2.4.1, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - chalk@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" @@ -7353,6 +7501,11 @@ chownr@^1.1.1, chownr@^1.1.2: resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142" integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw== +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + chrome-trace-event@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" @@ -8498,7 +8651,16 @@ [email protected]: dependencies: node-fetch "2.6.1" [email protected], cross-spawn@^5.0.1: [email protected], cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +cross-spawn@^5.0.1: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" dependencies: @@ -8516,15 +8678,6 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5: shebang-command "^1.2.0" which "^1.2.9" -cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - crypto-browserify@^3.11.0: version "3.12.0" resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" @@ -8607,6 +8760,39 @@ css-loader@^1.0.1: postcss-value-parser "^3.3.0" source-list-map "^2.0.0" +css-loader@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.0.1.tgz#9e4de0d6636a6266a585bd0900b422c85539d25f" + integrity sha512-cXc2ti9V234cq7rJzFKhirb2L2iPy8ZjALeVJAozXYz9te3r4eqLSixNAbMDJSgJEQywqXzs8gonxaboeKqwiw== + dependencies: + camelcase "^6.2.0" + cssesc "^3.0.0" + icss-utils "^5.0.0" + loader-utils "^2.0.0" + postcss "^8.1.4" + postcss-modules-extract-imports "^3.0.0" + postcss-modules-local-by-default "^4.0.0" + postcss-modules-scope "^3.0.0" + postcss-modules-values "^4.0.0" + postcss-value-parser "^4.1.0" + schema-utils "^3.0.0" + semver "^7.3.2" + +css-minimizer-webpack-plugin@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-1.2.0.tgz#3e9d75f6bcc16f1eb84d56ebfee124d1e1f2e1c5" + integrity sha512-XU4+PXw7QKAlRGU+fB386YiczAAPtk0kVsB/Qf2nX8GJaOXgTsk/PST8YBExeoD299wheG//MCCKlCD5fykb7Q== + dependencies: + cacache "^15.0.5" + cssnano "^4.1.10" + find-cache-dir "^3.3.1" + jest-worker "^26.3.0" + p-limit "^3.0.2" + schema-utils "^3.0.0" + serialize-javascript "^5.0.1" + source-map "^0.6.1" + webpack-sources "^1.4.3" + css-modules-loader-core@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/css-modules-loader-core/-/css-modules-loader-core-1.1.0.tgz#5908668294a1becd261ae0a4ce21b0b551f21d16" @@ -8693,6 +8879,11 @@ cssesc@^2.0.0: resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + [email protected]: version "0.0.10" resolved "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae" @@ -8951,7 +9142,7 @@ de-indent@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" -debug@2, [email protected], debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.6, debug@^2.6.8, debug@^2.6.9: +debug@2, [email protected], debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" dependencies: @@ -8970,7 +9161,7 @@ debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, d dependencies: ms "2.1.2" -debug@^3.0.0, debug@^3.1.0, debug@^3.1.1, debug@^3.2.6, debug@^3.2.7: +debug@^3.1.0, debug@^3.1.1, debug@^3.2.6, debug@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== @@ -9351,9 +9542,10 @@ detect-node@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" [email protected]: - version "1.1.3" - resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.3.tgz#a4d2f061d757a034ecf37c514260a98750f2b131" [email protected]: + version "1.1.6" + resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" + integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== dependencies: address "^1.0.1" debug "^2.6.0" @@ -9858,10 +10050,10 @@ [email protected]: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" -electron-to-chromium@^1.3.634: - version "1.3.635" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.635.tgz#8d1591eeca6b257d380061a2c04f0b3cc6c9e33b" - integrity sha512-RRriZOLs9CpW6KTLmgBqyUdnY0QNqqWs0HOtuQGGEMizOTNNn1P7sGRBxARnUeLejOsgwjDyRqT3E/CSst02ZQ== +electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.634: + version "1.3.641" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.641.tgz#03f14efd70a7971eff2efc947b3c1d0f717c82b9" + integrity sha512-b0DLhsHSHESC1I+Nx6n4w4Lr61chMd3m/av1rZQhS2IXTzaS5BMM5N+ldWdMIlni9CITMRM09m8He4+YV/92TA== elliptic@^6.0.0: version "6.5.3" @@ -10000,7 +10192,7 @@ engine.io@~3.4.0: engine.io-parser "~2.2.0" ws "^7.1.2" -enhanced-resolve@^4.1.1, enhanced-resolve@^4.2.0, enhanced-resolve@^4.5.0: +enhanced-resolve@^4.1.1, enhanced-resolve@^4.2.0, enhanced-resolve@^4.3.0, enhanced-resolve@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec" integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== @@ -10009,6 +10201,14 @@ enhanced-resolve@^4.1.1, enhanced-resolve@^4.2.0, enhanced-resolve@^4.5.0: memory-fs "^0.5.0" tapable "^1.0.0" +enhanced-resolve@^5.7.0: + version "5.7.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.7.0.tgz#525c5d856680fbd5052de453ac83e32049958b5c" + integrity sha512-6njwt/NsZFUKhM6j9U8hzVyD4E4r0x7NQzhTCbcWOJ0IQjNSAoalWmb0AE51Wn+fwan5qVESWi7t2ToBxs9vrw== + dependencies: + graceful-fs "^4.2.4" + tapable "^2.2.0" + enquirer@^2.3.5, enquirer@^2.3.6: version "2.3.6" resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" @@ -10112,6 +10312,11 @@ es-abstract@^1.18.0-next.0: string.prototype.trimend "^1.0.1" string.prototype.trimstart "^1.0.1" +es-module-lexer@^0.3.26: + version "0.3.26" + resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.3.26.tgz#7b507044e97d5b03b01d4392c74ffeb9c177a83b" + integrity sha512-Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA== + es-to-primitive@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" @@ -10178,7 +10383,7 @@ esanimate@^1.1.0: escodegen "^1.7.0" esprima "^2.6.0" -escalade@^3.1.1: +escalade@^3.0.2, escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== @@ -10192,15 +10397,15 @@ escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" [email protected], escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - -escape-string-regexp@^2.0.0: [email protected], escape-string-regexp@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" @@ -10278,16 +10483,16 @@ eslint-import-resolver-node@^0.3.4: debug "^2.6.9" resolve "^1.13.1" -eslint-loader@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-2.2.1.tgz#28b9c12da54057af0845e2a6112701a2f6bf8337" - integrity sha512-RLgV9hoCVsMLvOxCuNjdqOrUqIj9oJg8hF44vzJaYqsAHuY9G2YAeN3joQ9nxP0p5Th9iFSIpKo+SD8KISxXRg== +eslint-loader@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-4.0.2.tgz#386a1e21bcb613b3cf2d252a3b708023ccfb41ec" + integrity sha512-EDpXor6lsjtTzZpLUn7KmXs02+nIjGcgees9BYjNkWra3jVq5vVa8IoCKgzT2M7dNNeoMBtaSG83Bd40N3poLw== dependencies: - loader-fs-cache "^1.0.0" - loader-utils "^1.0.2" - object-assign "^4.0.1" - object-hash "^1.1.4" - rimraf "^2.6.1" + find-cache-dir "^3.3.1" + fs-extra "^8.1.0" + loader-utils "^2.0.0" + object-hash "^2.0.3" + schema-utils "^2.6.5" eslint-module-utils@^2.6.0: version "2.6.0" @@ -10699,16 +10904,10 @@ events@^1.1.0, events@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" -events@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" - integrity sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA== - [email protected]: - version "0.1.6" - resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" - dependencies: - original ">=0.0.5" +events@^3.0.0, events@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379" + integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg== eventsource@^1.0.7: version "1.0.7" @@ -11112,7 +11311,7 @@ fault@^1.0.0, fault@^1.0.1, fault@^1.0.2: dependencies: format "^0.2.0" -faye-websocket@^0.11.3, faye-websocket@~0.11.0: +faye-websocket@^0.11.3: version "0.11.3" resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e" integrity sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA== @@ -11206,12 +11405,13 @@ file-entry-cache@^6.0.0: dependencies: flat-cache "^3.0.4" -file-loader@^1.1.11: - version "1.1.11" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-1.1.11.tgz#6fe886449b0f2a936e43cabaac0cdbfb369506f8" +file-loader@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" + integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== dependencies: - loader-utils "^1.0.2" - schema-utils "^0.4.5" + loader-utils "^2.0.0" + schema-utils "^3.0.0" [email protected], file-type@^5.2.0: version "5.2.0" @@ -11288,11 +11488,7 @@ filenamify@^4.2.0: strip-outer "^1.0.1" trim-repeated "^1.0.0" [email protected]: - version "3.5.11" - resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.5.11.tgz#1919326749433bb3cf77368bd158caabcc19e9ee" - -filesize@^6.1.0: [email protected], filesize@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00" integrity sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg== @@ -11344,14 +11540,6 @@ find-babel-config@^1.2.0: json5 "^0.5.1" path-exists "^3.0.0" -find-cache-dir@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" - dependencies: - commondir "^1.0.1" - mkdirp "^0.5.1" - pkg-dir "^1.0.0" - find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" @@ -11378,6 +11566,14 @@ find-root@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" [email protected], find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + find-up@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" @@ -11397,14 +11593,6 @@ find-up@^3.0.0: dependencies: locate-path "^3.0.0" -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - find-up@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" @@ -11579,6 +11767,19 @@ forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" [email protected]: + version "4.1.6" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz#5055c703febcf37fa06405d400c122b905167fc5" + integrity sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw== + dependencies: + "@babel/code-frame" "^7.5.5" + chalk "^2.4.1" + micromatch "^3.1.10" + minimatch "^3.0.4" + semver "^5.6.0" + tapable "^1.0.0" + worker-rpc "^0.1.0" + [email protected]: version "2.1.4" resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" @@ -11737,9 +11938,9 @@ fs-minipass@^1.2.5: minipass "^2.2.1" fs-minipass@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.0.0.tgz#a6415edab02fae4b9e9230bc87ee2e4472003cd1" - integrity sha512-40Qz+LFXmd9tzYVnnBmZvFfvAADfUA14TXPK1s7IfElJTIZ97rA8w4Kin7Wt5JBrC3ShnnFJO/5vPjPEeJIq9A== + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== dependencies: minipass "^3.0.0" @@ -11750,6 +11951,11 @@ fs-mkdirp-stream@^1.0.0: graceful-fs "^4.1.11" through2 "^2.0.3" [email protected]: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.1.tgz#4a82f36944365e619f4454d9fff106553067b781" + integrity sha512-fcSa+wyTqZa46iWweI7/ZiUfegOZl0SG8+dltIwFXo7+zYU9J9kpS3NB6pZcSlJdhvIwp81Adx2XhZorncxiaA== + fs-readdir-recursive@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" @@ -12154,7 +12360,7 @@ glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" -glob-to-regexp@^0.4.0: +glob-to-regexp@^0.4.0, glob-to-regexp@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== @@ -12211,7 +12417,14 @@ global-dirs@^2.0.1: dependencies: ini "^1.3.5" [email protected], global-modules@^1.0.0: [email protected], global-modules@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + +global-modules@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" dependencies: @@ -12219,13 +12432,6 @@ [email protected], global-modules@^1.0.0: is-windows "^1.0.1" resolve-dir "^1.0.0" -global-modules@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== - dependencies: - global-prefix "^3.0.0" - global-prefix@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" @@ -12514,7 +12720,7 @@ graphiql@^1.3.2: graphql-language-service "^3.1.2" markdown-it "^10.0.0" -graphql-compose@^7.25.0: +graphql-compose@~7.25.0: version "7.25.0" resolved "https://registry.yarnpkg.com/graphql-compose/-/graphql-compose-7.25.0.tgz#cd893172616ce56b0566e62fd249fb7782332d38" integrity sha512-Zd2G62Sq0ZQW+qXds/LgSi3YSulmk2t2YS3WJfHvNslkEbyAcE1mFiy7c1wU0tl3woB0vPRwI0jAYtSSG6llNA== @@ -12666,13 +12872,7 @@ gulp-header@^1.7.1: lodash.template "^4.4.0" through2 "^2.0.0" [email protected], gzip-size@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520" - dependencies: - duplexer "^0.1.1" - -gzip-size@^5.1.1: [email protected], gzip-size@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== @@ -12680,6 +12880,12 @@ gzip-size@^5.1.1: duplexer "^0.1.1" pify "^4.0.1" +gzip-size@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-3.0.0.tgz#546188e9bdc337f673772f81660464b389dce520" + dependencies: + duplexer "^0.1.1" + handle-thing@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.0.tgz#0e039695ff50c93fc288557d696f3c1dc6776754" @@ -13473,6 +13679,11 @@ icss-utils@^2.1.0: dependencies: postcss "^6.0.1" +icss-utils@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + idb-keyval@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/idb-keyval/-/idb-keyval-3.2.0.tgz#cbbf354deb5684b6cdc84376294fc05932845bd6" @@ -13575,6 +13786,11 @@ immediate@~3.2.3: resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.2.3.tgz#d140fa8f614659bd6541233097ddaac25cdd991c" integrity sha1-0UD6j2FGWb1lQSMwl92qwlzdmRw= [email protected]: + version "7.0.9" + resolved "https://registry.yarnpkg.com/immer/-/immer-7.0.9.tgz#28e7552c21d39dd76feccd2b800b7bc86ee4a62e" + integrity sha512-Vs/gxoM4DqNAYR7pugIxi0Xc8XAun/uy7AQu4fLLqaTBHxjOP9pJ266Q9MWA/ly4z6rAFZbvViOtihxUZ7O28A== + immer@^4.0.0: version "4.0.2" resolved "https://registry.yarnpkg.com/immer/-/immer-4.0.2.tgz#9ff0fcdf88e06f92618a5978ceecb5884e633559" @@ -13763,7 +13979,7 @@ inline-style-prefixer@^5.1.0: dependencies: css-in-js-utils "^2.0.0" [email protected], inquirer@^3.3.0: +inquirer@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" dependencies: @@ -14380,9 +14596,10 @@ is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" [email protected]: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-root/-/is-root-1.0.0.tgz#07b6c233bc394cd9d02ba15c966bd6660d6342d5" [email protected]: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" + integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== is-ssh@^1.3.0: version "1.3.0" @@ -15164,11 +15381,12 @@ jest-worker@^24.6.0, jest-worker@^24.9.0: merge-stream "^2.0.0" supports-color "^6.1.0" -jest-worker@^25.4.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1" - integrity sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw== +jest-worker@^26.3.0, jest-worker@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" + integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== dependencies: + "@types/node" "*" merge-stream "^2.0.0" supports-color "^7.0.0" @@ -15445,7 +15663,7 @@ json2csv@^5.0.4: jsonparse "^1.3.1" lodash.get "^4.4.2" -json3@^3.3.2, json3@^3.3.3: +json3@^3.3.3: version "3.3.3" resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA== @@ -15669,13 +15887,6 @@ language-tags@^1.0.5: dependencies: language-subtag-registry "~0.3.2" -last-call-webpack-plugin@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555" - dependencies: - lodash "^4.17.5" - webpack-sources "^1.1.0" - [email protected], latest-version@^5.0.0, latest-version@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face" @@ -16024,19 +16235,25 @@ load-script@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/load-script/-/load-script-1.0.0.tgz#0491939e0bee5643ee494a7e3da3d2bac70c6ca4" -loader-fs-cache@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz#f08657646d607078be2f0a032f8bd69dd6f277d9" - integrity sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA== - dependencies: - find-cache-dir "^0.1.1" - mkdirp "^0.5.1" - loader-runner@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== +loader-runner@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.2.0.tgz#d7022380d66d14c5fb1d496b89864ebcfd478384" + integrity sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw== + [email protected], loader-utils@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" + integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + loader-utils@^0.2.16: version "0.2.17" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" @@ -16055,15 +16272,6 @@ loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4 emojis-list "^3.0.0" json5 "^1.0.1" -loader-utils@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" - integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - locate-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" @@ -16423,7 +16631,7 @@ logalot@^2.0.0, logalot@^2.1.0: figures "^1.3.5" squeak "^1.0.0" -loglevel@^1.6.2, loglevel@^1.6.8: +loglevel@^1.6.8: version "1.6.8" resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.8.tgz#8a25fb75d092230ecd4457270d80b54e28011171" integrity sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA== @@ -16616,9 +16824,10 @@ [email protected]: dependencies: tmpl "1.0.x" -map-age-cleaner@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.2.tgz#098fb15538fd3dbe461f12745b0ca8568d4e3f74" +map-age-cleaner@^0.1.1, map-age-cleaner@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== dependencies: p-defer "^1.0.0" @@ -16946,11 +17155,26 @@ mem@^4.0.0: mimic-fn "^1.0.0" p-is-promise "^1.1.0" +mem@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-8.0.0.tgz#b5e4b6d2d241c6296da05436173b4d0c7ae1f9ac" + integrity sha512-qrcJOe6uD+EW8Wrci1Vdiua/15Xw3n/QnaNXE7varnB6InxSk7nu3/i5jfy3S6kWxr8WYJ6R1o0afMUtvorTsA== + dependencies: + map-age-cleaner "^0.1.3" + mimic-fn "^3.1.0" + memfs-or-file-map-to-github-branch@^1.1.0: version "1.1.2" resolved "https://registry.yarnpkg.com/memfs-or-file-map-to-github-branch/-/memfs-or-file-map-to-github-branch-1.1.2.tgz#9d46c02481b7eca8e5ee8a94f170b7e0138cad67" integrity sha512-D2JKK2DTuVYQqquBWco3K6UfSVyVwmd58dgNqh+TgxHOZdTmR8I130gjMbVCkemDl/EzqDA62417cJxKL3/FFA== +memfs@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.2.0.tgz#f9438e622b5acd1daa8a4ae160c496fdd1325b26" + integrity sha512-f/xxz2TpdKv6uDn6GtHee8ivFyxwxmPuXatBb1FBwxYNuVpbM3k/Y1Z+vC0mH/dIXXrukYfe3qe5J32Dfjg93A== + dependencies: + fs-monkey "1.0.1" + memoizee@^0.4.15: version "0.4.15" resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.15.tgz#e6f3d2da863f318d02225391829a6c5956555b72" @@ -17130,6 +17354,11 @@ microbundle@^0.12.4: tslib "^1.13.0" typescript "^3.9.5" +microevent.ts@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0" + integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g== + micromatch@^2.1.5, micromatch@^2.3.11: version "2.3.11" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" @@ -17181,10 +17410,10 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" [email protected], "mime-db@>= 1.40.0 < 2", mime-db@^1.28.0: - version "1.40.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" - integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== [email protected], "mime-db@>= 1.40.0 < 2", mime-db@^1.28.0: + version "1.45.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" + integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== mime-db@~1.25.0: version "1.25.0" @@ -17196,12 +17425,12 @@ [email protected]: dependencies: mime-db "~1.25.0" -mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: - version "2.1.24" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" - integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== +mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.28, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: + version "2.1.28" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd" + integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ== dependencies: - mime-db "1.40.0" + mime-db "1.45.0" [email protected], mime@^1.3.4, mime@^1.4.1: version "1.6.0" @@ -17221,6 +17450,11 @@ mimic-fn@^2.1.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +mimic-fn@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-3.1.0.tgz#65755145bbf3e36954b949c16450427451d5ca74" + integrity sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== + mimic-response@^1.0.0, mimic-response@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" @@ -17246,16 +17480,6 @@ min-indent@^1.0.0: resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== -mini-css-extract-plugin@^0.11.2: - version "0.11.3" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz#15b0910a7f32e62ffde4a7430cfefbd700724ea6" - integrity sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA== - dependencies: - loader-utils "^1.1.0" - normalize-url "1.9.1" - schema-utils "^1.0.0" - webpack-sources "^1.1.0" - mini-css-extract-plugin@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.12.0.tgz#ddeb74fd6304ca9f99c1db74acc7d5b507705454" @@ -17266,6 +17490,15 @@ mini-css-extract-plugin@^0.12.0: schema-utils "^1.0.0" webpack-sources "^1.1.0" +mini-css-extract-plugin@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.3.4.tgz#706e69632cdcdb8b15bf8e638442a0dba304a9c8" + integrity sha512-dNjqyeogUd8ucUgw5sxm1ahvSfSUgef7smbmATRSbDm4EmNx5kQA6VdUEhEeCKSjX6CTYjb5vxgMUvRjqP3uHg== + dependencies: + loader-utils "^2.0.0" + schema-utils "^3.0.0" + webpack-sources "^1.1.0" + mini-svg-data-uri@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.2.3.tgz#e16baa92ad55ddaa1c2c135759129f41910bc39f" @@ -17285,12 +17518,6 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: dependencies: brace-expansion "^1.1.7" [email protected]: - version "3.0.3" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" - dependencies: - brace-expansion "^1.0.0" - [email protected], minimist-options@^4.0.2: version "4.1.0" resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" @@ -17358,6 +17585,14 @@ minizlib@^1.2.1: dependencies: minipass "^2.2.1" +minizlib@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + mississippi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" @@ -17398,7 +17633,7 @@ mkdirp-promise@^5.0.1: dependencies: mkdirp "*" -mkdirp@*, mkdirp@^1.0.4, mkdirp@~1.0.4: +mkdirp@*, mkdirp@^1.0.3, mkdirp@^1.0.4, mkdirp@~1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== @@ -17921,10 +18156,10 @@ node-pre-gyp@^0.10.0: semver "^5.3.0" tar "^4" -node-releases@^1.1.69: - version "1.1.69" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.69.tgz#3149dbde53b781610cd8b486d62d86e26c3725f6" - integrity sha512-DGIjo79VDEyAnRlfSqYTsy+yoHd2IOjJiKUozD2MV2D85Vso6Bug56mb9tT/fY5Urt0iqk01H7x+llAruDR2zA== +node-releases@^1.1.61, node-releases@^1.1.69: + version "1.1.70" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08" + integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== node-request-interceptor@^0.6.3: version "0.6.3" @@ -18194,13 +18429,13 @@ null-check@^1.0.0: resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" integrity sha1-l33/1xdgErnsMNKjnbXPcqBDnt0= -null-loader@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/null-loader/-/null-loader-3.0.0.tgz#3e2b6c663c5bda8c73a54357d8fa0708dc61b245" - integrity sha512-hf5sNLl8xdRho4UPBOOeoIwT3WhjYcMUQm0zj44EhD6UscMAz72o2udpoDFBgykucdEDGIcd6SXbc/G6zssbzw== +null-loader@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/null-loader/-/null-loader-4.0.1.tgz#8e63bd3a2dd3c64236a4679428632edd0a6dbc6a" + integrity sha512-pxqVbi4U6N26lq+LmgIbB5XATP0VdZKOG25DhHi8btMmJJefGArFyDg1yc4U3hWCJbMqSrw0qyrz1UQX+qYXqg== dependencies: - loader-utils "^1.2.3" - schema-utils "^1.0.0" + loader-utils "^2.0.0" + schema-utils "^3.0.0" nullthrows@^1.0.0: version "1.1.1" @@ -18249,9 +18484,10 @@ object-fit-images@^3.2.4: version "3.2.4" resolved "https://registry.yarnpkg.com/object-fit-images/-/object-fit-images-3.2.4.tgz#6c299d38fdf207746e5d2d46c2877f6f25d15b52" -object-hash@^1.1.4: - version "1.3.0" - resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.0.tgz#76d9ba6ff113cf8efc0d996102851fe6723963e2" +object-hash@^2.0.3: + version "2.1.1" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.1.1.tgz#9447d0279b4fcf80cff3259bf66a1dc73afabe09" + integrity sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ== object-inspect@^1.7.0, object-inspect@^1.8.0: version "1.8.0" @@ -18415,10 +18651,10 @@ onetime@^5.1.0, onetime@^5.1.2: dependencies: mimic-fn "^2.1.0" -open@^7.0.3: - version "7.2.1" - resolved "https://registry.yarnpkg.com/open/-/open-7.2.1.tgz#07b0ade11a43f2a8ce718480bdf3d7563a095195" - integrity sha512-xbYCJib4spUdmcs0g/2mK1nKo/jO2T7INClWd/beL7PFkXRWgr8B23ssDHX/USPn2M2IjDR5UdpYs6I67SnTSA== +open@^7.0.2, open@^7.0.3: + version "7.3.1" + resolved "https://registry.yarnpkg.com/open/-/open-7.3.1.tgz#111119cb919ca1acd988f49685c4fdd0f4755356" + integrity sha512-f2wt9DCBKKjlFbjzGb8MOAW8LH8F0mrs1zc7KTjAJ9PZNQbfenzWbNP1VZJvw6ICMG9r14Ah6yfwPn7T7i646A== dependencies: is-docker "^2.0.0" is-wsl "^2.1.1" @@ -18433,12 +18669,6 @@ opentracing@^0.14.4, opentracing@~0.14.3: resolved "https://registry.yarnpkg.com/opentracing/-/opentracing-0.14.4.tgz#a113408ea740da3a90fde5b3b0011a375c2e4268" integrity sha512-nNnZDkUNExBwEpb7LZaeMeQgvrlO8l4bgY/LvGNZCR0xG/dGWqHqjKrAmR5GUoYo0FIz38kxasvA1aevxWs2CA== [email protected]: - version "5.1.0" - resolved "https://registry.yarnpkg.com/opn/-/opn-5.1.0.tgz#72ce2306a17dbea58ff1041853352b4a8fc77519" - dependencies: - is-wsl "^1.1.0" - opn@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" @@ -18460,14 +18690,6 @@ optimist@^0.6.1: minimist "~0.0.1" wordwrap "~0.0.2" -optimize-css-assets-webpack-plugin@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz#e2f1d4d94ad8c0af8967ebd7cf138dcb1ef14572" - integrity sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA== - dependencies: - cssnano "^4.1.10" - last-call-webpack-plugin "^3.0.0" - optionator@^0.8.1, optionator@^0.8.2, optionator@^0.8.3: version "0.8.3" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" @@ -18498,7 +18720,7 @@ ordered-read-streams@^1.0.0: dependencies: readable-stream "^2.0.1" -original@>=0.0.5, original@^1.0.0: +original@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f" dependencies: @@ -18664,14 +18886,14 @@ p-limit@^1.1.0: dependencies: p-try "^1.0.0" -p-limit@^2.0.0, p-limit@^2.1.0, p-limit@^2.2.0, p-limit@^2.2.1, p-limit@^2.3.0: +p-limit@^2.0.0, p-limit@^2.1.0, p-limit@^2.2.0, p-limit@^2.2.1: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" -p-limit@^3.0.2: +p-limit@^3.0.2, p-limit@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== @@ -19121,6 +19343,11 @@ [email protected]: resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== +path-browserify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + path-case@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/path-case/-/path-case-2.1.1.tgz#94b8037c372d3fe2906e465bb45e25d226e8eea5" @@ -19328,12 +19555,6 @@ pixelmatch@^4.0.2: dependencies: pngjs "^3.0.0" -pkg-dir@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" - dependencies: - find-up "^1.0.0" - pkg-dir@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" @@ -19353,7 +19574,14 @@ pkg-dir@^4.1.0, pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" -pkg-up@^3.1.0: +pkg-dir@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760" + integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== + dependencies: + find-up "^5.0.0" + [email protected], pkg-up@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== @@ -19499,7 +19727,7 @@ postcss-js@^3.0.3: camelcase-css "^2.0.1" postcss "^8.1.6" -postcss-load-config@^2.0.0, postcss-load-config@^2.1.0: +postcss-load-config@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q== @@ -19507,15 +19735,6 @@ postcss-load-config@^2.0.0, postcss-load-config@^2.1.0: cosmiconfig "^5.0.0" import-cwd "^2.0.0" -postcss-loader@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d" - dependencies: - loader-utils "^1.1.0" - postcss "^7.0.0" - postcss-load-config "^2.0.0" - schema-utils "^1.0.0" - postcss-loader@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-4.1.0.tgz#4647a6c8dad3cb6b253fbfaa21d62201086f6e39" @@ -19527,6 +19746,15 @@ postcss-loader@^4.1.0: schema-utils "^3.0.0" semver "^7.3.2" +postcss-loader@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-5.0.0.tgz#bea95363dcb550d72ceb612ce44663356b7782d7" + integrity sha512-bOvyWP5VHCJbThbv7wrBwCBc3DsVpyCfd+k/wHOL3wTAMMHmSSfNts90EADf8bHa6I810ird1JBEKmBRgJu3cg== + dependencies: + cosmiconfig "^7.0.0" + klona "^2.0.4" + semver "^7.3.4" + postcss-merge-longhand@^4.0.11: version "4.0.11" resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" @@ -19601,6 +19829,11 @@ postcss-modules-extract-imports@^1.1.0, postcss-modules-extract-imports@^1.2.0: dependencies: postcss "^6.0.1" +postcss-modules-extract-imports@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" + integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== + [email protected], postcss-modules-local-by-default@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" @@ -19608,6 +19841,15 @@ [email protected], postcss-modules-local-by-default@^1.2.0: css-selector-tokenizer "^0.7.0" postcss "^6.0.1" +postcss-modules-local-by-default@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" + integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== + dependencies: + icss-utils "^5.0.0" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + postcss-modules-parser@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/postcss-modules-parser/-/postcss-modules-parser-1.1.1.tgz#95f71ad7916f0f39207bb81c401336c8d245738c" @@ -19623,6 +19865,13 @@ [email protected], postcss-modules-scope@^1.1.0: css-selector-tokenizer "^0.7.0" postcss "^6.0.1" +postcss-modules-scope@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" + integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== + dependencies: + postcss-selector-parser "^6.0.4" + [email protected], postcss-modules-values@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" @@ -19630,6 +19879,13 @@ [email protected], postcss-modules-values@^1.3.0: icss-replace-symbols "^1.1.0" postcss "^6.0.1" +postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + dependencies: + icss-utils "^5.0.0" + postcss-modules@^1.1.0: version "1.3.2" resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-1.3.2.tgz#0a616b84387f1f60dd28a01f597687e85b7b8481" @@ -19784,6 +20040,16 @@ postcss-selector-parser@^5.0.0-rc.4: indexes-of "^1.0.1" uniq "^1.0.1" +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: + version "6.0.4" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" + integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== + dependencies: + cssesc "^3.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + util-deprecate "^1.0.2" + postcss-svgo@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" @@ -19821,6 +20087,15 @@ [email protected]: source-map "^0.5.6" supports-color "^3.2.3" [email protected]: + version "8.2.5" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.5.tgz#3c75149ada4e93db9521913654c0144517f77c9a" + integrity sha512-wMcb7BpDcm3gxQOQx46NDNT36Kk0Ao6PJLLI2ed5vehbbbxCEuslSQzbQ2sfSKy+gkYxhWcGWSeaK+gwm4KIZg== + dependencies: + colorette "^1.2.1" + nanoid "^3.1.20" + source-map "^0.6.1" + postcss@^5.0.10, postcss@^5.0.8, postcss@^5.2.4: version "5.2.18" resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" @@ -19847,7 +20122,7 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.26, postcss@^7.0.2 source-map "^0.6.1" supports-color "^6.1.0" -postcss@^8.1.6, postcss@^8.2.2, postcss@^8.2.4: +postcss@^8.1.4, postcss@^8.1.6, postcss@^8.2.2, postcss@^8.2.4: version "8.2.4" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.4.tgz#20a98a39cf303d15129c2865a9ec37eda0031d04" integrity sha512-kRFftRoExRVXZlwUuay9iC824qmXPcQQVzAjbCCgjpXnkdMCJYBu2gTwAaFBzv8ewND6O8xFb3aELmEkh9zTzg== @@ -20083,13 +20358,13 @@ promise@^7.1.1: dependencies: asap "~2.0.3" -prompts@^2.0.1, prompts@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" - integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA== [email protected], prompts@^2.0.1, prompts@^2.3.2: + version "2.4.0" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.0.tgz#4aa5de0723a231d1ee9121c40fdf663df73f61d7" + integrity sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ== dependencies: kleur "^3.0.3" - sisteransi "^1.0.4" + sisteransi "^1.0.5" promzard@^0.3.0: version "0.3.0" @@ -20415,9 +20690,13 @@ raw-body@~1.1.0: bytes "1" string_decoder "0.10" -raw-loader@^0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-0.5.1.tgz#0c3d0beaed8a01c966d9787bf778281252a979aa" +raw-loader@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.2.tgz#1aac6b7d1ad1501e66efdac1522c73e59a584eb6" + integrity sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA== + dependencies: + loader-utils "^2.0.0" + schema-utils "^3.0.0" rc@^1.0.1, rc@^1.1.6, rc@^1.2.7, rc@^1.2.8: version "1.2.8" @@ -20435,28 +20714,34 @@ react-clientside-effect@^1.2.2: dependencies: "@babel/runtime" "^7.0.0" -react-dev-utils@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-4.2.3.tgz#5b42d9ea58d5e9e017a2f57a40a8af408a3a46fb" - integrity sha512-uvmkwl5uMexCmC0GUv1XGQP0YjfYePJufGg4YYiukhqk2vN1tQxwWJIBERqhOmSi80cppZg8mZnPP/kOMf1sUQ== - dependencies: - address "1.0.3" - babel-code-frame "6.26.0" - chalk "1.1.3" - cross-spawn "5.1.0" - detect-port-alt "1.1.3" - escape-string-regexp "1.0.5" - filesize "3.5.11" - global-modules "1.0.0" - gzip-size "3.0.0" - inquirer "3.3.0" - is-root "1.0.0" - opn "5.1.0" - react-error-overlay "^3.0.0" - recursive-readdir "2.2.1" - shell-quote "1.6.1" - sockjs-client "1.1.4" - strip-ansi "3.0.1" +react-dev-utils@^11.0.1: + version "11.0.1" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-11.0.1.tgz#30106c2055acfd6b047d2dc478a85c356e66fe45" + integrity sha512-rlgpCupaW6qQqvu0hvv2FDv40QG427fjghV56XyPcP5aKtOAPzNAhQ7bHqk1YdS2vpW1W7aSV3JobedxuPlBAA== + dependencies: + "@babel/code-frame" "7.10.4" + address "1.1.2" + browserslist "4.14.2" + chalk "2.4.2" + cross-spawn "7.0.3" + detect-port-alt "1.1.6" + escape-string-regexp "2.0.0" + filesize "6.1.0" + find-up "4.1.0" + fork-ts-checker-webpack-plugin "4.1.6" + global-modules "2.0.0" + globby "11.0.1" + gzip-size "5.1.1" + immer "7.0.9" + is-root "2.1.0" + loader-utils "2.0.0" + open "^7.0.2" + pkg-up "3.1.0" + prompts "2.4.0" + react-error-overlay "^6.0.8" + recursive-readdir "2.2.2" + shell-quote "1.7.2" + strip-ansi "6.0.0" text-table "0.2.0" react-devtools-core@^4.6.0: @@ -20502,6 +20787,11 @@ react-error-overlay@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-3.0.0.tgz#c2bc8f4d91f1375b3dad6d75265d51cd5eeaf655" +react-error-overlay@^6.0.8: + version "6.0.8" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.8.tgz#474ed11d04fc6bda3af643447d85e9127ed6b5de" + integrity sha512-HvPuUQnLp5H7TouGq3kzBeioJmXms1wHy9EGjz2OURWBp4qZO6AfGEcnxts1D/CbwPLRAgTMPCEgYhA3sEM4vw== + react-fast-compare@^2.0.1: version "2.0.4" resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9" @@ -20534,10 +20824,10 @@ react-helmet@^6.1.0: react-fast-compare "^3.1.1" react-side-effect "^2.1.0" -react-hot-loader@^4.12.21: - version "4.12.21" - resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.12.21.tgz#332e830801fb33024b5a147d6b13417f491eb975" - integrity sha512-Ynxa6ROfWUeKWsTHxsrL2KMzujxJVPjs385lmB2t5cHUxdoRPGind9F00tOkdc1l5WBleOF4XEAMILY1KPIIDA== +react-hot-loader@^4.13.0: + version "4.13.0" + resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-4.13.0.tgz#c27e9408581c2a678f5316e69c061b226dc6a202" + integrity sha512-JrLlvUPqh6wIkrK2hZDfOyq/Uh/WeVEr8nc7hkn2/3Ul0sx1Kr5y4kOGNacNRoj7RhwLNcQ3Udf1KJXrqc0ZtA== dependencies: fast-levenshtein "^2.0.6" global "^4.3.0" @@ -20626,10 +20916,10 @@ react-reconciler@^0.25.1: prop-types "^15.6.2" scheduler "^0.19.1" -react-refresh@^0.8.3: - version "0.8.3" - resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f" - integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg== +react-refresh@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.9.0.tgz#71863337adc3e5c2f8a6bfddd12ae3bfe32aafbf" + integrity sha512-Gvzk7OZpiqKSkxsQvO/mbTN1poglhmAV7gR/DdIrRrSMXraRQQlfikRJOr3Nb9GTMPC5kof948Zy6jJZIFtDvQ== react-remove-scroll-bar@^2.1.0: version "2.1.0" @@ -20933,13 +21223,7 @@ rechoir@^0.6.2: dependencies: resolve "^1.1.6" [email protected]: - version "2.2.1" - resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.1.tgz#90ef231d0778c5ce093c9a48d74e5c5422d13a99" - dependencies: - minimatch "3.0.3" - -recursive-readdir@^2.2.2: [email protected], recursive-readdir@^2.2.2: version "2.2.2" resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" dependencies: @@ -22804,13 +23088,6 @@ scheduler@^0.19.1: loose-envify "^1.1.0" object-assign "^4.1.1" -schema-utils@^0.4.5: - version "0.4.7" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187" - dependencies: - ajv "^6.1.0" - ajv-keywords "^3.1.0" - schema-utils@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" @@ -22819,7 +23096,7 @@ schema-utils@^1.0.0: ajv-errors "^1.0.0" ajv-keywords "^3.1.0" -schema-utils@^2.6.5, schema-utils@^2.6.6, schema-utils@^2.7.0: +schema-utils@^2.6.5, schema-utils@^2.7.0: version "2.7.1" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== @@ -22957,6 +23234,13 @@ serialize-javascript@^4.0.0: dependencies: randombytes "^2.1.0" +serialize-javascript@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4" + integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA== + dependencies: + randombytes "^2.1.0" + serve-index@^1.9.1: version "1.9.1" resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" @@ -23086,14 +23370,10 @@ shebang-regex@^3.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== [email protected], shell-quote@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.6.1.tgz#f4781949cce402697127430ea3b3c5476f481767" - dependencies: - array-filter "~0.0.0" - array-map "~0.0.0" - array-reduce "~0.0.0" - jsonify "~0.0.0" [email protected], shell-quote@^1.6.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" + integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== shelljs@^0.8.3: version "0.8.4" @@ -23161,10 +23441,10 @@ single-trailing-newline@^1.0.0: dependencies: detect-newline "^1.0.3" -sisteransi@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.4.tgz#386713f1ef688c7c0304dc4c0632898941cad2e3" - integrity sha512-/ekMoM4NJ59ivGSfKapeG+FWtrmWvA1p6FBZwXrqojw90vJu8lBmrTxCMuBCydKtkaUe2zt4PlxeTKpjwMbyig== +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== sitemap@^1.13.0: version "1.13.0" @@ -23343,17 +23623,6 @@ socketerrors@^0.3.0: createerror "1.1.0" httperrors "2.0.1" [email protected]: - version "1.1.4" - resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" - dependencies: - debug "^2.6.6" - eventsource "0.1.6" - faye-websocket "~0.11.0" - inherits "^2.0.1" - json3 "^3.3.2" - url-parse "^1.1.8" - sockjs-client@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.5.0.tgz#2f8ff5d4b659e0d092f7aba0b7c386bd2aa20add" @@ -23414,9 +23683,10 @@ source-list-map@^1.1.1: resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-1.1.2.tgz#9889019d1024cce55cdc069498337ef6186a11a1" integrity sha1-mIkBnRAkzOVc3AaUmDN+9hhqEaE= -source-list-map@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" +source-list-map@^2.0.0, source-list-map@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: version "0.5.2" @@ -23612,12 +23882,11 @@ ssri@^6.0.0, ssri@^6.0.1: dependencies: figgy-pudding "^3.5.1" -ssri@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-7.1.0.tgz#92c241bf6de82365b5c7fb4bd76e975522e1294d" - integrity sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g== +ssri@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz#79ca74e21f8ceaeddfcb4b90143c458b8d988808" + integrity sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA== dependencies: - figgy-pudding "^3.5.1" minipass "^3.1.1" st@^2.0.0: @@ -23996,7 +24265,14 @@ stringify-package@^1.0.1: resolved "https://registry.yarnpkg.com/stringify-package/-/stringify-package-1.0.1.tgz#e5aa3643e7f74d0f28628b72f3dad5cecfc3ba85" integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg== [email protected], strip-ansi@^3, strip-ansi@^3.0.0, strip-ansi@^3.0.1: [email protected], strip-ansi@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" + integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== + dependencies: + ansi-regex "^5.0.0" + +strip-ansi@^3, strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" dependencies: @@ -24014,13 +24290,6 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" -strip-ansi@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" - integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== - dependencies: - ansi-regex "^5.0.0" - strip-bom-string@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" @@ -24124,6 +24393,14 @@ style-loader@^0.23.1: loader-utils "^1.1.0" schema-utils "^1.0.0" +style-loader@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-2.0.0.tgz#9669602fd4690740eaaec137799a03addbbc393c" + integrity sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ== + dependencies: + loader-utils "^2.0.0" + schema-utils "^3.0.0" + [email protected], style-to-object@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46" @@ -24426,6 +24703,11 @@ tapable@^1.0.0, tapable@^1.1.3: resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== +tapable@^2.1.1, tapable@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.0.tgz#5c373d281d9c672848213d0e037d1c4165ab426b" + integrity sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw== + tar-fs@^2.0.0, tar-fs@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" @@ -24472,6 +24754,18 @@ tar@^4, tar@^4.4.10, tar@^4.4.8: safe-buffer "^5.1.2" yallist "^3.0.3" +tar@^6.0.2: + version "6.1.0" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.0.tgz#d1724e9bcc04b977b18d5c573b333a2207229a83" + integrity sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^3.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + tdigest@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/tdigest/-/tdigest-0.1.1.tgz#2e3cb2c39ea449e55d1e6cd91117accca4588021" @@ -24560,22 +24854,19 @@ terser-webpack-plugin@^1.4.3: webpack-sources "^1.4.0" worker-farm "^1.7.0" -terser-webpack-plugin@^2.3.8: - version "2.3.8" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz#894764a19b0743f2f704e7c2a848c5283a696724" - integrity sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w== +terser-webpack-plugin@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.1.1.tgz#7effadee06f7ecfa093dbbd3e9ab23f5f3ed8673" + integrity sha512-5XNNXZiR8YO6X6KhSGXfY0QrGrCRlSwAEjIIrlRQR4W8nP69TaJUlh3bkuac6zzgspiGPfKEHcY295MMVExl5Q== dependencies: - cacache "^13.0.1" - find-cache-dir "^3.3.1" - jest-worker "^25.4.0" - p-limit "^2.3.0" - schema-utils "^2.6.6" - serialize-javascript "^4.0.0" + jest-worker "^26.6.2" + p-limit "^3.1.0" + schema-utils "^3.0.0" + serialize-javascript "^5.0.1" source-map "^0.6.1" - terser "^4.6.12" - webpack-sources "^1.4.3" + terser "^5.5.1" -terser@^4.0.0, terser@^4.1.2, terser@^4.6.12, terser@^4.6.2: +terser@^4.0.0, terser@^4.1.2, terser@^4.6.2: version "4.8.0" resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== @@ -24584,10 +24875,10 @@ terser@^4.0.0, terser@^4.1.2, terser@^4.6.12, terser@^4.6.2: source-map "~0.6.1" source-map-support "~0.5.12" -terser@^5.3.8: - version "5.3.8" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.3.8.tgz#991ae8ba21a3d990579b54aa9af11586197a75dd" - integrity sha512-zVotuHoIfnYjtlurOouTazciEfL7V38QMAOhGqpXDEg6yT13cF4+fEP9b0rrCEQTn+tT46uxgFsTZzhygk+CzQ== +terser@^5.3.8, terser@^5.5.1: + version "5.5.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.5.1.tgz#540caa25139d6f496fdea056e414284886fb2289" + integrity sha512-6VGWZNVP2KTUcltUQJ25TtNjx/XgdDsBDKGt8nN0MpydU36LmbPPcMBd2kmtZNNGVVDLg44k7GKeHHj+4zPIBQ== dependencies: commander "^2.20.0" source-map "~0.7.2" @@ -25812,14 +26103,14 @@ url-join@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/url-join/-/url-join-1.1.0.tgz#741c6c2f4596c4830d6718460920d0c92202dc78" -url-loader@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8" - integrity sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg== +url-loader@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2" + integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== dependencies: - loader-utils "^1.1.0" - mime "^2.0.3" - schema-utils "^1.0.0" + loader-utils "^2.0.0" + mime-types "^2.1.27" + schema-utils "^3.0.0" url-parse-lax@^1.0.0: version "1.0.0" @@ -25833,7 +26124,7 @@ url-parse-lax@^3.0.0: dependencies: prepend-http "^2.0.0" -url-parse@^1.1.8, url-parse@^1.4.3, url-parse@^1.4.7: +url-parse@^1.4.3, url-parse@^1.4.7: version "1.4.7" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz#a8a83535e8c00a316e403a5db4ac1b9b853ae278" integrity sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg== @@ -26283,6 +26574,14 @@ watchpack@^1.7.4: chokidar "^3.4.1" watchpack-chokidar2 "^2.0.0" +watchpack@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.1.0.tgz#e63194736bf3aa22026f7b191cd57907b0f9f696" + integrity sha512-UjgD1mqjkG99+3lgG36at4wPnUXNvis2v1utwTgQ43C22c4LD71LsYMExdWXh4HZ+RmW+B0t1Vrg2GpXAkTOQw== + dependencies: + glob-to-regexp "^0.4.1" + graceful-fs "^4.1.2" + wawoff2@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/wawoff2/-/wawoff2-1.0.2.tgz#a8d467e46fafc55bf7542ee0b87867aa7a55d5d5" @@ -26351,6 +26650,18 @@ webpack-dev-middleware@^3.7.2: range-parser "^1.2.1" webpack-log "^2.0.0" +webpack-dev-middleware@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-4.1.0.tgz#f0c1f12ff4cd855b3b5eec89ee0f69bcc5336364" + integrity sha512-mpa/FY+DiBu5+r5JUIyTCYWRfkWgyA3/OOE9lwfzV9S70A4vJYLsVRKj5rMFEsezBroy2FmPyQ8oBRVW8QmK1A== + dependencies: + colorette "^1.2.1" + mem "^8.0.0" + memfs "^3.2.0" + mime-types "^2.1.28" + range-parser "^1.2.1" + schema-utils "^3.0.0" + webpack-dev-server@^3.11.2: version "3.11.2" resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.2.tgz#695ebced76a4929f0d5de7fd73fafe185fe33708" @@ -26407,12 +26718,13 @@ webpack-log@^2.0.0: ansi-colors "^3.0.0" uuid "^3.3.2" -webpack-merge@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d" - integrity sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g== +webpack-merge@^5.7.3: + version "5.7.3" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.7.3.tgz#2a0754e1877a25a8bbab3d2475ca70a052708213" + integrity sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA== dependencies: - lodash "^4.17.15" + clone-deep "^4.0.1" + wildcard "^2.0.0" webpack-sources@^0.2.0: version "0.2.3" @@ -26430,19 +26742,54 @@ webpack-sources@^1.0.0, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack- source-list-map "^2.0.0" source-map "~0.6.1" -webpack-stats-plugin@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/webpack-stats-plugin/-/webpack-stats-plugin-0.3.2.tgz#c06b185aa5dcc93b3f0c3a7891d24a111f849740" - integrity sha512-kxEtPQ6lBBik2qtJlsZkiaDMI6rGXe9w1kLH9ZCdt0wgCGVnbwwPlP60cMqG6tILNFYqXDxNt4+c4OIIuE+Fnw== +webpack-sources@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-2.2.0.tgz#058926f39e3d443193b6c31547229806ffd02bac" + integrity sha512-bQsA24JLwcnWGArOKUxYKhX3Mz/nK1Xf6hxullKERyktjNMC4x8koOeaDNTA2fEJ09BdWLbM/iTW0ithREUP0w== + dependencies: + source-list-map "^2.0.1" + source-map "^0.6.1" -webpack-virtual-modules@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.2.2.tgz#20863dc3cb6bb2104729fff951fbe14b18bd0299" - integrity sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA== +webpack-stats-plugin@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/webpack-stats-plugin/-/webpack-stats-plugin-1.0.3.tgz#0f64551a0b984b48a9e7acdee32e3cfda556fe51" + integrity sha512-tV/SQHl6lKfBahJcNDmz8JG1rpWPB9NEDQSMIoL74oVAotdxYljpgIsgLzgc1N9QrtA9KEA0moJVwQtNZv2aDA== + +webpack-virtual-modules@^0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.2.tgz#68ce4479df7334a491b7a3f3bead47fe382947d9" + integrity sha512-OUsT1VZhArN8nY7g6mMlw91HWnXcNXsIQjsQ83WteF4ViZ6YXqF2sWKOTDIZ0H+PPiApQdszLdZIrD7NNlU0Yw== + +webpack@^4.44.2: + version "4.45.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.45.0.tgz#bcdc1ddb43959adb47f8974e60d944027267c1be" + integrity sha512-JhDaVi4CbRcwLLAoqC7eugMSMJnZbIfE2AyjaZ19pnOIh/R2O/lXOiXA2tQFN0iXEcxgpPJsPJHW2wOWqiTLcw== dependencies: - debug "^3.0.0" + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/wasm-edit" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + acorn "^6.4.1" + ajv "^6.10.2" + ajv-keywords "^3.4.1" + chrome-trace-event "^1.0.2" + enhanced-resolve "^4.3.0" + eslint-scope "^4.0.3" + json-parse-better-errors "^1.0.2" + loader-runner "^2.4.0" + loader-utils "^1.2.3" + memory-fs "^0.4.1" + micromatch "^3.1.10" + mkdirp "^0.5.3" + neo-async "^2.6.1" + node-libs-browser "^2.2.1" + schema-utils "^1.0.0" + tapable "^1.1.3" + terser-webpack-plugin "^1.4.3" + watchpack "^1.7.4" + webpack-sources "^1.4.1" -webpack@^4.44.1, webpack@^4.44.2, webpack@^4.46.0: +webpack@^4.46.0: version "4.46.0" resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542" integrity sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q== @@ -26471,6 +26818,36 @@ webpack@^4.44.1, webpack@^4.44.2, webpack@^4.46.0: watchpack "^1.7.4" webpack-sources "^1.4.1" +webpack@^5.16.0: + version "5.16.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.16.0.tgz#796e093c2d92c229f013aefefde82b50c0572570" + integrity sha512-QOkctcjYfEGxcYg4AzPJafyAQ7ANc266/URkX881uFA7b2k31E0Dmpy1ExfppHOTp1kHDTsRh9sXojVUvgPF0g== + dependencies: + "@types/eslint-scope" "^3.7.0" + "@types/estree" "^0.0.45" + "@webassemblyjs/ast" "1.11.0" + "@webassemblyjs/wasm-edit" "1.11.0" + "@webassemblyjs/wasm-parser" "1.11.0" + acorn "^8.0.4" + browserslist "^4.14.5" + chrome-trace-event "^1.0.2" + enhanced-resolve "^5.7.0" + es-module-lexer "^0.3.26" + eslint-scope "^5.1.1" + events "^3.2.0" + glob-to-regexp "^0.4.1" + graceful-fs "^4.2.4" + json-parse-better-errors "^1.0.2" + loader-runner "^4.2.0" + mime-types "^2.1.27" + neo-async "^2.6.2" + pkg-dir "^5.0.0" + schema-utils "^3.0.0" + tapable "^2.1.1" + terser-webpack-plugin "^5.1.1" + watchpack "^2.0.0" + webpack-sources "^2.1.1" + websocket-driver@>=0.5.1, websocket-driver@^0.7.4: version "0.7.4" resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" @@ -26579,6 +26956,11 @@ widest-line@^3.1.0: dependencies: string-width "^4.0.0" +wildcard@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" + integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== + windows-release@^3.1.0: version "3.2.0" resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-3.2.0.tgz#8122dad5afc303d833422380680a79cdfa91785f" @@ -26763,6 +27145,13 @@ worker-farm@^1.7.0: dependencies: errno "~0.1.7" +worker-rpc@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5" + integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg== + dependencies: + microevent.ts "~0.1.1" + wrap-ansi@^2.0.0: version "2.1.0" resolved "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85"
0d79739e437b474882ac937f188206256735e02e
2020-10-09 18:04:16
Max Stoiber
chore(gatsby-plugin-react-helmet): add pluginOptionsSchema (#27356)
false
add pluginOptionsSchema (#27356)
chore
diff --git a/packages/gatsby-plugin-react-helmet/src/gatsby-node.js b/packages/gatsby-plugin-react-helmet/src/gatsby-node.js new file mode 100644 index 0000000000000..db28839c1259d --- /dev/null +++ b/packages/gatsby-plugin-react-helmet/src/gatsby-node.js @@ -0,0 +1 @@ +exports.pluginOptionsSchema = ({ Joi }) => Joi.object({})
76f84aa726f961783510715f714eb1c348ebad11
2021-04-28 23:14:50
David E Disch
fix(gatsby-source-drupal): remove computed fields before running createNode on existing node (#28682)
false
remove computed fields before running createNode on existing node (#28682)
fix
diff --git a/packages/gatsby-source-drupal/src/utils.js b/packages/gatsby-source-drupal/src/utils.js index a59266f9f73c7..5afaa54cfe018 100644 --- a/packages/gatsby-source-drupal/src/utils.js +++ b/packages/gatsby-source-drupal/src/utils.js @@ -200,6 +200,9 @@ const handleWebhookUpdate = async ( if (node.internal.owner) { delete node.internal.owner } + if (node.fields) { + delete node.fields + } node.internal.contentDigest = createContentDigest(node) createNode(node) reporter.log(`Updated node: ${node.id}`)
d30832b5b9cdad1242258094b8a02de1c987e695
2020-03-25 08:46:36
Ward Peeters
chore: merge latest changes when asserting changes (#22539)
false
merge latest changes when asserting changes (#22539)
chore
diff --git a/scripts/assert-changed-files.sh b/scripts/assert-changed-files.sh index c089008ea932c..486b29e039971 100755 --- a/scripts/assert-changed-files.sh +++ b/scripts/assert-changed-files.sh @@ -1,11 +1,35 @@ #!/bin/bash + +IS_CI="${CI:-false}" GREP_PATTERN=$1 +if [ "$IS_CI" = true ]; then + git config --local url."https://github.com/".insteadOf [email protected]: + git config --local user.name "GatsbyJS Bot" + git config --local user.email "[email protected]" + + git fetch origin + git merge --no-edit origin/master + + if [ $? -ne 0 ]; then + echo "Branch has conflicts with master, rolling back test." + git merge --abort + fi + + git config --local --unset user.name + git config --local --unset user.email + git config --local --unset url."https://github.com/".insteadOf +fi + FILES_COUNT="$(git diff-tree --no-commit-id --name-only -r "$CIRCLE_BRANCH" origin/master | grep -E "$GREP_PATTERN" -c)" +# reset to previous state +git reset --hard HEAD@{1} + if [ "$FILES_COUNT" -eq 0 ]; then echo "0 files matching '$GREP_PATTERN'; exiting and marking successful." circleci step halt || exit 1 else echo "$FILES_COUNT file(s) matching '$GREP_PATTERN'; continuing." fi +
ba70914f74b2e520cdebcdb4e1ed9a0322a390d7
2019-10-04 15:44:12
renovate[bot]
chore: update dependency graphiql-explorer to ^0.4.5 (#18097)
false
update dependency graphiql-explorer to ^0.4.5 (#18097)
chore
diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json index 0e596d433da7d..91b5dfacf965b 100644 --- a/packages/gatsby-graphiql-explorer/package.json +++ b/packages/gatsby-graphiql-explorer/package.json @@ -43,7 +43,7 @@ "css-loader": "^1.0.1", "graphiql": "^0.15.1", "graphiql-code-exporter": "^2.0.5", - "graphiql-explorer": "^0.4.4", + "graphiql-explorer": "^0.4.5", "html-webpack-plugin": "^3.2.0", "npm-run-all": "4.1.5", "react": "^16.10.2", diff --git a/yarn.lock b/yarn.lock index c079951276184..e28eaafc9edf8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9557,10 +9557,10 @@ graphiql-code-exporter@^2.0.5: dependencies: copy-to-clipboard "^3.0.8" -graphiql-explorer@^0.4.4: - version "0.4.4" - resolved "https://registry.yarnpkg.com/graphiql-explorer/-/graphiql-explorer-0.4.4.tgz#01a7005c27a4148a4555bb746f5af84eb588824c" - integrity sha512-NuQ1XAjZwykKb9GoHM6ofI9qITZ8Lue/mXi1Bj3/ZbGZv1Srk3sz0QkKQ5jBaxmuS3Ay09LRvJQSOr0Ci1dlfg== +graphiql-explorer@^0.4.5: + version "0.4.5" + resolved "https://registry.yarnpkg.com/graphiql-explorer/-/graphiql-explorer-0.4.5.tgz#b8305d383fbf2fada357036e088873aab95433f3" + integrity sha512-b8ubovt6MFPI9Oswxy4EXAd20Vm+QqrTpD6PRWcbx/cXBdD6BUPFIU8cPDRbzd4W4Emir20iIm/PRUNA/qjbdA== graphiql@^0.15.1: version "0.15.1"
f07d6d5bcbc6ab8e8ff17984dcaaf4410b904b3d
2022-01-25 20:31:19
Jude Agboola
chore(docs): Release Notes for 4.6 (#34557)
false
Release Notes for 4.6 (#34557)
chore
diff --git a/docs/docs/reference/release-notes/v4.6/index.md b/docs/docs/reference/release-notes/v4.6/index.md new file mode 100644 index 0000000000000..96f321551f54b --- /dev/null +++ b/docs/docs/reference/release-notes/v4.6/index.md @@ -0,0 +1,139 @@ +--- +date: "2022-01-25" +version: "4.6.0" +title: "v4.6 Release Notes" +--- + +Welcome to `[email protected]` release (January 2022 #2) + +Key highlights of this release: + +- [Speeding Up Subsequent Queries](#speeding-up-subsequent-queries) +- [Tracking Image Changes in Markdown Files](#tracking-image-changes-in-markdown-files) +- [New Major Version for `gatsby-plugin-utils`](#fix-plugin-schema-validation) + +Also check out [notable bugfixes](#notable-bugfixes--improvements). + +**Bleeding Edge:** Want to try new features as soon as possible? Install `gatsby@next` and let us know +if you have any [issues](https://github.com/gatsbyjs/gatsby/issues). + +[Previous release notes](/docs/reference/release-notes/v4.5) + +[Full changelog][full-changelog] + +--- + +## Speeding Up Subsequent Queries + +Subseqent queries now get a ~10-15% performance boost! You'll see this improvement after your first `gatsby build` for all following runs (unless the cache is cleared). These percentage may defer depending on the complexity of nodes. We were able to achieve this by caching `rootNode` & `trackedRootNodes` across instances of `graphqlRunner` via [PR #33695](https://github.com/gatsbyjs/gatsby/pull/33695) + +## Tracking Image Changes in Markdown Files + +When using an image inside markdown files together with `gatsby-remark-images` (e.g. `![alt text](./some-image.jpg)`) there were cases when a change to the image wasn't reflected in the site. Changes like resizing or directly editing the image required a `gatsby clean` in the past. This broken functionality is now fixed with [PR #34433 ](https://github.com/gatsbyjs/gatsby/pull/34433) and changed images will now directly show during `gatsby develop` and `gatsby build`. + +## New Major Version for `gatsby-plugin-utils` + +You can [configure plugin options](/docs/how-to/plugins-and-themes/configuring-usage-with-plugin-options/) for your plugins and [unit test](/docs/how-to/plugins-and-themes/configuring-usage-with-plugin-options/#unit-testing-an-options-schema) the options schema using helper functions from `gatsby-plugin-utils`. The schema validation for the options schema now **does not** throw errors anymore on warnings like unknown keys (see [PR that implemented this](https://github.com/gatsbyjs/gatsby/pull/34182) for more information). This fixed an issue where default values where not passed through to the plugin if e.g. unknown keys were used. + +Here's a short list of changes you'll need to make or be aware of: + +- [`pluginOptionsSchema`](/docs/reference/config-files/gatsby-node/#pluginOptionsSchema) returns warnings instead of errors now for unknown keys +- [`testPluginOptionsSchema`](/docs/how-to/plugins-and-themes/configuring-usage-with-plugin-options/#unit-testing-an-options-schema) now returns `warnings` and `hasWarnings` in addition to the existing values +- Default options you set in your plugin option schema are now correctly passed through to the plugin, even when a user sets unknown keys + +### Migration + +Here's a short before/after example on how to migrate your test when you're checking for unknown keys. + +**Before:** + +```js:title=gatsby-node.js +// The plugin doesn't take any options +exports.pluginOptionsSchema = ({ Joi }) => Joi.object({}) +``` + +```js:title=__tests__/gatsby-node.js +import { testPluginOptionsSchema } from "gatsby-plugin-utils" +import { pluginOptionsSchema } from "../gatsby-node" + +it(`should not accept any options`, async () => { + const expectedErrors = [`"optionA" is not allowed`] + + const { errors } = await testPluginOptionsSchema( + pluginOptionsSchema, + { + optionA: `This options shouldn't exist`, + } + ) + + expect(errors).toEqual(expectedErrors) +}) +``` + +**After:** + +```js:title=__tests__/gatsby-node.js +import { testPluginOptionsSchema } from "gatsby-plugin-utils" +import { pluginOptionsSchema } from "../gatsby-node" + +it(`should not accept any options`, async () => { + const expectedWarnings = [`"optionA" is not allowed`] + + const { warnings, isValid, hasWarnings } = await testPluginOptionsSchema( + pluginOptionsSchema, + { + optionA: `This options shouldn't exist`, + } + ) + expect(isValid).toBe(true) + expect(hasWarnings).toBe(true) + expect(warnings).toEqual(expectedWarnings) +}) +``` + +## Notable Bugfixes & Improvements + +- `gatsby-plugin-manifest`: Generate icons sequentially, via [PR #34331](https://github.com/gatsbyjs/gatsby/pull/34331) +- `create-gatsby`: Fixed an issue where user-provided `GATSBY_TELEMETRY_DISABLED` environment variable did not disable telemetry, via [PR #34495](https://github.com/gatsbyjs/gatsby/pull/34495) +- `gatsby-sharp`: Create more resilient wrapper around sharp, via [PR #34339](https://github.com/gatsbyjs/gatsby/pull/34339) +- `gatsby-source-contentful`: Enable tag support for assets, via [PR #34480](https://github.com/gatsbyjs/gatsby/pull/34480) +- `gatsby`: Optimized queries that filter just on `id`, via [PR #34520](https://github.com/gatsbyjs/gatsby/pull/34520) + +## Contributors + +A big **Thank You** to [our community who contributed][full-changelog] to this release 💜 + +- [newhouse](https://github.com/newhouse): Update plugins.md to have correct URL for gatsby-plugin-segment-js [PR #34397](https://github.com/gatsbyjs/gatsby/pull/34397) +- [AnilSeervi](https://github.com/AnilSeervi) + + - chore(docs): Old occurrences of gatbyjs.org [PR #34402](https://github.com/gatsbyjs/gatsby/pull/34402) + - chore(docs) : Typo fix GatbsyImage -> GatsbyImage [PR #34439](https://github.com/gatsbyjs/gatsby/pull/34439) + +- [janaagaard75](https://github.com/janaagaard75): Upgrade to strip-ansi ^6.0.1 [PR #34383](https://github.com/gatsbyjs/gatsby/pull/34383) +- [varghesejose2020](https://github.com/varghesejose2020) + + - chore(docs): Update static-folder doc [PR #34392](https://github.com/gatsbyjs/gatsby/pull/34392) + - chore(docs): Update localization doc [PR #34429](https://github.com/gatsbyjs/gatsby/pull/34429) + - chore(docs): Update links on plugins overview doc [PR #34479](https://github.com/gatsbyjs/gatsby/pull/34479) + - chore(docs): Update links on gatsby-for-ecommerce [PR #34517](https://github.com/gatsbyjs/gatsby/pull/34517) + +- [jazanne](https://github.com/jazanne): Fix misspelling of "precedence" in log message [PR #34428](https://github.com/gatsbyjs/gatsby/pull/34428) +- [fedek6](https://github.com/fedek6): Update media-item-processing.md [PR #34434](https://github.com/gatsbyjs/gatsby/pull/34434) +- [jfgilmore](https://github.com/jfgilmore) + + - chore(docs): webpack branding guidelines updated [PR #34470](https://github.com/gatsbyjs/gatsby/pull/34470) + - chore(docs): Fix broken link to `gatsby-plugin-guess.js` [PR #34469](https://github.com/gatsbyjs/gatsby/pull/34469) + +- [ferdi05](https://github.com/ferdi05): chore(docs): Add MeiliSearch [PR #34478](https://github.com/gatsbyjs/gatsby/pull/34478) +- [axe312ger](https://github.com/axe312ger): fix(contentful): enable tag support for assets [PR #34480](https://github.com/gatsbyjs/gatsby/pull/34480) +- [herecydev](https://github.com/herecydev): fix(gatsby): handle session storage not being available [PR #34525](https://github.com/gatsbyjs/gatsby/pull/34525) +- [homearanya](https://github.com/homearanya) + + - docs(migrating-from-v2-to-v3): correct getNode snippet [PR #34542](https://github.com/gatsbyjs/gatsby/pull/34542) + - docs(migrating-from-v3-to-v4): correct getNode snippet [PR #34543](https://github.com/gatsbyjs/gatsby/pull/34543) + +- [njbmartin](https://github.com/njbmartin): fix(plugin-schema-snapshot): unlink file on init [PR #34527](https://github.com/gatsbyjs/gatsby/pull/34527) +- [merceyz](https://github.com/merceyz): fix: add missing dependencies [PR #28759](https://github.com/gatsbyjs/gatsby/pull/28759) +- [ShaunDychko](https://github.com/ShaunDychko): chore(docs): Update client-only self-hosting instructions [PR #34537](https://github.com/gatsbyjs/gatsby/pull/34537) + +[full-changelog]: https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.6.0
26c65e3f3352be1bf2712da0dce1a28f5fc1f0c8
2022-11-22 14:14:53
Tyler Barnes
chore(docs): customCreateNodeManifest (#37071)
false
customCreateNodeManifest (#37071)
chore
diff --git a/docs/docs/how-to/plugins-and-themes/creating-a-source-plugin.md b/docs/docs/how-to/plugins-and-themes/creating-a-source-plugin.md index 4cd8b22d004cc..3a6bf37c2c602 100644 --- a/docs/docs/how-to/plugins-and-themes/creating-a-source-plugin.md +++ b/docs/docs/how-to/plugins-and-themes/creating-a-source-plugin.md @@ -818,10 +818,10 @@ The source plugin needs to create node manifests using the [`unstable_createNode The first thing you'll want to do is identify which nodes you'll want to create a node manifest for. These will typically be nodes that you can preview, entry nodes, top level nodes, etc. An example of this could be a blog post or an article, any node that can be the "owner" of a page. A good place to call this action is whenever you call `createNode`. -An easy way to keep track of your manifest logic is to parse it out into a different util function. Either inside the `createNodeManifest` util or before you call it you'll need to vet which nodes you'll want to create manifests for. +An easy way to keep track of your manifest logic is to parse it out into a different util function. Before you call `unstable_createNodeManifest` you'll need to vet which nodes you'll want to create manifests for. ```javascript:title=source-plugin/gatsby-node.js -import { createNodeManifest } from "./utils.js" +import { customCreateNodeManifest } from "./utils.js" exports.sourceNodes = async ( { actions } ) => { @@ -834,7 +834,7 @@ exports.sourceNodes = async ( const nodeIsEntryNode = `some condition` if (nodeIsEntryNode) { - createNodeManifest({ + customCreateNodeManifest({ entryItem: node, entryNode: gatsbyNode, project, @@ -848,10 +848,10 @@ exports.sourceNodes = async ( ##### Check for support -At the moment you'll only want to create node manifests for preview content and because this is a newer API, we'll need to check if the Gatsby version supports [`unstable_createNodeManifest`](/docs/reference/config-files/actions/#unstable_createNodeManifest). +At the moment you'll only want to create node manifests for preview content. You may also want to filter out certain types of nodes, for example if your CMS has nodes that will never be previewed like redirect nodes or other types of non-content data. ```javascript:title=source-plugin/utils.js -export function createNodeManifest({ +export function customCreateNodeManifest({ entryItem, // the raw data source/cms content data project, // the cms project data entryNode, // the Gatsby node @@ -861,10 +861,7 @@ export function createNodeManifest({ // This env variable is provided automatically on Gatsby Cloud hosting const isPreview = process.env.GATSBY_IS_PREVIEW === `true` - const createNodeManifestIsSupported = - typeof unstable_createNodeManifest === `function` - - const shouldCreateNodeManifest = isPreview && createNodeManifestIsSupported + const shouldCreateNodeManifest = isPreview && !!customNodeFilteringFn(entryNode) // highlight-end if (shouldCreateNodeManifest) { @@ -878,7 +875,7 @@ export function createNodeManifest({ Next we will build up the `manifestId` and call `unstable_createNodeManifest`. The `manifestId` needs to be created with information that comes from the CMS **NOT** Gatsby (the CMS will need to create the exact same manifest), which is why we use the `entryItem` id as opposed to the `entryNode` id. This `manifestId` must be uniquely tied to a specific revision of specific content. We use the CMS project space (you may not need this), the id of the content, and finally the timestamp that it was updated at. ```javascript:title=source-plugin/utils.js -export function createNodeManifest({ +export function customCreateNodeManifest({ // ... }) { // ... @@ -907,7 +904,7 @@ Lastly we'll want to give our users a good experience and give a warning if they let warnOnceForNoSupport = false // highlight-end -export function createNodeManifest({ +export function customCreateNodeManifest({ // ... }) { // ...
734ff16a14bb150c1d68627623ebb3988c8ce1d0
2021-11-15 19:13:52
Ward Peeters
fix(gatsby-core-utils): handle 304 correctly between builds (#33975)
false
handle 304 correctly between builds (#33975)
fix
diff --git a/packages/gatsby-core-utils/src/__tests__/fetch-remote-file.js b/packages/gatsby-core-utils/src/__tests__/fetch-remote-file.js index 8c36ec7dc6f4c..2381d8c29f602 100644 --- a/packages/gatsby-core-utils/src/__tests__/fetch-remote-file.js +++ b/packages/gatsby-core-utils/src/__tests__/fetch-remote-file.js @@ -118,12 +118,28 @@ const server = setupServer( ) return res( - ctx.set(`Content-Type`, `image/svg+xml`), + ctx.set(`Content-Type`, `image/jpg`), ctx.set(`Content-Length`, contentLength), ctx.status(200), ctx.body(content) ) }), + rest.get(`http://external.com/dog-304.jpg`, async (req, res, ctx) => { + const { content, contentLength } = await getFileContent( + path.join(__dirname, `./fixtures/dog-thumbnail.jpg`), + req + ) + + // console.log(req.headers) + + return res( + ctx.set(`Content-Type`, `image/jpg`), + ctx.set(`Content-Length`, contentLength), + ctx.set(`etag`, `abcd`), + ctx.status(req.headers.get(`if-none-match`) === `abcd` ? 304 : 200), + ctx.body(content) + ) + }), rest.get(`http://external.com/404.jpg`, async (req, res, ctx) => { const content = `Page not found` @@ -249,7 +265,7 @@ describe(`fetch-remote-file`, () => { jest.useRealTimers() }) - it(`downloads and create a file`, async () => { + it(`downloads and create a svg file`, async () => { const filePath = await fetchRemoteFile({ url: `http://external.com/logo.svg`, cache, @@ -272,7 +288,7 @@ describe(`fetch-remote-file`, () => { expect(gotStream).toBeCalledTimes(1) }) - it(`downloads and create a file`, async () => { + it(`downloads and create a jpg file`, async () => { const filePath = await fetchRemoteFile({ url: `http://external.com/dog.jpg`, cache, @@ -412,6 +428,35 @@ describe(`fetch-remote-file`, () => { expect(fsMove).toBeCalledTimes(2) }) + it(`handles 304 responses correctly in different builds`, async () => { + const cacheInternals = new Map() + const workerCache = { + get(key) { + return Promise.resolve(cacheInternals.get(key)) + }, + set(key, value) { + return Promise.resolve(cacheInternals.set(key, value)) + }, + directory: cache.directory, + } + + global.__GATSBY = { buildId: `1` } + const filePath = await fetchRemoteFile({ + url: `http://external.com/dog-304.jpg`, + cache: workerCache, + }) + + global.__GATSBY = { buildId: `2` } + const filePathCached = await fetchRemoteFile({ + url: `http://external.com/dog-304.jpg`, + cache: workerCache, + }) + + expect(filePathCached).toBe(filePath) + expect(fsMove).toBeCalledTimes(1) + expect(gotStream).toBeCalledTimes(2) + }) + it(`doesn't keep lock when file download failed`, async () => { const cacheInternals = new Map() const workerCache = { @@ -562,6 +607,38 @@ describe(`fetch-remote-file`, () => { expect(fsMove).toBeCalledTimes(1) }) + it(`handles 304 responses correctly in different builds and workers`, async () => { + const cacheInternals = new Map() + const workerCache = { + get(key) { + return Promise.resolve(cacheInternals.get(key)) + }, + set(key, value) { + return Promise.resolve(cacheInternals.set(key, value)) + }, + directory: cache.directory, + } + + const fetchRemoteFileInstanceOne = getFetchInWorkerContext(`1`) + const fetchRemoteFileInstanceTwo = getFetchInWorkerContext(`2`) + + global.__GATSBY = { buildId: `1` } + const filePath = await fetchRemoteFileInstanceOne({ + url: `http://external.com/dog-304.jpg`, + cache: workerCache, + }) + + global.__GATSBY = { buildId: `2` } + const filePathCached = await fetchRemoteFileInstanceTwo({ + url: `http://external.com/dog-304.jpg`, + cache: workerCache, + }) + + expect(filePathCached).toBe(filePath) + expect(fsMove).toBeCalledTimes(1) + expect(gotStream).toBeCalledTimes(2) + }) + it(`fails when 404 is triggered`, async () => { await expect( fetchRemoteFile({ diff --git a/packages/gatsby-core-utils/src/fetch-remote-file.ts b/packages/gatsby-core-utils/src/fetch-remote-file.ts index 0567d3f370082..a15d4f53c2ac7 100644 --- a/packages/gatsby-core-utils/src/fetch-remote-file.ts +++ b/packages/gatsby-core-utils/src/fetch-remote-file.ts @@ -164,8 +164,8 @@ async function fetchFile({ // See if there's response headers for this url // from a previous request. - const cachedHeaders = await cache.get(cacheIdForHeaders(url)) - + const { headers: cachedHeaders, digest: originalDigest } = + (await cache.get(cacheIdForHeaders(url))) ?? {} const headers = { ...httpHeaders } if (cachedHeaders && cachedHeaders.etag) { headers[`If-None-Match`] = cachedHeaders.etag @@ -207,7 +207,10 @@ async function fetchFile({ if (response.statusCode === 200) { // Save the response headers for future requests. - await cache.set(cacheIdForHeaders(url), response.headers) + await cache.set(cacheIdForHeaders(url), { + headers: response.headers, + digest, + }) // If the user did not provide an extension and we couldn't get one from remote file, try and guess one if (!ext) { @@ -240,10 +243,11 @@ async function fetchFile({ // If the status code is 200, move the piped temp file to the real name. const filename = createFilePath( - path.join(pluginCacheDir, digest), + path.join(pluginCacheDir, originalDigest ?? digest), name, ext as string ) + if (response.statusCode === 200) { await fs.move(tmpFilename, filename, { overwrite: true }) // Else if 304, remove the empty response.
1f28c1c71892e3fb31d34d6fb70758ea32751679
2022-01-20 14:07:23
GatsbyJS Bot
chore(changelogs): update changelogs (#34544)
false
update changelogs (#34544)
chore
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 86c60b3660b22..520c1380872c1 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +### [4.5.4](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby) (2022-01-19) + +#### Bug Fixes + +- handle session storage not being available [#34525](https://github.com/gatsbyjs/gatsby/issues/34525) [#34539](https://github.com/gatsbyjs/gatsby/issues/34539) ([e69270b](https://github.com/gatsbyjs/gatsby/commit/e69270b01aee337993ec4084d354bf5b09becadf)) + ### [4.5.3](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby) (2022-01-17) #### Bug Fixes
d08c5950e1112cea9e685182b74778eb9e532dd6
2019-10-12 00:10:33
renovate[bot]
fix: update gatsby monorepo (#18522)
false
update gatsby monorepo (#18522)
fix
diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index 0fd6df5ab05e8..6666bd800e77b 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -2292,9 +2292,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-fbjs": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.2.0.tgz", - "integrity": "sha512-5Jo+JeWiVz2wHUUyAlvb/sSYnXNig9r+HqGAOSfh5Fzxp7SnAaR/tEGRJ1ZX7C77kfk82658w6R5Z+uPATTD9g==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz", + "integrity": "sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", @@ -3682,9 +3682,9 @@ "integrity": "sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==" }, "commander": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.1.tgz", - "integrity": "sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==" + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "common-tags": { "version": "1.8.0", @@ -6945,9 +6945,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.15.35", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.35.tgz", - "integrity": "sha512-xG5h5iNKIsoMirDjD1daGV/Ovt6vJBxQUT5RaMVat5e+nL9rR6Pik6rZprQ/Q9IiEOPe+3ocCzr2enCCFoe49w==", + "version": "2.15.36", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.36.tgz", + "integrity": "sha512-2e2QggkfWYqUbvZ4Y40biPZeVEuboEJG/l/o1vyK49C346oAAMaWUSMu+RaRPy6ocd7wnbyOH/EKoIIYAWoOhQ==", "requires": { "@babel/code-frame": "^7.5.5", "@babel/core": "^7.6.3", @@ -16627,9 +16627,9 @@ "integrity": "sha512-r8sAtNmgR0WKOKOxzuSgk09JsHlpKlB+uHi937qypOu3PZ17UxPrierFKDye/uNHjNTTEshu5PId8rojIPj/tA==" }, "webpack": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.0.tgz", - "integrity": "sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.1.tgz", + "integrity": "sha512-ak7u4tUu/U63sCVxA571IuPZO/Q0pZ9cEXKg+R/woxkDzVovq57uB6L2Hlg/pC8LCU+TWpvtcYwsstivQwMJmw==", "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-module-context": "1.8.5", diff --git a/starters/blog/package.json b/starters/blog/package.json index a0a8ea370adf2..316a1a6645eef 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.15.35", + "gatsby": "^2.15.36", "gatsby-image": "^2.2.27", "gatsby-plugin-feed": "^2.3.16", "gatsby-plugin-google-analytics": "^2.1.21", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index 9e2c96127419b..697f10da0d623 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -2251,9 +2251,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-fbjs": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.2.0.tgz", - "integrity": "sha512-5Jo+JeWiVz2wHUUyAlvb/sSYnXNig9r+HqGAOSfh5Fzxp7SnAaR/tEGRJ1ZX7C77kfk82658w6R5Z+uPATTD9g==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz", + "integrity": "sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", @@ -3590,9 +3590,9 @@ "integrity": "sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==" }, "commander": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.1.tgz", - "integrity": "sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==" + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "common-tags": { "version": "1.8.0", @@ -6808,9 +6808,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.15.35", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.35.tgz", - "integrity": "sha512-xG5h5iNKIsoMirDjD1daGV/Ovt6vJBxQUT5RaMVat5e+nL9rR6Pik6rZprQ/Q9IiEOPe+3ocCzr2enCCFoe49w==", + "version": "2.15.36", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.36.tgz", + "integrity": "sha512-2e2QggkfWYqUbvZ4Y40biPZeVEuboEJG/l/o1vyK49C346oAAMaWUSMu+RaRPy6ocd7wnbyOH/EKoIIYAWoOhQ==", "requires": { "@babel/code-frame": "^7.5.5", "@babel/core": "^7.6.3", @@ -15457,9 +15457,9 @@ } }, "webpack": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.0.tgz", - "integrity": "sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.1.tgz", + "integrity": "sha512-ak7u4tUu/U63sCVxA571IuPZO/Q0pZ9cEXKg+R/woxkDzVovq57uB6L2Hlg/pC8LCU+TWpvtcYwsstivQwMJmw==", "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-module-context": "1.8.5", diff --git a/starters/default/package.json b/starters/default/package.json index d6c8e76cdfe95..d1db9e7276174 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "Kyle Mathews <[email protected]>", "dependencies": { - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "gatsby-image": "^2.2.27", "gatsby-plugin-manifest": "^2.2.21", "gatsby-plugin-offline": "^3.0.14", diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index d5c4fd90a2513..1c26a8d019eb3 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -1873,9 +1873,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-fbjs": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.2.0.tgz", - "integrity": "sha512-5Jo+JeWiVz2wHUUyAlvb/sSYnXNig9r+HqGAOSfh5Fzxp7SnAaR/tEGRJ1ZX7C77kfk82658w6R5Z+uPATTD9g==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz", + "integrity": "sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", @@ -2940,9 +2940,9 @@ "integrity": "sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==" }, "commander": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.1.tgz", - "integrity": "sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==" + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "common-tags": { "version": "1.8.0", @@ -5716,9 +5716,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.15.35", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.35.tgz", - "integrity": "sha512-xG5h5iNKIsoMirDjD1daGV/Ovt6vJBxQUT5RaMVat5e+nL9rR6Pik6rZprQ/Q9IiEOPe+3ocCzr2enCCFoe49w==", + "version": "2.15.36", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.36.tgz", + "integrity": "sha512-2e2QggkfWYqUbvZ4Y40biPZeVEuboEJG/l/o1vyK49C346oAAMaWUSMu+RaRPy6ocd7wnbyOH/EKoIIYAWoOhQ==", "requires": { "@babel/code-frame": "^7.5.5", "@babel/core": "^7.6.3", @@ -12811,9 +12811,9 @@ } }, "webpack": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.0.tgz", - "integrity": "sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.1.tgz", + "integrity": "sha512-ak7u4tUu/U63sCVxA571IuPZO/Q0pZ9cEXKg+R/woxkDzVovq57uB6L2Hlg/pC8LCU+TWpvtcYwsstivQwMJmw==", "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-module-context": "1.8.5", diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 972ad45cf8f88..6a8cef97af625 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -13,7 +13,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"" }, "dependencies": { - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "react": "^16.10.2", "react-dom": "^16.10.2" }, diff --git a/themes/gatsby-starter-blog-theme-core/package-lock.json b/themes/gatsby-starter-blog-theme-core/package-lock.json index f742e0fe805a6..d08a16a3b2d49 100644 --- a/themes/gatsby-starter-blog-theme-core/package-lock.json +++ b/themes/gatsby-starter-blog-theme-core/package-lock.json @@ -2311,9 +2311,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-fbjs": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.2.0.tgz", - "integrity": "sha512-5Jo+JeWiVz2wHUUyAlvb/sSYnXNig9r+HqGAOSfh5Fzxp7SnAaR/tEGRJ1ZX7C77kfk82658w6R5Z+uPATTD9g==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz", + "integrity": "sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", @@ -3946,9 +3946,9 @@ "integrity": "sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==" }, "commander": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.1.tgz", - "integrity": "sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==" + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "common-tags": { "version": "1.8.0", @@ -7141,9 +7141,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.15.35", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.35.tgz", - "integrity": "sha512-xG5h5iNKIsoMirDjD1daGV/Ovt6vJBxQUT5RaMVat5e+nL9rR6Pik6rZprQ/Q9IiEOPe+3ocCzr2enCCFoe49w==", + "version": "2.15.36", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.36.tgz", + "integrity": "sha512-2e2QggkfWYqUbvZ4Y40biPZeVEuboEJG/l/o1vyK49C346oAAMaWUSMu+RaRPy6ocd7wnbyOH/EKoIIYAWoOhQ==", "requires": { "@babel/code-frame": "^7.5.5", "@babel/core": "^7.6.3", @@ -17610,9 +17610,9 @@ "integrity": "sha512-r8sAtNmgR0WKOKOxzuSgk09JsHlpKlB+uHi937qypOu3PZ17UxPrierFKDye/uNHjNTTEshu5PId8rojIPj/tA==" }, "webpack": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.0.tgz", - "integrity": "sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.1.tgz", + "integrity": "sha512-ak7u4tUu/U63sCVxA571IuPZO/Q0pZ9cEXKg+R/woxkDzVovq57uB6L2Hlg/pC8LCU+TWpvtcYwsstivQwMJmw==", "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-module-context": "1.8.5", diff --git a/themes/gatsby-starter-blog-theme-core/package.json b/themes/gatsby-starter-blog-theme-core/package.json index e1a6c5d7b2062..c93d7303d57e1 100644 --- a/themes/gatsby-starter-blog-theme-core/package.json +++ b/themes/gatsby-starter-blog-theme-core/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "gatsby-theme-blog-core": "^1.0.0", "react": "^16.10.2", "react-dom": "^16.10.2" diff --git a/themes/gatsby-starter-blog-theme/package-lock.json b/themes/gatsby-starter-blog-theme/package-lock.json index 73f873cdbead9..9e82665921a13 100644 --- a/themes/gatsby-starter-blog-theme/package-lock.json +++ b/themes/gatsby-starter-blog-theme/package-lock.json @@ -2456,9 +2456,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-fbjs": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.2.0.tgz", - "integrity": "sha512-5Jo+JeWiVz2wHUUyAlvb/sSYnXNig9r+HqGAOSfh5Fzxp7SnAaR/tEGRJ1ZX7C77kfk82658w6R5Z+uPATTD9g==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz", + "integrity": "sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", @@ -4087,9 +4087,9 @@ "integrity": "sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==" }, "commander": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.1.tgz", - "integrity": "sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==" + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "common-tags": { "version": "1.8.0", @@ -7315,9 +7315,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.15.35", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.35.tgz", - "integrity": "sha512-xG5h5iNKIsoMirDjD1daGV/Ovt6vJBxQUT5RaMVat5e+nL9rR6Pik6rZprQ/Q9IiEOPe+3ocCzr2enCCFoe49w==", + "version": "2.15.36", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.36.tgz", + "integrity": "sha512-2e2QggkfWYqUbvZ4Y40biPZeVEuboEJG/l/o1vyK49C346oAAMaWUSMu+RaRPy6ocd7wnbyOH/EKoIIYAWoOhQ==", "requires": { "@babel/code-frame": "^7.5.5", "@babel/core": "^7.6.3", @@ -17931,9 +17931,9 @@ "integrity": "sha512-r8sAtNmgR0WKOKOxzuSgk09JsHlpKlB+uHi937qypOu3PZ17UxPrierFKDye/uNHjNTTEshu5PId8rojIPj/tA==" }, "webpack": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.0.tgz", - "integrity": "sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.1.tgz", + "integrity": "sha512-ak7u4tUu/U63sCVxA571IuPZO/Q0pZ9cEXKg+R/woxkDzVovq57uB6L2Hlg/pC8LCU+TWpvtcYwsstivQwMJmw==", "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-module-context": "1.8.5", diff --git a/themes/gatsby-starter-blog-theme/package.json b/themes/gatsby-starter-blog-theme/package.json index 62949bc3afea4..8760a22e2ce14 100644 --- a/themes/gatsby-starter-blog-theme/package.json +++ b/themes/gatsby-starter-blog-theme/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "gatsby-theme-blog": "^1.0.2", "react": "^16.10.2", "react-dom": "^16.10.2" diff --git a/themes/gatsby-starter-notes-theme/package-lock.json b/themes/gatsby-starter-notes-theme/package-lock.json index 767817a01567f..491ff7b84e43d 100644 --- a/themes/gatsby-starter-notes-theme/package-lock.json +++ b/themes/gatsby-starter-notes-theme/package-lock.json @@ -2364,9 +2364,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-fbjs": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.2.0.tgz", - "integrity": "sha512-5Jo+JeWiVz2wHUUyAlvb/sSYnXNig9r+HqGAOSfh5Fzxp7SnAaR/tEGRJ1ZX7C77kfk82658w6R5Z+uPATTD9g==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz", + "integrity": "sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", @@ -3729,9 +3729,9 @@ "integrity": "sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==" }, "commander": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.1.tgz", - "integrity": "sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==" + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "common-tags": { "version": "1.8.0", @@ -6573,9 +6573,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.15.35", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.35.tgz", - "integrity": "sha512-xG5h5iNKIsoMirDjD1daGV/Ovt6vJBxQUT5RaMVat5e+nL9rR6Pik6rZprQ/Q9IiEOPe+3ocCzr2enCCFoe49w==", + "version": "2.15.36", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.36.tgz", + "integrity": "sha512-2e2QggkfWYqUbvZ4Y40biPZeVEuboEJG/l/o1vyK49C346oAAMaWUSMu+RaRPy6ocd7wnbyOH/EKoIIYAWoOhQ==", "requires": { "@babel/code-frame": "^7.5.5", "@babel/core": "^7.6.3", @@ -15560,9 +15560,9 @@ "integrity": "sha512-r8sAtNmgR0WKOKOxzuSgk09JsHlpKlB+uHi937qypOu3PZ17UxPrierFKDye/uNHjNTTEshu5PId8rojIPj/tA==" }, "webpack": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.0.tgz", - "integrity": "sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.1.tgz", + "integrity": "sha512-ak7u4tUu/U63sCVxA571IuPZO/Q0pZ9cEXKg+R/woxkDzVovq57uB6L2Hlg/pC8LCU+TWpvtcYwsstivQwMJmw==", "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-module-context": "1.8.5", diff --git a/themes/gatsby-starter-notes-theme/package.json b/themes/gatsby-starter-notes-theme/package.json index 0ea753c0c2011..f8dfdff4e1184 100644 --- a/themes/gatsby-starter-notes-theme/package.json +++ b/themes/gatsby-starter-notes-theme/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "gatsby-theme-notes": "^1.0.3", "react": "^16.10.2", "react-dom": "^16.10.2" diff --git a/themes/gatsby-starter-theme-workspace/example/package.json b/themes/gatsby-starter-theme-workspace/example/package.json index 5a7b9e021a9dd..cf02c10185b20 100644 --- a/themes/gatsby-starter-theme-workspace/example/package.json +++ b/themes/gatsby-starter-theme-workspace/example/package.json @@ -9,7 +9,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "gatsby-theme-minimal": "^1.0.0", "react": "^16.10.2", "react-dom": "^16.10.2" diff --git a/themes/gatsby-starter-theme/package-lock.json b/themes/gatsby-starter-theme/package-lock.json index ef8cd1a59f4c5..3cf4a821e0b9c 100644 --- a/themes/gatsby-starter-theme/package-lock.json +++ b/themes/gatsby-starter-theme/package-lock.json @@ -2465,9 +2465,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-fbjs": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.2.0.tgz", - "integrity": "sha512-5Jo+JeWiVz2wHUUyAlvb/sSYnXNig9r+HqGAOSfh5Fzxp7SnAaR/tEGRJ1ZX7C77kfk82658w6R5Z+uPATTD9g==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-3.3.0.tgz", + "integrity": "sha512-7QTLTCd2gwB2qGoi5epSULMHugSVgpcVt5YAeiFO9ABLrutDQzKfGwzxgZHLpugq8qMdg/DhRZDZ5CLKxBkEbw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.0.0", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", @@ -4096,9 +4096,9 @@ "integrity": "sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==" }, "commander": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.1.tgz", - "integrity": "sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==" + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "common-tags": { "version": "1.8.0", @@ -7324,9 +7324,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.15.35", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.35.tgz", - "integrity": "sha512-xG5h5iNKIsoMirDjD1daGV/Ovt6vJBxQUT5RaMVat5e+nL9rR6Pik6rZprQ/Q9IiEOPe+3ocCzr2enCCFoe49w==", + "version": "2.15.36", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.15.36.tgz", + "integrity": "sha512-2e2QggkfWYqUbvZ4Y40biPZeVEuboEJG/l/o1vyK49C346oAAMaWUSMu+RaRPy6ocd7wnbyOH/EKoIIYAWoOhQ==", "requires": { "@babel/code-frame": "^7.5.5", "@babel/core": "^7.6.3", @@ -18057,9 +18057,9 @@ "integrity": "sha512-r8sAtNmgR0WKOKOxzuSgk09JsHlpKlB+uHi937qypOu3PZ17UxPrierFKDye/uNHjNTTEshu5PId8rojIPj/tA==" }, "webpack": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.0.tgz", - "integrity": "sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.41.1.tgz", + "integrity": "sha512-ak7u4tUu/U63sCVxA571IuPZO/Q0pZ9cEXKg+R/woxkDzVovq57uB6L2Hlg/pC8LCU+TWpvtcYwsstivQwMJmw==", "requires": { "@webassemblyjs/ast": "1.8.5", "@webassemblyjs/helper-module-context": "1.8.5", diff --git a/themes/gatsby-starter-theme/package.json b/themes/gatsby-starter-theme/package.json index fbb380ae33592..4e9da6a47abb6 100644 --- a/themes/gatsby-starter-theme/package.json +++ b/themes/gatsby-starter-theme/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "gatsby-theme-blog": "^1.0.2", "gatsby-theme-notes": "^1.0.3", "react": "^16.10.2", diff --git a/themes/gatsby-theme-blog-core/package.json b/themes/gatsby-theme-blog-core/package.json index 0d2a78067967e..6b6312926453d 100644 --- a/themes/gatsby-theme-blog-core/package.json +++ b/themes/gatsby-theme-blog-core/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@mdx-js/mdx": "^1.5.1", - "gatsby-plugin-mdx": "^1.0.50", + "gatsby-plugin-mdx": "^1.0.51", "gatsby-plugin-sharp": "^2.2.29", "gatsby-remark-copy-linked-files": "^2.1.26", "gatsby-remark-images": "^3.1.26", @@ -23,7 +23,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.5.1", - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "prettier": "^1.18.2", "react": "^16.10.2", "react-dom": "^16.10.2" diff --git a/themes/gatsby-theme-blog/package.json b/themes/gatsby-theme-blog/package.json index 285dea5ba7c38..2f5afbf49573a 100644 --- a/themes/gatsby-theme-blog/package.json +++ b/themes/gatsby-theme-blog/package.json @@ -39,7 +39,7 @@ "typography-theme-wordpress-2016": "^0.16.19" }, "devDependencies": { - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "prettier": "^1.18.2", "react": "^16.10.2", "react-dom": "^16.10.2" diff --git a/themes/gatsby-theme-notes/package.json b/themes/gatsby-theme-notes/package.json index 877a070a335b8..f2f0c8436552e 100644 --- a/themes/gatsby-theme-notes/package.json +++ b/themes/gatsby-theme-notes/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/themes/gatsby-theme-notes#readme", "devDependencies": { - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "react": "^16.10.2", "react-dom": "^16.10.2" }, @@ -36,7 +36,7 @@ "gatsby-core-utils": "^1.0.13", "gatsby-plugin-compile-es6-packages": "^2.1.0", "gatsby-plugin-emotion": "^4.1.10", - "gatsby-plugin-mdx": "^1.0.50", + "gatsby-plugin-mdx": "^1.0.51", "gatsby-plugin-meta-redirect": "^1.1.1", "gatsby-plugin-og-image": "0.0.1", "gatsby-plugin-redirects": "^1.0.0", diff --git a/www/package.json b/www/package.json index 0c0e79cc0a577..dc79c6b19449c 100644 --- a/www/package.json +++ b/www/package.json @@ -20,7 +20,7 @@ "dotenv": "^6.2.0", "email-validator": "^1.2.3", "fuse.js": "^3.4.5", - "gatsby": "^2.15.35", + "gatsby": "^2.15.36", "gatsby-design-tokens": "~1.0.9", "gatsby-image": "^2.2.27", "gatsby-plugin-canonical-urls": "^2.1.11", @@ -33,7 +33,7 @@ "gatsby-plugin-layout": "^1.1.11", "gatsby-plugin-mailchimp": "^2.2.3", "gatsby-plugin-manifest": "^2.2.21", - "gatsby-plugin-mdx": "^1.0.50", + "gatsby-plugin-mdx": "^1.0.51", "gatsby-plugin-netlify": "^2.1.19", "gatsby-plugin-netlify-cache": "^0.1.0", "gatsby-plugin-nprogress": "^2.1.10",
0675736127a416c23f26c4543b05e83bb3dbeea7
2021-10-04 01:03:23
Nik Schaefer
chore(docs): Fix Grammar Issue (#33408)
false
Fix Grammar Issue (#33408)
chore
diff --git a/docs/docs/reference/built-in-components/gatsby-image.md b/docs/docs/reference/built-in-components/gatsby-image.md index 4bd4afb3982e8..efc9c9f24ef1c 100644 --- a/docs/docs/reference/built-in-components/gatsby-image.md +++ b/docs/docs/reference/built-in-components/gatsby-image.md @@ -39,7 +39,7 @@ _For in-depth install instructions, check out the docs on [Using Gatsby Image](/ ### Gatsby image starts with a query -To feed file data in to Gatsby Image, set up a [GraphQL query](/docs/graphql-reference/) and either pass it into a component as props or write it directly in the component. One technique is to leverage the [`useStaticQuery`](/docs/how-to/querying-data/use-static-query/) hook. +To feed file data into Gatsby Image, set up a [GraphQL query](/docs/graphql-reference/) and either pass it into a component as props or write it directly in the component. One technique is to leverage the [`useStaticQuery`](/docs/how-to/querying-data/use-static-query/) hook. Common GraphQL queries for sourcing images include `file` from [gatsby-source-filesystem](/plugins/gatsby-source-filesystem/), and both `imageSharp` and `allImageSharp` from [gatsby-plugin-sharp](/plugins/gatsby-plugin-sharp/), but ultimately the options available to you will depend on your content sources.
462df39d96bc51e36d955e827ba1df7691a27e3d
2018-07-13 21:21:36
Kyle Mathews
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 804a0c5e0ce17..91af00e236d76 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="2.0.0-beta.33"></a> + +# [2.0.0-beta.33](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-beta.33) (2018-07-13) + +**Note:** Version bump only for package gatsby + <a name="2.0.0-beta.32"></a> # [2.0.0-beta.32](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-beta.32) (2018-07-13) diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index d4928c0faa612..cac1ceca193f9 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "React.js Static Site Generator", - "version": "2.0.0-beta.32", + "version": "2.0.0-beta.33", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js"
45d62102873f7e115d499b785fc772999f5974bc
2018-11-03 00:26:44
Dustin Schau
chore: use last published version as base version (#9668)
false
use last published version as base version (#9668)
chore
diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json index b7690fca8ef73..230fd75b5deaf 100644 --- a/packages/gatsby-plugin-cxs/package.json +++ b/packages/gatsby-plugin-cxs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-cxs", "description": "Gatsby plugin to add SSR support for ctx", - "version": "1.0.1", + "version": "2.0.0", "author": "Chen-Tai Hou <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues"
a4e2cd4e0337e840d4f26262f7e90e82b239857c
2019-08-22 03:31:40
Sidhartha Chatterjee
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index ad7f856dce9a6..8124b4f16feda 100644 --- a/packages/gatsby-cli/CHANGELOG.md +++ b/packages/gatsby-cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.7.35](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.7.35) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) +- update dependency common-tags to ^1.8.0 ([#16834](https://github.com/gatsbyjs/gatsby/issues/16834)) ([8ed5197](https://github.com/gatsbyjs/gatsby/commit/8ed5197)) +- update dependency core-js to ^2.6.9 ([#16839](https://github.com/gatsbyjs/gatsby/issues/16839)) ([e1860c0](https://github.com/gatsbyjs/gatsby/commit/e1860c0)) +- update dependency envinfo to ^5.12.1 ([#16861](https://github.com/gatsbyjs/gatsby/issues/16861)) ([f0ab6cf](https://github.com/gatsbyjs/gatsby/commit/f0ab6cf)) +- update dependency execa to ^0.11.0 ([#16871](https://github.com/gatsbyjs/gatsby/issues/16871)) ([7682c23](https://github.com/gatsbyjs/gatsby/commit/7682c23)) +- update dependency fs-extra to ^4.0.3 ([#16876](https://github.com/gatsbyjs/gatsby/issues/16876)) ([2cc762d](https://github.com/gatsbyjs/gatsby/commit/2cc762d)) + ## [2.7.34](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.7.34) (2019-08-21) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index b72492964b97f..f418fbec675cb 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.7.34", + "version": "2.7.35", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "lib/index.js" @@ -26,7 +26,7 @@ "execa": "^0.11.0", "fs-exists-cached": "^1.0.0", "fs-extra": "^4.0.3", - "gatsby-telemetry": "^1.1.15", + "gatsby-telemetry": "^1.1.16", "hosted-git-info": "^2.6.0", "is-valid-path": "^0.1.1", "lodash": "^4.17.14", diff --git a/packages/gatsby-dev-cli/CHANGELOG.md b/packages/gatsby-dev-cli/CHANGELOG.md index 30bbce226a467..e7b66b8912fcc 100644 --- a/packages/gatsby-dev-cli/CHANGELOG.md +++ b/packages/gatsby-dev-cli/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.5.10](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.5.10) (2019-08-21) + +### Bug Fixes + +- update dependency fs-extra to ^4.0.3 ([#16876](https://github.com/gatsbyjs/gatsby/issues/16876)) ([2cc762d](https://github.com/gatsbyjs/gatsby/commit/2cc762d)) + ## [2.5.9](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.5.9) (2019-08-21) ### Bug Fixes diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json index 1db06f1404fa4..a091f1a5438bb 100644 --- a/packages/gatsby-dev-cli/package.json +++ b/packages/gatsby-dev-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-dev-cli", "description": "CLI helpers for contributors working on Gatsby", - "version": "2.5.9", + "version": "2.5.10", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby-dev": "./dist/index.js" diff --git a/packages/gatsby-graphiql-explorer/CHANGELOG.md b/packages/gatsby-graphiql-explorer/CHANGELOG.md index a95dc003a34d7..77695044ceb36 100644 --- a/packages/gatsby-graphiql-explorer/CHANGELOG.md +++ b/packages/gatsby-graphiql-explorer/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.5) (2019-08-21) + +### Bug Fixes + +- update dependency css-loader to ^1.0.1 ([#16858](https://github.com/gatsbyjs/gatsby/issues/16858)) ([2d3536f](https://github.com/gatsbyjs/gatsby/commit/2d3536f)) + ## [0.2.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.4) (2019-08-20) **Note:** Version bump only for package gatsby-graphiql-explorer diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json index e984a6daa00d9..9fb1e2f6d0ec7 100644 --- a/packages/gatsby-graphiql-explorer/package.json +++ b/packages/gatsby-graphiql-explorer/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-graphiql-explorer", - "version": "0.2.4", + "version": "0.2.5", "description": "GraphiQL IDE with custom features for Gatsby users", "main": "index.js", "scripts": { diff --git a/packages/gatsby-page-utils/CHANGELOG.md b/packages/gatsby-page-utils/CHANGELOG.md index db6ac7dfe1921..7cb4aeabbf01e 100644 --- a/packages/gatsby-page-utils/CHANGELOG.md +++ b/packages/gatsby-page-utils/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.0.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.8) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [0.0.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.7) (2019-08-21) ### Bug Fixes diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json index 8f2c60e29af0a..ad7e8bccd623e 100644 --- a/packages/gatsby-page-utils/package.json +++ b/packages/gatsby-page-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-page-utils", - "version": "0.0.7", + "version": "0.0.8", "description": "Gatsby library that helps creating pages", "main": "dist/index.js", "scripts": { diff --git a/packages/gatsby-plugin-manifest/CHANGELOG.md b/packages/gatsby-plugin-manifest/CHANGELOG.md index 01b1ef7172b95..ee8ce62222cb0 100644 --- a/packages/gatsby-plugin-manifest/CHANGELOG.md +++ b/packages/gatsby-plugin-manifest/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.2.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.7) (2019-08-21) + +### Bug Fixes + +- **gatsby:** Fix tracing so that everything happens under one span ([#16893](https://github.com/gatsbyjs/gatsby/issues/16893)) ([f8cae16](https://github.com/gatsbyjs/gatsby/commit/f8cae16)) + ## [2.2.6](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.6) (2019-08-20) **Note:** Version bump only for package gatsby-plugin-manifest diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json index 0ef9351c3061d..4cde16e2f1952 100644 --- a/packages/gatsby-plugin-manifest/package.json +++ b/packages/gatsby-plugin-manifest/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-manifest", "description": "Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps", - "version": "2.2.6", + "version": "2.2.7", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md index a140c1fc7ad24..0126839954779 100644 --- a/packages/gatsby-plugin-mdx/CHANGELOG.md +++ b/packages/gatsby-plugin-mdx/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.26](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.0.26) (2019-08-21) + +### Bug Fixes + +- update dependency fs-extra to ^7.0.1 ([#16878](https://github.com/gatsbyjs/gatsby/issues/16878)) ([f008fed](https://github.com/gatsbyjs/gatsby/commit/f008fed)) + ## [1.0.25](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.0.25) (2019-08-20) **Note:** Version bump only for package gatsby-plugin-mdx diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json index b04fcfec7df62..a52c62b883d8b 100644 --- a/packages/gatsby-plugin-mdx/package.json +++ b/packages/gatsby-plugin-mdx/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-mdx", - "version": "1.0.25", + "version": "1.0.26", "description": "MDX integration for Gatsby", "main": "index.js", "license": "MIT", diff --git a/packages/gatsby-plugin-netlify/CHANGELOG.md b/packages/gatsby-plugin-netlify/CHANGELOG.md index c370f1ae787a0..69357651da373 100644 --- a/packages/gatsby-plugin-netlify/CHANGELOG.md +++ b/packages/gatsby-plugin-netlify/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.1.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.7) (2019-08-21) + +### Bug Fixes + +- update dependency fs-extra to ^4.0.3 ([#16876](https://github.com/gatsbyjs/gatsby/issues/16876)) ([2cc762d](https://github.com/gatsbyjs/gatsby/commit/2cc762d)) + ## [2.1.6](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.6) (2019-08-20) **Note:** Version bump only for package gatsby-plugin-netlify diff --git a/packages/gatsby-plugin-netlify/package.json b/packages/gatsby-plugin-netlify/package.json index 29ff20bc4a451..4777cb8ab8fd3 100644 --- a/packages/gatsby-plugin-netlify/package.json +++ b/packages/gatsby-plugin-netlify/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-netlify", "description": "A Gatsby plugin which generates a _headers file for netlify", - "version": "2.1.6", + "version": "2.1.7", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md index fa1e975a4d1d4..5855d40f0997f 100644 --- a/packages/gatsby-plugin-offline/CHANGELOG.md +++ b/packages/gatsby-plugin-offline/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.8) (2019-08-21) + +### Bug Fixes + +- update dependency cheerio to ^1.0.0-rc.3 ([#16831](https://github.com/gatsbyjs/gatsby/issues/16831)) ([55bee35](https://github.com/gatsbyjs/gatsby/commit/55bee35)) + ## [2.2.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.7) (2019-08-20) **Note:** Version bump only for package gatsby-plugin-offline diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json index ace755a6b820f..c9c00045808cf 100644 --- a/packages/gatsby-plugin-offline/package.json +++ b/packages/gatsby-plugin-offline/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-offline", "description": "Gatsby plugin which sets up a site to be able to run offline", - "version": "2.2.7", + "version": "2.2.8", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md index 748d51d48ae6e..def69bbe2f3b2 100644 --- a/packages/gatsby-plugin-page-creator/CHANGELOG.md +++ b/packages/gatsby-plugin-page-creator/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.1.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.8) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.1.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.7) (2019-08-21) **Note:** Version bump only for package gatsby-plugin-page-creator diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json index 26bff49a93f45..11ff9b9f6649c 100644 --- a/packages/gatsby-plugin-page-creator/package.json +++ b/packages/gatsby-plugin-page-creator/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-page-creator", - "version": "2.1.7", + "version": "2.1.8", "description": "Gatsby plugin that automatically creates pages from React components in specified directories", "main": "index.js", "scripts": { @@ -27,7 +27,7 @@ "@babel/runtime": "^7.0.0", "bluebird": "^3.5.5", "fs-exists-cached": "^1.0.0", - "gatsby-page-utils": "^0.0.7", + "gatsby-page-utils": "^0.0.8", "glob": "^7.1.1", "lodash": "^4.17.14", "micromatch": "^3.1.10" diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md index cefa5f92454b1..59a98b24bc005 100644 --- a/packages/gatsby-plugin-sharp/CHANGELOG.md +++ b/packages/gatsby-plugin-sharp/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.14](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.14) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) +- update dependency fs-extra to ^7.0.1 ([#16878](https://github.com/gatsbyjs/gatsby/issues/16878)) ([f008fed](https://github.com/gatsbyjs/gatsby/commit/f008fed)) +- **gatsby:** Fix tracing so that everything happens under one span ([#16893](https://github.com/gatsbyjs/gatsby/issues/16893)) ([f8cae16](https://github.com/gatsbyjs/gatsby/commit/f8cae16)) + ## [2.2.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.13) (2019-08-20) ### Bug Fixes diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index 35b4d00568c66..3209ee22818bd 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sharp", "description": "Wrapper of the Sharp image manipulation library for Gatsby plugins", - "version": "2.2.13", + "version": "2.2.14", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md index 29c21b274f0b3..e05cdcb93731f 100644 --- a/packages/gatsby-remark-autolink-headers/CHANGELOG.md +++ b/packages/gatsby-remark-autolink-headers/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.1.5](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@[email protected]) (2019-08-21) + +### Bug Fixes + +- update dependency github-slugger to ^1.2.1 ([#16879](https://github.com/gatsbyjs/gatsby/issues/16879)) ([a0802c2](https://github.com/gatsbyjs/gatsby/commit/a0802c2)) + ## [2.1.4](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@[email protected]) (2019-08-20) **Note:** Version bump only for package gatsby-remark-autolink-headers diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json index 6c3aa56af19a9..8c7df527e7168 100644 --- a/packages/gatsby-remark-autolink-headers/package.json +++ b/packages/gatsby-remark-autolink-headers/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-autolink-headers", "description": "Gatsby plugin to autolink headers in markdown processed by Remark", - "version": "2.1.4", + "version": "2.1.5", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md index 1c478f913729c..7a734a104cb87 100644 --- a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md +++ b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.8](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-copy-linked-files@[email protected]) (2019-08-21) + +### Bug Fixes + +- update dependency cheerio to ^1.0.0-rc.3 ([#16831](https://github.com/gatsbyjs/gatsby/issues/16831)) ([55bee35](https://github.com/gatsbyjs/gatsby/commit/55bee35)) +- update dependency fs-extra to ^4.0.3 ([#16876](https://github.com/gatsbyjs/gatsby/issues/16876)) ([2cc762d](https://github.com/gatsbyjs/gatsby/commit/2cc762d)) + ## [2.1.7](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-copy-linked-files@[email protected]) (2019-08-20) **Note:** Version bump only for package gatsby-remark-copy-linked-files diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json index d06df3de51d61..bd292b91d0927 100644 --- a/packages/gatsby-remark-copy-linked-files/package.json +++ b/packages/gatsby-remark-copy-linked-files/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-copy-linked-files", "description": "Find files which are linked to from markdown and copy them to the public directory", - "version": "2.1.7", + "version": "2.1.8", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-remark-graphviz/CHANGELOG.md b/packages/gatsby-remark-graphviz/CHANGELOG.md index 09974cfb3371b..b6bec04b7e422 100644 --- a/packages/gatsby-remark-graphviz/CHANGELOG.md +++ b/packages/gatsby-remark-graphviz/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.4) (2019-08-21) + +### Bug Fixes + +- update dependency cheerio to ^1.0.0-rc.3 ([#16831](https://github.com/gatsbyjs/gatsby/issues/16831)) ([55bee35](https://github.com/gatsbyjs/gatsby/commit/55bee35)) + ## [1.1.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.3) (2019-08-20) **Note:** Version bump only for package gatsby-remark-graphviz diff --git a/packages/gatsby-remark-graphviz/package.json b/packages/gatsby-remark-graphviz/package.json index 5fdd4eac37f6c..f4585e8171d54 100644 --- a/packages/gatsby-remark-graphviz/package.json +++ b/packages/gatsby-remark-graphviz/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-graphviz", "description": "Processes graphviz code blocks and renders to SVG using viz.js", - "version": "1.1.3", + "version": "1.1.4", "author": "Anthony Marcar <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-remark-images-contentful/CHANGELOG.md b/packages/gatsby-remark-images-contentful/CHANGELOG.md index 9ed5df00ea938..c2712b34f14db 100644 --- a/packages/gatsby-remark-images-contentful/CHANGELOG.md +++ b/packages/gatsby-remark-images-contentful/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.1.6](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@[email protected]) (2019-08-21) + +### Bug Fixes + +- update dependency cheerio to ^1.0.0-rc.3 ([#16831](https://github.com/gatsbyjs/gatsby/issues/16831)) ([55bee35](https://github.com/gatsbyjs/gatsby/commit/55bee35)) + ## [2.1.5](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@[email protected]) (2019-08-20) **Note:** Version bump only for package gatsby-remark-images-contentful diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json index e815e85b22078..e773e008f3e55 100644 --- a/packages/gatsby-remark-images-contentful/package.json +++ b/packages/gatsby-remark-images-contentful/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-remark-images-contentful", - "version": "2.1.5", + "version": "2.1.6", "description": "Process Images in Contentful markdown so they can use the images API.", "main": "index.js", "scripts": { diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md index 6c31460177735..2326bc7a2e9e6 100644 --- a/packages/gatsby-remark-images/CHANGELOG.md +++ b/packages/gatsby-remark-images/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.14](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.1.14) (2019-08-21) + +### Bug Fixes + +- update dependency cheerio to ^1.0.0-rc.3 ([#16831](https://github.com/gatsbyjs/gatsby/issues/16831)) ([55bee35](https://github.com/gatsbyjs/gatsby/commit/55bee35)) + ## [3.1.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.1.13) (2019-08-20) **Note:** Version bump only for package gatsby-remark-images diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json index 81fffdeee90bb..08214e1f8225d 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-images", "description": "Processes images in markdown so they can be used in the production build.", - "version": "3.1.13", + "version": "3.1.14", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-remark-katex/CHANGELOG.md b/packages/gatsby-remark-katex/CHANGELOG.md index f24d44d98c74d..25a33563d9345 100644 --- a/packages/gatsby-remark-katex/CHANGELOG.md +++ b/packages/gatsby-remark-katex/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.1.4) (2019-08-21) + +**Note:** Version bump only for package gatsby-remark-katex + ## [3.1.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.1.3) (2019-08-20) **Note:** Version bump only for package gatsby-remark-katex diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json index e0153bd06d468..b2db22fcfe545 100644 --- a/packages/gatsby-remark-katex/package.json +++ b/packages/gatsby-remark-katex/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-katex", "description": "Transform math nodes to html markup", - "version": "3.1.3", + "version": "3.1.4", "author": "Jeffrey Xiao <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md index 1eed8ec8b3126..15e0bed4fe56d 100644 --- a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md +++ b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.6](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-responsive-iframe@[email protected]) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) +- update dependency cheerio to ^1.0.0-rc.3 ([#16831](https://github.com/gatsbyjs/gatsby/issues/16831)) ([55bee35](https://github.com/gatsbyjs/gatsby/commit/55bee35)) + ## [2.2.5](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-responsive-iframe@[email protected]) (2019-08-20) **Note:** Version bump only for package gatsby-remark-responsive-iframe diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json index e9897e78c6dea..91b902d48be71 100644 --- a/packages/gatsby-remark-responsive-iframe/package.json +++ b/packages/gatsby-remark-responsive-iframe/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-responsive-iframe", "description": "Make iframes in Markdown processed by Remark responsive", - "version": "2.2.5", + "version": "2.2.6", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index fce769ade2f12..3738e2e4b5335 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.23](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.23) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) +- update dependency chalk to ^2.4.2 ([#16830](https://github.com/gatsbyjs/gatsby/issues/16830)) ([3c89607](https://github.com/gatsbyjs/gatsby/commit/3c89607)) +- update dependency contentful to ^6.1.3 ([#16838](https://github.com/gatsbyjs/gatsby/issues/16838)) ([53f67a7](https://github.com/gatsbyjs/gatsby/commit/53f67a7)) +- update dependency fs-extra to ^4.0.3 ([#16876](https://github.com/gatsbyjs/gatsby/issues/16876)) ([2cc762d](https://github.com/gatsbyjs/gatsby/commit/2cc762d)) + ## [2.1.22](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.22) (2019-08-21) ### Bug Fixes diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index fe73b08327ae5..d990f6a8de81e 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "2.1.22", + "version": "2.1.23", "author": "Marcus Ericsson <[email protected]> (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,8 +16,8 @@ "contentful": "^6.1.3", "deep-map": "^1.5.0", "fs-extra": "^4.0.3", - "gatsby-plugin-sharp": "^2.2.13", - "gatsby-source-filesystem": "^2.1.11", + "gatsby-plugin-sharp": "^2.2.14", + "gatsby-source-filesystem": "^2.1.12", "is-online": "^7.0.0", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.14", diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index 70f5cff99ea05..8880f082d07e5 100644 --- a/packages/gatsby-source-drupal/CHANGELOG.md +++ b/packages/gatsby-source-drupal/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.17](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.2.17) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [3.2.16](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.2.16) (2019-08-21) **Note:** Version bump only for package gatsby-source-drupal diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index 0a4ed1815f009..aac6aef15b957 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-drupal", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", - "version": "3.2.16", + "version": "3.2.17", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,7 +11,7 @@ "axios": "^0.19.0", "bluebird": "^3.5.5", "body-parser": "^1.19.0", - "gatsby-source-filesystem": "^2.1.11", + "gatsby-source-filesystem": "^2.1.12", "lodash": "^4.17.14", "tiny-async-pool": "^1.0.4" }, diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md index 65a7b2e1c5ffb..af7b052d5ac98 100644 --- a/packages/gatsby-source-filesystem/CHANGELOG.md +++ b/packages/gatsby-source-filesystem/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.1.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.12) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.1.11](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.11) (2019-08-21) ### Bug Fixes diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index 6836ddad827b9..15395a1ff368a 100644 --- a/packages/gatsby-source-filesystem/package.json +++ b/packages/gatsby-source-filesystem/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-filesystem", "description": "Gatsby plugin which parses files within a directory for further parsing by other plugins", - "version": "2.1.11", + "version": "2.1.12", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-lever/CHANGELOG.md b/packages/gatsby-source-lever/CHANGELOG.md index 6586d92ec658b..3ae18803e33ca 100644 --- a/packages/gatsby-source-lever/CHANGELOG.md +++ b/packages/gatsby-source-lever/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.5) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.1.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.4) (2019-08-20) **Note:** Version bump only for package gatsby-source-lever diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json index 4b7cf36b19647..c3192883de9dc 100644 --- a/packages/gatsby-source-lever/package.json +++ b/packages/gatsby-source-lever/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-lever", "description": "Gatsby source plugin for building websites using the Lever.co Recruitment Software as a data source.", - "version": "2.1.4", + "version": "2.1.5", "author": "Sebastien Fichot <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-npm-package-search/CHANGELOG.md b/packages/gatsby-source-npm-package-search/CHANGELOG.md index 4feefb3489ee6..33cf226a6db41 100644 --- a/packages/gatsby-source-npm-package-search/CHANGELOG.md +++ b/packages/gatsby-source-npm-package-search/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.5](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@[email protected]) (2019-08-21) + +### Bug Fixes + +- update dependency got to v8.3.2 ([#16881](https://github.com/gatsbyjs/gatsby/issues/16881)) ([ac583b1](https://github.com/gatsbyjs/gatsby/commit/ac583b1)) + ## [2.1.4](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@[email protected]) (2019-08-20) ### Bug Fixes diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json index db35d8c64b45c..dd437d548a2db 100644 --- a/packages/gatsby-source-npm-package-search/package.json +++ b/packages/gatsby-source-npm-package-search/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-npm-package-search", "description": "Search NPM packages and pull NPM & GitHub metadata from Algolia's NPM index", - "version": "2.1.4", + "version": "2.1.5", "author": "[email protected]", "repository": { "type": "git", diff --git a/packages/gatsby-source-shopify/CHANGELOG.md b/packages/gatsby-source-shopify/CHANGELOG.md index c81bafc1f4848..8271cd38ea7b3 100644 --- a/packages/gatsby-source-shopify/CHANGELOG.md +++ b/packages/gatsby-source-shopify/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.0.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.0.3) (2019-08-21) + +### Bug Fixes + +- update dependency chalk to ^2.4.2 ([#16830](https://github.com/gatsbyjs/gatsby/issues/16830)) ([3c89607](https://github.com/gatsbyjs/gatsby/commit/3c89607)) +- update dependency graphql-request to ^1.8.2 ([#16886](https://github.com/gatsbyjs/gatsby/issues/16886)) ([1e6c29a](https://github.com/gatsbyjs/gatsby/commit/1e6c29a)) + ## [3.0.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.0.2) (2019-08-21) **Note:** Version bump only for package gatsby-source-shopify diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json index b3cf38ae8ff7f..7420480fa259b 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-shopify", - "version": "3.0.2", + "version": "3.0.3", "description": "Gatsby source plugin for building websites using Shopfiy as a data source.", "scripts": { "build": "babel src --out-dir . --ignore **/__tests__", @@ -36,7 +36,7 @@ "babel-preset-gatsby-package": "^0.2.2", "chalk": "^2.4.2", "gatsby-node-helpers": "^0.3.0", - "gatsby-source-filesystem": "^2.1.11", + "gatsby-source-filesystem": "^2.1.12", "graphql-request": "^1.8.2", "lodash": "^4.17.14", "p-iteration": "^1.1.7", diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md index 80f43c8bd2554..a16c7514d0861 100644 --- a/packages/gatsby-source-wordpress/CHANGELOG.md +++ b/packages/gatsby-source-wordpress/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.1.19](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.1.19) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [3.1.18](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.1.18) (2019-08-21) ### Bug Fixes diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index df9e94620e268..b34e87d55b166 100644 --- a/packages/gatsby-source-wordpress/package.json +++ b/packages/gatsby-source-wordpress/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-wordpress", "description": "Gatsby source plugin for building websites using the Wordpress CMS as a data source.", - "version": "3.1.18", + "version": "3.1.19", "author": "Sebastien Fichot <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "bluebird": "^3.5.5", "deep-map": "^1.5.0", "deep-map-keys": "^1.2.0", - "gatsby-source-filesystem": "^2.1.11", + "gatsby-source-filesystem": "^2.1.12", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.14", "minimatch": "^3.0.4", diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md index b8bc8c2d666fa..518c8981f8e8d 100644 --- a/packages/gatsby-telemetry/CHANGELOG.md +++ b/packages/gatsby-telemetry/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.16](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.16) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) +- update dependency envinfo to ^5.12.1 ([#16861](https://github.com/gatsbyjs/gatsby/issues/16861)) ([f0ab6cf](https://github.com/gatsbyjs/gatsby/commit/f0ab6cf)) + ## [1.1.15](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.15) (2019-08-21) ### Bug Fixes diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json index 932c2357c5f9c..6005c905ca6af 100644 --- a/packages/gatsby-telemetry/package.json +++ b/packages/gatsby-telemetry/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-telemetry", "description": "Gatsby Telemetry", - "version": "1.1.15", + "version": "1.1.16", "author": "Jarmo Isotalo <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-csv/CHANGELOG.md b/packages/gatsby-transformer-csv/CHANGELOG.md index f8a8bd9006016..b10a13339e059 100644 --- a/packages/gatsby-transformer-csv/CHANGELOG.md +++ b/packages/gatsby-transformer-csv/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.4) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.1.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.3) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-csv diff --git a/packages/gatsby-transformer-csv/package.json b/packages/gatsby-transformer-csv/package.json index 883d6618e2cb2..19c5a563a543e 100644 --- a/packages/gatsby-transformer-csv/package.json +++ b/packages/gatsby-transformer-csv/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-csv", "description": "Gatsby transformer plugin for CSV files", - "version": "2.1.3", + "version": "2.1.4", "author": "Sonal Saldanha <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-hjson/CHANGELOG.md b/packages/gatsby-transformer-hjson/CHANGELOG.md index bb74896bf1a87..fd7536331fd03 100644 --- a/packages/gatsby-transformer-hjson/CHANGELOG.md +++ b/packages/gatsby-transformer-hjson/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.5) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.2.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.4) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-hjson diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json index 209119f5dfa6a..00ef24091db11 100644 --- a/packages/gatsby-transformer-hjson/package.json +++ b/packages/gatsby-transformer-hjson/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-hjson", "description": "Gatsby transformer plugin for HJSON files", - "version": "2.2.4", + "version": "2.2.5", "author": "Remi Barraquand <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md index 4d2d8ad52d070..b7222d324a127 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md +++ b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.4](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@[email protected]) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.1.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@[email protected]) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-javascript-frontmatter diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json index 3f802de44a621..94f2c9c189478 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/package.json +++ b/packages/gatsby-transformer-javascript-frontmatter/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-javascript-frontmatter", "description": "Gatsby transformer plugin for JavaScript to extract exports.frontmatter statically.", - "version": "2.1.3", + "version": "2.1.4", "author": "Jacob Bolda <[email protected]>", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme", "dependencies": { diff --git a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md index 1f34390c7ec09..386ed9378856b 100644 --- a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md +++ b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.4](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@[email protected]) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.2.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@[email protected]) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json index 6076b6fb396f3..fd5798f0275a6 100644 --- a/packages/gatsby-transformer-javascript-static-exports/package.json +++ b/packages/gatsby-transformer-javascript-static-exports/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-javascript-static-exports", "description": "Gatsby transformer plugin for JavaScript to extract exports.data statically.", - "version": "2.2.3", + "version": "2.2.4", "author": "Jacob Bolda <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-json/CHANGELOG.md b/packages/gatsby-transformer-json/CHANGELOG.md index 68b549ba80112..a572bbd4dc29d 100644 --- a/packages/gatsby-transformer-json/CHANGELOG.md +++ b/packages/gatsby-transformer-json/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.4) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.2.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.3) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-json diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json index fc6c154d88127..17c4f0908e8cc 100644 --- a/packages/gatsby-transformer-json/package.json +++ b/packages/gatsby-transformer-json/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-json", "description": "Gatsby transformer plugin for JSON files", - "version": "2.2.3", + "version": "2.2.4", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-pdf/CHANGELOG.md b/packages/gatsby-transformer-pdf/CHANGELOG.md index cf934fd323482..e37c638fb45bb 100644 --- a/packages/gatsby-transformer-pdf/CHANGELOG.md +++ b/packages/gatsby-transformer-pdf/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.4) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [1.1.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.3) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-pdf diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json index 683518be13b79..0f7b93080b209 100644 --- a/packages/gatsby-transformer-pdf/package.json +++ b/packages/gatsby-transformer-pdf/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-pdf", "description": "Gatsby transformer plugin for pdf files", - "version": "1.1.3", + "version": "1.1.4", "author": "Alex Munoz <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-react-docgen/CHANGELOG.md b/packages/gatsby-transformer-react-docgen/CHANGELOG.md index f84e65e1fd107..cc43bed2e91e1 100644 --- a/packages/gatsby-transformer-react-docgen/CHANGELOG.md +++ b/packages/gatsby-transformer-react-docgen/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-react-docgen@[email protected]) (2019-08-21) + +### Bug Fixes + +- update dependency common-tags to ^1.8.0 ([#16834](https://github.com/gatsbyjs/gatsby/issues/16834)) ([8ed5197](https://github.com/gatsbyjs/gatsby/commit/8ed5197)) + ## [5.0.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-react-docgen@[email protected]) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-react-docgen diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json index 584057210b6df..4ca8845dfccf1 100644 --- a/packages/gatsby-transformer-react-docgen/package.json +++ b/packages/gatsby-transformer-react-docgen/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-react-docgen", "description": "Expose React component metadata and prop information as GraphQL types", - "version": "5.0.2", + "version": "5.0.3", "author": "Jason Quense <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-remark/CHANGELOG.md b/packages/gatsby-transformer-remark/CHANGELOG.md index ae159966aafa4..0880279bfa41e 100644 --- a/packages/gatsby-transformer-remark/CHANGELOG.md +++ b/packages/gatsby-transformer-remark/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.6.16](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.6.16) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) +- **gatsby:** Fix tracing so that everything happens under one span ([#16893](https://github.com/gatsbyjs/gatsby/issues/16893)) ([f8cae16](https://github.com/gatsbyjs/gatsby/commit/f8cae16)) + ## [2.6.15](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.6.15) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-remark diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index 490cd917d7528..d8a8ae7ae0d0b 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-remark", "description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem", - "version": "2.6.15", + "version": "2.6.16", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-sharp/CHANGELOG.md b/packages/gatsby-transformer-sharp/CHANGELOG.md index edf34869df008..d77078bf45ead 100644 --- a/packages/gatsby-transformer-sharp/CHANGELOG.md +++ b/packages/gatsby-transformer-sharp/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.8) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) +- update dependency fs-extra to ^7.0.1 ([#16878](https://github.com/gatsbyjs/gatsby/issues/16878)) ([f008fed](https://github.com/gatsbyjs/gatsby/commit/f008fed)) + ## [2.2.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.7) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-sharp diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index 277312040bdd1..7410169acb67b 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sharp", "description": "Gatsby transformer plugin for images using Sharp", - "version": "2.2.7", + "version": "2.2.8", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md index 86a81cada055b..bb733bf061e7e 100644 --- a/packages/gatsby-transformer-sqip/CHANGELOG.md +++ b/packages/gatsby-transformer-sqip/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.17](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.17) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) +- update dependency debug to ^3.2.6 ([#16859](https://github.com/gatsbyjs/gatsby/issues/16859)) ([697f76b](https://github.com/gatsbyjs/gatsby/commit/697f76b)) +- update dependency fs-extra to ^4.0.3 ([#16876](https://github.com/gatsbyjs/gatsby/issues/16876)) ([2cc762d](https://github.com/gatsbyjs/gatsby/commit/2cc762d)) + ## [2.1.16](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.16) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-sqip diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json index 659d5729b65b4..5a229a702e577 100644 --- a/packages/gatsby-transformer-sqip/package.json +++ b/packages/gatsby-transformer-sqip/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sqip", "description": "Generates geometric primitive version of images", - "version": "2.1.16", + "version": "2.1.17", "author": "Benedikt Rötsch <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,7 +10,7 @@ "@babel/runtime": "^7.0.0", "bluebird": "^3.5.5", "fs-extra": "^4.0.3", - "gatsby-plugin-sharp": "^2.2.13", + "gatsby-plugin-sharp": "^2.2.14", "md5-file": "^4.0.0", "mini-svg-data-uri": "^1.0.0", "p-queue": "^2.3.0", diff --git a/packages/gatsby-transformer-toml/CHANGELOG.md b/packages/gatsby-transformer-toml/CHANGELOG.md index 2f4be2cf176b4..0b314474f5025 100644 --- a/packages/gatsby-transformer-toml/CHANGELOG.md +++ b/packages/gatsby-transformer-toml/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.4) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.2.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.3) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-toml diff --git a/packages/gatsby-transformer-toml/package.json b/packages/gatsby-transformer-toml/package.json index 3ba8e3bbd198b..d1d54a3c0fde0 100644 --- a/packages/gatsby-transformer-toml/package.json +++ b/packages/gatsby-transformer-toml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-toml", "description": "Gatsby transformer plugin for toml", - "version": "2.2.3", + "version": "2.2.4", "author": "Ruben Harutyunyan <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-xml/CHANGELOG.md b/packages/gatsby-transformer-xml/CHANGELOG.md index c9802df39f394..98dba67c6938f 100644 --- a/packages/gatsby-transformer-xml/CHANGELOG.md +++ b/packages/gatsby-transformer-xml/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.5) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) + ## [2.1.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.4) (2019-08-20) **Note:** Version bump only for package gatsby-transformer-xml diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json index d3c19a03f2e1b..7669d6c70c398 100644 --- a/packages/gatsby-transformer-xml/package.json +++ b/packages/gatsby-transformer-xml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-xml", "description": "Gatsby plugin for parsing XML files. It supports also attributes", - "version": "2.1.4", + "version": "2.1.5", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index fb5a833576ac0..f84277ba9c605 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,37 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.13.74](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.13.74) (2019-08-21) + +### Bug Fixes + +- update dependency bluebird to ^3.5.5 ([#16825](https://github.com/gatsbyjs/gatsby/issues/16825)) ([ec0be83](https://github.com/gatsbyjs/gatsby/commit/ec0be83)) +- update dependency cache-manager to ^2.10.0 ([#16828](https://github.com/gatsbyjs/gatsby/issues/16828)) ([917a1a7](https://github.com/gatsbyjs/gatsby/commit/917a1a7)) +- update dependency chalk to ^2.4.2 ([#16830](https://github.com/gatsbyjs/gatsby/issues/16830)) ([3c89607](https://github.com/gatsbyjs/gatsby/commit/3c89607)) +- update dependency common-tags to ^1.8.0 ([#16834](https://github.com/gatsbyjs/gatsby/issues/16834)) ([8ed5197](https://github.com/gatsbyjs/gatsby/commit/8ed5197)) +- update dependency core-js to ^2.6.9 ([#16839](https://github.com/gatsbyjs/gatsby/issues/16839)) ([e1860c0](https://github.com/gatsbyjs/gatsby/commit/e1860c0)) +- update dependency css-loader to ^1.0.1 ([#16858](https://github.com/gatsbyjs/gatsby/issues/16858)) ([2d3536f](https://github.com/gatsbyjs/gatsby/commit/2d3536f)) +- update dependency debug to ^3.2.6 ([#16859](https://github.com/gatsbyjs/gatsby/issues/16859)) ([697f76b](https://github.com/gatsbyjs/gatsby/commit/697f76b)) +- update dependency detect-port to ^1.3.0 ([#16860](https://github.com/gatsbyjs/gatsby/issues/16860)) ([d4246d8](https://github.com/gatsbyjs/gatsby/commit/d4246d8)) +- update dependency eslint to ^5.16.0 ([#16862](https://github.com/gatsbyjs/gatsby/issues/16862)) ([e3b306c](https://github.com/gatsbyjs/gatsby/commit/e3b306c)) +- update dependency eslint-loader to ^2.2.1 ([#16864](https://github.com/gatsbyjs/gatsby/issues/16864)) ([7c7c79c](https://github.com/gatsbyjs/gatsby/commit/7c7c79c)) +- update dependency eslint-plugin-flowtype to ^2.50.3 ([#16866](https://github.com/gatsbyjs/gatsby/issues/16866)) ([aeaa141](https://github.com/gatsbyjs/gatsby/commit/aeaa141)) +- update dependency eslint-plugin-import to ^2.18.2 ([#16867](https://github.com/gatsbyjs/gatsby/issues/16867)) ([aed2414](https://github.com/gatsbyjs/gatsby/commit/aed2414)) +- update dependency eslint-plugin-jsx-a11y to ^6.2.3 ([#16868](https://github.com/gatsbyjs/gatsby/issues/16868)) ([a6a1d4f](https://github.com/gatsbyjs/gatsby/commit/a6a1d4f)) +- update dependency eslint-plugin-react to ^7.14.3 ([#16869](https://github.com/gatsbyjs/gatsby/issues/16869)) ([6864ef6](https://github.com/gatsbyjs/gatsby/commit/6864ef6)) +- update dependency event-source-polyfill to ^1.0.8 ([#16870](https://github.com/gatsbyjs/gatsby/issues/16870)) ([1430af5](https://github.com/gatsbyjs/gatsby/commit/1430af5)) +- **gatsby:** Fix tracing so that everything happens under one span ([#16893](https://github.com/gatsbyjs/gatsby/issues/16893)) ([f8cae16](https://github.com/gatsbyjs/gatsby/commit/f8cae16)) +- **gatsby:** Use publicLoader in production-app ([#16800](https://github.com/gatsbyjs/gatsby/issues/16800)) ([4ea8cb1](https://github.com/gatsbyjs/gatsby/commit/4ea8cb1)) +- update dependency express to ^4.17.1 ([#16872](https://github.com/gatsbyjs/gatsby/issues/16872)) ([b0ae41e](https://github.com/gatsbyjs/gatsby/commit/b0ae41e)) +- update dependency express-graphql to ^0.9.0 ([#16873](https://github.com/gatsbyjs/gatsby/issues/16873)) ([9e16547](https://github.com/gatsbyjs/gatsby/commit/9e16547)) +- update dependency flat to ^4.1.0 ([#16875](https://github.com/gatsbyjs/gatsby/issues/16875)) ([19e5b30](https://github.com/gatsbyjs/gatsby/commit/19e5b30)) +- update dependency got to v8.3.2 ([#16881](https://github.com/gatsbyjs/gatsby/issues/16881)) ([ac583b1](https://github.com/gatsbyjs/gatsby/commit/ac583b1)) +- update dependency graphql-compose to ^6.3.5 ([#16882](https://github.com/gatsbyjs/gatsby/issues/16882)) ([10ec53b](https://github.com/gatsbyjs/gatsby/commit/10ec53b)) + +### Features + +- **gatsby:** Bumps eslint-config-react-app 4.x ([#16168](https://github.com/gatsbyjs/gatsby/issues/16168)) ([1bbce27](https://github.com/gatsbyjs/gatsby/commit/1bbce27)) + ## [2.13.73](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.13.73) (2019-08-21) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 4cba80032e8ec..0b5d42c8ca859 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.13.73", + "version": "2.13.74", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js" @@ -70,13 +70,13 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^5.0.0", - "gatsby-cli": "^2.7.34", + "gatsby-cli": "^2.7.35", "gatsby-core-utils": "^1.0.5", - "gatsby-graphiql-explorer": "^0.2.4", + "gatsby-graphiql-explorer": "^0.2.5", "gatsby-link": "^2.2.6", - "gatsby-plugin-page-creator": "^2.1.7", + "gatsby-plugin-page-creator": "^2.1.8", "gatsby-react-router-scroll": "^2.1.4", - "gatsby-telemetry": "^1.1.15", + "gatsby-telemetry": "^1.1.16", "glob": "^7.1.1", "got": "8.3.2", "graphql": "^14.4.2",
6b069421e01f81c0a49c452c1f4444ebb5feeec0
2018-11-28 03:28:46
Lennart
fix(www): Update "View all" component (#10170)
false
Update "View all" component (#10170)
fix
diff --git a/www/src/components/homepage/homepage-blog-posts.js b/www/src/components/homepage/homepage-blog-posts.js index e3da4041f034c..1c2b310cc82c1 100644 --- a/www/src/components/homepage/homepage-blog-posts.js +++ b/www/src/components/homepage/homepage-blog-posts.js @@ -105,7 +105,7 @@ const LastPost = styled(`div`)` const ViewAll = () => ( <ViewAllStyle> - <Link to="/"> + <Link to="/blog/"> View all <span> posts
d3f932b7653243185c52bfbf7c9d518dadb27bd7
2021-05-26 21:25:27
Megan Sullivan
docs(tutorial): add part 3 (plugins) (#31423)
false
add part 3 (plugins) (#31423)
docs
diff --git a/docs/docs/tutorial/part-0/index.mdx b/docs/docs/tutorial/part-0/index.mdx index d829845a893aa..b5c1509f4a4e7 100644 --- a/docs/docs/tutorial/part-0/index.mdx +++ b/docs/docs/tutorial/part-0/index.mdx @@ -3,9 +3,9 @@ title: Set Up Your Development Environment tableOfContentsDepth: 2 --- -import { Announcement, Notification } from 'gatsby-interface' +import { Announcement, Notification, LinkButton } from 'gatsby-interface' import Collapsible from '@components/collapsible' -import { MdInfo } from 'react-icons/md' +import { MdInfo, MdArrowForward } from 'react-icons/md' <Notification Icon={MdInfo} @@ -331,10 +331,6 @@ In this Tutorial, you will deploy your site using Gatsby Cloud. To use Gatsby Cl Now that you have all the knowledge and tools you'll need, you're ready for the Tutorial! -### What's coming next? - -In the next part, you'll create your first Gatsby site and deploy it online for everyone to see. - <Announcement style={{marginBottom: "1.5rem"}}> **Share Your Feedback!** @@ -344,3 +340,15 @@ Our goal is for this Tutorial to be helpful and easy to follow. We'd love to hea Use the "Was this doc helpful to you?" form at the bottom of this page to let us know what worked well and what we can improve. </Announcement> + +### What's coming next? + +In Part 1 of the Tutorial, you'll create your first Gatsby site and deploy it online for everyone to see. + +<LinkButton + to="/docs/tutorial/part-1" + rightIcon={<MdArrowForward />} + variant="SECONDARY" +> + Continue to Part 1 +</LinkButton> \ No newline at end of file diff --git a/docs/docs/tutorial/part-1/index.mdx b/docs/docs/tutorial/part-1/index.mdx index ef43d5878015f..4d6881b9c4293 100644 --- a/docs/docs/tutorial/part-1/index.mdx +++ b/docs/docs/tutorial/part-1/index.mdx @@ -2,9 +2,9 @@ title: Create and Deploy Your First Gatsby Site --- -import { Announcement, Notification } from 'gatsby-interface' +import { Announcement, Notification, LinkButton } from 'gatsby-interface' import Collapsible from '@components/collapsible' -import { MdInfo } from 'react-icons/md' +import { MdInfo, MdArrowForward } from 'react-icons/md' <Notification Icon={MdInfo} @@ -304,10 +304,6 @@ First, you write the code for your Gatsby site from your computer. When you're r </Collapsible> -### What's coming next? - -Now that you have a default Gatsby site up and running, it's time to make it your own. In the next section, you'll learn how to use React to customize the design and contents of your site. - <Announcement style={{marginBottom: "1.5rem"}}> **Share Your Feedback!** @@ -317,3 +313,15 @@ Our goal is for this Tutorial to be helpful and easy to follow. We'd love to hea Use the "Was this doc helpful to you?" form at the bottom of this page to let us know what worked well and what we can improve. </Announcement> + +### What's coming next? + +Now that you have a default Gatsby site up and running, it's time to make it your own. In Part 2 of the Tutorial, you'll learn how to use React to customize the design and contents of your site. + +<LinkButton + to="/docs/tutorial/part-2" + rightIcon={<MdArrowForward />} + variant="SECONDARY" +> + Continue to Part 2 +</LinkButton> \ No newline at end of file diff --git a/docs/docs/tutorial/part-2/index.mdx b/docs/docs/tutorial/part-2/index.mdx index cca2462cb2019..86526113e23ee 100644 --- a/docs/docs/tutorial/part-2/index.mdx +++ b/docs/docs/tutorial/part-2/index.mdx @@ -2,9 +2,9 @@ title: Use and Style React Components --- -import { Announcement, Notification } from 'gatsby-interface' +import { Announcement, Notification, LinkButton } from 'gatsby-interface' import Collapsible from '@components/collapsible' -import { MdInfo } from 'react-icons/md' +import { MdInfo, MdArrowForward } from 'react-icons/md' <Notification Icon={MdInfo} @@ -791,11 +791,7 @@ Once your changes have been pushed to GitHub, Gatsby Cloud should notice the upd * **Building-block components** are smaller reusable parts of your UI. They can be imported into page components or other building block components. * You can import **pre-built** components (like `Link`) from other packages, or you can write your own **custom** components from scratch (like `Layout`). * You can use **props** to change how a component renders. You can define your own props when you build a component. React also has some built-in props, like `children` and `className`. -* Gatsby isn't opinionated about what styling approach you want to use, but it works with **CSS modules** by default. - -### What's coming next? - -In the next section, you'll learn about how to use Gatsby plugins to add more pre-built functionality to your site. +* Gatsby isn't opinionated about what styling approach you want to use, but it works with **CSS Modules** by default. <Announcement style={{marginBottom: "1.5rem"}}> @@ -807,24 +803,14 @@ Use the "Was this doc helpful to you?" form at the bottom of this page to let us </Announcement> -<Notification - Icon={MdInfo} - tone="WARNING" +### What's coming next? + +In Part 3 of the Tutorial, you'll learn about how to use Gatsby plugins to add more pre-built functionality to your site. + +<LinkButton + to="/docs/tutorial/part-3" + rightIcon={<MdArrowForward />} variant="SECONDARY" - content={ - <div> - <p> - <strong>Note:</strong> We{"'"}re still working on updating this Tutorial to use Gatsby v3. - You've reached the end of the new content we've released so far. Subsequent parts - will be added as we finish them. - </p> - <p style={{ marginBottom: 0 }}> - If you{"'"}re looking for a full experience in the meantime, you can check out the (slightly outdated){" "} - <a href="https://v2.gatsbyjs.com/docs/tutorial/"> - <strong>Gatsby v2 Tutorial</strong> - </a> - . - </p> - </div> - } -/> \ No newline at end of file +> + Continue to Part 3 +</LinkButton> \ No newline at end of file diff --git a/docs/docs/tutorial/part-3/cooking-accessories.png b/docs/docs/tutorial/part-3/cooking-accessories.png new file mode 100644 index 0000000000000..6f7cb5949477b Binary files /dev/null and b/docs/docs/tutorial/part-3/cooking-accessories.png differ diff --git a/docs/docs/tutorial/part-3/index-page-with-static-image-from-filesystem.png b/docs/docs/tutorial/part-3/index-page-with-static-image-from-filesystem.png new file mode 100644 index 0000000000000..ccb5bdb7ca5ca Binary files /dev/null and b/docs/docs/tutorial/part-3/index-page-with-static-image-from-filesystem.png differ diff --git a/docs/docs/tutorial/part-3/index-page-with-static-image-from-url.png b/docs/docs/tutorial/part-3/index-page-with-static-image-from-url.png new file mode 100644 index 0000000000000..d98a2c6487367 Binary files /dev/null and b/docs/docs/tutorial/part-3/index-page-with-static-image-from-url.png differ diff --git a/docs/docs/tutorial/part-3/index.mdx b/docs/docs/tutorial/part-3/index.mdx new file mode 100644 index 0000000000000..18b9ecf9ae9a4 --- /dev/null +++ b/docs/docs/tutorial/part-3/index.mdx @@ -0,0 +1,320 @@ +--- +title: Add Features with Plugins +tableOfContentsDepth: 2 +--- + +import { Announcement, Notification } from 'gatsby-interface' +import Collapsible from '@components/collapsible' +import { MdInfo } from 'react-icons/md' + +<Notification + Icon={MdInfo} + tone="WARNING" + variant="SECONDARY" + content={ + <div> + <p> + <strong>Note:</strong> We{"'"}re still working on updating this Tutorial to use Gatsby v3. + The first few parts of the new Tutorial have been released here, and subsequent parts + will be added as we finish them. + </p> + <p style={{ marginBottom: 0 }}> + If you{"'"}re looking for a full experience in the meantime, you can check out the (slightly outdated){" "} + <a href="https://v2.gatsbyjs.com/docs/tutorial/"> + <strong>Gatsby v2 Tutorial</strong> + </a> + . + </p> + </div> + } +/> + +## Introduction + +It can be a lot of work to build new features for a website. Luckily, by using Gatsby plugins, you can quickly add new functionality to your site without needing to build it from scratch yourself. Gatsby's plugin ecosystem has thousands of prebuilt packages for you to choose from. + +In this part of the Tutorial, you'll learn what Gatsby plugins are and how to use them in your site. + +By the end of this part of the Tutorial, you will be able to: + +* Use the [Gatsby Plugin Library](/plugins) to browse all the available plugins. +* Add a plugin to your Gatsby site. +* Configure your plugins in your `gatsby-config.js` file. + +## What is a plugin? + +In Gatsby terms, a **plugin** is a separate npm package that you install to add extra features to your site. + +There are a variety of plugins that each have different use cases. Some plugins provide pre-built components, others add analytics, others let you pull data into your site. Some plugins are built by Gatsby employees, while other plugins are built and maintained by community members. So far, there are more than 2,600 plugins to choose from. You can look through all the available plugins using the [Gatsby Plugin Library](/plugins). + +You can think of a plugin as an accessory for your site. You don't _need_ to use plugins - you could build out the same functionality from scratch yourself - but they save you time. They're like those fancy single-purpose cooking gadgets that peel apples or crush garlic. You could accomplish the same task using a regular knife, but it's often faster to use a tool that's built to do that one specific job really well. + +![Kitchen accessories like an apple peeler, an egg slicer, or a garlic press are specialized tools that do one thing really well. They aren't required, but they make your life easier.)](./cooking-accessories.png) + +You will likely use plugins in almost every Gatsby site you build. While working through the rest of the Tutorial, you’ll have many opportunities to practice installing and using plugins. + +## Add a plugin to your site + +To add a plugin to your site, you'll use the following process: + +1. **Install the plugin** using npm. +2. **Configure the plugin** in your site's `gatsby-config.js` file. +3. **Use the plugin features** in your site, as needed. + +<Collapsible + summary={<h3>Key Gatsby Concept: Adding a plugin to your site</h3>} +> + +Here's a more detailed breakdown of the steps to add a plugin to your site: + +#### 1) Install the plugin using npm. + +In your terminal, run the following command (swapping out `plugin-name` for the name of the plugin you want to use). This will add the plugin as a dependency in your `package.json` and `package-lock.json` files. + +```shell +npm install plugin-name +``` +Depending on what plugin you're using, there might be more dependencies that you also need to install. Check the specific plugin's README in the plugin library for more details. + +#### 2) Configure the plugin in your `gatsby-config.js` file. + +Your `gatsby-config.js` file contains information about your site, including configuration for plugins. You can add a plugin to the `plugins` array: + +```js:title=gatsby-config.js +module.exports = { + siteMetadata: { + title: "My First Gatsby Site", + }, + // highlight-next-line + plugins: ["plugin-name"], +}; +``` + +Some plugins require extra configuration options. In that case, you'll add an object to the `plugins` array (instead of a string), as shown below. (Check the plugin README in the [Gatsby Plugin Library](/plugins) for more details on what that options object should look like.) + +```js:title=gatsby-config.js +module.exports = { + siteMetadata: { + title: "My First Gatsby Site", + }, + plugins: [ + // highlight-start + { + resolve: "plugin-name", + options: { + // Check the plugin README for what options go in here + } + }, + // highlight-end + ] +} +``` + +<Announcement style={{marginBottom: "1.5rem"}}> + +**Note:** After you make updates to your `gatsby-config.js` file, you'll need to restart your `gatsby develop` process for your changes to be picked up. + +</Announcement> + +#### 3) Use the plugin features in your site. + +Now that you've set up the plugin, you can use it in your Gatsby site as needed. + +The specifics of this step will be different based on what the plugin does. Sometimes, the plugin might have a component or function that you can import and use in your site. Other times, you might not need to do anything extra at all. Check the plugin's README for more details. + +</Collapsible> + +![The general process for using a plugin: Install, configure, and use in your site (when needed).](./plugin-process.png) + +The next few sections will walk you through the process of adding a plugin to your site. You'll use the `gatsby-plugin-image` to add performant images to your site. + +### Task: Use `gatsby-plugin-image` to add a static image to your home page + +You can use the `gatsby-plugin-image` plugin to add responsive images to your site while maintaining high performance scores. `gatsby-plugin-image` exports a component called `StaticImage`, which you can use to load images from a remote URL or your local filesystem. + +Follow the steps below to use the `StaticImage` component to add an image from a URL to your home page. + +1. In the terminal, run the following command to install `gatsby-plugin-image` and its dependencies. + +```shell +npm install gatsby-plugin-image gatsby-plugin-sharp gatsby-source-filesystem +``` + +<Announcement style={{marginBottom: "1.5rem"}}> + +The `StaticImage` component requires a few additional plugins to work. These extra plugins are called **peer dependencies**, and you'll need to install them along with the `gatsby-plugin-image` package: + +* `gatsby-plugin-sharp`: Handles the actual image processing that is used by `gatsby-plugin-image`. +* `gatsby-source-filesystem`: Lets you pull in data from your computer's filesystem. (You'll learn more about this plugin later. Just install it for now.) + +**Tip:** When adding a new plugin to your site, check the plugin README in the [Gatsby Plugin Library](/plugins) to see if there are any special setup instructions. + +</Announcement> + +2. Next, add the `gatsby-plugin-image` and `gatsby-plugin-sharp` plugins to your `gatsby-config.js` file. (Don't worry about `gatsby-source-filesystem` just yet. You'll come back to it later.) + +```js:title=gatsby-config.js +module.exports = { + siteMetadata: { + title: "My First Gatsby Site", + }, + plugins: [ + "gatsby-plugin-gatsby-cloud", + // highlight-start + "gatsby-plugin-image", + "gatsby-plugin-sharp", + // highlight-end + ], +}; +``` + +<Announcement style={{marginBottom: "1.5rem"}}> + +**Key Gatsby Concept** 💡 + +The `gatsby-config.js` file is a special file that Gatsby recognizes automatically. It's where you add plugins and other site configuration. + +After you update your `gatsby-config.js` file, your local development server has to restart in order to pick up the new changes. Sometimes it will restart itself automatically, but if you're seeing unexpected behavior, try stopping and restarting it yourself. +</Announcement> + +3. Now that your plugins have been installed and configured, you can use the `StaticImage` component in your Gatsby site! You can use the `StaticImage` component similarly to the way you'd use an HTML `<img>` tag. + + The `StaticImage` component expects the following props: + + * `src` (string): The URL to the image you want to load. (This is the same as what you put in the `src` attribute of an `<img>` HTML element.) + * `alt` (string): The alt text to describe the image. This gets used by screen readers or if there's a problem loading the image. + + Find an image URL online, and then use the `StaticImage` component to add that image to your home page: + +```js:title=src/pages/index.js +import * as React from 'react' +import Layout from '../components/layout' +import { StaticImage } from 'gatsby-plugin-image' // highlight-line + +const IndexPage = () => { + return ( + <Layout pageTitle="Home Page"> + <p>I'm making this by following the Gatsby Tutorial.</p> + {/* highlight-start */} + <StaticImage + alt="Clifford, a reddish-brown pitbull, posing on a couch and looking stoically at the camera" + src="https://pbs.twimg.com/media/E1oMV3QVgAIr1NT?format=jpg&name=large" + /> + {/* highlight-end */} + </Layout> + ) +} +``` + +4. In your web browser, go to `localhost:8000` to see your home page. There should now be a photo at the bottom of the page: + +![The home page of your site, which now includes a picture of a dog.](./index-page-with-static-image-from-url.png) + +<Announcement style={{marginBottom: "1.5rem"}}> + +Nothing at `localhost:8000`? Make sure your local development server is still running! + +```shell +gatsby develop +``` + +</Announcement> + +### Task: Update the static image to use a photo from your local filesystem + +So far, you've used the `StaticImage` component to add an image from an external URL. But what happens if you want to use a photo that isn't on the internet yet? + +You can also use the `StaticImage` component to render images from your local filesystem. + +1. Download a photo to your computer, and move it into your project folder. To keep things organized, put it in the `src/images` directory. +2. Update the `src` prop in your home page to be a relative path to your file instead of a URL. (Make sure it matches the name of your image!) Don't forget to update the `alt` prop to describe your image! +```js:title=src/pages/index.js +import * as React from 'react' +import Layout from '../components/layout' +import { StaticImage } from 'gatsby-plugin-image' + +const IndexPage = () => { + return ( + <Layout pageTitle="Home Page"> + <p>I'm making this by following the Gatsby Tutorial.</p> + <StaticImage + {/* highlight-start */} + alt="Clifford, a reddish-brown pitbull, dozing in a bean bag chair" + src="../images/clifford.jpg" + {/* highlight-end */} + /> + </Layout> + ) +} +``` +3. In your web browser, go to `localhost:8000`. Your image should still appear on the home page. + +![The home page of your site, which includes a different picture of a dog.](./index-page-with-static-image-from-filesystem.png) + +## Summary + +Take a moment to think back on what you've learned so far. Challenge yourself to answer the following questions from memory: + +* What is the benefit to using a plugin in your Gatsby site? +* How would you add a new plugin to your Gatsby site? + +<Announcement style={{marginBottom: "1.5rem"}}> + +**Ship It!** 🚀 + +Before you move on, deploy your changes to your live site on Gatsby Cloud so that you can share your progress! + +First, run the following commands in a terminal to push your changes to your GitHub repository. (Make sure you're in the top-level directory for your Gatsby site!) + +```shell +git add . +git commit -m "Finished Gatsby Tutorial Part 2" +git push +``` + +Once your changes have been pushed to GitHub, Gatsby Cloud should notice the update and rebuild and deploy the latest version of your site. (It may take a few minutes for your changes to be reflected on the live site. Watch your build's progress from your [Gatsby Cloud dashboard](/dashboard/?utm_campaign=tutorial).) + +</Announcement> + +### Key takeaways + +- A plugin is a package that lets you add new features to your site. +- Using plugins saves you development time, since it's faster to install and configure a plugin than it is to recreate the same functionality from scratch. +- The general process for using a plugin is to install it, configure it in your `gatsby-config.js` file, and then use it in your site as needed. +- You can use the [Gatsby Plugin Library](https://www.gatsbyjs.com/plugins) to browse all the available plugins and learn more about how each one works. + +<Announcement style={{marginBottom: "1.5rem"}}> + +**Share Your Feedback!** + +Our goal is for this Tutorial to be helpful and easy to follow. We'd love to hear your feedback about what you liked or didn't like about this part of the Tutorial. + +Use the "Was this doc helpful to you?" form at the bottom of this page to let us know what worked well and what we can improve. + +</Announcement> + +### What's coming next? + +In Part 4, you'll learn about a specific category of plugins that let you pull data into your site: source plugins. + +<Notification + Icon={MdInfo} + tone="WARNING" + variant="SECONDARY" + content={ + <div> + <p> + <strong>Note:</strong> We{"'"}re still working on updating this Tutorial to use Gatsby v3. + You've reached the end of the new content we've released so far. Subsequent parts + will be added as we finish them. + </p> + <p style={{ marginBottom: 0 }}> + If you{"'"}re looking for a full experience in the meantime, you can check out the (slightly outdated){" "} + <a href="https://v2.gatsbyjs.com/docs/tutorial/"> + <strong>Gatsby v2 Tutorial</strong> + </a> + . + </p> + </div> + } +/> diff --git a/docs/docs/tutorial/part-3/plugin-process.png b/docs/docs/tutorial/part-3/plugin-process.png new file mode 100644 index 0000000000000..4e0d596f98507 Binary files /dev/null and b/docs/docs/tutorial/part-3/plugin-process.png differ
8eba5a190808dcb905d0074135699e39c8649d73
2022-10-14 17:02:27
Muescha
chore(docs): TypeScript and Gatsby: add info for CSS Modules (#36820)
false
TypeScript and Gatsby: add info for CSS Modules (#36820)
chore
diff --git a/docs/docs/how-to/custom-configuration/typescript.md b/docs/docs/how-to/custom-configuration/typescript.md index cfb0edd8ef6b4..3d8af0aab6702 100644 --- a/docs/docs/how-to/custom-configuration/typescript.md +++ b/docs/docs/how-to/custom-configuration/typescript.md @@ -329,8 +329,18 @@ exports.createPages = () => {} ## Styling +### vanilla-extract + [vanilla-extract](https://vanilla-extract.style/) helps you write type‑safe, locally scoped classes, variables and themes. It's a great solution when it comes to styling in your TypeScript project. To use vanilla-extract, select it as your preferred styling solution when initializing your project with `npm init gatsby`. You can also manually setup your project through [gatsby-plugin-vanilla-extract](/plugins/gatsby-plugin-vanilla-extract/) or use the [vanilla-extract example](https://github.com/gatsbyjs/gatsby/tree/master/examples/using-vanilla-extract). +### CSS Modules + +To import CSS Modules add this typing definition to your source folder: + +```typescript:title=src/module.css.d.ts +declare module "*.module.css"; +``` + ## Migrating to TypeScript Gatsby natively supports JavaScript and TypeScript, you can change files from `.js`/`.jsx` to `.ts`/ `tsx` at any point to start adding types and gaining the benefits of a type system. But you'll need to do a bit more to be able use Typescipt in `gatsby-*` files:
30437865257c21498b6da0df026e67d2983bfa2c
2019-11-25 18:33:27
Michal Piechowiak
fix(gatsby): memoize shadowCreatePagePath to fix performance r… (#19774)
false
memoize shadowCreatePagePath to fix performance r… (#19774)
fix
diff --git a/packages/gatsby/src/internal-plugins/webpack-theme-component-shadowing/index.js b/packages/gatsby/src/internal-plugins/webpack-theme-component-shadowing/index.js index 78340cb0a506c..db971958ae753 100644 --- a/packages/gatsby/src/internal-plugins/webpack-theme-component-shadowing/index.js +++ b/packages/gatsby/src/internal-plugins/webpack-theme-component-shadowing/index.js @@ -8,6 +8,12 @@ const pathWithoutExtension = fullPath => { return path.join(parsed.dir, parsed.name) } +// TO-DO: +// - implement ability to add/remove shadowed modules from the webpack chain as file are being created/deleted +// ( https://github.com/gatsbyjs/gatsby/issues/11456 ): +// - this will also need to add memo invalidation for page template shadowing: +// see memoized `shadowCreatePagePath` function used in `createPage` action creator. + module.exports = class GatsbyThemeComponentShadowingResolverPlugin { cache = {} diff --git a/packages/gatsby/src/redux/actions/public.js b/packages/gatsby/src/redux/actions/public.js index 8a6f09e135bb0..7e04e0b9d7770 100644 --- a/packages/gatsby/src/redux/actions/public.js +++ b/packages/gatsby/src/redux/actions/public.js @@ -20,7 +20,16 @@ const { getCommonDir } = require(`../../utils/path`) const apiRunnerNode = require(`../../utils/api-runner-node`) const { trackCli } = require(`gatsby-telemetry`) const { getNonGatsbyCodeFrame } = require(`../../utils/stack-trace-utils`) -const shadowCreatePagePath = require(`../../internal-plugins/webpack-theme-component-shadowing/create-page`) + +/** + * Memoize function used to pick shadowed page components to avoid expensive I/O. + * Ideally, we should invalidate memoized values if there are any FS operations + * on files that are in shadowing chain, but webpack currently doesn't handle + * shadowing changes during develop session, so no invalidation is not a deal breaker. + */ +const shadowCreatePagePath = _.memoize( + require(`../../internal-plugins/webpack-theme-component-shadowing/create-page`) +) const actions = {} const isWindows = platform() === `win32`
1895bf1d385210a63c43be099e58b63bf6a32300
2022-06-21 22:01:44
Daniel Lew
fix(gatsby): Node manifest write conflicts (#35940)
false
Node manifest write conflicts (#35940)
fix
diff --git a/packages/gatsby/src/utils/__tests__/node-manifest.ts b/packages/gatsby/src/utils/__tests__/node-manifest.ts index 53f5307d9f1e1..fed71187c620e 100644 --- a/packages/gatsby/src/utils/__tests__/node-manifest.ts +++ b/packages/gatsby/src/utils/__tests__/node-manifest.ts @@ -24,7 +24,12 @@ jest.mock(`fs-extra`, () => { if (process.env.DEBUG) { console.log({ manifestFilePath, finalManifest }) } - return { manifestFilePath, finalManifest } + return new Promise(resolve => + resolve({ + manifestFilePath, + finalManifest, + }) + ) }), } }) diff --git a/packages/gatsby/src/utils/node-manifest.ts b/packages/gatsby/src/utils/node-manifest.ts index 105f48c7a380e..6676361a558a7 100644 --- a/packages/gatsby/src/utils/node-manifest.ts +++ b/packages/gatsby/src/utils/node-manifest.ts @@ -32,6 +32,8 @@ type FoundPageBy = | `queryTracking` | `none` +type PreviouslyWrittenNodeManifests = Map<string, Promise<INodeManifestOut>> + function getNodeManifestFileLimit(): number { const defaultLimit = 10000 @@ -222,7 +224,8 @@ export async function processNodeManifest( inputManifest: INodeManifest, listOfUniqueErrorIds: Set<string>, nodeManifestPagePathMap: Map<string, string>, - verboseLogs: boolean + verboseLogs: boolean, + previouslyWrittenNodeManifests: PreviouslyWrittenNodeManifests ): Promise<null | INodeManifestOut> { const nodeId = inputManifest.node.id const fullNode = getNode(nodeId) @@ -310,12 +313,43 @@ export async function processNodeManifest( const manifestFileDir = path.dirname(manifestFilePath) await fs.ensureDir(manifestFileDir) - await fs.writeJSON(manifestFilePath, finalManifest) - if (verboseLogs) { + const previouslyWrittenNodeManifest = + await previouslyWrittenNodeManifests.get(inputManifest.manifestId) + + // write a manifest if we don't currently have one written for this ID + // or if we can replace the written one with a manifest that has found a page + // NOTE: We still want to write out a manifest if foundPageBy is "none", this helps with error messaging + // But we prefer to write a manifest that has a foundPageBy that is NOT "none" + const shouldWriteManifest = + !previouslyWrittenNodeManifest || + (previouslyWrittenNodeManifest?.foundPageBy === `none` && + finalManifest.foundPageBy !== `none`) + + if (shouldWriteManifest) { + const writePromise = fs.writeJSON(manifestFilePath, finalManifest) + + // This prevents two manifests from writing to the same file at the same time + previouslyWrittenNodeManifests.set( + inputManifest.manifestId, + new Promise(resolve => { + writePromise.then(() => { + resolve(finalManifest) + }) + }) + ) + + await writePromise + } + + if (shouldWriteManifest && verboseLogs) { reporter.info( `Plugin ${inputManifest.pluginName} created a manifest with the id ${fileNameBase}` ) + } else if (verboseLogs) { + reporter.info( + `Plugin ${inputManifest.pluginName} created a manifest with the id ${fileNameBase} but it was not written to disk because it was already written to disk previously.` + ) } if (nodeManifestPage.path) { @@ -372,6 +406,8 @@ export async function processNodeManifests(): Promise<Map< let totalFailedManifests = 0 const nodeManifestPagePathMap: Map<string, string> = new Map() const listOfUniqueErrorIds: Set<string> = new Set() + const previouslyWrittenNodeManifests: PreviouslyWrittenNodeManifests = + new Map() async function processNodeManifestTask( manifest: INodeManifest, @@ -381,7 +417,8 @@ export async function processNodeManifests(): Promise<Map< manifest, listOfUniqueErrorIds, nodeManifestPagePathMap, - verboseLogs + verboseLogs, + previouslyWrittenNodeManifests ) if (processedManifest) {
ce28cfebb71ee370a29cf1fa100660a0c1a722eb
2019-04-12 04:53:01
Michal Piechowiak
test(www): adjust mocked result of useStaticQuery hook
false
adjust mocked result of useStaticQuery hook
test
diff --git a/www/src/pages/contributing/__tests__/stub-list.js b/www/src/pages/contributing/__tests__/stub-list.js index 8ecf429601a9d..e1705cb65d3d1 100644 --- a/www/src/pages/contributing/__tests__/stub-list.js +++ b/www/src/pages/contributing/__tests__/stub-list.js @@ -38,11 +38,9 @@ import StubList from "../stub-list" let location beforeEach(() => { useStaticQuery.mockReturnValueOnce({ - data: { - site: { - siteMetadata: { - title: `GatsbyJS`, - }, + site: { + siteMetadata: { + title: `GatsbyJS`, }, }, })
a4d1126e856345ce83f5f9d47dc3a411a924e352
2019-12-07 03:03:16
Blaine Kasten
fix(gatsby-dev-cli): chmod gatsby bin on copy (#19985)
false
chmod gatsby bin on copy (#19985)
fix
diff --git a/packages/gatsby-dev-cli/src/watch.js b/packages/gatsby-dev-cli/src/watch.js index dd5d5a60dd882..71852aca06d93 100644 --- a/packages/gatsby-dev-cli/src/watch.js +++ b/packages/gatsby-dev-cli/src/watch.js @@ -57,6 +57,15 @@ async function watch( } } + // When the gatsby binary is copied over, it is not setup with the executable + // permissions that it is given when installed via yarn. + // This fixes the issue where after running gatsby-dev, running `yarn gatsby develop` + // fails with a permission issue. + // @fixes https://github.com/gatsbyjs/gatsby/issues/18809 + if (/bin\/gatsby.js$/.test(newPath)) { + fs.chmodSync(newPath, `0755`) + } + numCopied += 1 if (!quiet) { console.log(`Copied ${oldPath} to ${newPath}`) @@ -147,6 +156,7 @@ async function watch( /\.git/i, /\.DS_Store/, /[/\\]__tests__[/\\]/i, + /[/\\]__mocks__[/\\]/i, /\.npmrc/i, ].concat( allPackagesToWatch.map(p => new RegExp(`${p}[\\/\\\\]src[\\/\\\\]`, `i`))
5baaa0f739fc14055ab874a86380ebdd69ebedc2
2020-02-28 00:39:30
Nat Alison
refactor(www): Move base layout component into layouts plugin (#21478)
false
Move base layout component into layouts plugin (#21478)
refactor
diff --git a/www/src/components/guidelines/layout.js b/www/src/components/guidelines/layout.js index 5ea3f6719e609..16fc1193d5e83 100755 --- a/www/src/components/guidelines/layout.js +++ b/www/src/components/guidelines/layout.js @@ -1,18 +1,16 @@ /** @jsx jsx */ import { jsx } from "theme-ui" -import React from "react" import PropTypes from "prop-types" import { Helmet } from "react-helmet" import { Global } from "@emotion/core" -import BaseLayout from "../layout" import { globalStyles } from "../../utils/styles/global" import { Box } from "./system" import Header from "./header" import Footer from "../shared/footer-links" -const Layout = ({ children, background, location, pageTitle }) => ( - <BaseLayout location={location}> +const Layout = ({ children, background, pageTitle }) => ( + <Box bg="background" position="relative"> <Global styles={{ ".ReactModal__Overlay": { @@ -34,15 +32,13 @@ const Layout = ({ children, background, location, pageTitle }) => ( <Helmet> <title>{pageTitle ? `${pageTitle} | Guidelines` : `Guidelines`}</title> </Helmet> - <Box bg="background" position="relative"> - {background && background} - <Header /> - <Box as="main" className="main-body"> - {children} - <Footer /> - </Box> + {background && background} + <Header /> + <Box as="main" className="main-body"> + {children} + <Footer /> </Box> - </BaseLayout> + </Box> ) Layout.propTypes = { diff --git a/www/src/components/layout/layout-with-heading.js b/www/src/components/layout/layout-with-heading.js index b376689aae390..1011a369fc673 100644 --- a/www/src/components/layout/layout-with-heading.js +++ b/www/src/components/layout/layout-with-heading.js @@ -3,28 +3,25 @@ import { jsx } from "theme-ui" import PropTypes from "prop-types" import PageHeading from "./page-heading" -import BaseLayout from "../layout" import { mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org" const LayoutWithHeading = props => { - const { children, location, pageTitle = ``, pageIcon } = props + const { children, pageTitle = ``, pageIcon } = props return ( - <BaseLayout location={location}> - <div - sx={{ - pb: t => t.fontSizes[10], + <div + sx={{ + pb: t => t.fontSizes[10], - [mediaQueries.md]: { - ml: t => t.sizes.pageHeadingDesktopWidth, - pb: 0, - }, - }} - > - {pageTitle && <PageHeading title={pageTitle} icon={pageIcon} />} - {children} - </div> - </BaseLayout> + [mediaQueries.md]: { + ml: t => t.sizes.pageHeadingDesktopWidth, + pb: 0, + }, + }} + > + {pageTitle && <PageHeading title={pageTitle} icon={pageIcon} />} + {children} + </div> ) } diff --git a/www/src/components/showcase-details.js b/www/src/components/showcase-details.js index cdc834a947786..3533be011a22a 100644 --- a/www/src/components/showcase-details.js +++ b/www/src/components/showcase-details.js @@ -8,7 +8,6 @@ import Img from "gatsby-image" import qs from "qs" import { mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org" -import Layout from "../components/layout" import Modal from "../components/modal" import ShareMenu from "../components/share-menu" import Button from "../components/button" @@ -140,7 +139,8 @@ function getExitLocation(filters = {}) { } } -function ShowcaseModal({ children, location }) { +function ShowcaseModal({ children, location, isModal }) { + if (!isModal) return children const { previousSite, nextSite } = usePrevAndNextSite(location.pathname) const { filters } = location.state || {} return ( @@ -245,9 +245,8 @@ function ShowcaseModal({ children, location }) { const ShowcaseDetails = ({ location, site, isModal, categories }) => { const screenshotFile = site.childScreenshot.screenshotFile.childImageSharp - const PageLayout = isModal ? ShowcaseModal : Layout return ( - <PageLayout location={location}> + <ShowcaseModal isModal={isModal} location={location}> <div sx={{ display: `flex`, @@ -395,7 +394,7 @@ const ShowcaseDetails = ({ location, site, isModal, categories }) => { </div> </div> </div> - </PageLayout> + </ShowcaseModal> ) } diff --git a/www/src/layouts/index.js b/www/src/layouts/index.js index df3717d33e78f..d9dcd7c91caf5 100644 --- a/www/src/layouts/index.js +++ b/www/src/layouts/index.js @@ -1,3 +1,16 @@ -export default function Layout({ children }) { - return children +/** @jsx jsx */ +import { jsx } from "theme-ui" +import BaseLayout from "../components/layout" +import { getLocaleAndBasePath } from "../utils/i18n" + +export default function Layout({ location, children }) { + if (location.state && location.state.isModal) { + return children + } + const { locale } = getLocaleAndBasePath(location.pathname) + return ( + <BaseLayout location={location} locale={locale}> + {children} + </BaseLayout> + ) } diff --git a/www/src/pages/404.js b/www/src/pages/404.js index 6f9862f800e68..c879e22070c51 100644 --- a/www/src/pages/404.js +++ b/www/src/pages/404.js @@ -1,26 +1,19 @@ import React from "react" import Container from "../components/container" -import Layout from "../components/layout" import { Link } from "gatsby" import FooterLinks from "../components/shared/footer-links" -class FourOhFour extends React.Component { - render() { - return ( - <Layout location={this.props.location}> - <Container> - <h1>Page not found</h1> - <p> - Oops! The page you are looking for has been removed or relocated. - </p> - <Link to="/"> - <p>Go Back</p> - </Link> - </Container> - <FooterLinks /> - </Layout> - ) - } +export default function FourOhFour() { + return ( + <> + <Container> + <h1>Page not found</h1> + <p>Oops! The page you are looking for has been removed or relocated.</p> + <Link to="/"> + <p>Go Back</p> + </Link> + </Container> + <FooterLinks /> + </> + ) } - -export default FourOhFour diff --git a/www/src/pages/blog/tags.js b/www/src/pages/blog/tags.js index 3676ec2c8eb61..514c33086dfa6 100644 --- a/www/src/pages/blog/tags.js +++ b/www/src/pages/blog/tags.js @@ -9,13 +9,16 @@ import { kebabCase } from "lodash-es" import TiArrowRight from "react-icons/lib/ti/arrow-right" import Button from "../../components/button" -import Layout from "../../components/layout" import Container from "../../components/container" import SearchIcon from "../../components/search-icon" import FooterLinks from "../../components/shared/footer-links" import { TAGS_AND_DOCS } from "../../data/tags-docs" import { themedInput } from "../../utils/styles" -import { colors, space, mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org" +import { + colors, + space, + mediaQueries, +} from "gatsby-design-tokens/dist/theme-gatsbyjs-org" const POPULAR_TAGS = [ `themes`, @@ -83,7 +86,6 @@ class TagsPage extends React.Component { data: { allMdx: { group }, }, - location, } = this.props const { filterQuery } = this.state const uniqGroup = group @@ -113,107 +115,105 @@ class TagsPage extends React.Component { }) return ( - <Layout location={location}> - <Container> - <Helmet> - <title>Tags</title> - <meta - name={`description`} - content={`Find case studies, tutorials, and more about Gatsby related topics by tag`} - /> - </Helmet> - <div> - <h1 - css={{ - padding: `${space[6]} 0`, - margin: 0, - borderBottom: `1px solid ${colors.ui.border}`, - }} - > - Tags ({Object.keys(uniqGroup).length || 0}) - </h1> - <div /> - <h2>Popular tags</h2> - <PopularTagGrid>{PopularTagButtons}</PopularTagGrid> - <div - sx={{ - display: `flex`, - flexFlow: `row nowrap`, - justifyContent: `space-between`, - pb: 4, - alignItems: `center`, - }} - > - <h2>All tags</h2> - <label css={{ position: `relative` }}> - <input - sx={{ ...themedInput, pl: 7 }} - id="tagsFilter" - name="filterQuery" - type="search" - placeholder="Search tags" - aria-label="Tag Search" - title="Filter tag list" - value={filterQuery} - onChange={this.handleChange} - /> - <SearchIcon /> - </label> - </div> - <ul - sx={{ - display: `flex`, - flexFlow: `row wrap`, - justifyContent: `start`, - p: 0, - m: 0, - }} - > - {results.length > 0 ? ( - results.map(key => { - const tag = uniqGroup[key] - const firstLetter = tag.fieldValue.charAt(0).toLowerCase() - const buildTag = ( - <li - key={tag.fieldValue} - sx={{ - py: 3, - px: 1, - m: 4, - listStyleType: `none`, - }} - > - <Link to={tag.slug}> - {tag.fieldValue} ({tag.totalCount}) - </Link> - </li> - ) - - if (currentLetter !== firstLetter) { - currentLetter = firstLetter - return ( - <React.Fragment key={`letterheader-${currentLetter}`}> - <h4 sx={{ width: `100%`, flexBasis: `100%` }}> - {currentLetter.toUpperCase()} - </h4> - {buildTag} - </React.Fragment> - ) - } - return buildTag - }) - ) : ( - <h4> - No tags found for &quot; - {filterQuery} - &quot; 😔 - </h4> - )} - </ul> + <Container> + <Helmet> + <title>Tags</title> + <meta + name={`description`} + content={`Find case studies, tutorials, and more about Gatsby related topics by tag`} + /> + </Helmet> + <div> + <h1 + css={{ + padding: `${space[6]} 0`, + margin: 0, + borderBottom: `1px solid ${colors.ui.border}`, + }} + > + Tags ({Object.keys(uniqGroup).length || 0}) + </h1> + <div /> + <h2>Popular tags</h2> + <PopularTagGrid>{PopularTagButtons}</PopularTagGrid> + <div + sx={{ + display: `flex`, + flexFlow: `row nowrap`, + justifyContent: `space-between`, + pb: 4, + alignItems: `center`, + }} + > + <h2>All tags</h2> + <label css={{ position: `relative` }}> + <input + sx={{ ...themedInput, pl: 7 }} + id="tagsFilter" + name="filterQuery" + type="search" + placeholder="Search tags" + aria-label="Tag Search" + title="Filter tag list" + value={filterQuery} + onChange={this.handleChange} + /> + <SearchIcon /> + </label> </div> - </Container> + <ul + sx={{ + display: `flex`, + flexFlow: `row wrap`, + justifyContent: `start`, + p: 0, + m: 0, + }} + > + {results.length > 0 ? ( + results.map(key => { + const tag = uniqGroup[key] + const firstLetter = tag.fieldValue.charAt(0).toLowerCase() + const buildTag = ( + <li + key={tag.fieldValue} + sx={{ + py: 3, + px: 1, + m: 4, + listStyleType: `none`, + }} + > + <Link to={tag.slug}> + {tag.fieldValue} ({tag.totalCount}) + </Link> + </li> + ) + + if (currentLetter !== firstLetter) { + currentLetter = firstLetter + return ( + <React.Fragment key={`letterheader-${currentLetter}`}> + <h4 sx={{ width: `100%`, flexBasis: `100%` }}> + {currentLetter.toUpperCase()} + </h4> + {buildTag} + </React.Fragment> + ) + } + return buildTag + }) + ) : ( + <h4> + No tags found for &quot; + {filterQuery} + &quot; 😔 + </h4> + )} + </ul> + </div> <FooterLinks /> - </Layout> + </Container> ) } } diff --git a/www/src/pages/features.js b/www/src/pages/features.js index daad8d9620a3c..4fc6654f68c85 100644 --- a/www/src/pages/features.js +++ b/www/src/pages/features.js @@ -5,7 +5,6 @@ import { graphql } from "gatsby" import { Helmet } from "react-helmet" import Button from "../components/button" -import Layout from "../components/layout" import Container from "../components/container" import FooterLinks from "../components/shared/footer-links" import LegendTable from "../components/features/legend-table" @@ -105,37 +104,35 @@ const FeaturesHeader = () => ( class FeaturesPage extends Component { render() { return ( - <Layout location={this.props.location}> - <PageWithSidebar location={this.props.location}> - <Helmet> - <title>Features</title> - <meta - name="description" - content="Learn how specific features like performance and support for modern technologies make Gatsby worth using." + <PageWithSidebar location={this.props.location}> + <Helmet> + <title>Features</title> + <meta + name="description" + content="Learn how specific features like performance and support for modern technologies make Gatsby worth using." + /> + </Helmet> + <Container> + <main id={`reach-skip-nav`}> + <FeaturesHeader /> + <SimpleEvaluationTable + title="Feature Comparison" + headers={[ + { display: `Category`, nodeFieldProperty: `Category` }, + { display: `Gatsby`, nodeFieldProperty: `Gatsby` }, + { + display: `JAMstack frameworks`, + nodeFieldProperty: `Jamstack`, + }, + { display: `Traditional CMS`, nodeFieldProperty: `Cms` }, + ]} + data={this.props.data.allGatsbyFeaturesSpecsCsv.edges} /> - </Helmet> - <Container> - <main id={`reach-skip-nav`}> - <FeaturesHeader /> - <SimpleEvaluationTable - title="Feature Comparison" - headers={[ - { display: `Category`, nodeFieldProperty: `Category` }, - { display: `Gatsby`, nodeFieldProperty: `Gatsby` }, - { - display: `JAMstack frameworks`, - nodeFieldProperty: `Jamstack`, - }, - { display: `Traditional CMS`, nodeFieldProperty: `Cms` }, - ]} - data={this.props.data.allGatsbyFeaturesSpecsCsv.edges} - /> - <FeaturesFooter /> - </main> - <FooterLinks /> - </Container> - </PageWithSidebar> - </Layout> + <FeaturesFooter /> + </main> + <FooterLinks /> + </Container> + </PageWithSidebar> ) } } diff --git a/www/src/pages/features/cms.js b/www/src/pages/features/cms.js index 32a8491b39372..e51ebc67ae27d 100644 --- a/www/src/pages/features/cms.js +++ b/www/src/pages/features/cms.js @@ -3,7 +3,6 @@ import { jsx } from "theme-ui" import { graphql } from "gatsby" import Button from "../../components/button" -import Layout from "../../components/layout" import PageWithSidebar from "../../components/page-with-sidebar" import EvaluationTable from "../../components/features/evaluation-table" import { getFeaturesData } from "../../utils/get-csv-features-data" @@ -36,63 +35,61 @@ const CmsFeaturesPage = ({ data, location }) => { ) return ( - <Layout location={location}> - <PageWithSidebar location={location}> - <Container> - <main id={`reach-skip-nav`}> - <Breadcrumb location={location} /> - <FeaturesHeader /> - <h3>Comparison</h3> - <p> - To see a filtered view of Gatsby compared with specific CMS - technologies, choose the technologies to compare and then press - Compare: - </p> - <div sx={{ pb: 10 }}> - <div - sx={{ - display: `grid`, - gridTemplateColumns: `repeat(auto-fit, minmax(75px, 1fr))`, - gridAutoRows: `1fr`, - gridGap: 2, - pb: 4, - }} - > - {featureComparisonOptions.cms.map( - ({ key: optionKey, display }) => ( - <CompareButton - key={optionKey} - optionKey={optionKey} - selected={selected[optionKey]} - setSelected={setSelected} - > - {display} - </CompareButton> - ) - )} - </div> - <Button - to={ - hasSelected - ? `/features/cms/gatsby-vs-${comparators.join(`-vs-`)}` - : location.pathname - } - > - Compare with Gatsby - </Button> + <PageWithSidebar location={location}> + <Container> + <main id={`reach-skip-nav`}> + <Breadcrumb location={location} /> + <FeaturesHeader /> + <h3>Comparison</h3> + <p> + To see a filtered view of Gatsby compared with specific CMS + technologies, choose the technologies to compare and then press + Compare: + </p> + <div sx={{ pb: 10 }}> + <div + sx={{ + display: `grid`, + gridTemplateColumns: `repeat(auto-fit, minmax(75px, 1fr))`, + gridAutoRows: `1fr`, + gridGap: 2, + pb: 4, + }} + > + {featureComparisonOptions.cms.map( + ({ key: optionKey, display }) => ( + <CompareButton + key={optionKey} + optionKey={optionKey} + selected={selected[optionKey]} + setSelected={setSelected} + > + {display} + </CompareButton> + ) + )} </div> - <LegendTable /> - <EvaluationTable - options={featureComparisonOptions.cms} - sections={sections} - sectionHeaders={sectionHeaders} - /> - <FeaturesFooter /> - </main> - <FooterLinks /> - </Container> - </PageWithSidebar> - </Layout> + <Button + to={ + hasSelected + ? `/features/cms/gatsby-vs-${comparators.join(`-vs-`)}` + : location.pathname + } + > + Compare with Gatsby + </Button> + </div> + <LegendTable /> + <EvaluationTable + options={featureComparisonOptions.cms} + sections={sections} + sectionHeaders={sectionHeaders} + /> + <FeaturesFooter /> + </main> + <FooterLinks /> + </Container> + </PageWithSidebar> ) } diff --git a/www/src/pages/features/jamstack.js b/www/src/pages/features/jamstack.js index f64528a9e1891..549889dc4e1fe 100644 --- a/www/src/pages/features/jamstack.js +++ b/www/src/pages/features/jamstack.js @@ -3,7 +3,6 @@ import { jsx } from "theme-ui" import { graphql } from "gatsby" import Button from "../../components/button" -import Layout from "../../components/layout" import EvaluationTable from "../../components/features/evaluation-table" import { getFeaturesData } from "../../utils/get-csv-features-data" import Container from "../../components/container" @@ -39,61 +38,59 @@ const JamstackFeaturesPage = ({ data, location }) => { ) return ( - <Layout location={location}> - <PageWithSidebar location={location}> - <Container> - <main id={`reach-skip-nav`}> - <Breadcrumb location={location} /> - <FeaturesHeader /> - <h3>Comparison</h3> - <p> - To see a filtered view of Gatsby with specific JAMstack - technologies, choose the technologies to compare and then press - Compare: - </p> + <PageWithSidebar location={location}> + <Container> + <main id={`reach-skip-nav`}> + <Breadcrumb location={location} /> + <FeaturesHeader /> + <h3>Comparison</h3> + <p> + To see a filtered view of Gatsby with specific JAMstack + technologies, choose the technologies to compare and then press + Compare: + </p> - <div - sx={{ - display: `grid`, - gridTemplateColumns: `repeat(auto-fit, minmax(75px, 1fr))`, - gridAutoRows: `1fr`, - gridGap: 2, - pb: 4, - }} - > - {featureComparisonOptions.jamstack.map( - ({ key: optionKey, display }) => ( - <CompareButton - key={optionKey} - optionKey={optionKey} - selected={selected[optionKey]} - setSelected={setSelected} - > - {display} - </CompareButton> - ) - )} - </div> - <Button - to={ - hasSelected - ? `/features/jamstack/gatsby-vs-${comparators.join(`-vs-`)}` - : location.pathname - } - > - Compare with Gatsby - </Button> - <EvaluationTable - options={featureComparisonOptions.jamstack} - sections={sections} - sectionHeaders={sectionHeaders} - /> - <FeaturesFooter /> - </main> - <FooterLinks /> - </Container> - </PageWithSidebar> - </Layout> + <div + sx={{ + display: `grid`, + gridTemplateColumns: `repeat(auto-fit, minmax(75px, 1fr))`, + gridAutoRows: `1fr`, + gridGap: 2, + pb: 4, + }} + > + {featureComparisonOptions.jamstack.map( + ({ key: optionKey, display }) => ( + <CompareButton + key={optionKey} + optionKey={optionKey} + selected={selected[optionKey]} + setSelected={setSelected} + > + {display} + </CompareButton> + ) + )} + </div> + <Button + to={ + hasSelected + ? `/features/jamstack/gatsby-vs-${comparators.join(`-vs-`)}` + : location.pathname + } + > + Compare with Gatsby + </Button> + <EvaluationTable + options={featureComparisonOptions.jamstack} + sections={sections} + sectionHeaders={sectionHeaders} + /> + <FeaturesFooter /> + </main> + <FooterLinks /> + </Container> + </PageWithSidebar> ) } diff --git a/www/src/pages/index.js b/www/src/pages/index.js index 24972a505725a..5e41119bb23a8 100644 --- a/www/src/pages/index.js +++ b/www/src/pages/index.js @@ -5,7 +5,6 @@ import { graphql } from "gatsby" import { Helmet } from "react-helmet" import ArrowForwardIcon from "react-icons/lib/md/arrow-forward" -import Layout from "../components/layout" import Container from "../components/container" import MastheadContent from "../components/masthead" import Diagram from "../components/diagram" @@ -86,7 +85,7 @@ class IndexRoute extends React.Component { const posts = postsData.map(item => item.node) return ( - <Layout location={this.props.location}> + <> <Helmet> <meta name="Description" @@ -142,7 +141,7 @@ class IndexRoute extends React.Component { <HomepageNewsletter /> </main> <FooterLinks /> - </Layout> + </> ) } } diff --git a/www/src/pages/newsletter.js b/www/src/pages/newsletter.js index 96889171d59d6..530836cd01526 100644 --- a/www/src/pages/newsletter.js +++ b/www/src/pages/newsletter.js @@ -1,17 +1,14 @@ import React, { Component } from "react" import { Helmet } from "react-helmet" -import Layout from "../components/layout" import Container from "../components/container" import EmailCaptureForm from "../components/email-capture-form" import FooterLinks from "../components/shared/footer-links" class NewsLetter extends Component { render() { - const { location } = this.props - return ( - <Layout location={location}> + <> <Helmet> <title>Newsletter</title> <meta @@ -41,7 +38,7 @@ class NewsLetter extends Component { /> </Container> <FooterLinks /> - </Layout> + </> ) } } diff --git a/www/src/pages/plugins.js b/www/src/pages/plugins.js index f9eec6bf3e180..0d52026619dc7 100644 --- a/www/src/pages/plugins.js +++ b/www/src/pages/plugins.js @@ -9,127 +9,124 @@ import { Link } from "gatsby" import logo from "../assets/monogram.svg" import { sizes } from "gatsby-design-tokens/dist/theme-gatsbyjs-org" import FooterLinks from "../components/shared/footer-links" -import Layout from "../components/layout" import PageWithPluginSearchBar from "../components/page-with-plugin-searchbar" class Plugins extends Component { render() { const { location } = this.props return ( - <Layout location={location}> - <PageWithPluginSearchBar location={location} isPluginsIndex={true}> - <Helmet> - <title>Plugins</title> - <meta - name="description" - content="The library for searching and exploring Gatsby's vast plugin ecosystem to implement Node.js packages using Gatsby APIs" - /> - </Helmet> - <Container - overrideCSS={{ - alignItems: `center`, + <PageWithPluginSearchBar location={location} isPluginsIndex={true}> + <Helmet> + <title>Plugins</title> + <meta + name="description" + content="The library for searching and exploring Gatsby's vast plugin ecosystem to implement Node.js packages using Gatsby APIs" + /> + </Helmet> + <Container + overrideCSS={{ + alignItems: `center`, + display: `flex`, + flexDirection: `column`, + minHeight: `calc(100vh - (${sizes.headerHeight} + ${sizes.bannerHeight}))`, + }} + > + <div + css={{ display: `flex`, flexDirection: `column`, - minHeight: `calc(100vh - (${sizes.headerHeight} + ${sizes.bannerHeight}))`, }} > - <div - css={{ - display: `flex`, - flexDirection: `column`, + <img + src={logo} + sx={{ + display: `inline-block`, + height: t => t.space[12], + width: t => t.space[12], + mx: `auto`, + }} + alt="" + /> + <h1 + sx={{ + fontSize: 6, + fontWeight: `heading`, + mx: 5, + mb: 0, + textAlign: `center`, }} > - <img - src={logo} - sx={{ - display: `inline-block`, - height: t => t.space[12], - width: t => t.space[12], - mx: `auto`, - }} - alt="" - /> - <h1 - sx={{ - fontSize: 6, - fontWeight: `heading`, - mx: 5, - mb: 0, - textAlign: `center`, - }} - > - Welcome to the Gatsby Plugin Library! - </h1> - <Rotator - items={[ - { - text: `SEO?`, - pluginName: `gatsby-plugin-react-helmet`, - }, - { - text: `responsive images?`, - pluginName: `gatsby-image`, - }, - { - text: `offline support?`, - pluginName: `gatsby-plugin-offline`, - }, - { - text: `Sass support?`, - pluginName: `gatsby-plugin-sass`, - }, - { - text: `a sitemap?`, - pluginName: `gatsby-plugin-sitemap`, - }, - { - text: `an RSS feed?`, - pluginName: `gatsby-plugin-feed`, - }, - { - text: `great typography?`, - pluginName: `gatsby-plugin-typography`, - }, - { - text: `TypeScript?`, - pluginName: `gatsby-plugin-typescript`, - }, - { - text: `Google Analytics?`, - pluginName: `gatsby-plugin-google-analytics`, - }, - { - text: `WordPress integration?`, - pluginName: `gatsby-source-wordpress`, - }, - { - text: `anything?`, - }, - ]} - color="lilac" - /> + Welcome to the Gatsby Plugin Library! + </h1> + <Rotator + items={[ + { + text: `SEO?`, + pluginName: `gatsby-plugin-react-helmet`, + }, + { + text: `responsive images?`, + pluginName: `gatsby-image`, + }, + { + text: `offline support?`, + pluginName: `gatsby-plugin-offline`, + }, + { + text: `Sass support?`, + pluginName: `gatsby-plugin-sass`, + }, + { + text: `a sitemap?`, + pluginName: `gatsby-plugin-sitemap`, + }, + { + text: `an RSS feed?`, + pluginName: `gatsby-plugin-feed`, + }, + { + text: `great typography?`, + pluginName: `gatsby-plugin-typography`, + }, + { + text: `TypeScript?`, + pluginName: `gatsby-plugin-typescript`, + }, + { + text: `Google Analytics?`, + pluginName: `gatsby-plugin-google-analytics`, + }, + { + text: `WordPress integration?`, + pluginName: `gatsby-source-wordpress`, + }, + { + text: `anything?`, + }, + ]} + color="lilac" + /> - <p - sx={{ - color: `textMuted`, - fontSize: 2, - textAlign: `center`, - }} - > - Please use the search bar to find plugins that will make your - blazing fast site even more awesome. If you - {`'`}d like to create your own plugin, see the - {` `} - <Link to="/docs/creating-plugins/">Plugin Authoring</Link> page - in the docs! To learn more about Gatsby plugins, visit the - {` `} - <Link to="/docs/plugins">plugins doc page</Link>. - </p> - </div> - <FooterLinks /> - </Container> - </PageWithPluginSearchBar> - </Layout> + <p + sx={{ + color: `textMuted`, + fontSize: 2, + textAlign: `center`, + }} + > + Please use the search bar to find plugins that will make your + blazing fast site even more awesome. If you + {`'`}d like to create your own plugin, see the + {` `} + <Link to="/docs/creating-plugins/">Plugin Authoring</Link> page in + the docs! To learn more about Gatsby plugins, visit the + {` `} + <Link to="/docs/plugins">plugins doc page</Link>. + </p> + </div> + <FooterLinks /> + </Container> + </PageWithPluginSearchBar> ) } } diff --git a/www/src/templates/tags.js b/www/src/templates/tags.js index 5fa5d26df5d16..f8e5e2b4bc0b7 100644 --- a/www/src/templates/tags.js +++ b/www/src/templates/tags.js @@ -9,7 +9,6 @@ import TiArrowRight from "react-icons/lib/ti/arrow-right" import BlogPostPreviewItem from "../components/blog-post-preview-item" import Button from "../components/button" import Container from "../components/container" -import Layout from "../components/layout" import FooterLinks from "../components/shared/footer-links" import { TAGS_AND_DOCS } from "../data/tags-docs" @@ -25,7 +24,7 @@ const preferSpacedTag = tags => { return tags[0] } -const Tags = ({ pageContext, data, location }) => { +const Tags = ({ pageContext, data }) => { const { tags } = pageContext const { edges, totalCount } = data.allMdx const tagHeader = `${totalCount} post${ @@ -34,7 +33,7 @@ const Tags = ({ pageContext, data, location }) => { const doc = TAGS_AND_DOCS.get(tags[0]) return ( - <Layout location={location}> + <Container> <Helmet> <title>{`${preferSpacedTag(tags)} Tag`}</title> <meta @@ -44,38 +43,36 @@ const Tags = ({ pageContext, data, location }) => { )}`} /> </Helmet> - <Container> - <h1>{tagHeader}</h1> - <Button - variant="small" - key="blog-post-view-all-tags-button" - to="/blog/tags" - > - View all tags <TagsIcon /> - </Button> - {doc ? ( - <React.Fragment> - <span css={{ margin: 5 }} /> - <Button - variant="small" - secondary - key={`view-tag-docs-button`} - to={doc} - > - Read the documentation <TiArrowRight /> - </Button> - </React.Fragment> - ) : null} - {edges.map(({ node }) => ( - <BlogPostPreviewItem - post={node} - key={node.fields.slug} - sx={{ my: 9 }} - /> - ))} - </Container> + <h1>{tagHeader}</h1> + <Button + variant="small" + key="blog-post-view-all-tags-button" + to="/blog/tags" + > + View all tags <TagsIcon /> + </Button> + {doc ? ( + <React.Fragment> + <span css={{ margin: 5 }} /> + <Button + variant="small" + secondary + key={`view-tag-docs-button`} + to={doc} + > + Read the documentation <TiArrowRight /> + </Button> + </React.Fragment> + ) : null} + {edges.map(({ node }) => ( + <BlogPostPreviewItem + post={node} + key={node.fields.slug} + sx={{ my: 9 }} + /> + ))} <FooterLinks /> - </Layout> + </Container> ) } diff --git a/www/src/templates/template-api-markdown.js b/www/src/templates/template-api-markdown.js index 837976caf1d8a..e2b781ed210e0 100644 --- a/www/src/templates/template-api-markdown.js +++ b/www/src/templates/template-api-markdown.js @@ -1,6 +1,5 @@ /** @jsx jsx */ import { jsx } from "theme-ui" -import React from "react" import { Helmet } from "react-helmet" import { graphql } from "gatsby" import { MDXRenderer } from "gatsby-plugin-mdx" @@ -9,7 +8,6 @@ import { mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org" // API Rendering Stuff import { sortBy } from "lodash-es" -import Layout from "../components/layout" import PageWithSidebar from "../components/page-with-sidebar" import MarkdownPageFooter from "../components/markdown-page-footer" import DocSearchContent from "../components/docsearch-content" @@ -85,7 +83,7 @@ export default function APITemplate({ data, location, pageContext }) { const description = page.frontmatter.description || page.excerpt return ( - <React.Fragment> + <PageWithSidebar location={location}> <Helmet> <title>{page.frontmatter.title}</title> <meta name="description" content={description} /> @@ -96,51 +94,45 @@ export default function APITemplate({ data, location, pageContext }) { <meta name="twitter.label1" content="Reading time" /> <meta name="twitter:data1" content={`${page.timeToRead} min read`} /> </Helmet> - <Layout location={location}> - <PageWithSidebar location={location}> - <DocSearchContent> - <Container - overrideCSS={{ - pb: 0, - [mediaQueries.lg]: { - pt: 9, - }, - }} - > - <Breadcrumb location={location} /> - <h1 id={page.fields.anchor} sx={{ mt: 0 }}> - {page.frontmatter.title} - </h1> - </Container> - <Container - overrideCSS={{ - pt: 0, - position: `static`, - [mediaQueries.lg]: { - pb: 9, - }, - }} - > - <div> - <MDXRenderer slug={page.fields.slug}>{page.body}</MDXRenderer> - <h2>{page.frontmatter.contentsHeading || "APIs"}</h2> - <APIContents docs={mergedFuncs} /> - <h2>Reference</h2> - <APIReference - docs={mergedFuncs} - showTopLevelSignatures={ - page.frontmatter.showTopLevelSignatures - } - /> - <PrevAndNext sx={{ mt: 9 }} prev={prev} next={next} /> - <MarkdownPageFooter page={page} /> - </div> - </Container> - </DocSearchContent> - <FooterLinks /> - </PageWithSidebar> - </Layout> - </React.Fragment> + <DocSearchContent> + <Container + overrideCSS={{ + pb: 0, + [mediaQueries.lg]: { + pt: 9, + }, + }} + > + <Breadcrumb location={location} /> + <h1 id={page.fields.anchor} sx={{ mt: 0 }}> + {page.frontmatter.title} + </h1> + </Container> + <Container + overrideCSS={{ + pt: 0, + position: `static`, + [mediaQueries.lg]: { + pb: 9, + }, + }} + > + <div> + <MDXRenderer slug={page.fields.slug}>{page.body}</MDXRenderer> + <h2>{page.frontmatter.contentsHeading || "APIs"}</h2> + <APIContents docs={mergedFuncs} /> + <h2>Reference</h2> + <APIReference + docs={mergedFuncs} + showTopLevelSignatures={page.frontmatter.showTopLevelSignatures} + /> + <PrevAndNext sx={{ mt: 9 }} prev={prev} next={next} /> + <MarkdownPageFooter page={page} /> + </div> + </Container> + </DocSearchContent> + <FooterLinks /> + </PageWithSidebar> ) } diff --git a/www/src/templates/template-blog-list.js b/www/src/templates/template-blog-list.js index 4593b7c1d755a..52b034729ca70 100644 --- a/www/src/templates/template-blog-list.js +++ b/www/src/templates/template-blog-list.js @@ -5,7 +5,6 @@ import { graphql } from "gatsby" import { Helmet } from "react-helmet" import TagsIcon from "react-icons/lib/ti/tags" -import Layout from "../components/layout" import Button from "../components/button" import Container from "../components/container" import BlogPostPreviewItem from "../components/blog-post-preview-item" @@ -21,78 +20,76 @@ class BlogPostsIndex extends React.Component { const { allMdx } = this.props.data return ( - <Layout location={this.props.location}> - <main id={`reach-skip-nav`}> - <Helmet> - <title>{`Blog | Page ${this.props.pageContext.currentPage}`}</title> - </Helmet> - <Container> - <div + <main id={`reach-skip-nav`}> + <Helmet> + <title>{`Blog | Page ${this.props.pageContext.currentPage}`}</title> + </Helmet> + <Container> + <div + sx={{ + ...pullIntoGutter, + display: `flex`, + justifyContent: `space-between`, + borderBottom: t => `1px solid ${t.colors.ui.border}`, + mb: 6, + pb: 6, + [breakpointGutter]: { + pb: 0, + border: 0, + }, + }} + > + <h1 sx={{ mb: 0 }}>Blog</h1> + <Button + key="blog-view-all-tags-button" + to="/blog/tags" + variant="small" + > + View all Tags <TagsIcon /> + </Button> + </div> + {allMdx.edges.map(({ node }, index) => ( + <BlogPostPreviewItem + post={node} + key={node.fields.slug} sx={{ + borderBottomWidth: `1px`, + borderBottomStyle: `solid`, + borderColor: `ui.border`, + pb: 8, + mb: index === allMdx.edges.length - 1 ? 0 : 8, ...pullIntoGutter, - display: `flex`, - justifyContent: `space-between`, - borderBottom: t => `1px solid ${t.colors.ui.border}`, - mb: 6, - pb: 6, [breakpointGutter]: { - pb: 0, + p: 9, + boxShadow: `raised`, + bg: `card.background`, + borderRadius: 2, border: 0, - }, - }} - > - <h1 sx={{ mb: 0 }}>Blog</h1> - <Button - key="blog-view-all-tags-button" - to="/blog/tags" - variant="small" - > - View all Tags <TagsIcon /> - </Button> - </div> - {allMdx.edges.map(({ node }, index) => ( - <BlogPostPreviewItem - post={node} - key={node.fields.slug} - sx={{ - borderBottomWidth: `1px`, - borderBottomStyle: `solid`, - borderColor: `ui.border`, - pb: 8, - mb: index === allMdx.edges.length - 1 ? 0 : 8, - ...pullIntoGutter, - [breakpointGutter]: { - p: 9, - boxShadow: `raised`, - bg: `card.background`, - borderRadius: 2, - border: 0, - mb: 6, - mx: 0, - transition: t => - `transform ${t.transition.default}, box-shadow ${t.transition.default}, padding ${t.transition.default}`, - "&:hover": { - transform: t => `translateY(-${t.space[1]})`, - boxShadow: `overlay`, - }, - "&:active": { - boxShadow: `cardActive`, - transform: `translateY(0)`, - }, + mb: 6, + mx: 0, + transition: t => + `transform ${t.transition.default}, box-shadow ${t.transition.default}, padding ${t.transition.default}`, + "&:hover": { + transform: t => `translateY(-${t.space[1]})`, + boxShadow: `overlay`, }, - [mediaQueries.md]: { - marginLeft: t => `-${t.space[9]}`, - marginRight: t => `-${t.space[9]}`, + "&:active": { + boxShadow: `cardActive`, + transform: `translateY(0)`, }, - }} - /> - ))} - <Pagination context={this.props.pageContext} /> - <EmailCaptureForm signupMessage="Enjoying our blog? Receive the next post in your inbox!" /> - </Container> - <FooterLinks /> - </main> - </Layout> + }, + [mediaQueries.md]: { + marginLeft: t => `-${t.space[9]}`, + marginRight: t => `-${t.space[9]}`, + }, + }} + /> + ))} + <Pagination context={this.props.pageContext} /> + <EmailCaptureForm signupMessage="Enjoying our blog? Receive the next post in your inbox!" /> + </Container> + <FooterLinks /> + </main> ) } } diff --git a/www/src/templates/template-blog-post.js b/www/src/templates/template-blog-post.js index b683002cdaaca..a02020f490d7d 100644 --- a/www/src/templates/template-blog-post.js +++ b/www/src/templates/template-blog-post.js @@ -6,7 +6,6 @@ import { Link, graphql } from "gatsby" import Img from "gatsby-image" import { MDXRenderer } from "gatsby-plugin-mdx" -import Layout from "../components/layout" import { mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org" import Container from "../components/container" import EmailCaptureForm from "../components/email-capture-form" @@ -42,7 +41,7 @@ class BlogPostTemplate extends React.Component { ) } return ( - <Layout location={this.props.location}> + <> <Container> { // TODO @@ -223,7 +222,7 @@ class BlogPostTemplate extends React.Component { </Container> <FooterLinks /> </div> - </Layout> + </> ) } } diff --git a/www/src/templates/template-contributor-page.js b/www/src/templates/template-contributor-page.js index 99eec0c497530..598790438ce3f 100644 --- a/www/src/templates/template-contributor-page.js +++ b/www/src/templates/template-contributor-page.js @@ -5,7 +5,6 @@ import { Helmet } from "react-helmet" import { graphql } from "gatsby" import Avatar from "../components/avatar" -import Layout from "../components/layout" import Container from "../components/container" import BlogPostPreviewItem from "../components/blog-post-preview-item" import FooterLinks from "../components/shared/footer-links" @@ -20,7 +19,7 @@ class ContributorPageTemplate extends React.Component { ) return ( - <Layout location={this.props.location}> + <main> <Helmet> <title>{`${contributor.id} - Contributor`}</title> <meta name="description" content={contributor.bio} /> @@ -40,49 +39,47 @@ class ContributorPageTemplate extends React.Component { /> )} </Helmet> - <main> - <Container> - <div - sx={{ - textAlign: `center`, - py: 7, - px: 6, - }} - > - <div> - <Avatar image={contributor.avatar.childImageSharp.fixed} /> - <h1 sx={{ mt: 0, mb: 3 }}>{contributor.id}</h1> - <p - sx={{ - fontFamily: `heading`, - fontSize: 3, - maxWidth: `28rem`, - mx: `auto`, - }} - > - {contributor.bio} - </p> - {contributor.twitter && ( - <a href={`https://twitter.com/${contributor.twitter}`}> - {` `} - {contributor.twitter} - </a> - )} - </div> + <Container> + <div + sx={{ + textAlign: `center`, + py: 7, + px: 6, + }} + > + <div> + <Avatar image={contributor.avatar.childImageSharp.fixed} /> + <h1 sx={{ mt: 0, mb: 3 }}>{contributor.id}</h1> + <p + sx={{ + fontFamily: `heading`, + fontSize: 3, + maxWidth: `28rem`, + mx: `auto`, + }} + > + {contributor.bio} + </p> + {contributor.twitter && ( + <a href={`https://twitter.com/${contributor.twitter}`}> + {` `} + {contributor.twitter} + </a> + )} </div> - <div sx={{ py: 7, px: 6 }}> - {posts.map(node => ( - <BlogPostPreviewItem - post={node} - key={node.fields.slug} - sx={{ mb: 9 }} - /> - ))} - </div> - </Container> - <FooterLinks /> - </main> - </Layout> + </div> + <div sx={{ py: 7, px: 6 }}> + {posts.map(node => ( + <BlogPostPreviewItem + post={node} + key={node.fields.slug} + sx={{ mb: 9 }} + /> + ))} + </div> + </Container> + <FooterLinks /> + </main> ) } } diff --git a/www/src/templates/template-creator-details.js b/www/src/templates/template-creator-details.js index 9eaff984f0f35..939a51ef5c704 100644 --- a/www/src/templates/template-creator-details.js +++ b/www/src/templates/template-creator-details.js @@ -1,8 +1,7 @@ /** @jsx jsx */ import { jsx } from "theme-ui" -import { Component } from "react" +import React, { Component } from "react" import { graphql, Link } from "gatsby" -import Layout from "../components/layout" import { Helmet } from "react-helmet" import Img from "gatsby-image" import CreatorsHeader from "../views/creators/creators-header" @@ -60,7 +59,7 @@ const MetaSection = ({ children, background, last, first }) => ( class CreatorTemplate extends Component { render() { - const { data, location } = this.props + const { data } = this.props const creator = data.creatorsYaml const isAgencyOrCompany = creator.type === `agency` || creator.type === `company` @@ -68,7 +67,7 @@ class CreatorTemplate extends Component { const sites = data.allSitesYaml.edges return ( - <Layout location={location}> + <React.Fragment> <Helmet> <title>{`${creator.name} - Creator`}</title> </Helmet> @@ -232,7 +231,7 @@ class CreatorTemplate extends Component { </div> </main> <FooterLinks /> - </Layout> + </React.Fragment> ) } } diff --git a/www/src/templates/template-docs-local-packages.js b/www/src/templates/template-docs-local-packages.js index 69adb82f048b6..b2e8d8617c867 100644 --- a/www/src/templates/template-docs-local-packages.js +++ b/www/src/templates/template-docs-local-packages.js @@ -2,7 +2,6 @@ import React from "react" import { graphql } from "gatsby" import { pick } from "lodash-es" -import Layout from "../components/layout" import PageWithPluginSearchBar from "../components/page-with-plugin-searchbar" import PackageReadme from "../components/package-readme" @@ -30,49 +29,47 @@ class DocsLocalPackagesTemplate extends React.Component { } return ( - <Layout location={location}> - <PageWithPluginSearchBar location={location}> - <PackageReadme - page={markdownRemark ? pick(markdownRemark, `parent`) : false} - packageName={ - markdownRemark - ? markdownRemark.fields.title - : markdownRemarkNotFound.fields.title - } - excerpt={ - markdownRemark - ? markdownRemark.excerpt - : markdownRemarkNotFound.excerpt - } - html={ - markdownRemark ? markdownRemark.html : markdownRemarkNotFound.html - } - githubUrl={`https://github.com/gatsbyjs/gatsby/tree/master/packages/${ - markdownRemark - ? markdownRemark.fields.title - : markdownRemarkNotFound.fields.title - }`} - timeToRead={ - markdownRemark - ? markdownRemark.timeToRead - : markdownRemarkNotFound.timeToRead - } - modified={ - npmPackage && npmPackage.modified - ? npmPackage.modified - : npmPackageNotFound.modified - } - keywords={ - npmPackage ? npmPackage.keywords : npmPackageNotFound.keywords - } - lastPublisher={ - npmPackage - ? npmPackage.lastPublisher - : npmPackageNotFound.lastPublisher - } - /> - </PageWithPluginSearchBar> - </Layout> + <PageWithPluginSearchBar location={location}> + <PackageReadme + page={markdownRemark ? pick(markdownRemark, `parent`) : false} + packageName={ + markdownRemark + ? markdownRemark.fields.title + : markdownRemarkNotFound.fields.title + } + excerpt={ + markdownRemark + ? markdownRemark.excerpt + : markdownRemarkNotFound.excerpt + } + html={ + markdownRemark ? markdownRemark.html : markdownRemarkNotFound.html + } + githubUrl={`https://github.com/gatsbyjs/gatsby/tree/master/packages/${ + markdownRemark + ? markdownRemark.fields.title + : markdownRemarkNotFound.fields.title + }`} + timeToRead={ + markdownRemark + ? markdownRemark.timeToRead + : markdownRemarkNotFound.timeToRead + } + modified={ + npmPackage && npmPackage.modified + ? npmPackage.modified + : npmPackageNotFound.modified + } + keywords={ + npmPackage ? npmPackage.keywords : npmPackageNotFound.keywords + } + lastPublisher={ + npmPackage + ? npmPackage.lastPublisher + : npmPackageNotFound.lastPublisher + } + /> + </PageWithPluginSearchBar> ) } } diff --git a/www/src/templates/template-docs-markdown.js b/www/src/templates/template-docs-markdown.js index 0727ecc6b66fa..b49881d6090a6 100644 --- a/www/src/templates/template-docs-markdown.js +++ b/www/src/templates/template-docs-markdown.js @@ -6,7 +6,6 @@ import { graphql } from "gatsby" import { MDXRenderer } from "gatsby-plugin-mdx" import { mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org" -import Layout from "../components/layout" import PageWithSidebar from "../components/page-with-sidebar" import MarkdownPageFooter from "../components/markdown-page-footer" import DocSearchContent from "../components/docsearch-content" @@ -36,7 +35,10 @@ function DocsTemplate({ data, location, pageContext: { next, prev } }) { const description = page.frontmatter.description || page.excerpt return ( - <React.Fragment> + <PageWithSidebar + location={location} + enableScrollSync={urlSegment === "tutorial"} + > <Helmet> <title>{page.frontmatter.title}</title> <meta name="description" content={description} /> @@ -47,90 +49,83 @@ function DocsTemplate({ data, location, pageContext: { next, prev } }) { <meta name="twitter.label1" content="Reading time" /> <meta name="twitter:data1" content={`${page.timeToRead} min read`} /> </Helmet> - <Layout location={location} locale={page.fields.locale}> - <PageWithSidebar - location={location} - enableScrollSync={urlSegment === "tutorial"} + <DocSearchContent> + <Container + overrideCSS={{ + pb: 0, + [mediaQueries.lg]: { + pt: 9, + }, + [toc && mediaQueries.xl]: { + ...containerStyles, + }, + }} > - <DocSearchContent> - <Container - overrideCSS={{ - pb: 0, - [mediaQueries.lg]: { - pt: 9, - }, - [toc && mediaQueries.xl]: { - ...containerStyles, - }, - }} - > - <Breadcrumb location={location} /> - <h1 id={page.fields.anchor} sx={{ mt: 0 }}> - {page.frontmatter.title} - </h1> - </Container> - <Container - overrideCSS={{ - pt: 0, - position: `static`, - [mediaQueries.lg]: { - pb: 9, - }, - [toc && mediaQueries.xl]: { - ...containerStyles, - display: `flex`, - alignItems: `flex-start`, + <Breadcrumb location={location} /> + <h1 id={page.fields.anchor} sx={{ mt: 0 }}> + {page.frontmatter.title} + </h1> + </Container> + <Container + overrideCSS={{ + pt: 0, + position: `static`, + [mediaQueries.lg]: { + pb: 9, + }, + [toc && mediaQueries.xl]: { + ...containerStyles, + display: `flex`, + alignItems: `flex-start`, + }, + }} + > + {toc && ( + <div + sx={{ + order: 2, + [mediaQueries.xl]: { + ml: 9, + maxWidth: `tocWidth`, + position: `sticky`, + top: t => + `calc(${t.sizes.headerHeight} + ${t.sizes.bannerHeight} + ${t.space[9]})`, + maxHeight: t => + `calc(100vh - ${t.sizes.headerHeight} - ${t.sizes.bannerHeight} - ${t.space[9]} - ${t.space[9]})`, + overflow: `auto`, }, }} > - {toc && ( - <div - sx={{ - order: 2, - [mediaQueries.xl]: { - ml: 9, - maxWidth: `tocWidth`, - position: `sticky`, - top: t => - `calc(${t.sizes.headerHeight} + ${t.sizes.bannerHeight} + ${t.space[9]})`, - maxHeight: t => - `calc(100vh - ${t.sizes.headerHeight} - ${t.sizes.bannerHeight} - ${t.space[9]} - ${t.space[9]})`, - overflow: `auto`, - }, - }} + <TableOfContents location={location} page={page} /> + </div> + )} + <div + sx={{ + [page.tableOfContents.items && mediaQueries.xl]: { + maxWidth: `mainContentWidth.withSidebar`, + minWidth: 0, + }, + }} + > + <div> + <MDXRenderer slug={page.fields.slug}>{page.body}</MDXRenderer> + {page.frontmatter.issue && ( + <a + href={page.frontmatter.issue} + target="_blank" + rel="noopener noreferrer" > - <TableOfContents location={location} page={page} /> - </div> + See the issue relating to this stub on GitHub + </a> )} - <div - sx={{ - [page.tableOfContents.items && mediaQueries.xl]: { - maxWidth: `mainContentWidth.withSidebar`, - minWidth: 0, - }, - }} - > - <div> - <MDXRenderer slug={page.fields.slug}>{page.body}</MDXRenderer> - {page.frontmatter.issue && ( - <a - href={page.frontmatter.issue} - target="_blank" - rel="noopener noreferrer" - > - See the issue relating to this stub on GitHub - </a> - )} - <MarkdownPageFooter page={page} /> - <PrevAndNext sx={{ mt: 9 }} prev={prev} next={next} /> - </div> - </div> - </Container> - </DocSearchContent> - <FooterLinks /> - </PageWithSidebar> - </Layout> - </React.Fragment> + <MarkdownPageFooter page={page} /> + <PrevAndNext sx={{ mt: 9 }} prev={prev} next={next} /> + </div> + </div> + </Container> + </DocSearchContent> + <FooterLinks /> + </PageWithSidebar> ) } diff --git a/www/src/templates/template-docs-remote-packages.js b/www/src/templates/template-docs-remote-packages.js index d768d1a4783c1..7f8ece4b2adbc 100644 --- a/www/src/templates/template-docs-remote-packages.js +++ b/www/src/templates/template-docs-remote-packages.js @@ -1,7 +1,6 @@ import React from "react" import { graphql } from "gatsby" -import Layout from "../components/layout" import PageWithPluginSearchBar from "../components/page-with-plugin-searchbar" import PackageReadme from "../components/package-readme" @@ -12,25 +11,23 @@ class DocsRemotePackagesTemplate extends React.Component { data: { npmPackage, markdownRemark }, } = this.props return ( - <Layout location={location}> - <PageWithPluginSearchBar location={location}> - <PackageReadme - page={markdownRemark} - packageName={npmPackage.name} - excerpt={npmPackage.readme.childMarkdownRemark.excerpt} - html={npmPackage.readme.childMarkdownRemark.html} - githubUrl={ - npmPackage.repository !== null - ? npmPackage.repository.url - : `https://github.com/search?q=${npmPackage.name}` - } - modified={npmPackage.modified} - timeToRead={npmPackage.readme.childMarkdownRemark.timeToRead} - keywords={npmPackage.keywords} - lastPublisher={npmPackage.lastPublisher} - /> - </PageWithPluginSearchBar> - </Layout> + <PageWithPluginSearchBar location={location}> + <PackageReadme + page={markdownRemark} + packageName={npmPackage.name} + excerpt={npmPackage.readme.childMarkdownRemark.excerpt} + html={npmPackage.readme.childMarkdownRemark.html} + githubUrl={ + npmPackage.repository !== null + ? npmPackage.repository.url + : `https://github.com/search?q=${npmPackage.name}` + } + modified={npmPackage.modified} + timeToRead={npmPackage.readme.childMarkdownRemark.timeToRead} + keywords={npmPackage.keywords} + lastPublisher={npmPackage.lastPublisher} + /> + </PageWithPluginSearchBar> ) } } diff --git a/www/src/templates/template-feature-comparison.js b/www/src/templates/template-feature-comparison.js index b3c2d619bd99c..d5f0cca1405a7 100644 --- a/www/src/templates/template-feature-comparison.js +++ b/www/src/templates/template-feature-comparison.js @@ -3,7 +3,6 @@ import { jsx } from "theme-ui" import { Component } from "react" import { Helmet } from "react-helmet" import { css } from "@emotion/core" -import Layout from "../components/layout" import PageWithSidebar from "../components/page-with-sidebar" import FooterLinks from "../components/shared/footer-links" import Container from "../components/container" @@ -33,48 +32,46 @@ class FeatureComparison extends Component { : getFeaturesData(data.allGatsbyJamstackSpecsCsv.edges) return ( - <Layout location={location}> - <PageWithSidebar location={location}> - <Helmet> - <title>{titleString}</title> - </Helmet> - <Container> - <main> - <Breadcrumb location={location} /> - <h1>{titleString}</h1> - {options.map(o => ( - <section key={o.key} sx={{ mb: 6 }}> - <h2 + <PageWithSidebar location={location}> + <Helmet> + <title>{titleString}</title> + </Helmet> + <Container> + <main> + <Breadcrumb location={location} /> + <h1>{titleString}</h1> + {options.map(o => ( + <section key={o.key} sx={{ mb: 6 }}> + <h2 + css={css` + display: flex; + align-items: center; + `} + > + <img + src={LogoDictionary[o.key]} css={css` - display: flex; - align-items: center; + height: 25px; + margin-bottom: 0; + margin-right: 10px; `} - > - <img - src={LogoDictionary[o.key]} - css={css` - height: 25px; - margin-bottom: 0; - margin-right: 10px; - `} - /> - {o.display} - </h2> - {o.description} - </section> - ))} - <LegendTable /> - <EvaluationTable - options={options} - sections={sections} - sectionHeaders={sectionHeaders} - /> - </main> - <FeaturesFooter /> - <FooterLinks /> - </Container> - </PageWithSidebar> - </Layout> + /> + {o.display} + </h2> + {o.description} + </section> + ))} + <LegendTable /> + <EvaluationTable + options={options} + sections={sections} + sectionHeaders={sectionHeaders} + /> + </main> + <FeaturesFooter /> + <FooterLinks /> + </Container> + </PageWithSidebar> ) } } diff --git a/www/src/templates/template-starter-page.js b/www/src/templates/template-starter-page.js index 55e2cc59ab99a..36f5e51859ed1 100644 --- a/www/src/templates/template-starter-page.js +++ b/www/src/templates/template-starter-page.js @@ -4,7 +4,6 @@ import React from "react" import { Helmet } from "react-helmet" import { graphql } from "gatsby" -import Layout from "../components/layout" import StarterHeader from "../views/starter/header" import StarterMeta from "../views/starter/meta" import Screenshot from "../views/shared/screenshot" @@ -48,81 +47,76 @@ class StarterTemplate extends React.Component { // TODO enable modal view const repoName = starterShowcase.name return ( - <Layout location={this.props.location}> - <div - css={{ - alignItems: `center`, - display: `flex`, - flexDirection: `column`, - margin: `0 auto`, - maxWidth: 1080, - }} - > - <div css={{ width: `100%` }}> - <Helmet> - <title>{`${repoName}: Gatsby Starter`}</title> - <meta - property="og:image" - content={screenshot.childImageSharp.fluid.src} - /> - <meta property="og:image:alt" content="Gatsby Logo" /> - <meta - name="twitter:image" - content={screenshot.childImageSharp.fluid.src} - /> - <meta - name="description" - content={`Gatsby Starter: ${repoName}`} - /> - <meta - property="og:description" - content={`Gatsby Starter: ${repoName}`} - /> - <meta - name="twitter:description" - content={`Gatsby Starter: ${repoName}`} - /> - <meta property="og:site_name" content={repoName} /> - <meta property="og:title" content={repoName} /> - <meta property="og:type" content="article" /> - <meta name="twitter.label1" content="Reading time" /> - <meta name="twitter:data1" content={`1 min read`} /> - </Helmet> - <StarterHeader stub={starterShowcase.stub} /> - <div - sx={{ - display: `flex`, - flexDirection: [`column-reverse`, `column`], - }} - > - <StarterMeta - starter={starterShowcase} - repoName={repoName} - imageSharp={screenshot} - demo={demoUrl} - /> - <Screenshot - imageSharp={screenshot.childImageSharp.fluid} - alt={`Screenshot of ${repoName}`} - /> - </div> - <StarterSource - repoUrl={repoUrl} - startersYaml={startersYaml} + <div + css={{ + alignItems: `center`, + display: `flex`, + flexDirection: `column`, + margin: `0 auto`, + maxWidth: 1080, + }} + > + <div css={{ width: `100%` }}> + <Helmet> + <title>{`${repoName}: Gatsby Starter`}</title> + <meta + property="og:image" + content={screenshot.childImageSharp.fluid.src} + /> + <meta property="og:image:alt" content="Gatsby Logo" /> + <meta + name="twitter:image" + content={screenshot.childImageSharp.fluid.src} + /> + <meta name="description" content={`Gatsby Starter: ${repoName}`} /> + <meta + property="og:description" + content={`Gatsby Starter: ${repoName}`} + /> + <meta + name="twitter:description" + content={`Gatsby Starter: ${repoName}`} + /> + <meta property="og:site_name" content={repoName} /> + <meta property="og:title" content={repoName} /> + <meta property="og:type" content="article" /> + <meta name="twitter.label1" content="Reading time" /> + <meta name="twitter:data1" content={`1 min read`} /> + </Helmet> + <StarterHeader stub={starterShowcase.stub} /> + <div + sx={{ + display: `flex`, + flexDirection: [`column-reverse`, `column`], + }} + > + <StarterMeta starter={starterShowcase} + repoName={repoName} + imageSharp={screenshot} + demo={demoUrl} /> - <StarterInstallation repoName={repoName} repoUrl={repoUrl} /> - <StarterDetails - startersYaml={startersYaml} - allDeps={allDeps} - shownDeps={shownDeps} - showMore={showMore} - showAllDeps={this.showAllDeps} + <Screenshot + imageSharp={screenshot.childImageSharp.fluid} + alt={`Screenshot of ${repoName}`} /> - <FooterLinks /> </div> + <StarterSource + repoUrl={repoUrl} + startersYaml={startersYaml} + starter={starterShowcase} + /> + <StarterInstallation repoName={repoName} repoUrl={repoUrl} /> + <StarterDetails + startersYaml={startersYaml} + allDeps={allDeps} + shownDeps={shownDeps} + showMore={showMore} + showAllDeps={this.showAllDeps} + /> + <FooterLinks /> </div> - </Layout> + </div> ) } diff --git a/www/src/views/creators/index.js b/www/src/views/creators/index.js index a1df9b30ac708..9c5e90d55f7d7 100644 --- a/www/src/views/creators/index.js +++ b/www/src/views/creators/index.js @@ -1,8 +1,7 @@ /** @jsx jsx */ import { jsx } from "theme-ui" -import { Component } from "react" +import React, { Component } from "react" import { Helmet } from "react-helmet" -import Layout from "../../components/layout" import FooterLinks from "../../components/shared/footer-links" import CreatorsHeader from "./creators-header" import Badge from "./badge" @@ -98,7 +97,7 @@ class CreatorsView extends Component { } return ( - <Layout location={location}> + <> <Helmet> <title>{title}</title> <meta @@ -184,7 +183,7 @@ class CreatorsView extends Component { </div> </main> <FooterLinks /> - </Layout> + </> ) } } diff --git a/www/src/views/showcase/index.js b/www/src/views/showcase/index.js index 66637a4f9135f..028af81e1f334 100644 --- a/www/src/views/showcase/index.js +++ b/www/src/views/showcase/index.js @@ -5,7 +5,6 @@ import { navigate } from "gatsby" import scrollToAnchor from "../../utils/scroll-to-anchor" import FeaturedSites from "./featured-sites" import FilteredShowcase from "./filtered-showcase" -import Layout from "../../components/layout" class ShowcaseView extends Component { showcase = React.createRef() @@ -45,11 +44,11 @@ class ShowcaseView extends Component { } render() { - const { location, data } = this.props + const { data } = this.props const { filters } = this.state return ( - <Layout location={location}> + <> <Helmet> <title>Showcase</title> <meta @@ -67,7 +66,7 @@ class ShowcaseView extends Component { setFilters={this.setFilters} data={data} /> - </Layout> + </> ) } } diff --git a/www/src/views/starter-library/index.js b/www/src/views/starter-library/index.js index 83b55df11418b..6a5f61502b458 100644 --- a/www/src/views/starter-library/index.js +++ b/www/src/views/starter-library/index.js @@ -1,6 +1,5 @@ import React, { Component } from "react" import { Helmet } from "react-helmet" -import Layout from "../../components/layout" import RRSM from "../../utils/reach-router-state-manager" import queryString from "query-string" @@ -23,7 +22,7 @@ class StarterLibraryPage extends Component { : `Library` // if no search term or single dependency return ( - <Layout location={location}> + <> <Helmet> <title>Starter Library</title> <meta @@ -55,7 +54,7 @@ class StarterLibraryPage extends Component { )} defaultSearchState={{ v: [`2`] }} /> - </Layout> + </> ) } }
551dcf5d8e68eb396014ff2ce1b541913e7c1737
2018-06-06 20:37:11
Jason Quense
fix: page renderer behavior (#5759)
false
page renderer behavior (#5759)
fix
diff --git a/packages/gatsby/src/cache-dir/page-renderer.js b/packages/gatsby/src/cache-dir/page-renderer.js index 5c15f0ef7d457..e523ac61829b8 100644 --- a/packages/gatsby/src/cache-dir/page-renderer.js +++ b/packages/gatsby/src/cache-dir/page-renderer.js @@ -15,34 +15,30 @@ class PageRenderer extends React.Component { let location = props.location // Set the pathname for 404 pages. - if (!loader.getPage(location.pathname)) { - location = { ...location, pathname: `/404.html` } - } + const pathname = this.getPathName(location) this.state = { - location, - pageResources: loader.getResourcesForPathname(location.pathname), + lastPathname: location.pathname, + pageResources: loader.getResourcesForPathname(pathname), } } static getDerivedStateFromProps({ pageResources, location }, prevState) { - let nextState = {} + let nextState = { lastPathname: location.pathname } if ( process.env.NODE_ENV !== `production` && pageResources && pageResources.json ) { - nextState = { pageResources } + nextState.pageResources = pageResources } - if (prevState.location.pathname !== location.pathname) { + if (prevState.lastPathname !== location.pathname) { const pageResources = loader.getResourcesForPathname(location.pathname) if (pageResources) { - nextState = { location, pageResources } - } else if (!loader.getPage(location.pathname)) { - nextState.location = { ...location, pathname: `/404.html` } + nextState.pageResources = pageResources } } @@ -54,26 +50,31 @@ class PageRenderer extends React.Component { // This is only useful on delayed transitions as the page will get rendered // without the necessary page resources and then re-render once those come in. emitter.on(`onPostLoadPageResources`, e => { - if ( - loader.getPage(this.state.location.pathname) && - e.page.path === loader.getPage(this.state.location.pathname).path - ) { + const page = loader.getPage(this.props.location.pathname) + + if (page && e.page.path === page.path) { this.setState({ pageResources: e.pageResources }) } }) } - componentDidUpdate(prevProps, prevState) { + componentDidUpdate(prevProps) { if (prevProps === this.props) return - const { location } = this.state - if (!loader.getResourcesForPathname(location.pathname)) + const { location } = this.props + const pathName = this.getPathName(location) + + if (!loader.getResourcesForPathname(pathName)) // Page resources won't be set in cases where the browser back button // or forward button is pushed as we can't wait as normal for resources // to load before changing the page. - loader.getResourcesForPathname(location.pathname, pageResources => { + loader.getResourcesForPathname(pathName, pageResources => { + // The page may have changed since we started this, in which case doesn't update + if (this.props.location.pathname !== location.pathname) { + return + } + this.setState({ - location, pageResources, }) }) @@ -101,7 +102,7 @@ class PageRenderer extends React.Component { // Check if location has changed on a page using internal routing // via matchPath configuration. if ( - this.state.location.key !== nextState.location.key && + this.props.location.key !== nextProps.location.key && nextState.pageResources.page && (nextState.pageResources.page.matchPath || nextState.pageResources.page.path) @@ -112,6 +113,10 @@ class PageRenderer extends React.Component { return shallowCompare(this, nextProps, nextState) } + getPathName(location) { + return !loader.getPage(location.pathname) ? `/404.html` : location.pathname + } + render() { if (!this.state.pageResources) return null
fc06a4e65e32bce8d0e84057deb7289176b6d523
2021-07-23 11:04:29
farhan443
chore(docs): Fix a minor typo "with" > "will" (#32491)
false
Fix a minor typo "with" > "will" (#32491)
chore
diff --git a/docs/docs/reference/markdown-syntax.md b/docs/docs/reference/markdown-syntax.md index ed249eefcb2b7..69d8ed2736512 100644 --- a/docs/docs/reference/markdown-syntax.md +++ b/docs/docs/reference/markdown-syntax.md @@ -130,7 +130,7 @@ This pattern is appropriate for [decorative or repetitive images](https://www.w3 ## Blockquote - Use `>` to declare a blockquote -- Adding multiple `>` with create nested blockquotes +- Adding multiple `>` will create nested blockquotes - It is recommended to place `>` before each line - You can use other Markdown syntax inside blockquotes
e172c3bf49b4e09004f10c3a16bbba5db4f56735
2020-01-17 15:43:10
Jimmy Le
chore(starters): add gatsby-starter-webcomic (#20659)
false
add gatsby-starter-webcomic (#20659)
chore
diff --git a/docs/starters.yml b/docs/starters.yml index cef36e0247857..040fd85c2b77b 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -5000,3 +5000,25 @@ - Transform links to bitly links automatically - Codesyntax - Code syntax highlighting +- url: https://gatsby-starter-webcomic.netlify.com + repo: https://github.com/JLDevOps/gatsby-starter-webcomic + description: Gatsby blog starter that focuses on webcomics and art with a minimalistic UI. + tags: + - Markdown + - MDX + - Netlify + - Pagination + - Search + - Styling:Bootstrap + - RSS + - Design + - Media + - SEO + features: + - Designed to focus on blog posts with images. + - Search capability on blog posts + - Displays the latest posts + - Displays all the tags from the site + - Pagination between blog posts + - Has a "archive" page that categorizes and displays all the blog posts by date + - Mobile friendly
d1ae0ca809c00a93845a6a3ba3c9ada6ef08ae8f
2023-05-02 13:30:30
renovate[bot]
chore(deps): update dependency yargs to ^17.7.2 (#37999)
false
update dependency yargs to ^17.7.2 (#37999)
chore
diff --git a/e2e-tests/development-runtime/package.json b/e2e-tests/development-runtime/package.json index d95879632c263..6b4ee2b7f4f6d 100644 --- a/e2e-tests/development-runtime/package.json +++ b/e2e-tests/development-runtime/package.json @@ -73,7 +73,7 @@ "prettier": "^2.8.8", "start-server-and-test": "^2.0.0", "typescript": "^5.0.4", - "yargs": "^17.7.1" + "yargs": "^17.7.2" }, "repository": { "type": "git",
a10d6929f6d071b630e51c1e46b58abe900f775e
2017-10-15 11:32:07
Nick
fix: add empty object for auth option default (#2461)
false
add empty object for auth option default (#2461)
fix
diff --git a/packages/gatsby-source-wordpress/src/gatsby-node.js b/packages/gatsby-source-wordpress/src/gatsby-node.js index ec0351d2a21cd..481991afb5cee 100644 --- a/packages/gatsby-source-wordpress/src/gatsby-node.js +++ b/packages/gatsby-source-wordpress/src/gatsby-node.js @@ -24,7 +24,7 @@ exports.sourceNodes = async ( protocol, hostingWPCOM, useACF = true, - auth, + auth = {}, verboseOutput, perPage = 100, } diff --git a/yarn.lock b/yarn.lock index 6a716982398c8..df51911c291f8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1724,8 +1724,8 @@ [email protected]: inherits "^2.0.1" browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.0.8" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.8.tgz#c8fa3b1b7585bb7ba77c5560b60996ddec6d5309" + version "1.1.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.1.0.tgz#1d2ad62a8b479f23f0ab631c1be86a82dbccbe48" dependencies: buffer-xor "^1.0.3" cipher-base "^1.0.0" @@ -2567,8 +2567,8 @@ configstore@^3.1.0: xdg-basedir "^3.0.0" connect-history-api-fallback@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" + version "1.4.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.4.0.tgz#3db24f973f4b923b0e82f619ce0df02411ca623d" console-browserify@^1.1.0: version "1.1.0" @@ -3537,7 +3537,7 @@ dom-converter@~0.1: dependencies: utila "~0.3" -dom-helpers@^3.0.0: +dom-helpers@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.2.1.tgz#3203e07fed217bd1f424b019735582fc37b2825a" @@ -3867,8 +3867,8 @@ es-to-primitive@^1.1.1: is-symbol "^1.0.1" es5-ext@^0.10.12, es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: - version "0.10.31" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.31.tgz#7bb938c95a7f1b9f728092dc09c41edcc398eefe" + version "0.10.35" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.35.tgz#18ee858ce6a3c45c7d79e91c15fcca9ec568494f" dependencies: es6-iterator "~2.0.1" es6-symbol "~3.1.1" @@ -6949,8 +6949,8 @@ kind-of@^4.0.0: is-buffer "^1.1.5" kind-of@^5.0.0, kind-of@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.0.2.tgz#f57bec933d9a2209ffa96c5c08343607b7035fda" + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" latest-version@^2.0.0: version "2.0.0" @@ -7904,19 +7904,19 @@ moment@^2.16.0: version "2.19.1" resolved "https://registry.yarnpkg.com/moment/-/moment-2.19.1.tgz#56da1a2d1cbf01d38b7e1afc31c10bcfa1929167" [email protected]: - version "2.1.16" - resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.16.tgz#5dc20a48b1f0a2515fd57daaea2c4853467454e0" [email protected]: + version "2.1.17" + resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.17.tgz#a418b337a14a14990fb510b923dee6a813173df8" dependencies: bson "~1.0.4" require_optional "~1.0.0" mongodb@^2.2.30: - version "2.2.32" - resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.32.tgz#620eaaa1995fb457c4ef7054e5f560257a697e58" + version "2.2.33" + resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.33.tgz#b537c471d34a6651b48f36fdbf29750340e08b50" dependencies: es6-promise "3.2.1" - mongodb-core "2.1.16" + mongodb-core "2.1.17" readable-stream "2.2.7" [email protected], ms@^2.0.0: @@ -9418,8 +9418,8 @@ preact-compat@^3.17.0: standalone-react-addons-pure-render-mixin "^0.1.1" preact-render-to-string@^3.6.0: - version "3.6.3" - resolved "https://registry.yarnpkg.com/preact-render-to-string/-/preact-render-to-string-3.6.3.tgz#481d0d5bdac9192d3347557437d5cd00aa312043" + version "3.7.0" + resolved "https://registry.yarnpkg.com/preact-render-to-string/-/preact-render-to-string-3.7.0.tgz#7db4177454bc01395e0d01d6ac07bc5e838e31ee" dependencies: pretty-format "^3.5.1" @@ -9516,10 +9516,14 @@ prismjs@^1.7.0: optionalDependencies: clipboard "^1.5.5" -private@^0.1.6, private@^0.1.7, private@~0.1.5: +private@^0.1.6, private@^0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" +private@~0.1.5: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + process-nextick-args@^1.0.6, process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" @@ -9701,7 +9705,16 @@ raw-loader@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-0.5.1.tgz#0c3d0beaed8a01c966d9787bf778281252a979aa" -rc@^1.0.1, rc@^1.1.2, rc@^1.1.6, rc@^1.1.7: +rc@^1.0.1, rc@^1.1.2, rc@^1.1.6: + version "1.2.2" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.2.tgz#d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077" + dependencies: + deep-extend "~0.4.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +rc@^1.1.7: version "1.2.1" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" dependencies: @@ -10741,11 +10754,11 @@ sc-simple-broker@~2.1.0: sc-channel "~1.1.0" scroll-behavior@^0.9.1: - version "0.9.3" - resolved "https://registry.yarnpkg.com/scroll-behavior/-/scroll-behavior-0.9.3.tgz#e48bcc8af364f3f07176e8dbca3968bd5e71557b" + version "0.9.4" + resolved "https://registry.yarnpkg.com/scroll-behavior/-/scroll-behavior-0.9.4.tgz#73b4a0eae3e59c0b8f3b6fc1ff78f054a513e79c" dependencies: - dom-helpers "^3.0.0" - invariant "^2.2.1" + dom-helpers "^3.2.1" + invariant "^2.2.2" scss-tokenizer@^0.2.3: version "0.2.3"
7c7684eaddc7e80eeedf115e8426ad430d59bbed
2023-01-25 13:13:52
renovate[bot]
fix(deps): update starters and examples - gatsby (#37530)
false
update starters and examples - gatsby (#37530)
fix
diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index 89574cca294af..e66915014f641 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -11,17 +11,17 @@ "dependencies": { "@fontsource/merriweather": "^4.5.14", "@fontsource/montserrat": "^4.5.14", - "gatsby": "^5.4.2", - "gatsby-plugin-feed": "^5.4.0", - "gatsby-plugin-image": "^3.4.0", - "gatsby-plugin-manifest": "^5.4.0", - "gatsby-plugin-sharp": "^5.4.0", - "gatsby-remark-images": "^7.4.0", - "gatsby-remark-prismjs": "^7.4.0", - "gatsby-remark-responsive-iframe": "^6.4.0", - "gatsby-source-filesystem": "^5.4.0", - "gatsby-transformer-remark": "^6.4.0", - "gatsby-transformer-sharp": "^5.4.0", + "gatsby": "^5.5.0", + "gatsby-plugin-feed": "^5.5.0", + "gatsby-plugin-image": "^3.5.0", + "gatsby-plugin-manifest": "^5.5.0", + "gatsby-plugin-sharp": "^5.5.0", + "gatsby-remark-images": "^7.5.0", + "gatsby-remark-prismjs": "^7.5.0", + "gatsby-remark-responsive-iframe": "^6.5.0", + "gatsby-source-filesystem": "^5.5.0", + "gatsby-transformer-remark": "^6.5.0", + "gatsby-transformer-sharp": "^5.5.0", "prismjs": "^1.29.0", "react": "^18.1.0", "react-dom": "^18.1.0" @@ -1961,9 +1961,9 @@ } }, "node_modules/@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==", "bin": { "partytown": "bin/partytown.cjs" } @@ -2041,14 +2041,14 @@ "integrity": "sha512-fTvrteVzuFUePhr4QYBGoK8G/YHLJ3IhF1HhKg0AxcFvZajJT7rM7ULdmKLSd2PkX44R3aaFZq1zDbmjbGGI+w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "dependencies": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0", @@ -4928,13 +4928,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0" @@ -4992,9 +4992,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -5009,8 +5009,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" }, "engines": { "node": ">=18.0.0" @@ -6132,9 +6132,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "dependencies": { "@babel/runtime": "^7.20.7" }, @@ -8320,16 +8320,16 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, "node_modules/fs-monkey": { @@ -8391,9 +8391,9 @@ } }, "node_modules/gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8404,7 +8404,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8434,8 +8434,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -8444,14 +8444,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -8475,21 +8475,21 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -8506,11 +8506,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -8558,7 +8557,7 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" }, @@ -8569,7 +8568,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.4.0" + "gatsby-sharp": "^1.5.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8577,9 +8576,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8598,13 +8597,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -8632,17 +8631,18 @@ } }, "node_modules/gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "dependencies": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -8657,17 +8657,17 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "dependencies": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -8695,12 +8695,12 @@ } }, "node_modules/gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" }, "engines": { @@ -8713,15 +8713,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "dependencies": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8731,11 +8731,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -8756,15 +8756,15 @@ } }, "node_modules/gatsby-plugin-feed": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-5.4.0.tgz", - "integrity": "sha512-OhxwueGoJz5Y1vqWRfLE+xK4id6sa2OIG4TVc8G+Ao+YAX3hW1iM9Z4FSxg8aIPoqZqVunmOXimVfUjAP3QqJA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-5.5.0.tgz", + "integrity": "sha512-ZoPKxsByNJBmGSYXOFygAu2dzrLDpP0E5PEXM+aDI47KZSoRxFmKcX9MEwLCzVnj6Y/kIYZ3GZyeBkHoauya1g==", "dependencies": { "@babel/runtime": "^7.20.7", "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-plugin-utils": "^4.5.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" }, @@ -8778,22 +8778,22 @@ } }, "node_modules/gatsby-plugin-image": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.4.0.tgz", - "integrity": "sha512-wfFEe/yaa8CqrtFGwbdBo2Eqyfdo5fvXZazGaP8ShysCHKBEAyf2oKcHvqAjdCmibb7eq7VIgJYNU876RA6IQA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.5.0.tgz", + "integrity": "sha512-zIOXPrWgcBFSQIyVIZjRpdpuA3dd02+qs43ysRYDVp2iYYZySHEpvw9ObhHuRnQ/blQ8C3PmQwdOs1j2s6wL1A==", "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.7", "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "camelcase": "^5.3.1", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" }, @@ -8814,22 +8814,14 @@ } } }, - "node_modules/gatsby-plugin-image/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, "node_modules/gatsby-plugin-manifest": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.4.0.tgz", - "integrity": "sha512-Jw1LUJxLnIoeGdbsKies/0NpKOganfBMDpusgIbYZzBENlsNcJTtlOFWfbExJFAutc2ZStDoQrch6AkOvwujBw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.5.0.tgz", + "integrity": "sha512-7980GND+weiPT1RKLTWrED/1CKqduui4lzT5ftPwz96sYjOJEextjtmJqSISQ/4U+NPrjoE1Tkorzg4jz1EuVw==", "dependencies": { "@babel/runtime": "^7.20.7", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "semver": "^7.3.8", "sharp": "^0.31.3" }, @@ -8841,20 +8833,20 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8866,18 +8858,18 @@ } }, "node_modules/gatsby-plugin-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.4.0.tgz", - "integrity": "sha512-QFGMP3skMyiLBx/1JGs296ZT0aWkzP2SsEp+5MA/Yg23T8Hrb/bBmxe+cAD0PoALQl9lmEA7NPawuh0q1HaGPw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.5.0.tgz", + "integrity": "sha512-XtRjproz7FT3df8HetkpKlUFfQfPu+KdCsyXwnlAu6vm94+86ZgN/6O4gioG8GLZvoOF/1Zud47xagBPbvzLLg==", "dependencies": { "@babel/runtime": "^7.20.7", "async": "^3.2.4", "bluebird": "^3.7.2", "debug": "^4.3.4", "filenamify": "^4.3.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", "semver": "^7.3.8", @@ -8917,9 +8909,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "dependencies": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -8927,7 +8919,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" }, "engines": { "node": ">=18.0.0" @@ -8937,15 +8929,15 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "dependencies": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -8971,9 +8963,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "dependencies": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" @@ -8988,14 +8980,14 @@ } }, "node_modules/gatsby-remark-images": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.4.0.tgz", - "integrity": "sha512-xiY9x8kogr7TfWvUraalWAUM4YuXTZ+CU9PBUSoNEFpNF6gZ31+lR/fp18xgsaVLGaXCGcQCKAmWO+d5lpFpUQ==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.5.0.tgz", + "integrity": "sha512-PUbcrJLMIHruw+9tndl2sQ/vyzv6AiNsM18lIADh6SQeWH6abpNxzSCbIfoRjCSXB9rrcHFwwCXNFwbikCdEMQ==", "dependencies": { "@babel/runtime": "^7.20.7", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", @@ -9012,9 +9004,9 @@ } }, "node_modules/gatsby-remark-prismjs": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-7.4.0.tgz", - "integrity": "sha512-andxqi+kIQa/s7xJ2M/sm7bzWSqbSmq0XHFpIGdDQYgoC0EeqyvRSdXNDkN5iXmDI1Rh40Vxc+/51o0FYpy2Lw==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-7.5.0.tgz", + "integrity": "sha512-i7TBquA4n8llD9o5LCoPX2NnB+awqh+soAMvZ+JU/eEUY9iGT+37bwp8fYnuAPA9OGarbXkZrXEkBud6XDw+LQ==", "dependencies": { "@babel/runtime": "^7.20.7", "parse-numeric-range": "^1.2.0", @@ -9029,9 +9021,9 @@ } }, "node_modules/gatsby-remark-responsive-iframe": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-6.4.0.tgz", - "integrity": "sha512-DO40fwX4b3PH8zYkEXT1bRNCTs2wFDc5xhcX0U8bxCE3EdfhjSP+tC1PkewEaPyik0YsrDC3/nZIoe1Y8+LLPQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-6.5.0.tgz", + "integrity": "sha512-enWOG1Ora/c+ZfSl+FGx8+QZeAwieaE9Qj1sSrc4CGyreQVKNpZ5ysjCZSufreiHrAQ0wQAEA0kqQZkatbse7A==", "dependencies": { "@babel/runtime": "^7.20.7", "cheerio": "^1.0.0-rc.10", @@ -9047,9 +9039,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "engines": { "node": ">=18.0.0" }, @@ -9060,9 +9052,9 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "dependencies": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" @@ -9072,17 +9064,16 @@ } }, "node_modules/gatsby-source-filesystem": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.4.0.tgz", - "integrity": "sha512-vYJM5mJu3vJAo9x5i1k+teBNHi2Fn9aPIrF2zgzqMz6x3iAaila0rD3hMLhNBCzo+GosCnkkQW9g/Tk4OcR0gg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.5.0.tgz", + "integrity": "sha512-STuHuf3who/9Nx5NW00fpRnaob0TXB3YftrPJ1qnZ+N5pfT0hyOrRm1EhSvrDAlXm3qT45fWddVDFLpaMU8+8g==", "dependencies": { "@babel/runtime": "^7.20.7", "chokidar": "^3.5.3", "file-type": "^16.5.4", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "md5-file": "^5.0.0", - "mime": "^2.6.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", "xstate": "^4.34.0" @@ -9094,20 +9085,31 @@ "gatsby": "^5.0.0-next" } }, + "node_modules/gatsby-source-filesystem/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9117,62 +9119,13 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gatsby-telemetry/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/gatsby-telemetry/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gatsby-telemetry/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "engines": { - "node": ">=8" - } - }, "node_modules/gatsby-transformer-remark": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-6.4.0.tgz", - "integrity": "sha512-ffzdxuSARq/cFR/oNbJ+IiMTUvyDExk5nlmBo+7b6rg4lgJwew/6npZjtJKLCHU+O/C2mp33RFvvI4+ua0Njkw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-6.5.0.tgz", + "integrity": "sha512-8YnoXcJISesK/ch8qZzmp+jewCi4xnnDHpBQWcIg/zTQ5jhyLI+CGYiAyRlxqbJ1f7Tkjp2K+M/CiJG5r28Jsw==", "dependencies": { "@babel/runtime": "^7.20.7", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "gray-matter": "^4.0.3", "hast-util-raw": "^6.1.0", "hast-util-to-html": "^7.1.3", @@ -9202,15 +9155,15 @@ } }, "node_modules/gatsby-transformer-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.4.0.tgz", - "integrity": "sha512-UAh+Q+fVj92CJjIsHDS7rby+dWgmIzjfyXD7576xp9K5ALLT8sfshXyfTs1aLbTujb9pnOzTZ/qNE3xJMSQhTw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.5.0.tgz", + "integrity": "sha512-SAt20F/+dC+sOtUu4gUMOiyOxYOtF2QOOct1pPuUXeK8J4apy+OeTlJtuSCO14+y3vWgmAEMQ9WBw81dSgSJnQ==", "dependencies": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-plugin-utils": "^4.5.0", "probe-image-size": "^7.2.3", "semver": "^7.3.8", "sharp": "^0.31.3" @@ -9224,19 +9177,59 @@ } }, "node_modules/gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "dependencies": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" }, "engines": { "node": ">=18.0.0" } }, + "node_modules/gatsby/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/gatsby/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/gatsby/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9585,6 +9578,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "node_modules/hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -11056,17 +11054,6 @@ "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==", - "bin": { - "md5-file": "cli.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/mdast-util-definitions": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", @@ -15637,17 +15624,6 @@ "node": ">= 6" } }, - "node_modules/term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser": { "version": "5.15.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", @@ -16601,12 +16577,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "node_modules/webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "dependencies": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "node_modules/webpack/node_modules/@types/estree": { "version": "0.0.51", @@ -18356,9 +18329,9 @@ } }, "@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==" + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==" }, "@eslint/eslintrc": { "version": "0.4.3", @@ -18415,14 +18388,14 @@ "integrity": "sha512-fTvrteVzuFUePhr4QYBGoK8G/YHLJ3IhF1HhKg0AxcFvZajJT7rM7ULdmKLSd2PkX44R3aaFZq1zDbmjbGGI+w==" }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "requires": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "@gatsbyjs/reach-router": { @@ -20535,13 +20508,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "requires": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -20589,9 +20562,9 @@ } }, "babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -20606,8 +20579,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" } }, "bail": { @@ -21445,9 +21418,9 @@ } }, "create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "requires": { "@babel/runtime": "^7.20.7" } @@ -23045,9 +23018,9 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -23097,9 +23070,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -23109,7 +23082,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -23139,8 +23112,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -23149,14 +23122,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -23180,22 +23153,22 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-sharp": "^1.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-sharp": "^1.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -23212,11 +23185,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -23264,15 +23236,40 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" + }, + "dependencies": { + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } } }, "gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -23290,13 +23287,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -23318,17 +23315,18 @@ } }, "gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "requires": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -23340,14 +23338,14 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==" + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==" }, "gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "requires": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -23370,36 +23368,36 @@ } }, "gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "requires": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -23414,91 +23412,84 @@ } }, "gatsby-plugin-feed": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-5.4.0.tgz", - "integrity": "sha512-OhxwueGoJz5Y1vqWRfLE+xK4id6sa2OIG4TVc8G+Ao+YAX3hW1iM9Z4FSxg8aIPoqZqVunmOXimVfUjAP3QqJA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-5.5.0.tgz", + "integrity": "sha512-ZoPKxsByNJBmGSYXOFygAu2dzrLDpP0E5PEXM+aDI47KZSoRxFmKcX9MEwLCzVnj6Y/kIYZ3GZyeBkHoauya1g==", "requires": { "@babel/runtime": "^7.20.7", "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-plugin-utils": "^4.5.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" } }, "gatsby-plugin-image": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.4.0.tgz", - "integrity": "sha512-wfFEe/yaa8CqrtFGwbdBo2Eqyfdo5fvXZazGaP8ShysCHKBEAyf2oKcHvqAjdCmibb7eq7VIgJYNU876RA6IQA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.5.0.tgz", + "integrity": "sha512-zIOXPrWgcBFSQIyVIZjRpdpuA3dd02+qs43ysRYDVp2iYYZySHEpvw9ObhHuRnQ/blQ8C3PmQwdOs1j2s6wL1A==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.7", "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "camelcase": "^5.3.1", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } } }, "gatsby-plugin-manifest": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.4.0.tgz", - "integrity": "sha512-Jw1LUJxLnIoeGdbsKies/0NpKOganfBMDpusgIbYZzBENlsNcJTtlOFWfbExJFAutc2ZStDoQrch6AkOvwujBw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.5.0.tgz", + "integrity": "sha512-7980GND+weiPT1RKLTWrED/1CKqduui4lzT5ftPwz96sYjOJEextjtmJqSISQ/4U+NPrjoE1Tkorzg4jz1EuVw==", "requires": { "@babel/runtime": "^7.20.7", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "semver": "^7.3.8", "sharp": "^0.31.3" } }, "gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "requires": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.4.0.tgz", - "integrity": "sha512-QFGMP3skMyiLBx/1JGs296ZT0aWkzP2SsEp+5MA/Yg23T8Hrb/bBmxe+cAD0PoALQl9lmEA7NPawuh0q1HaGPw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.5.0.tgz", + "integrity": "sha512-XtRjproz7FT3df8HetkpKlUFfQfPu+KdCsyXwnlAu6vm94+86ZgN/6O4gioG8GLZvoOF/1Zud47xagBPbvzLLg==", "requires": { "@babel/runtime": "^7.20.7", "async": "^3.2.4", "bluebird": "^3.7.2", "debug": "^4.3.4", "filenamify": "^4.3.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", "semver": "^7.3.8", @@ -23526,9 +23517,9 @@ } }, "gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "requires": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -23536,19 +23527,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" } }, "gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "requires": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -23563,23 +23554,23 @@ } }, "gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "requires": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" } }, "gatsby-remark-images": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.4.0.tgz", - "integrity": "sha512-xiY9x8kogr7TfWvUraalWAUM4YuXTZ+CU9PBUSoNEFpNF6gZ31+lR/fp18xgsaVLGaXCGcQCKAmWO+d5lpFpUQ==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.5.0.tgz", + "integrity": "sha512-PUbcrJLMIHruw+9tndl2sQ/vyzv6AiNsM18lIADh6SQeWH6abpNxzSCbIfoRjCSXB9rrcHFwwCXNFwbikCdEMQ==", "requires": { "@babel/runtime": "^7.20.7", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", @@ -23589,9 +23580,9 @@ } }, "gatsby-remark-prismjs": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-7.4.0.tgz", - "integrity": "sha512-andxqi+kIQa/s7xJ2M/sm7bzWSqbSmq0XHFpIGdDQYgoC0EeqyvRSdXNDkN5iXmDI1Rh40Vxc+/51o0FYpy2Lw==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-7.5.0.tgz", + "integrity": "sha512-i7TBquA4n8llD9o5LCoPX2NnB+awqh+soAMvZ+JU/eEUY9iGT+37bwp8fYnuAPA9OGarbXkZrXEkBud6XDw+LQ==", "requires": { "@babel/runtime": "^7.20.7", "parse-numeric-range": "^1.2.0", @@ -23599,9 +23590,9 @@ } }, "gatsby-remark-responsive-iframe": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-6.4.0.tgz", - "integrity": "sha512-DO40fwX4b3PH8zYkEXT1bRNCTs2wFDc5xhcX0U8bxCE3EdfhjSP+tC1PkewEaPyik0YsrDC3/nZIoe1Y8+LLPQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-6.5.0.tgz", + "integrity": "sha512-enWOG1Ora/c+ZfSl+FGx8+QZeAwieaE9Qj1sSrc4CGyreQVKNpZ5ysjCZSufreiHrAQ0wQAEA0kqQZkatbse7A==", "requires": { "@babel/runtime": "^7.20.7", "cheerio": "^1.0.0-rc.10", @@ -23611,99 +23602,69 @@ } }, "gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "requires": {} }, "gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "requires": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" } }, "gatsby-source-filesystem": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.4.0.tgz", - "integrity": "sha512-vYJM5mJu3vJAo9x5i1k+teBNHi2Fn9aPIrF2zgzqMz6x3iAaila0rD3hMLhNBCzo+GosCnkkQW9g/Tk4OcR0gg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.5.0.tgz", + "integrity": "sha512-STuHuf3who/9Nx5NW00fpRnaob0TXB3YftrPJ1qnZ+N5pfT0hyOrRm1EhSvrDAlXm3qT45fWddVDFLpaMU8+8g==", "requires": { "@babel/runtime": "^7.20.7", "chokidar": "^3.5.3", "file-type": "^16.5.4", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "md5-file": "^5.0.0", - "mime": "^2.6.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", "xstate": "^4.34.0" + }, + "dependencies": { + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" - }, - "dependencies": { - "boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } } }, "gatsby-transformer-remark": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-6.4.0.tgz", - "integrity": "sha512-ffzdxuSARq/cFR/oNbJ+IiMTUvyDExk5nlmBo+7b6rg4lgJwew/6npZjtJKLCHU+O/C2mp33RFvvI4+ua0Njkw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-6.5.0.tgz", + "integrity": "sha512-8YnoXcJISesK/ch8qZzmp+jewCi4xnnDHpBQWcIg/zTQ5jhyLI+CGYiAyRlxqbJ1f7Tkjp2K+M/CiJG5r28Jsw==", "requires": { "@babel/runtime": "^7.20.7", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "gray-matter": "^4.0.3", "hast-util-raw": "^6.1.0", "hast-util-to-html": "^7.1.3", @@ -23727,28 +23688,28 @@ } }, "gatsby-transformer-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.4.0.tgz", - "integrity": "sha512-UAh+Q+fVj92CJjIsHDS7rby+dWgmIzjfyXD7576xp9K5ALLT8sfshXyfTs1aLbTujb9pnOzTZ/qNE3xJMSQhTw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.5.0.tgz", + "integrity": "sha512-SAt20F/+dC+sOtUu4gUMOiyOxYOtF2QOOct1pPuUXeK8J4apy+OeTlJtuSCO14+y3vWgmAEMQ9WBw81dSgSJnQ==", "requires": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-plugin-utils": "^4.5.0", "probe-image-size": "^7.2.3", "semver": "^7.3.8", "sharp": "^0.31.3" } }, "gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "requires": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" } }, @@ -23996,6 +23957,11 @@ "has-symbols": "^1.0.2" } }, + "hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -25074,11 +25040,6 @@ "repeat-string": "^1.0.0" } }, - "md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==" - }, "mdast-util-definitions": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", @@ -28354,11 +28315,6 @@ } } }, - "term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" - }, "terser": { "version": "5.15.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", @@ -29042,12 +28998,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "requires": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "whatwg-url": { "version": "5.0.0", diff --git a/starters/blog/package.json b/starters/blog/package.json index 669f11bd0205d..523e6d88e6dbc 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -10,17 +10,17 @@ "dependencies": { "@fontsource/merriweather": "^4.5.14", "@fontsource/montserrat": "^4.5.14", - "gatsby": "^5.4.2", - "gatsby-plugin-feed": "^5.4.0", - "gatsby-plugin-image": "^3.4.0", - "gatsby-plugin-manifest": "^5.4.0", - "gatsby-plugin-sharp": "^5.4.0", - "gatsby-remark-images": "^7.4.0", - "gatsby-remark-prismjs": "^7.4.0", - "gatsby-remark-responsive-iframe": "^6.4.0", - "gatsby-source-filesystem": "^5.4.0", - "gatsby-transformer-remark": "^6.4.0", - "gatsby-transformer-sharp": "^5.4.0", + "gatsby": "^5.5.0", + "gatsby-plugin-feed": "^5.5.0", + "gatsby-plugin-image": "^3.5.0", + "gatsby-plugin-manifest": "^5.5.0", + "gatsby-plugin-sharp": "^5.5.0", + "gatsby-remark-images": "^7.5.0", + "gatsby-remark-prismjs": "^7.5.0", + "gatsby-remark-responsive-iframe": "^6.5.0", + "gatsby-source-filesystem": "^5.5.0", + "gatsby-transformer-remark": "^6.5.0", + "gatsby-transformer-sharp": "^5.5.0", "prismjs": "^1.29.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index e9e834ba36a89..1ce7d9a253a42 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -9,12 +9,12 @@ "version": "0.1.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.4.2", - "gatsby-plugin-image": "^3.4.0", - "gatsby-plugin-manifest": "^5.4.0", - "gatsby-plugin-sharp": "^5.4.0", - "gatsby-source-filesystem": "^5.4.0", - "gatsby-transformer-sharp": "^5.4.0", + "gatsby": "^5.5.0", + "gatsby-plugin-image": "^3.5.0", + "gatsby-plugin-manifest": "^5.5.0", + "gatsby-plugin-sharp": "^5.5.0", + "gatsby-source-filesystem": "^5.5.0", + "gatsby-transformer-sharp": "^5.5.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, @@ -1953,9 +1953,9 @@ } }, "node_modules/@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==", "bin": { "partytown": "bin/partytown.cjs" } @@ -2023,14 +2023,14 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "dependencies": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0", @@ -4844,13 +4844,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0" @@ -4908,9 +4908,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -4925,8 +4925,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" }, "engines": { "node": ">=18.0.0" @@ -5938,9 +5938,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "dependencies": { "@babel/runtime": "^7.20.7" }, @@ -8102,16 +8102,16 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, "node_modules/fs-monkey": { @@ -8173,9 +8173,9 @@ } }, "node_modules/gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8186,7 +8186,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8216,8 +8216,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -8226,14 +8226,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -8257,21 +8257,21 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -8288,11 +8288,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -8340,7 +8339,7 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" }, @@ -8351,7 +8350,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.4.0" + "gatsby-sharp": "^1.5.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8359,9 +8358,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8380,13 +8379,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -8414,17 +8413,18 @@ } }, "node_modules/gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "dependencies": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -8439,17 +8439,17 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "dependencies": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -8477,12 +8477,12 @@ } }, "node_modules/gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" }, "engines": { @@ -8495,15 +8495,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "dependencies": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8513,11 +8513,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -8538,22 +8538,22 @@ } }, "node_modules/gatsby-plugin-image": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.4.0.tgz", - "integrity": "sha512-wfFEe/yaa8CqrtFGwbdBo2Eqyfdo5fvXZazGaP8ShysCHKBEAyf2oKcHvqAjdCmibb7eq7VIgJYNU876RA6IQA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.5.0.tgz", + "integrity": "sha512-zIOXPrWgcBFSQIyVIZjRpdpuA3dd02+qs43ysRYDVp2iYYZySHEpvw9ObhHuRnQ/blQ8C3PmQwdOs1j2s6wL1A==", "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.7", "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "camelcase": "^5.3.1", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" }, @@ -8574,22 +8574,14 @@ } } }, - "node_modules/gatsby-plugin-image/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, "node_modules/gatsby-plugin-manifest": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.4.0.tgz", - "integrity": "sha512-Jw1LUJxLnIoeGdbsKies/0NpKOganfBMDpusgIbYZzBENlsNcJTtlOFWfbExJFAutc2ZStDoQrch6AkOvwujBw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.5.0.tgz", + "integrity": "sha512-7980GND+weiPT1RKLTWrED/1CKqduui4lzT5ftPwz96sYjOJEextjtmJqSISQ/4U+NPrjoE1Tkorzg4jz1EuVw==", "dependencies": { "@babel/runtime": "^7.20.7", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "semver": "^7.3.8", "sharp": "^0.31.3" }, @@ -8601,20 +8593,20 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8626,18 +8618,18 @@ } }, "node_modules/gatsby-plugin-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.4.0.tgz", - "integrity": "sha512-QFGMP3skMyiLBx/1JGs296ZT0aWkzP2SsEp+5MA/Yg23T8Hrb/bBmxe+cAD0PoALQl9lmEA7NPawuh0q1HaGPw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.5.0.tgz", + "integrity": "sha512-XtRjproz7FT3df8HetkpKlUFfQfPu+KdCsyXwnlAu6vm94+86ZgN/6O4gioG8GLZvoOF/1Zud47xagBPbvzLLg==", "dependencies": { "@babel/runtime": "^7.20.7", "async": "^3.2.4", "bluebird": "^3.7.2", "debug": "^4.3.4", "filenamify": "^4.3.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", "semver": "^7.3.8", @@ -8677,9 +8669,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "dependencies": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -8687,7 +8679,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" }, "engines": { "node": ">=18.0.0" @@ -8697,15 +8689,15 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "dependencies": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -8731,9 +8723,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "dependencies": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" @@ -8748,9 +8740,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "engines": { "node": ">=18.0.0" }, @@ -8761,9 +8753,9 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "dependencies": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" @@ -8773,17 +8765,16 @@ } }, "node_modules/gatsby-source-filesystem": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.4.0.tgz", - "integrity": "sha512-vYJM5mJu3vJAo9x5i1k+teBNHi2Fn9aPIrF2zgzqMz6x3iAaila0rD3hMLhNBCzo+GosCnkkQW9g/Tk4OcR0gg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.5.0.tgz", + "integrity": "sha512-STuHuf3who/9Nx5NW00fpRnaob0TXB3YftrPJ1qnZ+N5pfT0hyOrRm1EhSvrDAlXm3qT45fWddVDFLpaMU8+8g==", "dependencies": { "@babel/runtime": "^7.20.7", "chokidar": "^3.5.3", "file-type": "^16.5.4", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "md5-file": "^5.0.0", - "mime": "^2.6.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", "xstate": "^4.34.0" @@ -8795,20 +8786,31 @@ "gatsby": "^5.0.0-next" } }, + "node_modules/gatsby-source-filesystem/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8818,65 +8820,16 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gatsby-telemetry/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/gatsby-telemetry/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gatsby-telemetry/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "engines": { - "node": ">=8" - } - }, "node_modules/gatsby-transformer-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.4.0.tgz", - "integrity": "sha512-UAh+Q+fVj92CJjIsHDS7rby+dWgmIzjfyXD7576xp9K5ALLT8sfshXyfTs1aLbTujb9pnOzTZ/qNE3xJMSQhTw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.5.0.tgz", + "integrity": "sha512-SAt20F/+dC+sOtUu4gUMOiyOxYOtF2QOOct1pPuUXeK8J4apy+OeTlJtuSCO14+y3vWgmAEMQ9WBw81dSgSJnQ==", "dependencies": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-plugin-utils": "^4.5.0", "probe-image-size": "^7.2.3", "semver": "^7.3.8", "sharp": "^0.31.3" @@ -8890,19 +8843,59 @@ } }, "node_modules/gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "dependencies": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" }, "engines": { "node": ">=18.0.0" } }, + "node_modules/gatsby/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/gatsby/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/gatsby/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9232,6 +9225,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "node_modules/hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -10438,17 +10436,6 @@ "node": ">=0.10.0" } }, - "node_modules/md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==", - "bin": { - "md5-file": "cli.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -14113,17 +14100,6 @@ "node": ">= 6" } }, - "node_modules/term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser": { "version": "5.15.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", @@ -14851,12 +14827,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "node_modules/webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "dependencies": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "node_modules/webpack/node_modules/@types/estree": { "version": "0.0.51", @@ -16592,9 +16565,9 @@ } }, "@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==" + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==" }, "@eslint/eslintrc": { "version": "0.4.3", @@ -16641,14 +16614,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "requires": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "@gatsbyjs/reach-router": { @@ -18702,13 +18675,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "requires": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -18756,9 +18729,9 @@ } }, "babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -18773,8 +18746,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" } }, "balanced-match": { @@ -19540,9 +19513,9 @@ } }, "create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "requires": { "@babel/runtime": "^7.20.7" } @@ -21122,9 +21095,9 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -21174,9 +21147,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -21186,7 +21159,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -21216,8 +21189,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -21226,14 +21199,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -21257,22 +21230,22 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-sharp": "^1.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-sharp": "^1.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -21289,11 +21262,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -21341,15 +21313,40 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" + }, + "dependencies": { + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } } }, "gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -21367,13 +21364,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -21395,17 +21392,18 @@ } }, "gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "requires": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -21417,14 +21415,14 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==" + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==" }, "gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "requires": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -21447,36 +21445,36 @@ } }, "gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "requires": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -21491,77 +21489,70 @@ } }, "gatsby-plugin-image": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.4.0.tgz", - "integrity": "sha512-wfFEe/yaa8CqrtFGwbdBo2Eqyfdo5fvXZazGaP8ShysCHKBEAyf2oKcHvqAjdCmibb7eq7VIgJYNU876RA6IQA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.5.0.tgz", + "integrity": "sha512-zIOXPrWgcBFSQIyVIZjRpdpuA3dd02+qs43ysRYDVp2iYYZySHEpvw9ObhHuRnQ/blQ8C3PmQwdOs1j2s6wL1A==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.7", "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "camelcase": "^5.3.1", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } } }, "gatsby-plugin-manifest": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.4.0.tgz", - "integrity": "sha512-Jw1LUJxLnIoeGdbsKies/0NpKOganfBMDpusgIbYZzBENlsNcJTtlOFWfbExJFAutc2ZStDoQrch6AkOvwujBw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.5.0.tgz", + "integrity": "sha512-7980GND+weiPT1RKLTWrED/1CKqduui4lzT5ftPwz96sYjOJEextjtmJqSISQ/4U+NPrjoE1Tkorzg4jz1EuVw==", "requires": { "@babel/runtime": "^7.20.7", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "semver": "^7.3.8", "sharp": "^0.31.3" } }, "gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "requires": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.4.0.tgz", - "integrity": "sha512-QFGMP3skMyiLBx/1JGs296ZT0aWkzP2SsEp+5MA/Yg23T8Hrb/bBmxe+cAD0PoALQl9lmEA7NPawuh0q1HaGPw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.5.0.tgz", + "integrity": "sha512-XtRjproz7FT3df8HetkpKlUFfQfPu+KdCsyXwnlAu6vm94+86ZgN/6O4gioG8GLZvoOF/1Zud47xagBPbvzLLg==", "requires": { "@babel/runtime": "^7.20.7", "async": "^3.2.4", "bluebird": "^3.7.2", "debug": "^4.3.4", "filenamify": "^4.3.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", "semver": "^7.3.8", @@ -21589,9 +21580,9 @@ } }, "gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "requires": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -21599,19 +21590,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" } }, "gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "requires": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -21626,124 +21617,94 @@ } }, "gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "requires": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "requires": {} }, "gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "requires": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" } }, "gatsby-source-filesystem": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.4.0.tgz", - "integrity": "sha512-vYJM5mJu3vJAo9x5i1k+teBNHi2Fn9aPIrF2zgzqMz6x3iAaila0rD3hMLhNBCzo+GosCnkkQW9g/Tk4OcR0gg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.5.0.tgz", + "integrity": "sha512-STuHuf3who/9Nx5NW00fpRnaob0TXB3YftrPJ1qnZ+N5pfT0hyOrRm1EhSvrDAlXm3qT45fWddVDFLpaMU8+8g==", "requires": { "@babel/runtime": "^7.20.7", "chokidar": "^3.5.3", "file-type": "^16.5.4", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "md5-file": "^5.0.0", - "mime": "^2.6.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", "xstate": "^4.34.0" + }, + "dependencies": { + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" - }, - "dependencies": { - "boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } } }, "gatsby-transformer-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.4.0.tgz", - "integrity": "sha512-UAh+Q+fVj92CJjIsHDS7rby+dWgmIzjfyXD7576xp9K5ALLT8sfshXyfTs1aLbTujb9pnOzTZ/qNE3xJMSQhTw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.5.0.tgz", + "integrity": "sha512-SAt20F/+dC+sOtUu4gUMOiyOxYOtF2QOOct1pPuUXeK8J4apy+OeTlJtuSCO14+y3vWgmAEMQ9WBw81dSgSJnQ==", "requires": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-plugin-utils": "^4.5.0", "probe-image-size": "^7.2.3", "semver": "^7.3.8", "sharp": "^0.31.3" } }, "gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "requires": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" } }, @@ -21975,6 +21936,11 @@ "has-symbols": "^1.0.2" } }, + "hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -22871,11 +22837,6 @@ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==" }, - "md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==" - }, "mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -25500,11 +25461,6 @@ } } }, - "term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" - }, "terser": { "version": "5.15.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", @@ -26035,12 +25991,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "requires": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "whatwg-url": { "version": "5.0.0", diff --git a/starters/default/package.json b/starters/default/package.json index cc9e8ac55a531..8d3d3193f6c82 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,12 +5,12 @@ "version": "0.1.0", "author": "Kyle Mathews <[email protected]>", "dependencies": { - "gatsby": "^5.4.2", - "gatsby-plugin-image": "^3.4.0", - "gatsby-plugin-manifest": "^5.4.0", - "gatsby-plugin-sharp": "^5.4.0", - "gatsby-source-filesystem": "^5.4.0", - "gatsby-transformer-sharp": "^5.4.0", + "gatsby": "^5.5.0", + "gatsby-plugin-image": "^3.5.0", + "gatsby-plugin-manifest": "^5.5.0", + "gatsby-plugin-sharp": "^5.5.0", + "gatsby-source-filesystem": "^5.5.0", + "gatsby-transformer-sharp": "^5.5.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/starters/gatsby-starter-minimal-ts/package-lock.json b/starters/gatsby-starter-minimal-ts/package-lock.json index a33de1cb4c807..73aeb3ccd3cdc 100644 --- a/starters/gatsby-starter-minimal-ts/package-lock.json +++ b/starters/gatsby-starter-minimal-ts/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.4.2", + "gatsby": "^5.5.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, @@ -1951,9 +1951,9 @@ } }, "node_modules/@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==", "bin": { "partytown": "bin/partytown.cjs" } @@ -2021,14 +2021,14 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "dependencies": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0", @@ -4797,13 +4797,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0" @@ -4861,9 +4861,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -4878,8 +4878,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" }, "engines": { "node": ">=18.0.0" @@ -5899,9 +5899,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "dependencies": { "@babel/runtime": "^7.20.7" }, @@ -8118,16 +8118,16 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, "node_modules/fs-monkey": { @@ -8189,9 +8189,9 @@ } }, "node_modules/gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8202,7 +8202,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8232,8 +8232,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -8242,14 +8242,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -8273,21 +8273,21 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -8304,11 +8304,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -8356,7 +8355,7 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" }, @@ -8367,7 +8366,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.4.0" + "gatsby-sharp": "^1.5.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8375,9 +8374,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8396,13 +8395,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -8430,17 +8429,18 @@ } }, "node_modules/gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "dependencies": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -8455,17 +8455,17 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "dependencies": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -8493,12 +8493,12 @@ } }, "node_modules/gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" }, "engines": { @@ -8511,15 +8511,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "dependencies": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8529,11 +8529,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -8554,20 +8554,20 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8579,9 +8579,9 @@ } }, "node_modules/gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "dependencies": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -8589,7 +8589,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" }, "engines": { "node": ">=18.0.0" @@ -8599,15 +8599,15 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "dependencies": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -8633,9 +8633,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "dependencies": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" @@ -8650,9 +8650,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "engines": { "node": ">=18.0.0" }, @@ -8663,9 +8663,9 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "dependencies": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" @@ -8675,19 +8675,19 @@ } }, "node_modules/gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8697,63 +8697,14 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gatsby-telemetry/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/gatsby-telemetry/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gatsby-telemetry/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "engines": { - "node": ">=8" - } - }, "node_modules/gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "dependencies": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" }, "engines": { @@ -8776,6 +8727,46 @@ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, + "node_modules/gatsby/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/gatsby/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/gatsby/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9141,6 +9132,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "node_modules/hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -10378,17 +10374,6 @@ "node": ">=0.10.0" } }, - "node_modules/md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==", - "bin": { - "md5-file": "cli.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -13253,9 +13238,9 @@ } }, "node_modules/sharp/node_modules/node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -13961,17 +13946,6 @@ "node": ">= 6" } }, - "node_modules/term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser": { "version": "5.14.2", "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", @@ -14687,12 +14661,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "node_modules/webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "dependencies": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "node_modules/webpack/node_modules/@types/estree": { "version": "0.0.51", @@ -16455,9 +16426,9 @@ } }, "@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==" + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==" }, "@eslint/eslintrc": { "version": "0.4.3", @@ -16504,14 +16475,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "requires": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "@gatsbyjs/reach-router": { @@ -18511,13 +18482,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "requires": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -18565,9 +18536,9 @@ } }, "babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -18582,8 +18553,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" } }, "balanced-match": { @@ -19359,9 +19330,9 @@ } }, "create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "requires": { "@babel/runtime": "^7.20.7" } @@ -20994,9 +20965,9 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -21046,9 +21017,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -21058,7 +21029,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -21088,8 +21059,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -21098,14 +21069,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -21129,22 +21100,22 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-sharp": "^1.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-sharp": "^1.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -21161,11 +21132,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -21213,7 +21183,7 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" }, @@ -21230,13 +21200,36 @@ "lodash": "~4.17.0", "tslib": "~2.4.0" } + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -21254,13 +21247,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -21282,17 +21275,18 @@ } }, "gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "requires": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -21304,14 +21298,14 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==" + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==" }, "gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "requires": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -21334,36 +21328,36 @@ } }, "gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "requires": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -21378,28 +21372,28 @@ } }, "gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "requires": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "requires": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -21407,19 +21401,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" } }, "gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "requires": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -21434,92 +21428,56 @@ } }, "gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "requires": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "requires": {} }, "gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "requires": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" } }, "gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" - }, - "dependencies": { - "boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } } }, "gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "requires": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" } }, @@ -21772,6 +21730,11 @@ "has-symbols": "^1.0.2" } }, + "hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -22690,11 +22653,6 @@ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==" }, - "md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==" - }, "mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -24718,9 +24676,9 @@ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" }, "node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" } } }, @@ -25250,11 +25208,6 @@ } } }, - "term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" - }, "terser": { "version": "5.14.2", "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", @@ -25774,12 +25727,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "requires": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "whatwg-url": { "version": "5.0.0", diff --git a/starters/gatsby-starter-minimal-ts/package.json b/starters/gatsby-starter-minimal-ts/package.json index 40fb6a092511c..d1b1681618564 100644 --- a/starters/gatsby-starter-minimal-ts/package.json +++ b/starters/gatsby-starter-minimal-ts/package.json @@ -17,7 +17,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^5.4.2", + "gatsby": "^5.5.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/starters/gatsby-starter-minimal/package-lock.json b/starters/gatsby-starter-minimal/package-lock.json index da970ccec865f..87ae44569ee16 100644 --- a/starters/gatsby-starter-minimal/package-lock.json +++ b/starters/gatsby-starter-minimal/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.4.2", + "gatsby": "^5.5.0", "react": "^18.2.0", "react-dom": "^18.2.0" } @@ -1945,9 +1945,9 @@ } }, "node_modules/@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==", "bin": { "partytown": "bin/partytown.cjs" } @@ -2015,14 +2015,14 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "dependencies": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0", @@ -4752,13 +4752,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0" @@ -4816,9 +4816,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -4833,8 +4833,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" }, "engines": { "node": ">=18.0.0" @@ -5854,9 +5854,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "dependencies": { "@babel/runtime": "^7.20.7" }, @@ -8073,16 +8073,16 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, "node_modules/fs-monkey": { @@ -8144,9 +8144,9 @@ } }, "node_modules/gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8157,7 +8157,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8187,8 +8187,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -8197,14 +8197,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -8228,21 +8228,21 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -8259,11 +8259,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -8311,7 +8310,7 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" }, @@ -8322,7 +8321,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.4.0" + "gatsby-sharp": "^1.5.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8330,9 +8329,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8351,13 +8350,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -8385,17 +8384,18 @@ } }, "node_modules/gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "dependencies": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -8410,17 +8410,17 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "dependencies": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -8448,12 +8448,12 @@ } }, "node_modules/gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" }, "engines": { @@ -8466,15 +8466,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "dependencies": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8484,11 +8484,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -8509,20 +8509,20 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8534,9 +8534,9 @@ } }, "node_modules/gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "dependencies": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -8544,7 +8544,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" }, "engines": { "node": ">=18.0.0" @@ -8554,15 +8554,15 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "dependencies": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -8588,9 +8588,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "dependencies": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" @@ -8605,9 +8605,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "engines": { "node": ">=18.0.0" }, @@ -8618,9 +8618,9 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "dependencies": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" @@ -8630,19 +8630,19 @@ } }, "node_modules/gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8652,63 +8652,14 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gatsby-telemetry/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/gatsby-telemetry/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gatsby-telemetry/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "engines": { - "node": ">=8" - } - }, "node_modules/gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "dependencies": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" }, "engines": { @@ -8731,6 +8682,46 @@ "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" } }, + "node_modules/gatsby/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/gatsby/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/gatsby/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9096,6 +9087,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "node_modules/hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -10333,17 +10329,6 @@ "node": ">=0.10.0" } }, - "node_modules/md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==", - "bin": { - "md5-file": "cli.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -13208,9 +13193,9 @@ } }, "node_modules/sharp/node_modules/node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -13916,17 +13901,6 @@ "node": ">= 6" } }, - "node_modules/term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser": { "version": "5.14.2", "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", @@ -14630,12 +14604,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "node_modules/webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "dependencies": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "node_modules/webpack/node_modules/@types/estree": { "version": "0.0.51", @@ -16398,9 +16369,9 @@ } }, "@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==" + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==" }, "@eslint/eslintrc": { "version": "0.4.3", @@ -16447,14 +16418,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "requires": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "@gatsbyjs/reach-router": { @@ -18423,13 +18394,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "requires": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -18477,9 +18448,9 @@ } }, "babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -18494,8 +18465,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" } }, "balanced-match": { @@ -19271,9 +19242,9 @@ } }, "create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "requires": { "@babel/runtime": "^7.20.7" } @@ -20906,9 +20877,9 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -20958,9 +20929,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -20970,7 +20941,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -21000,8 +20971,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -21010,14 +20981,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -21041,22 +21012,22 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-sharp": "^1.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-sharp": "^1.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -21073,11 +21044,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -21125,7 +21095,7 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" }, @@ -21142,13 +21112,36 @@ "lodash": "~4.17.0", "tslib": "~2.4.0" } + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -21166,13 +21159,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -21194,17 +21187,18 @@ } }, "gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "requires": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -21216,14 +21210,14 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==" + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==" }, "gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "requires": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -21246,36 +21240,36 @@ } }, "gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "requires": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -21290,28 +21284,28 @@ } }, "gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "requires": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "requires": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -21319,19 +21313,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" } }, "gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "requires": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -21346,92 +21340,56 @@ } }, "gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "requires": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "requires": {} }, "gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "requires": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" } }, "gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" - }, - "dependencies": { - "boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } } }, "gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "requires": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" } }, @@ -21684,6 +21642,11 @@ "has-symbols": "^1.0.2" } }, + "hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -22602,11 +22565,6 @@ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==" }, - "md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==" - }, "mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -24630,9 +24588,9 @@ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" }, "node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" } } }, @@ -25162,11 +25120,6 @@ } } }, - "term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" - }, "terser": { "version": "5.14.2", "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", @@ -25681,12 +25634,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "requires": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "whatwg-url": { "version": "5.0.0", diff --git a/starters/gatsby-starter-minimal/package.json b/starters/gatsby-starter-minimal/package.json index 2dcb8ba034d4b..4a6e79d6a16de 100644 --- a/starters/gatsby-starter-minimal/package.json +++ b/starters/gatsby-starter-minimal/package.json @@ -16,7 +16,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^5.4.2", + "gatsby": "^5.5.0", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/starters/gatsby-starter-theme-workspace/example/package.json b/starters/gatsby-starter-theme-workspace/example/package.json index c2b972cd89664..55a61dd0756c7 100644 --- a/starters/gatsby-starter-theme-workspace/example/package.json +++ b/starters/gatsby-starter-theme-workspace/example/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^5.4.2", + "gatsby": "^5.5.0", "gatsby-theme-minimal": "^1.0.0", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/starters/gatsby-starter-wordpress-blog/package-lock.json b/starters/gatsby-starter-wordpress-blog/package-lock.json index 70676371c4328..4209f7aeba574 100644 --- a/starters/gatsby-starter-wordpress-blog/package-lock.json +++ b/starters/gatsby-starter-wordpress-blog/package-lock.json @@ -12,12 +12,12 @@ "@fontsource/merriweather": "^4.5.14", "@fontsource/montserrat": "^4.5.14", "@wordpress/block-library": "^7.19.0", - "gatsby": "^5.4.2", - "gatsby-plugin-image": "^3.4.0", - "gatsby-plugin-manifest": "^5.4.0", - "gatsby-plugin-sharp": "^5.4.0", - "gatsby-source-wordpress": "^7.4.1", - "gatsby-transformer-sharp": "^5.4.0", + "gatsby": "^5.5.0", + "gatsby-plugin-image": "^3.5.0", + "gatsby-plugin-manifest": "^5.5.0", + "gatsby-plugin-sharp": "^5.5.0", + "gatsby-source-wordpress": "^7.5.0", + "gatsby-transformer-sharp": "^5.5.0", "html-react-parser": "^3.0.8", "lodash": "^4.17.21", "react": "^18.2.0", @@ -1958,9 +1958,9 @@ } }, "node_modules/@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==", "bin": { "partytown": "bin/partytown.cjs" } @@ -2228,14 +2228,14 @@ "integrity": "sha512-fTvrteVzuFUePhr4QYBGoK8G/YHLJ3IhF1HhKg0AxcFvZajJT7rM7ULdmKLSd2PkX44R3aaFZq1zDbmjbGGI+w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "dependencies": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0", @@ -6039,13 +6039,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0" @@ -6103,9 +6103,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -6120,8 +6120,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" }, "engines": { "node": ">=18.0.0" @@ -7266,9 +7266,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "dependencies": { "@babel/runtime": "^7.20.7" }, @@ -9584,16 +9584,16 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, "node_modules/fs-monkey": { @@ -9655,9 +9655,9 @@ } }, "node_modules/gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -9668,7 +9668,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -9698,8 +9698,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -9708,14 +9708,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -9739,21 +9739,21 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -9770,11 +9770,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -9822,7 +9821,7 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" }, @@ -9833,7 +9832,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.4.0" + "gatsby-sharp": "^1.5.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -9841,9 +9840,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -9862,13 +9861,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -9896,17 +9895,18 @@ } }, "node_modules/gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "dependencies": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -9921,17 +9921,17 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "dependencies": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -9959,12 +9959,12 @@ } }, "node_modules/gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" }, "engines": { @@ -9977,15 +9977,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "dependencies": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -9995,11 +9995,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -10020,9 +10020,9 @@ } }, "node_modules/gatsby-plugin-catch-links": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-5.4.0.tgz", - "integrity": "sha512-wQ0+lAYObBvn9pcLbUwYuDHqdXWmYxz8dJ+EFaNtWInYEgUSkv5bAp7Pr0Jin6Xlp4Bu3K5W8W8WNjY9FKqCig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-5.5.0.tgz", + "integrity": "sha512-ipTEQr6/69cNfzfC9tUGLqLtXNkbC1EsUwAeQjCNhD2lVCyhMMJt/q6k/AAmu/+fjv2Fu+e6jF0iCinxjqtEBg==", "dependencies": { "@babel/runtime": "^7.20.7", "escape-string-regexp": "^1.0.5" @@ -10043,22 +10043,22 @@ } }, "node_modules/gatsby-plugin-image": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.4.0.tgz", - "integrity": "sha512-wfFEe/yaa8CqrtFGwbdBo2Eqyfdo5fvXZazGaP8ShysCHKBEAyf2oKcHvqAjdCmibb7eq7VIgJYNU876RA6IQA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.5.0.tgz", + "integrity": "sha512-zIOXPrWgcBFSQIyVIZjRpdpuA3dd02+qs43ysRYDVp2iYYZySHEpvw9ObhHuRnQ/blQ8C3PmQwdOs1j2s6wL1A==", "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.7", "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "camelcase": "^5.3.1", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" }, @@ -10079,22 +10079,14 @@ } } }, - "node_modules/gatsby-plugin-image/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, "node_modules/gatsby-plugin-manifest": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.4.0.tgz", - "integrity": "sha512-Jw1LUJxLnIoeGdbsKies/0NpKOganfBMDpusgIbYZzBENlsNcJTtlOFWfbExJFAutc2ZStDoQrch6AkOvwujBw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.5.0.tgz", + "integrity": "sha512-7980GND+weiPT1RKLTWrED/1CKqduui4lzT5ftPwz96sYjOJEextjtmJqSISQ/4U+NPrjoE1Tkorzg4jz1EuVw==", "dependencies": { "@babel/runtime": "^7.20.7", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "semver": "^7.3.8", "sharp": "^0.31.3" }, @@ -10106,20 +10098,20 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -10131,18 +10123,18 @@ } }, "node_modules/gatsby-plugin-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.4.0.tgz", - "integrity": "sha512-QFGMP3skMyiLBx/1JGs296ZT0aWkzP2SsEp+5MA/Yg23T8Hrb/bBmxe+cAD0PoALQl9lmEA7NPawuh0q1HaGPw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.5.0.tgz", + "integrity": "sha512-XtRjproz7FT3df8HetkpKlUFfQfPu+KdCsyXwnlAu6vm94+86ZgN/6O4gioG8GLZvoOF/1Zud47xagBPbvzLLg==", "dependencies": { "@babel/runtime": "^7.20.7", "async": "^3.2.4", "bluebird": "^3.7.2", "debug": "^4.3.4", "filenamify": "^4.3.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", "semver": "^7.3.8", @@ -10182,9 +10174,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "dependencies": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -10192,7 +10184,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" }, "engines": { "node": ">=18.0.0" @@ -10202,15 +10194,15 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "dependencies": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -10236,9 +10228,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "dependencies": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" @@ -10253,9 +10245,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "engines": { "node": ">=18.0.0" }, @@ -10266,9 +10258,9 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "dependencies": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" @@ -10278,17 +10270,16 @@ } }, "node_modules/gatsby-source-filesystem": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.4.0.tgz", - "integrity": "sha512-vYJM5mJu3vJAo9x5i1k+teBNHi2Fn9aPIrF2zgzqMz6x3iAaila0rD3hMLhNBCzo+GosCnkkQW9g/Tk4OcR0gg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.5.0.tgz", + "integrity": "sha512-STuHuf3who/9Nx5NW00fpRnaob0TXB3YftrPJ1qnZ+N5pfT0hyOrRm1EhSvrDAlXm3qT45fWddVDFLpaMU8+8g==", "dependencies": { "@babel/runtime": "^7.20.7", "chokidar": "^3.5.3", "file-type": "^16.5.4", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "md5-file": "^5.0.0", - "mime": "^2.6.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", "xstate": "^4.34.0" @@ -10300,10 +10291,21 @@ "gatsby": "^5.0.0-next" } }, + "node_modules/gatsby-source-filesystem/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, "node_modules/gatsby-source-wordpress": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.4.1.tgz", - "integrity": "sha512-FpeG9kAgihCiwSM7OtniTGk60boFI/eOlBDqWTrXjAtpVPGEiJHRNHi1ZJUOLt5eKzJ6ODoTd2Ft95/gXeVFtA==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.5.0.tgz", + "integrity": "sha512-2xszu7shPFUDzJhxwiaOeC8oyK2/5NB96elV92UI+UU3xOMGw5HhXPdEjpPQeuQEcvYqHNMx0qCrVb3rNYghRQ==", "dependencies": { "@babel/runtime": "^7.20.7", "@rematch/core": "^1.4.0", @@ -10324,11 +10326,11 @@ "fast-json-stable-stringify": "^2.1.0", "file-type": "^15.0.1", "filesize": "^6.4.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-catch-links": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-source-filesystem": "^5.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-catch-links": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-source-filesystem": "^5.5.0", "glob": "^7.2.3", "got": "^11.8.6", "lodash": "^4.17.21", @@ -10434,19 +10436,19 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "node_modules/gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -10456,65 +10458,16 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gatsby-telemetry/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/gatsby-telemetry/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/gatsby-telemetry/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "engines": { - "node": ">=8" - } - }, "node_modules/gatsby-transformer-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.4.0.tgz", - "integrity": "sha512-UAh+Q+fVj92CJjIsHDS7rby+dWgmIzjfyXD7576xp9K5ALLT8sfshXyfTs1aLbTujb9pnOzTZ/qNE3xJMSQhTw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.5.0.tgz", + "integrity": "sha512-SAt20F/+dC+sOtUu4gUMOiyOxYOtF2QOOct1pPuUXeK8J4apy+OeTlJtuSCO14+y3vWgmAEMQ9WBw81dSgSJnQ==", "dependencies": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-plugin-utils": "^4.5.0", "probe-image-size": "^7.2.3", "semver": "^7.3.8", "sharp": "^0.31.3" @@ -10528,19 +10481,59 @@ } }, "node_modules/gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "dependencies": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" }, "engines": { "node": ">=18.0.0" } }, + "node_modules/gatsby/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/gatsby/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/gatsby/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/gatsby/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -10895,6 +10888,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "node_modules/hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -12177,17 +12175,6 @@ "node": ">=0.10.0" } }, - "node_modules/md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==", - "bin": { - "md5-file": "cli.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -16594,17 +16581,6 @@ "node": ">= 6" } }, - "node_modules/term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser": { "version": "5.15.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", @@ -17405,12 +17381,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "node_modules/webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "dependencies": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "node_modules/webpack/node_modules/@types/estree": { "version": "0.0.51", @@ -19159,9 +19132,9 @@ } }, "@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==" + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==" }, "@emotion/babel-plugin": { "version": "11.10.5", @@ -19365,14 +19338,14 @@ "integrity": "sha512-fTvrteVzuFUePhr4QYBGoK8G/YHLJ3IhF1HhKg0AxcFvZajJT7rM7ULdmKLSd2PkX44R3aaFZq1zDbmjbGGI+w==" }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "requires": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "@gatsbyjs/reach-router": { @@ -22215,13 +22188,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "requires": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -22269,9 +22242,9 @@ } }, "babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -22286,8 +22259,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" } }, "balanced-match": { @@ -23166,9 +23139,9 @@ } }, "create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "requires": { "@babel/runtime": "^7.20.7" } @@ -24876,9 +24849,9 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -24928,9 +24901,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -24940,7 +24913,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -24970,8 +24943,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -24980,14 +24953,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -25011,22 +24984,22 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-sharp": "^1.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-sharp": "^1.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -25043,11 +25016,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -25095,15 +25067,40 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" + }, + "dependencies": { + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } } }, "gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -25121,13 +25118,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -25149,17 +25146,18 @@ } }, "gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "requires": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -25171,14 +25169,14 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==" + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==" }, "gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "requires": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -25201,36 +25199,36 @@ } }, "gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "requires": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -25245,9 +25243,9 @@ } }, "gatsby-plugin-catch-links": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-5.4.0.tgz", - "integrity": "sha512-wQ0+lAYObBvn9pcLbUwYuDHqdXWmYxz8dJ+EFaNtWInYEgUSkv5bAp7Pr0Jin6Xlp4Bu3K5W8W8WNjY9FKqCig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-5.5.0.tgz", + "integrity": "sha512-ipTEQr6/69cNfzfC9tUGLqLtXNkbC1EsUwAeQjCNhD2lVCyhMMJt/q6k/AAmu/+fjv2Fu+e6jF0iCinxjqtEBg==", "requires": { "@babel/runtime": "^7.20.7", "escape-string-regexp": "^1.0.5" @@ -25261,77 +25259,70 @@ } }, "gatsby-plugin-image": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.4.0.tgz", - "integrity": "sha512-wfFEe/yaa8CqrtFGwbdBo2Eqyfdo5fvXZazGaP8ShysCHKBEAyf2oKcHvqAjdCmibb7eq7VIgJYNU876RA6IQA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.5.0.tgz", + "integrity": "sha512-zIOXPrWgcBFSQIyVIZjRpdpuA3dd02+qs43ysRYDVp2iYYZySHEpvw9ObhHuRnQ/blQ8C3PmQwdOs1j2s6wL1A==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.7", "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "camelcase": "^5.3.1", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } } }, "gatsby-plugin-manifest": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.4.0.tgz", - "integrity": "sha512-Jw1LUJxLnIoeGdbsKies/0NpKOganfBMDpusgIbYZzBENlsNcJTtlOFWfbExJFAutc2ZStDoQrch6AkOvwujBw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.5.0.tgz", + "integrity": "sha512-7980GND+weiPT1RKLTWrED/1CKqduui4lzT5ftPwz96sYjOJEextjtmJqSISQ/4U+NPrjoE1Tkorzg4jz1EuVw==", "requires": { "@babel/runtime": "^7.20.7", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "semver": "^7.3.8", "sharp": "^0.31.3" } }, "gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "requires": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.4.0.tgz", - "integrity": "sha512-QFGMP3skMyiLBx/1JGs296ZT0aWkzP2SsEp+5MA/Yg23T8Hrb/bBmxe+cAD0PoALQl9lmEA7NPawuh0q1HaGPw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.5.0.tgz", + "integrity": "sha512-XtRjproz7FT3df8HetkpKlUFfQfPu+KdCsyXwnlAu6vm94+86ZgN/6O4gioG8GLZvoOF/1Zud47xagBPbvzLLg==", "requires": { "@babel/runtime": "^7.20.7", "async": "^3.2.4", "bluebird": "^3.7.2", "debug": "^4.3.4", "filenamify": "^4.3.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-utils": "^4.5.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", "semver": "^7.3.8", @@ -25359,9 +25350,9 @@ } }, "gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "requires": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -25369,19 +25360,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" } }, "gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "requires": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -25396,49 +25387,55 @@ } }, "gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "requires": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==" + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==" }, "gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "requires": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" } }, "gatsby-source-filesystem": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.4.0.tgz", - "integrity": "sha512-vYJM5mJu3vJAo9x5i1k+teBNHi2Fn9aPIrF2zgzqMz6x3iAaila0rD3hMLhNBCzo+GosCnkkQW9g/Tk4OcR0gg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.5.0.tgz", + "integrity": "sha512-STuHuf3who/9Nx5NW00fpRnaob0TXB3YftrPJ1qnZ+N5pfT0hyOrRm1EhSvrDAlXm3qT45fWddVDFLpaMU8+8g==", "requires": { "@babel/runtime": "^7.20.7", "chokidar": "^3.5.3", "file-type": "^16.5.4", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "md5-file": "^5.0.0", - "mime": "^2.6.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", "xstate": "^4.34.0" + }, + "dependencies": { + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } } }, "gatsby-source-wordpress": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.4.1.tgz", - "integrity": "sha512-FpeG9kAgihCiwSM7OtniTGk60boFI/eOlBDqWTrXjAtpVPGEiJHRNHi1ZJUOLt5eKzJ6ODoTd2Ft95/gXeVFtA==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.5.0.tgz", + "integrity": "sha512-2xszu7shPFUDzJhxwiaOeC8oyK2/5NB96elV92UI+UU3xOMGw5HhXPdEjpPQeuQEcvYqHNMx0qCrVb3rNYghRQ==", "requires": { "@babel/runtime": "^7.20.7", "@rematch/core": "^1.4.0", @@ -25459,11 +25456,11 @@ "fast-json-stable-stringify": "^2.1.0", "file-type": "^15.0.1", "filesize": "^6.4.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-plugin-catch-links": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-source-filesystem": "^5.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-plugin-catch-links": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-source-filesystem": "^5.5.0", "glob": "^7.2.3", "got": "^11.8.6", "lodash": "^4.17.21", @@ -25543,83 +25540,47 @@ } }, "gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" - }, - "dependencies": { - "boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } } }, "gatsby-transformer-sharp": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.4.0.tgz", - "integrity": "sha512-UAh+Q+fVj92CJjIsHDS7rby+dWgmIzjfyXD7576xp9K5ALLT8sfshXyfTs1aLbTujb9pnOzTZ/qNE3xJMSQhTw==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.5.0.tgz", + "integrity": "sha512-SAt20F/+dC+sOtUu4gUMOiyOxYOtF2QOOct1pPuUXeK8J4apy+OeTlJtuSCO14+y3vWgmAEMQ9WBw81dSgSJnQ==", "requires": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "common-tags": "^1.8.2", - "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-plugin-utils": "^4.5.0", "probe-image-size": "^7.2.3", "semver": "^7.3.8", "sharp": "^0.31.3" } }, "gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "requires": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" } }, @@ -25871,6 +25832,11 @@ "has-symbols": "^1.0.2" } }, + "hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -26839,11 +26805,6 @@ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==" }, - "md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==" - }, "mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -30038,11 +29999,6 @@ } } }, - "term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" - }, "terser": { "version": "5.15.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", @@ -30609,12 +30565,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "requires": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "whatwg-url": { "version": "5.0.0", diff --git a/starters/gatsby-starter-wordpress-blog/package.json b/starters/gatsby-starter-wordpress-blog/package.json index 4ad429dc694c8..0544a40c32301 100644 --- a/starters/gatsby-starter-wordpress-blog/package.json +++ b/starters/gatsby-starter-wordpress-blog/package.json @@ -11,12 +11,12 @@ "@fontsource/merriweather": "^4.5.14", "@fontsource/montserrat": "^4.5.14", "@wordpress/block-library": "^7.19.0", - "gatsby": "^5.4.2", - "gatsby-plugin-image": "^3.4.0", - "gatsby-plugin-manifest": "^5.4.0", - "gatsby-plugin-sharp": "^5.4.0", - "gatsby-source-wordpress": "^7.4.1", - "gatsby-transformer-sharp": "^5.4.0", + "gatsby": "^5.5.0", + "gatsby-plugin-image": "^3.5.0", + "gatsby-plugin-manifest": "^5.5.0", + "gatsby-plugin-sharp": "^5.5.0", + "gatsby-source-wordpress": "^7.5.0", + "gatsby-transformer-sharp": "^5.5.0", "html-react-parser": "^3.0.8", "lodash": "^4.17.21", "react": "^18.2.0", diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index ffc95f852020a..1c9b1a8da0a63 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -9,7 +9,7 @@ "version": "0.1.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.4.2", + "gatsby": "^5.5.0", "react": "^18.2.0", "react-dom": "^18.2.0" } @@ -1945,9 +1945,9 @@ } }, "node_modules/@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==", "bin": { "partytown": "bin/partytown.cjs" } @@ -2015,14 +2015,14 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "dependencies": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0", @@ -4806,13 +4806,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" }, "engines": { "node": ">=18.0.0" @@ -4870,9 +4870,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -4887,8 +4887,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" }, "engines": { "node": ">=18.0.0" @@ -5900,9 +5900,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "dependencies": { "@babel/runtime": "^7.20.7" }, @@ -8040,16 +8040,16 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, "node_modules/fs-monkey": { @@ -8111,9 +8111,9 @@ } }, "node_modules/gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8124,7 +8124,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8154,8 +8154,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -8164,14 +8164,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -8195,21 +8195,21 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -8226,11 +8226,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -8278,7 +8277,7 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" }, @@ -8289,7 +8288,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.4.0" + "gatsby-sharp": "^1.5.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8297,9 +8296,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8318,13 +8317,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -8352,17 +8351,18 @@ } }, "node_modules/gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "dependencies": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -8377,17 +8377,17 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "dependencies": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -8415,12 +8415,12 @@ } }, "node_modules/gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" }, "engines": { @@ -8433,15 +8433,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "dependencies": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8451,11 +8451,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -8476,20 +8476,20 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "dependencies": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8501,9 +8501,9 @@ } }, "node_modules/gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "dependencies": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -8511,7 +8511,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" }, "engines": { "node": ">=18.0.0" @@ -8521,15 +8521,15 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "dependencies": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -8555,9 +8555,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "dependencies": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" @@ -8572,9 +8572,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "engines": { "node": ">=18.0.0" }, @@ -8585,9 +8585,9 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "dependencies": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" @@ -8597,19 +8597,19 @@ } }, "node_modules/gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8619,69 +8619,60 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", + "node_modules/gatsby-worker": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" + "@babel/core": "^7.20.7", + "@babel/runtime": "^7.20.7", + "fs-extra": "^11.1.0", + "signal-exit": "^3.0.7" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "node_modules/gatsby/node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "engines": { - "node": ">=6" + "node": ">= 0.6" } }, - "node_modules/gatsby-telemetry/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "node_modules/gatsby/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "ms": "2.1.2" }, "engines": { - "node": ">=8" - } - }, - "node_modules/gatsby-telemetry/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "engines": { - "node": ">=8" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", - "dependencies": { - "@babel/core": "^7.20.7", - "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", - "signal-exit": "^3.0.7" + "node_modules/gatsby/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">=18.0.0" + "node": ">=10.0.0" } }, + "node_modules/gatsby/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9011,6 +9002,11 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "node_modules/hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -10217,17 +10213,6 @@ "node": ">=0.10.0" } }, - "node_modules/md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==", - "bin": { - "md5-file": "cli.js" - }, - "engines": { - "node": ">=10.13.0" - } - }, "node_modules/mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -13079,9 +13064,9 @@ } }, "node_modules/sharp/node_modules/node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -13790,17 +13775,6 @@ "node": ">= 6" } }, - "node_modules/term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/terser": { "version": "5.15.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", @@ -14491,12 +14465,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "node_modules/webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "dependencies": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "node_modules/webpack/node_modules/@types/estree": { "version": "0.0.51", @@ -16232,9 +16203,9 @@ } }, "@builder.io/partytown": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.5.4.tgz", - "integrity": "sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A==" + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@builder.io/partytown/-/partytown-0.7.5.tgz", + "integrity": "sha512-Zbr2Eo0AQ4yzmQr/36/h+6LKjmdVBB3Q5cGzO6rtlIKB/IOpbQVUZW+XAnhpJmJr9sIF97OZjgbhG9k7Sjn4yw==" }, "@eslint/eslintrc": { "version": "0.4.3", @@ -16281,14 +16252,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.4.0.tgz", - "integrity": "sha512-awi7pNgqaR80+9CJcj5UUC4lZDpcoH2fJItqIHC+7VJLxQDxF27vYF8fMgUvqXjjpctro25jMtedd1/4u3G4Hg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.5.0.tgz", + "integrity": "sha512-JF4+8KlDGYH0F+AbUSbwy8cpd0DH2LX45g4ZTVsmMd/o7Rle1PzoBYyJ8WgVsyLpuhMJ9wdKhsEDMeiOO5j8Yw==", "requires": { "@babel/runtime": "^7.20.7", "@parcel/namer-default": "2.8.2", "@parcel/plugin": "2.8.2", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "@gatsbyjs/reach-router": { @@ -18320,13 +18291,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.4.0.tgz", - "integrity": "sha512-+3e51jNoqtphSSOsES4FzlY5xOQXlsliw2daYzhP7QdfXB3ffBWDskqrsCv+9mug4VyWqIy7YXSQY4osEBA98A==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.5.0.tgz", + "integrity": "sha512-KeTeX0UkvSTPaJ0BmH9U0t0nNYI9EvqdwkvSEaxJVFsJ1m5f7I9ypJHm0Ob8rE54//j2eNcSU0UN9f6B5kJMhA==", "requires": { "@babel/runtime": "^7.20.7", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.4.0" + "gatsby-core-utils": "^4.5.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -18374,9 +18345,9 @@ } }, "babel-preset-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.4.0.tgz", - "integrity": "sha512-InyNQmv7ov5r0ZgXpw4vrgooKf5419/kdced0dqWgBOlm5/RIhRpyGhzVO3tfw744HhaagO+8NXi6t17AvkWUQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.5.0.tgz", + "integrity": "sha512-1EDSr+3OzD3jLxW4YzL5qMSV7WnJQfb+OjfZdlSFyUJRrrtAbbMAkTLY1yupqC3FaI5B6N/dyMiE5mQQuxOIIg==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -18391,8 +18362,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.4.0", - "gatsby-legacy-polyfills": "^3.4.0" + "gatsby-core-utils": "^4.5.0", + "gatsby-legacy-polyfills": "^3.5.0" } }, "balanced-match": { @@ -19158,9 +19129,9 @@ } }, "create-gatsby": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz", - "integrity": "sha512-WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.5.0.tgz", + "integrity": "sha512-wRLAkmKlJZNwNqVxXCgayAdvAtUjRKP8vr9ZRt2FYXyqZQmQtzXVDn8aekDlPs720z33HBajAYa+xCvl8pZhDA==", "requires": { "@babel/runtime": "^7.20.7" } @@ -20725,9 +20696,9 @@ "integrity": "sha512-kSxoARUDn4F2RPXX48UXnaFKwVU7Ivd/6qpzZL29MCDmr9sTvybv4gFCp+qaI4fM9m0z9fgz/yJvi56GAz+BZg==" }, "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", + "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -20777,9 +20748,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.4.2.tgz", - "integrity": "sha512-w3ATgpruzMyXgUrbEO99zE44mvG+BDW1V6Ns9hOMMALCdimEHycK5ml1XxgyDZwaOcTrsaOFwDc7MI+b07epyA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.5.0.tgz", + "integrity": "sha512-sSdLS80riRk+8arSO4QVY3uz4Di0hVkEudtrraKRhQCYE3LEzK8be0IVsoQclvZ6x8e1ep4AZa6TmRq0QVDqPA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -20789,7 +20760,7 @@ "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@babel/types": "^7.20.7", - "@builder.io/partytown": "^0.5.2", + "@builder.io/partytown": "^0.7.4", "@gatsbyjs/reach-router": "^2.0.0", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -20819,8 +20790,8 @@ "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.4.0", - "babel-preset-gatsby": "^3.4.0", + "babel-plugin-remove-graphql-queries": "^5.5.0", + "babel-preset-gatsby": "^3.5.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "browserslist": "^4.21.4", @@ -20829,14 +20800,14 @@ "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", - "cookie": "^0.4.1", + "cookie": "^0.5.0", "core-js": "^3.22.3", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", "date-fns": "^2.29.3", - "debug": "^3.2.7", + "debug": "^4.3.4", "deepmerge": "^4.2.2", "detect-port": "^1.5.1", "devcert": "^1.2.2", @@ -20860,22 +20831,22 @@ "file-loader": "^6.2.0", "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", - "fs-extra": "^10.1.0", - "gatsby-cli": "^5.4.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-graphiql-explorer": "^3.4.0", - "gatsby-legacy-polyfills": "^3.4.0", - "gatsby-link": "^5.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-parcel-config": "1.4.0", - "gatsby-plugin-page-creator": "^5.4.0", - "gatsby-plugin-typescript": "^5.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-react-router-scroll": "^6.4.0", - "gatsby-script": "^2.4.0", - "gatsby-sharp": "^1.4.0", - "gatsby-telemetry": "^4.4.0", - "gatsby-worker": "^2.4.0", + "fs-extra": "^11.1.0", + "gatsby-cli": "^5.5.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-graphiql-explorer": "^3.5.0", + "gatsby-legacy-polyfills": "^3.5.0", + "gatsby-link": "^5.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-parcel-config": "^1.5.0", + "gatsby-plugin-page-creator": "^5.5.0", + "gatsby-plugin-typescript": "^5.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-react-router-scroll": "^6.5.0", + "gatsby-script": "^2.5.0", + "gatsby-sharp": "^1.5.0", + "gatsby-telemetry": "^4.5.0", + "gatsby-worker": "^2.5.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -20892,11 +20863,10 @@ "latest-version": "^7.0.0", "lmdb": "2.5.3", "lodash": "^4.17.21", - "md5-file": "^5.0.0", "meant": "^1.0.3", "memoizee": "^0.4.15", "micromatch": "^4.0.5", - "mime": "^2.6.0", + "mime": "^3.0.0", "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", @@ -20944,15 +20914,40 @@ "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", - "webpack-virtual-modules": "^0.3.2", + "webpack-virtual-modules": "^0.5.0", "xstate": "^4.35.1", "yaml-loader": "^0.8.0" + }, + "dependencies": { + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } } }, "gatsby-cli": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz", - "integrity": "sha512-3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.5.0.tgz", + "integrity": "sha512-BLWk1iw7f4XCAWiRXfrINPgqBHLbCrNff7tkvAMnyJt6l2IwbwxQVA0zcZ6TRGC3mJQH+tU6JDH9OPlnW2yDsw==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.7", @@ -20970,13 +20965,13 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.4.0", + "create-gatsby": "^3.5.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.7.0", @@ -20998,17 +20993,18 @@ } }, "gatsby-core-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz", - "integrity": "sha512-/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.5.0.tgz", + "integrity": "sha512-8ckCNXB7iasqLLoBTJLDzXwUcJ/cNUZVHo3+3cyMA9CLc8pfZiXtlp5qaOl0J+Q1qdorfENAnTvNEddXABfIZw==", "requires": { "@babel/runtime": "^7.20.7", "ci-info": "2.0.0", "configstore": "^5.0.1", "fastq": "^1.13.0", "file-type": "^16.5.3", - "fs-extra": "^10.1.0", + "fs-extra": "^11.1.0", "got": "^11.8.5", + "hash-wasm": "^4.9.0", "import-from": "^4.0.0", "lmdb": "2.5.3", "lock": "^1.1.0", @@ -21020,14 +21016,14 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.4.0.tgz", - "integrity": "sha512-rNTLw+P3qcbLKBGF+jRhZ2MerQw7Mq4VsmEaBVsvbEnlBVrz5N45ArV5yliqJ7e7pfvhPfkIbVlUhVQVHg25Cw==" + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.5.0.tgz", + "integrity": "sha512-cNv7s7225kwSsbzW7i+b6Do6tPXS68CnhMY3auyMUQMsZpACveo8F1i8tYJ/Hjh7s51B4k01mletPg9po6BQ8g==" }, "gatsby-legacy-polyfills": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.4.0.tgz", - "integrity": "sha512-5ORvRO1ZpxqM4U9W1Da/ewYJpEm6/tSqAhw11yOLqf7GjJYW1Tc3GBPeY3EBvpU/GTAmQM6k9exS1xESAOrBAw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.5.0.tgz", + "integrity": "sha512-hnIzRdZPhN7A8eo8jsvnvkK2faGAAh9a7O0h0FwKYz7EawoJZGsrCkc9LvYqM3H7uf7OtathxZUGm3IasflMjg==", "requires": { "@babel/runtime": "^7.20.7", "core-js-compat": "3.9.0" @@ -21050,36 +21046,36 @@ } }, "gatsby-link": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.4.0.tgz", - "integrity": "sha512-7JXCCEnlehmJ1MB8Y2/I3UxE8a3cKKOsGMX1DtuMs7t3StdOzBMjaiM2nzLUNRCLGBDpSE2kpk55aB2h+Xq3+Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.5.0.tgz", + "integrity": "sha512-3Blh7I+JE7o81XYM3AxqW/udFSS1aissxYEE9jUSfoGWevrvpSSg5ZGz+1XapI99Y4bYMpx7sUcjS2f6OycReQ==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.4.0", + "gatsby-page-utils": "^3.5.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.4.0.tgz", - "integrity": "sha512-e/cIpnlQlACq30Ig5eS3ZQ7iTRuZyf3m93epW0MioQ8j9dYZkFJ/cHY1CKsTRZzi8FlZuy8wVr2YMkEzZveUlw==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.5.0.tgz", + "integrity": "sha512-y0JZcz88rh5uFlf6dEzT1oKasAvtUM64PHn6GWw9iq2ZV3tWzASd8ZHBIXoi9k2iJO/6atO2InpN72dhrrHrUQ==", "requires": { "@babel/runtime": "^7.20.7", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.4.0", + "gatsby-core-utils": "^4.5.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.4.0.tgz", - "integrity": "sha512-6gLZzOyzjKtWi6uVp3FGnDBobUpi7+UexF3wutPq6qnDgWp2q+LwSoDjI50jX9K0Hkumln0XD+VXkdA8JE0juQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.5.0.tgz", + "integrity": "sha512-quPQaEuaihMmD5K2t7DtVW00HDWfGL4qbqDZ6bLuED8aQ57Y91fizrWiwvM2lgX39/B6fx6Fu0t93/+2QhYkpg==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.4.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.5.0", "@parcel/bundler-default": "2.8.2", "@parcel/compressor-raw": "2.8.2", "@parcel/namer-default": "2.8.2", @@ -21094,28 +21090,28 @@ } }, "gatsby-plugin-page-creator": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.4.0.tgz", - "integrity": "sha512-OQ1bcUK/21e3OAUZNvm82Wkr8QtKzhD4nHThBHGIMtvfZN2dmzPqkds1b62jLGhaVGhevupBjBE00nr56IR/EA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.5.0.tgz", + "integrity": "sha512-DJzhxKkm7SrjmkyxdYupRa0IY7Y4Qu99f/dyvsLRkihcUjDEeU+5bxBIyqjO8mFXtfok2CYKf/Ts6F8ZR7nVHg==", "requires": { "@babel/runtime": "^7.20.7", "@babel/traverse": "^7.20.10", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-page-utils": "^3.4.0", - "gatsby-plugin-utils": "^4.4.0", - "gatsby-telemetry": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-page-utils": "^3.5.0", + "gatsby-plugin-utils": "^4.5.0", + "gatsby-telemetry": "^4.5.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.4.0.tgz", - "integrity": "sha512-BQqt7Sj9JRBOOq7sClwNNdAdtRkBi9Z/TkmdnWNQMeR4YcGI0GvEhSwOuQm4V9FeCFDnbWxmnZ7w9R7Bjl8NVA==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.5.0.tgz", + "integrity": "sha512-qcH+3Xax80IcTuhTwO/ncL/Vo2jSs5EjaJrl8gJKhRx3ayCZfwQVg8DwbK032cmTPN9KbPJICG+OhGz/9LQVMQ==", "requires": { "@babel/core": "^7.20.7", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -21123,19 +21119,19 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.7", - "babel-plugin-remove-graphql-queries": "^5.4.0" + "babel-plugin-remove-graphql-queries": "^5.5.0" } }, "gatsby-plugin-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.4.0.tgz", - "integrity": "sha512-oS96PobrmXyOIX6Cqo6RpHykBC8SbIYF6iZcIastR+bcFQRWojFaHP1euFHQ3sVyeVc9SyxBGDHRS5WG+SvAog==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.5.0.tgz", + "integrity": "sha512-FNWLzlrjwBb5NGtpHB72DC8dwCGmBAqJW5vvhnmY7eH+h178NidSs8JI7ntHu2Dtl8sOFYua+2n5eAN7HkEY8Q==", "requires": { "@babel/runtime": "^7.20.7", "fastq": "^1.13.0", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", - "gatsby-sharp": "^1.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", + "gatsby-sharp": "^1.5.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.7.0", @@ -21150,92 +21146,56 @@ } }, "gatsby-react-router-scroll": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.4.0.tgz", - "integrity": "sha512-xSOS1V74MZZ5CI69dgZWGv/EKjd8Gody/nZMF+vJNTBIvhSPdzTwxA+awAujNdg8WPar40YO04q7f+YRZ6IASQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.5.0.tgz", + "integrity": "sha512-waXjQdMvANl30IBnN8P/yNQJfp0qhV3pbUiL5Ufz+Wru/HQHyYO7NCQknkwoKr5nbYaqirkbJVVPV9pxEZe2vQ==", "requires": { "@babel/runtime": "^7.20.7", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.4.0.tgz", - "integrity": "sha512-AgqySGkXNFAqyD6f4Kw4/ipAP6Vm/1B2UkzispDesOF/53d35/URdONm8FMMVfGyl7qVhiFAZD+hC+b/t3/7Fg==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.5.0.tgz", + "integrity": "sha512-3yRsDDeDObylwZGcGQhAuNiywwyIVgFWfAHy/eB0gd2bEwfRfyO4Zf2iQopxxmgk/0AEf3L92FB2bvQNPRCRKA==", "requires": {} }, "gatsby-sharp": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.4.0.tgz", - "integrity": "sha512-41NY4mcgUsLs8q0XHgjLblQqQ2Ju6cn01b91g8KuVcPeXzZrgvCvCloZF4Ofxf7+CIYRSLVHizhtpPtLyzA6eg==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.5.0.tgz", + "integrity": "sha512-+/lksp7lpd732COWY92E5rmRdZjI2BGS68p3FTndOXH/g0/R67JMGWOFiY7Ayal33EETcBmkYpFyGl8hnZ7S3Q==", "requires": { "@types/sharp": "^0.31.0", "sharp": "^0.31.3" } }, "gatsby-telemetry": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz", - "integrity": "sha512-rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.5.0.tgz", + "integrity": "sha512-0lus63TNQXjlr4IwCyxtW+m7eP6RkOpzLB+KJ1eohuCTVPFsmxhtr4N1Kjub/Ip0IG1RtzNA0LW0xPg7ykJa7g==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.7", "@turist/fetch": "^7.2.0", "@turist/time": "^0.0.2", - "boxen": "^4.2.0", + "boxen": "^5.1.2", "configstore": "^5.0.1", - "fs-extra": "^10.1.0", - "gatsby-core-utils": "^4.4.0", + "fs-extra": "^11.1.0", + "gatsby-core-utils": "^4.5.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.7" - }, - "dependencies": { - "boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - } } }, "gatsby-worker": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.4.0.tgz", - "integrity": "sha512-CsHPFQHZhwOpxizX5C+OKaYyOx8NLrLR2XC/XsrgqIy5hY3YJMeQFBw8gK15nMCjyO4BexhZejPKPgZ+Gs/IcA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.5.0.tgz", + "integrity": "sha512-Aq39gc8InOSP/QpwM6h6haoUiiv1g4npt8txfkW8rOErOEo+noobreJMfHAbuni0zKUiz2B2cIlYn1DUdealWg==", "requires": { "@babel/core": "^7.20.7", "@babel/runtime": "^7.20.7", - "fs-extra": "^10.0.0", + "fs-extra": "^11.1.0", "signal-exit": "^3.0.7" } }, @@ -21467,6 +21427,11 @@ "has-symbols": "^1.0.2" } }, + "hash-wasm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/hash-wasm/-/hash-wasm-4.9.0.tgz", + "integrity": "sha512-7SW7ejyfnRxuOc7ptQHSf4LDoZaWOivfzqw+5rpcQku0nHfmicPKE51ra9BiRLAmT8+gGLestr1XroUkqdjL6w==" + }, "hasha": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz", @@ -22363,11 +22328,6 @@ "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==" }, - "md5-file": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-5.0.0.tgz", - "integrity": "sha512-xbEFXCYVWrSx/gEKS1VPlg84h/4L20znVIulKw6kMfmBUAZNAnF00eczz9ICMl+/hjQGo5KSXRxbL/47X3rmMw==" - }, "mdn-data": { "version": "2.0.14", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", @@ -24381,9 +24341,9 @@ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" }, "node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" } } }, @@ -24913,11 +24873,6 @@ } } }, - "term-size": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", - "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" - }, "terser": { "version": "5.15.1", "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", @@ -25422,12 +25377,9 @@ "integrity": "sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA==" }, "webpack-virtual-modules": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.3.2.tgz", - "integrity": "sha512-RXQXioY6MhzM4CNQwmBwKXYgBs6ulaiQ8bkNQEl2J6Z+V+s7lgl/wGvaI/I0dLnYKB8cKsxQc17QOAVIphPLDw==", - "requires": { - "debug": "^3.0.0" - } + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "whatwg-url": { "version": "5.0.0", diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 1543c205aba28..8439ea39b5aee 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -13,7 +13,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^5.4.2", + "gatsby": "^5.5.0", "react": "^18.2.0", "react-dom": "^18.2.0" },
f57788810b92978bc0d30c0b4b14ae2a14f6a032
2020-07-30 20:35:18
Mikhail Novikov
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index 38cfd4dcea341..b8aa84e41d4b1 100644 --- a/packages/gatsby-admin/CHANGELOG.md +++ b/packages/gatsby-admin/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.104](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.104) (2020-07-30) + +### Features + +- **gatsby-admin:** add favicon ([#26121](https://github.com/gatsbyjs/gatsby/issues/26121)) ([0211c05](https://github.com/gatsbyjs/gatsby/commit/0211c05)) + ## [0.1.103](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.103) (2020-07-29) **Note:** Version bump only for package gatsby-admin diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index dcdc081d0f9d7..805549b61d252 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-admin", - "version": "0.1.103", + "version": "0.1.104", "main": "index.js", "author": "Max Stoiber", "license": "MIT", @@ -18,7 +18,7 @@ "@typescript-eslint/parser": "^2.28.0", "csstype": "^2.6.10", "formik": "^2.1.4", - "gatsby": "^2.24.14", + "gatsby": "^2.24.15", "gatsby-interface": "0.0.173", "gatsby-plugin-typescript": "^2.4.16", "gatsby-source-graphql": "^2.6.2", diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index 12e77374780a5..5f40e5e8b6ada 100644 --- a/packages/gatsby-cli/CHANGELOG.md +++ b/packages/gatsby-cli/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.12.68](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.68) (2020-07-30) + +**Note:** Version bump only for package gatsby-cli + ## [2.12.67](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.67) (2020-07-28) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index fb0d3ebc59262..9de8f7c0a242a 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.67", + "version": "2.12.68", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "cli.js" @@ -24,8 +24,8 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.3.14", - "gatsby-recipes": "^0.1.57", - "gatsby-telemetry": "^1.3.23", + "gatsby-recipes": "^0.1.58", + "gatsby-telemetry": "^1.3.24", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", "ink-spinner": "^3.1.0", diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md index e2af4555ddfa2..144ccd8a464f6 100644 --- a/packages/gatsby-plugin-sharp/CHANGELOG.md +++ b/packages/gatsby-plugin-sharp/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.6.24](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.6.24) (2020-07-30) + +**Note:** Version bump only for package gatsby-plugin-sharp + ## [2.6.23](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.6.23) (2020-07-28) ### Bug Fixes diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index cf7c0c7e3d340..5c6e2100240ef 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sharp", "description": "Wrapper of the Sharp image manipulation library for Gatsby plugins", - "version": "2.6.23", + "version": "2.6.24", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md index c0734a27a760f..29d89bc2f5fcf 100644 --- a/packages/gatsby-recipes/CHANGELOG.md +++ b/packages/gatsby-recipes/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.58](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.58) (2020-07-30) + +**Note:** Version bump only for package gatsby-recipes + ## [0.1.57](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.57) (2020-07-28) **Note:** Version bump only for package gatsby-recipes diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index 59ff146890cca..ccd0602c3e4da 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.57", + "version": "0.1.58", "author": "Kyle Mathews <[email protected]>", "main": "dist/index.js", "bugs": { @@ -32,7 +32,7 @@ "express-graphql": "^0.9.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.3.14", - "gatsby-telemetry": "^1.3.23", + "gatsby-telemetry": "^1.3.24", "glob": "^7.1.6", "graphql": "^14.6.0", "graphql-compose": "^6.3.8", diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md index 4b4ebe89572aa..35ee929ef4777 100644 --- a/packages/gatsby-remark-images/CHANGELOG.md +++ b/packages/gatsby-remark-images/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.3.23](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.3.23) (2020-07-30) + +**Note:** Version bump only for package gatsby-remark-images + ## [3.3.22](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.3.22) (2020-07-28) ### Bug Fixes diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json index a8177aea60340..bdb1a8658e3a2 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-images", "description": "Processes images in markdown so they can be used in the production build.", - "version": "3.3.22", + "version": "3.3.23", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index 312831b84f4c8..25c584e8e9f81 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/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.3.34](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.34) (2020-07-30) + +### Bug Fixes + +- **gatsby-source-contentful:** support height parameter for srcset ([#25776](https://github.com/gatsbyjs/gatsby/issues/25776)) ([5148b3a](https://github.com/gatsbyjs/gatsby/commit/5148b3a)) + ## [2.3.33](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.33) (2020-07-28) **Note:** Version bump only for package gatsby-source-contentful diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index 3dffcd83b68e5..8d1b174e0b90d 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "2.3.33", + "version": "2.3.34", "author": "Marcus Ericsson <[email protected]> (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "deep-map": "^1.5.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.3.14", - "gatsby-plugin-sharp": "^2.6.23", + "gatsby-plugin-sharp": "^2.6.24", "gatsby-source-filesystem": "^2.3.23", "is-online": "^8.4.0", "json-stringify-safe": "^5.0.1", diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md index 0b20895d6b6fb..691a9133131ab 100644 --- a/packages/gatsby-telemetry/CHANGELOG.md +++ b/packages/gatsby-telemetry/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.24](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.24) (2020-07-30) + +### Features + +- **telemetry:** Telemetry flush events fixes and covert more of telemetry to TypeScript ([#25956](https://github.com/gatsbyjs/gatsby/issues/25956)) ([12f124b](https://github.com/gatsbyjs/gatsby/commit/12f124b)) + ## [1.3.23](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.23) (2020-07-24) **Note:** Version bump only for package gatsby-telemetry diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json index 3dea22e5dc236..83d55b2de6476 100644 --- a/packages/gatsby-telemetry/package.json +++ b/packages/gatsby-telemetry/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-telemetry", "description": "Gatsby Telemetry", - "version": "1.3.23", + "version": "1.3.24", "author": "Jarmo Isotalo <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-sharp/CHANGELOG.md b/packages/gatsby-transformer-sharp/CHANGELOG.md index 54fa1b4509204..b849c570399ac 100644 --- a/packages/gatsby-transformer-sharp/CHANGELOG.md +++ b/packages/gatsby-transformer-sharp/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.5.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.5.12) (2020-07-30) + +**Note:** Version bump only for package gatsby-transformer-sharp + ## [2.5.11](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.5.11) (2020-07-09) **Note:** Version bump only for package gatsby-transformer-sharp diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index ab08a296ded5a..d79fb46a939a2 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sharp", "description": "Gatsby transformer plugin for images using Sharp", - "version": "2.5.11", + "version": "2.5.12", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md index bdaf4fd05857c..222bcb0e68d19 100644 --- a/packages/gatsby-transformer-sqip/CHANGELOG.md +++ b/packages/gatsby-transformer-sqip/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.3.24](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.24) (2020-07-30) + +**Note:** Version bump only for package gatsby-transformer-sqip + ## [2.3.23](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.23) (2020-07-28) **Note:** Version bump only for package gatsby-transformer-sqip diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json index 1217c76c8717a..1521af22497f5 100644 --- a/packages/gatsby-transformer-sqip/package.json +++ b/packages/gatsby-transformer-sqip/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sqip", "description": "Generates geometric primitive version of images", - "version": "2.3.23", + "version": "2.3.24", "author": "Benedikt Rötsch <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,7 +10,7 @@ "@babel/runtime": "^7.10.3", "bluebird": "^3.7.2", "fs-extra": "^8.1.0", - "gatsby-plugin-sharp": "^2.6.23", + "gatsby-plugin-sharp": "^2.6.24", "md5-file": "^4.0.0", "mini-svg-data-uri": "^1.2.3", "p-queue": "^2.4.2", diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 74f97efbc701d..8ddf8777b1ca6 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.24.15](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.24.15) (2020-07-30) + +### Bug Fixes + +- **gatsby:** Resolve node mutations in waiting state ([#26138](https://github.com/gatsbyjs/gatsby/issues/26138)) ([f9e12cc](https://github.com/gatsbyjs/gatsby/commit/f9e12cc)) + +### Features + +- **gatsby-telemetry:** Track if cache was purged ([#26096](https://github.com/gatsbyjs/gatsby/issues/26096)) ([495fd73](https://github.com/gatsbyjs/gatsby/commit/495fd73)) + ## [2.24.14](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.24.14) (2020-07-29) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 85943aa6869bb..0da18915d737b 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.24.14", + "version": "2.24.15", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js" @@ -71,7 +71,7 @@ "find-cache-dir": "^3.3.1", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.67", + "gatsby-cli": "^2.12.68", "gatsby-core-utils": "^1.3.14", "gatsby-graphiql-explorer": "^0.4.12", "gatsby-legacy-polyfills": "^0.0.2", @@ -79,7 +79,7 @@ "gatsby-plugin-page-creator": "^2.3.19", "gatsby-plugin-typescript": "^2.4.16", "gatsby-react-router-scroll": "^3.0.12", - "gatsby-telemetry": "^1.3.23", + "gatsby-telemetry": "^1.3.24", "glob": "^7.1.6", "got": "8.3.2", "graphql": "^14.6.0",
0214a19fb3fb513c6b5faf67c540e1be0c4f0e8c
2023-03-29 15:41:52
benomatis
chore(docs): correct redundant closing brackets in adding-analytics.md (#37803)
false
correct redundant closing brackets in adding-analytics.md (#37803)
chore
diff --git a/docs/docs/how-to/adding-common-features/adding-analytics.md b/docs/docs/how-to/adding-common-features/adding-analytics.md index eea23e77c9307..5967244899a3e 100644 --- a/docs/docs/how-to/adding-common-features/adding-analytics.md +++ b/docs/docs/how-to/adding-common-features/adding-analytics.md @@ -20,7 +20,7 @@ Gatsby has a built-in [Gatsby Script Component](/docs/reference/built-in-compone ## Guides to common analytics tools -- [Google Analytics (using gtag.js)](/plugins/gatsby-plugin-google-gtag/)) +- [Google Analytics (using gtag.js)](/plugins/gatsby-plugin-google-gtag/) - [Google Tag Manager](/plugins/gatsby-plugin-google-tagmanager/) - [Segment](/plugins/gatsby-plugin-segment-js)
857e9e330b6d40ec6de6936e8cc495bf78bc4650
2019-04-13 02:50:40
Raiymbek Mustazhapov
fix(cpu-core-count): fallback to generic Node.JS method if system specific call fails (#13294)
false
fallback to generic Node.JS method if system specific call fails (#13294)
fix
diff --git a/packages/gatsby/src/utils/__tests__/physical-cpu-count.js b/packages/gatsby/src/utils/__tests__/physical-cpu-count.js new file mode 100644 index 0000000000000..db417440839b5 --- /dev/null +++ b/packages/gatsby/src/utils/__tests__/physical-cpu-count.js @@ -0,0 +1,71 @@ +jest.mock(`child_process`) +jest.mock(`os`) +let os +function mockPlatform(platform) { + os.platform.mockImplementation(() => platform) +} + +describe(`physical-cpu-count`, () => { + beforeEach(() => { + jest.resetModules() + os = require(`os`) + os.cpus.mockImplementation(() => [{ model: `Test` }]) + }) + + it.each([`linux`, `darwin`])( + `should return correct CPU count on %s`, + platform => { + const cProc = require(`child_process`) + cProc.execSync.mockImplementation(() => `4`) + mockPlatform(platform) + const pcc = require(`../physical-cpu-count`) + expect(pcc).toBe(4) + } + ) + + it.each([`linux`, `darwin`])( + `should return fallback CPU count on %s when childProcess fails`, + platform => { + const cProc = require(`child_process`) + cProc.execSync.mockImplementation(() => `4`) + mockPlatform(platform) + const pcc = require(`../physical-cpu-count`) + expect(pcc).toBe(4) + } + ) + + it(`should return correct CPU count on Windows`, () => { + const cProc = require(`child_process`) + os.cpus.mockImplementation(() => [{ model: `Test` }]) + cProc.execSync.mockImplementation( + () => `NumberOfCores + 4 + ` + ) + mockPlatform(`win32`) + const pcc = require(`../physical-cpu-count`) + expect(pcc).toBe(4) + }) + + it(`should return fallback CPU count on Windows when childProcess fails`, () => { + const cProc = require(`child_process`) + cProc.execSync.mockImplementation(() => { + throw new Error(`Fail!`) + }) + mockPlatform(`win32`) + const pcc = require(`../physical-cpu-count`) + expect(pcc).toBe(1) + }) + + it(`should check for hyperthreading when intel is the processor`, () => { + const cProc = require(`child_process`) + cProc.execSync.mockImplementation(() => { + throw new Error(`Fail!`) + }) + + os.cpus.mockImplementation(() => [{ model: `Intel` }, { model: `Intel` }]) + mockPlatform(`linux`) + const pcc = require(`../physical-cpu-count`) + expect(pcc).toBe(1) + }) +}) diff --git a/packages/gatsby/src/utils/cpu-core-count.js b/packages/gatsby/src/utils/cpu-core-count.js index f52359ebf68cc..4ebfcd7b2c846 100644 --- a/packages/gatsby/src/utils/cpu-core-count.js +++ b/packages/gatsby/src/utils/cpu-core-count.js @@ -6,7 +6,7 @@ const cpuCoreCount = (useEnvVar = false) => { try { - let coreCount = require(`physical-cpu-count`) || 1 + let coreCount = require(`./physical-cpu-count`) || 1 if (!useEnvVar) { // Return the physical CPU count, diff --git a/packages/gatsby/src/utils/physical-cpu-count.js b/packages/gatsby/src/utils/physical-cpu-count.js new file mode 100644 index 0000000000000..d6d0bd6b3218b --- /dev/null +++ b/packages/gatsby/src/utils/physical-cpu-count.js @@ -0,0 +1,55 @@ +// Forked from physical-cpu-count package from npm +const os = require(`os`) +const childProcess = require(`child_process`) + +function exec(command) { + const output = childProcess.execSync(command, { encoding: `utf8` }) + return output +} + +/* + * Fallback if child process fails to receive CPU count + */ +function fallbackToNodeJSCheck() { + const cores = os.cpus().filter(function(cpu, index) { + const hasHyperthreading = cpu.model.includes(`Intel`) + const isOdd = index % 2 === 1 + return !hasHyperthreading || isOdd + }) + + return cores.length +} + +const platform = os.platform() + +function getPhysicalCpuCount() { + try { + if (platform === `linux`) { + const output = exec( + `lscpu -p | egrep -v "^#" | sort -u -t, -k 2,4 | wc -l` + ) + return Number(output.trim()) + } + + if (platform === `darwin`) { + const output = exec(`sysctl -n hw.physicalcpu_max`) + return Number(output.trim()) + } + + if (platform === `win32`) { + const output = exec(`WMIC CPU Get NumberOfCores`) + return output + .replace(/\r/g, ``) + .split(`\n`) + .map(line => Number(line)) + .filter(value => !isNaN(value)) + .reduce((sum, number) => sum + number, 0) + } + } catch (err) { + // carry on + } + + return fallbackToNodeJSCheck() +} + +module.exports = getPhysicalCpuCount()
a07bc276b3d8c60a7403e5b23eb4fa5fc1beef3d
2020-10-26 14:14:22
renovate[bot]
chore(deps): update dependency @types/node to ^12.19.1 (#27647)
false
update dependency @types/node to ^12.19.1 (#27647)
chore
diff --git a/package.json b/package.json index adeba93d22e90..fe857e027444c 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "@types/jest": "^24.9.1", "@types/joi": "^14.3.4", "@types/lodash": "^4.14.162", - "@types/node": "^12.12.68", + "@types/node": "^12.19.1", "@types/node-fetch": "^2.5.7", "@types/normalize-path": "^3.0.0", "@types/react": "^16.9.53", diff --git a/yarn.lock b/yarn.lock index 7cc3cc8922318..95642db7191d0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3902,10 +3902,10 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-14.11.2.tgz#2de1ed6670439387da1c9f549a2ade2b0a799256" integrity sha512-jiE3QIxJ8JLNcb1Ps6rDbysDhN4xa8DJJvuC9prr6w+1tIh+QAbYyNF3tyiZNLDBIuBCf4KEcV2UvQm/V60xfA== -"@types/node@^12.12.68": - version "12.12.68" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.68.tgz#dd5acf4a52a458ff1d9ef4fd66406fba0afbbb33" - integrity sha512-3RW2s24ewB7F9dAHvgb9FRvNHn6nO9IK6Eaknbz7HTOe2a5GVne5XbUh5+YA+kcCn67glyHhClUUdFP73LWrgQ== +"@types/node@^12.19.1": + version "12.19.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.19.1.tgz#303f74c8a2b35644594139e948b2be470ae1186f" + integrity sha512-/xaVmBBjOGh55WCqumLAHXU9VhjGtmyTGqJzFBXRWZzByOXI5JAJNx9xPVGEsNizrNwcec92fQMj458MWfjN1A== "@types/node@^8.5.7": version "8.10.59"
b691b69e8e2183a50fa6ebc61876303497e0c362
2020-12-17 19:32:26
Sidhartha Chatterjee
chore(gatsby-source-npm-package-search): Upgrade algoliasearch (#28671)
false
Upgrade algoliasearch (#28671)
chore
diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json index 5441d0f5d612d..ae4d67b2ebc09 100644 --- a/packages/gatsby-source-npm-package-search/package.json +++ b/packages/gatsby-source-npm-package-search/package.json @@ -11,7 +11,7 @@ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-npm-package-search#readme", "dependencies": { "@babel/runtime": "^7.12.5", - "algoliasearch": "^3.35.1", + "algoliasearch": "^4.8.3", "got": "^8.3.2" }, "devDependencies": { diff --git a/packages/gatsby-source-npm-package-search/src/search.js b/packages/gatsby-source-npm-package-search/src/search.js index 1f0f43948b201..50ce5e39646ad 100644 --- a/packages/gatsby-source-npm-package-search/src/search.js +++ b/packages/gatsby-source-npm-package-search/src/search.js @@ -4,11 +4,11 @@ const searchIndex = client.initIndex(`npm-search`) exports.browse = ({ ...params }) => { let hits = [] - const browser = searchIndex.browseAll(params) - return new Promise((resolve, reject) => { - browser.on(`result`, content => (hits = hits.concat(content.hits))) - browser.on(`end`, () => resolve(hits)) - browser.on(`error`, err => reject(err)) - }) + searchIndex + .browseObjects({ + batch: batch => (hits = hits.concat(batch)), + ...params, + }) + .then(() => hits) }
1d17fbff7e428a969e8ff8697cdd3cd2a9fff8d8
2020-01-15 16:39:02
Peter van der Zee
chore(gatsby): Drop `firstOnly` requirement for `isEqId` check (#20608)
false
Drop `firstOnly` requirement for `isEqId` check (#20608)
chore
diff --git a/packages/gatsby/src/redux/run-sift.js b/packages/gatsby/src/redux/run-sift.js index 66e463014073a..d069b80a68094 100644 --- a/packages/gatsby/src/redux/run-sift.js +++ b/packages/gatsby/src/redux/run-sift.js @@ -44,9 +44,9 @@ const getFilters = filters => // Run Sift ///////////////////////////////////////////////////////////////////// -function isEqId(firstOnly, siftArgs) { +function isEqId(siftArgs) { + // The `id` of each node is invariably unique. So if a query is doing id $eq(string) it can find only one node tops return ( - firstOnly && siftArgs.length > 0 && siftArgs[0].id && Object.keys(siftArgs[0].id).length === 1 && @@ -153,14 +153,15 @@ const runSiftOnNodes = (nodes, args, getNode) => { // If the the query for single node only has a filter for an "id" // using "eq" operator, then we'll just grab that ID and return it. - if (isEqId(firstOnly, siftFilter)) { - const node = getNode(siftFilter[0].id[`$eq`]) + if (isEqId(siftFilter)) { + const node = getNode(siftFilter[0].id.$eq) if ( !node || (node.internal && !nodeTypeNames.includes(node.internal.type)) ) { - return [] + if (firstOnly) return [] + return null } return [node]
23834a83b17c2db92bc9207ee94d1cdd4267525e
2019-08-20 14:24:14
renovate[bot]
fix: update gatsby monorepo (#16757)
false
update gatsby monorepo (#16757)
fix
diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index b68e7f4138e14..8c53e296d7ff7 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -4857,9 +4857,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.235", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.235.tgz", - "integrity": "sha512-xNabEDbMIKPLQd6xgv4nyyeMaWXIKSJr6G51ZhUemHhbz6kjZAYcygA8CvfEcMF+Mt5eLmDWaLmfSOWdQxzBVQ==" + "version": "1.3.236", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.236.tgz", + "integrity": "sha512-LWOvuJ80pLO3FtFqTcGuXB0dxdMtzSCkRmbXdY5mHUvXRQGor3sTVmyfU70aD2yF5i+fbHz52ncWr5T3xUYHlA==" }, "elliptic": { "version": "6.5.0", @@ -6642,9 +6642,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.13.68", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.68.tgz", - "integrity": "sha512-uGwcECZADv52k/BYkS7UKuIT3HWogdTsZKm51HjKQ6R8j1jPcc9dAmXgzImln4rmcdcDgOrUAZCYMDvwrPrJnA==", + "version": "2.13.70", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.70.tgz", + "integrity": "sha512-oaCB0RaYE5Tfi82BKRXjMRkYtCk1J3aljNYVWM86zSpmPnxENtiiSO7NRyTph/6q1Bxqj1QMoV3S9Pzp/Lk61w==", "requires": { "@babel/code-frame": "^7.0.0", "@babel/core": "^7.0.0", @@ -7082,9 +7082,9 @@ } }, "gatsby-image": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/gatsby-image/-/gatsby-image-2.2.8.tgz", - "integrity": "sha512-R0hc37xf03Bqi51TlRHuu6KB5sFiXzHx0tQotml8TeFXu1k5yvV13D8fHhlHCZQq5zJe4KHx0rGfAprzb4s1fA==", + "version": "2.2.9", + "resolved": "https://registry.npmjs.org/gatsby-image/-/gatsby-image-2.2.9.tgz", + "integrity": "sha512-jmHoEgVDBsSLxWD+W78UgZRHcsKQMN2+i0wR/bbLzILESLirs4s4LeiPmSquj+cqMEtwaZ7CIDEeHSamelY+zQ==", "requires": { "@babel/runtime": "^7.0.0", "object-fit-images": "^3.2.4", diff --git a/starters/blog/package.json b/starters/blog/package.json index 8fce99e86b335..bcf0c8285bff0 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -8,8 +8,8 @@ "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { - "gatsby": "^2.13.68", - "gatsby-image": "^2.2.8", + "gatsby": "^2.13.70", + "gatsby-image": "^2.2.9", "gatsby-plugin-feed": "^2.3.6", "gatsby-plugin-google-analytics": "^2.1.7", "gatsby-plugin-manifest": "^2.2.5", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index 4a0151ede17ec..d98b322e322b1 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -4750,9 +4750,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.235", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.235.tgz", - "integrity": "sha512-xNabEDbMIKPLQd6xgv4nyyeMaWXIKSJr6G51ZhUemHhbz6kjZAYcygA8CvfEcMF+Mt5eLmDWaLmfSOWdQxzBVQ==" + "version": "1.3.236", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.236.tgz", + "integrity": "sha512-LWOvuJ80pLO3FtFqTcGuXB0dxdMtzSCkRmbXdY5mHUvXRQGor3sTVmyfU70aD2yF5i+fbHz52ncWr5T3xUYHlA==" }, "elliptic": { "version": "6.5.0", @@ -6535,9 +6535,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.13.68", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.68.tgz", - "integrity": "sha512-uGwcECZADv52k/BYkS7UKuIT3HWogdTsZKm51HjKQ6R8j1jPcc9dAmXgzImln4rmcdcDgOrUAZCYMDvwrPrJnA==", + "version": "2.13.70", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.70.tgz", + "integrity": "sha512-oaCB0RaYE5Tfi82BKRXjMRkYtCk1J3aljNYVWM86zSpmPnxENtiiSO7NRyTph/6q1Bxqj1QMoV3S9Pzp/Lk61w==", "requires": { "@babel/code-frame": "^7.0.0", "@babel/core": "^7.0.0", @@ -6975,9 +6975,9 @@ } }, "gatsby-image": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/gatsby-image/-/gatsby-image-2.2.8.tgz", - "integrity": "sha512-R0hc37xf03Bqi51TlRHuu6KB5sFiXzHx0tQotml8TeFXu1k5yvV13D8fHhlHCZQq5zJe4KHx0rGfAprzb4s1fA==", + "version": "2.2.9", + "resolved": "https://registry.npmjs.org/gatsby-image/-/gatsby-image-2.2.9.tgz", + "integrity": "sha512-jmHoEgVDBsSLxWD+W78UgZRHcsKQMN2+i0wR/bbLzILESLirs4s4LeiPmSquj+cqMEtwaZ7CIDEeHSamelY+zQ==", "requires": { "@babel/runtime": "^7.0.0", "object-fit-images": "^3.2.4", diff --git a/starters/default/package.json b/starters/default/package.json index 521de7a9ba89f..e5b99bad78443 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,8 +5,8 @@ "version": "0.1.0", "author": "Kyle Mathews <[email protected]>", "dependencies": { - "gatsby": "^2.13.68", - "gatsby-image": "^2.2.8", + "gatsby": "^2.13.70", + "gatsby-image": "^2.2.9", "gatsby-plugin-manifest": "^2.2.5", "gatsby-plugin-offline": "^2.2.6", "gatsby-plugin-react-helmet": "^3.1.3", diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index 52eec0b807037..febdcd8a09d7c 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -3788,9 +3788,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.235", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.235.tgz", - "integrity": "sha512-xNabEDbMIKPLQd6xgv4nyyeMaWXIKSJr6G51ZhUemHhbz6kjZAYcygA8CvfEcMF+Mt5eLmDWaLmfSOWdQxzBVQ==" + "version": "1.3.236", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.236.tgz", + "integrity": "sha512-LWOvuJ80pLO3FtFqTcGuXB0dxdMtzSCkRmbXdY5mHUvXRQGor3sTVmyfU70aD2yF5i+fbHz52ncWr5T3xUYHlA==" }, "elliptic": { "version": "6.5.0", @@ -5419,9 +5419,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.13.68", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.68.tgz", - "integrity": "sha512-uGwcECZADv52k/BYkS7UKuIT3HWogdTsZKm51HjKQ6R8j1jPcc9dAmXgzImln4rmcdcDgOrUAZCYMDvwrPrJnA==", + "version": "2.13.70", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.70.tgz", + "integrity": "sha512-oaCB0RaYE5Tfi82BKRXjMRkYtCk1J3aljNYVWM86zSpmPnxENtiiSO7NRyTph/6q1Bxqj1QMoV3S9Pzp/Lk61w==", "requires": { "@babel/code-frame": "^7.0.0", "@babel/core": "^7.0.0", diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 6ab92a322da71..74dc7d40da06e 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -13,7 +13,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"" }, "dependencies": { - "gatsby": "^2.13.68", + "gatsby": "^2.13.70", "react": "^16.9.0", "react-dom": "^16.9.0" }, diff --git a/themes/gatsby-starter-blog-theme-core/package-lock.json b/themes/gatsby-starter-blog-theme-core/package-lock.json index 3f229a8cc9001..ee5b2e8e571f4 100644 --- a/themes/gatsby-starter-blog-theme-core/package-lock.json +++ b/themes/gatsby-starter-blog-theme-core/package-lock.json @@ -6701,9 +6701,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.13.68", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.68.tgz", - "integrity": "sha512-uGwcECZADv52k/BYkS7UKuIT3HWogdTsZKm51HjKQ6R8j1jPcc9dAmXgzImln4rmcdcDgOrUAZCYMDvwrPrJnA==", + "version": "2.13.70", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.70.tgz", + "integrity": "sha512-oaCB0RaYE5Tfi82BKRXjMRkYtCk1J3aljNYVWM86zSpmPnxENtiiSO7NRyTph/6q1Bxqj1QMoV3S9Pzp/Lk61w==", "requires": { "@babel/code-frame": "^7.0.0", "@babel/core": "^7.0.0", diff --git a/themes/gatsby-starter-blog-theme-core/package.json b/themes/gatsby-starter-blog-theme-core/package.json index 410607c8e3e79..9a536cfe1a2a6 100644 --- a/themes/gatsby-starter-blog-theme-core/package.json +++ b/themes/gatsby-starter-blog-theme-core/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.13.68", + "gatsby": "^2.13.70", "gatsby-theme-blog-core": "^1.0.0", "react": "^16.9.0", "react-dom": "^16.9.0" diff --git a/themes/gatsby-starter-blog-theme/package-lock.json b/themes/gatsby-starter-blog-theme/package-lock.json index 13a2384eee4d9..ca77474242c8e 100644 --- a/themes/gatsby-starter-blog-theme/package-lock.json +++ b/themes/gatsby-starter-blog-theme/package-lock.json @@ -6858,9 +6858,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.13.68", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.68.tgz", - "integrity": "sha512-uGwcECZADv52k/BYkS7UKuIT3HWogdTsZKm51HjKQ6R8j1jPcc9dAmXgzImln4rmcdcDgOrUAZCYMDvwrPrJnA==", + "version": "2.13.70", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.70.tgz", + "integrity": "sha512-oaCB0RaYE5Tfi82BKRXjMRkYtCk1J3aljNYVWM86zSpmPnxENtiiSO7NRyTph/6q1Bxqj1QMoV3S9Pzp/Lk61w==", "requires": { "@babel/code-frame": "^7.0.0", "@babel/core": "^7.0.0", diff --git a/themes/gatsby-starter-blog-theme/package.json b/themes/gatsby-starter-blog-theme/package.json index d70f583da7eb3..58ba569651635 100644 --- a/themes/gatsby-starter-blog-theme/package.json +++ b/themes/gatsby-starter-blog-theme/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.13.68", + "gatsby": "^2.13.70", "gatsby-theme-blog": "^1.0.2", "react": "^16.9.0", "react-dom": "^16.9.0" diff --git a/themes/gatsby-starter-notes-theme/package-lock.json b/themes/gatsby-starter-notes-theme/package-lock.json index 5637826ffbbd0..1b4bf0a95e179 100644 --- a/themes/gatsby-starter-notes-theme/package-lock.json +++ b/themes/gatsby-starter-notes-theme/package-lock.json @@ -6096,9 +6096,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.13.68", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.68.tgz", - "integrity": "sha512-uGwcECZADv52k/BYkS7UKuIT3HWogdTsZKm51HjKQ6R8j1jPcc9dAmXgzImln4rmcdcDgOrUAZCYMDvwrPrJnA==", + "version": "2.13.70", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.70.tgz", + "integrity": "sha512-oaCB0RaYE5Tfi82BKRXjMRkYtCk1J3aljNYVWM86zSpmPnxENtiiSO7NRyTph/6q1Bxqj1QMoV3S9Pzp/Lk61w==", "requires": { "@babel/code-frame": "^7.0.0", "@babel/core": "^7.0.0", diff --git a/themes/gatsby-starter-notes-theme/package.json b/themes/gatsby-starter-notes-theme/package.json index d2de2c6c8014b..075fc8f32ce7e 100644 --- a/themes/gatsby-starter-notes-theme/package.json +++ b/themes/gatsby-starter-notes-theme/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.13.68", + "gatsby": "^2.13.70", "gatsby-theme-notes": "^1.0.3", "react": "^16.9.0", "react-dom": "^16.9.0" diff --git a/themes/gatsby-starter-theme-workspace/example/package.json b/themes/gatsby-starter-theme-workspace/example/package.json index f02f6b2288d36..9e89768fd2259 100644 --- a/themes/gatsby-starter-theme-workspace/example/package.json +++ b/themes/gatsby-starter-theme-workspace/example/package.json @@ -9,7 +9,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.13.68", + "gatsby": "^2.13.70", "gatsby-theme-minimal": "^1.0.0", "react": "^16.9.0", "react-dom": "^16.9.0" diff --git a/themes/gatsby-starter-theme/package-lock.json b/themes/gatsby-starter-theme/package-lock.json index e0864871cffb2..c64b6c63c0fb4 100644 --- a/themes/gatsby-starter-theme/package-lock.json +++ b/themes/gatsby-starter-theme/package-lock.json @@ -6867,9 +6867,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "2.13.68", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.68.tgz", - "integrity": "sha512-uGwcECZADv52k/BYkS7UKuIT3HWogdTsZKm51HjKQ6R8j1jPcc9dAmXgzImln4rmcdcDgOrUAZCYMDvwrPrJnA==", + "version": "2.13.70", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-2.13.70.tgz", + "integrity": "sha512-oaCB0RaYE5Tfi82BKRXjMRkYtCk1J3aljNYVWM86zSpmPnxENtiiSO7NRyTph/6q1Bxqj1QMoV3S9Pzp/Lk61w==", "requires": { "@babel/code-frame": "^7.0.0", "@babel/core": "^7.0.0", diff --git a/themes/gatsby-starter-theme/package.json b/themes/gatsby-starter-theme/package.json index 01b071354da19..f602d1f04667e 100644 --- a/themes/gatsby-starter-theme/package.json +++ b/themes/gatsby-starter-theme/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^2.13.68", + "gatsby": "^2.13.70", "gatsby-theme-blog": "^1.0.2", "gatsby-theme-notes": "^1.0.3", "react": "^16.9.0", diff --git a/themes/gatsby-theme-blog-core/package.json b/themes/gatsby-theme-blog-core/package.json index 8d5172d3c5ccf..6e4850f354b20 100644 --- a/themes/gatsby-theme-blog-core/package.json +++ b/themes/gatsby-theme-blog-core/package.json @@ -23,7 +23,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.3.1", - "gatsby": "^2.13.68", + "gatsby": "^2.13.70", "prettier": "^1.18.2", "react": "^16.9.0", "react-dom": "^16.9.0" diff --git a/themes/gatsby-theme-blog/package.json b/themes/gatsby-theme-blog/package.json index 853fd05a76967..9aa3fdbc9ac4d 100644 --- a/themes/gatsby-theme-blog/package.json +++ b/themes/gatsby-theme-blog/package.json @@ -23,7 +23,7 @@ "@theme-ui/prism": "^0.2.29", "@theme-ui/typography": "^0.2.34", "deepmerge": "^4.0.0", - "gatsby-image": "^2.2.8", + "gatsby-image": "^2.2.9", "gatsby-plugin-emotion": "^4.1.2", "gatsby-plugin-feed": "^2.3.6", "gatsby-plugin-react-helmet": "^3.1.3", @@ -39,7 +39,7 @@ "typography-theme-wordpress-2016": "^0.16.19" }, "devDependencies": { - "gatsby": "^2.13.68", + "gatsby": "^2.13.70", "prettier": "^1.18.2", "react": "^16.9.0", "react-dom": "^16.9.0" diff --git a/themes/gatsby-theme-notes/package.json b/themes/gatsby-theme-notes/package.json index 6b355de18dbc7..3777d72f59c40 100644 --- a/themes/gatsby-theme-notes/package.json +++ b/themes/gatsby-theme-notes/package.json @@ -20,7 +20,7 @@ }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/themes/gatsby-theme-notes#readme", "devDependencies": { - "gatsby": "^2.13.68", + "gatsby": "^2.13.70", "react": "^16.9.0", "react-dom": "^16.9.0" },
8af982614e994169d65d299d16a5cfa535aa7572
2019-02-20 00:10:18
Brian Andrews
feat(gatsby-plugin-sharp): add defaultQuality option
false
add defaultQuality option
feat
diff --git a/packages/gatsby-plugin-sharp/README.md b/packages/gatsby-plugin-sharp/README.md index 341911bd434cc..8feea76f34fec 100644 --- a/packages/gatsby-plugin-sharp/README.md +++ b/packages/gatsby-plugin-sharp/README.md @@ -32,6 +32,7 @@ plugins: [ options: { useMozJpeg: false, stripMetadata: true, + defaultQuality: 75, }, }, ] @@ -249,6 +250,10 @@ fixed( } ``` +### Setting a default quality + +You can pass a default image quality to `sharp` by setting the `defaultQuality` option. + ### Using MozJPEG You can opt-in to use [MozJPEG][16] for jpeg-encoding. MozJPEG provides even diff --git a/packages/gatsby-plugin-sharp/src/index.js b/packages/gatsby-plugin-sharp/src/index.js index 62b74f04f4442..f4f9c4142ae78 100644 --- a/packages/gatsby-plugin-sharp/src/index.js +++ b/packages/gatsby-plugin-sharp/src/index.js @@ -45,6 +45,7 @@ exports.setBoundActionCreators = actions => { const pluginDefaults = { useMozJpeg: process.env.GATSBY_JPEG_ENCODER === `MOZJPEG`, stripMetadata: true, + defaultQuality: 50, } let pluginOptions = Object.assign({}, pluginDefaults) exports.setPluginOptions = opts => { @@ -95,8 +96,8 @@ const generalArgs = { sizeByPixelDensity: false, } -const healOptions = (args, defaultArgs) => { - let options = _.defaults({}, args, defaultArgs, generalArgs) +const healOptions = ({ defaultQuality: quality }, args, defaultArgs) => { + let options = _.defaults({}, args, { quality }, defaultArgs, generalArgs) options.quality = parseInt(options.quality, 10) options.pngCompressionLevel = parseInt(options.pngCompressionLevel, 10) options.pngCompressionSpeed = parseInt(options.pngCompressionSpeed, 10) @@ -125,7 +126,6 @@ const healOptions = (args, defaultArgs) => { let totalJobs = 0 const processFile = (file, jobs, cb, reporter) => { - // console.log("totalJobs", totalJobs) bar.total = totalJobs let imagesFinished = 0 @@ -372,7 +372,7 @@ const queueJob = (job, reporter) => { } function queueImageResizing({ file, args = {}, reporter }) { - const options = healOptions(args, {}) + const options = healOptions(pluginOptions, args, {}) // Filter out false args, and args not for this extension and put width at // end (for the file path) const pairedArgs = _.toPairs(args) @@ -476,7 +476,7 @@ function queueImageResizing({ file, args = {}, reporter }) { } async function generateBase64({ file, args, reporter }) { - const options = healOptions(args, { width: 20 }) + const options = healOptions(pluginOptions, args, { width: 20 }) let pipeline try { pipeline = sharp(file.absolutePath).rotate() @@ -558,7 +558,7 @@ async function base64(arg) { } async function fluid({ file, args = {}, reporter, cache }) { - const options = healOptions(args, {}) + const options = healOptions(pluginOptions, args, {}) // Account for images with a high pixel density. We assume that these types of // images are intended to be displayed at their native resolution. let metadata @@ -733,7 +733,7 @@ async function fluid({ file, args = {}, reporter, cache }) { } async function fixed({ file, args = {}, reporter, cache }) { - const options = healOptions(args, {}) + const options = healOptions(pluginOptions, args, {}) // if no width is passed, we need to resize the image based on the passed height const fixedDimension = options.width === undefined ? `height` : `width` @@ -843,7 +843,7 @@ async function notMemoizedtraceSVG({ file, args, fileArgs, reporter }) { turnPolicy: potrace.Potrace.TURNPOLICY_MAJORITY, } const optionsSVG = _.defaults(args, defaultArgs) - const options = healOptions(fileArgs, {}) + const options = healOptions(pluginOptions, fileArgs, {}) let pipeline try { pipeline = sharp(file.absolutePath).rotate() diff --git a/packages/gatsby-transformer-sharp/src/extend-node-type.js b/packages/gatsby-transformer-sharp/src/extend-node-type.js index c65adb67b0985..935bb52e31b46 100644 --- a/packages/gatsby-transformer-sharp/src/extend-node-type.js +++ b/packages/gatsby-transformer-sharp/src/extend-node-type.js @@ -137,7 +137,6 @@ const fixedNodeType = ({ }, quality: { type: GraphQLInt, - defaultValue: 50, }, toFormat: { type: ImageFormatType, @@ -263,7 +262,6 @@ const fluidNodeType = ({ }, quality: { type: GraphQLInt, - defaultValue: 50, }, toFormat: { type: ImageFormatType, @@ -413,7 +411,6 @@ module.exports = ({ }, quality: { type: GraphQLInt, - defaultValue: 50, }, jpegProgressive: { type: GraphQLBoolean,
fbdb4de25f5fb7f088b30238a52ceaedf12814f7
2020-04-30 17:48:24
Colby Fayock
chore(starters): TakeShape CMS Startup Project (#23461)
false
TakeShape CMS Startup Project (#23461)
chore
diff --git a/docs/starters.yml b/docs/starters.yml index 9730ea58d52d6..e9b3ad4bed132 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -6029,6 +6029,18 @@ - Pagination - SEO - Phone browser Support +- url: https://gatsby-starter-takeshape-startup.netlify.app + repo: https://github.com/colbyfayock/gatsby-starter-takeshape-startup + description: Integrate TakeShape CMS using a ready to go TakeShape Startup project! + tags: + - Blog + - CMS:Other + - CMS:Headless + - Landing Page + - Styling:SCSS + features: + - Integrate TakeShape CMS + - Preconfigured to work with the TakeShape Startup project - url: https://gatsby-startbootstrap-agency.netlify.app/ repo: https://github.com/thundermiracle/gatsby-startbootstrap-agency description: Gatsby version of startbootstrap-agency with i18n supported.
540484dae7de51a53bac3b0c3b3ed1860529bea4
2022-01-03 16:32:30
SMony-L
chore: Fix typo (#34349)
false
Fix typo (#34349)
chore
diff --git a/README.md b/README.md index 73ae2f84ed7a4..c575ddcbe4ff0 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Gatsby is a modern web framework for blazing fast websites. limitations. Gatsby sites are fully functional React apps, so you can create high-quality, dynamic web apps, from blogs to e-commerce sites to user dashboards. -- **Choose your Rendering Option.** You can choose alternative [rendering options](https://gatsbyjs.com/docs/conceptual/rendering-options/), namely Deferred Static Generation (DSG) and Server-Side Rendering (SSR), in addition to Static Site Generation (SSG) — on a per-page basis. This type of granular control allows you to optimize for performance and productivity without sacrificing one for the other. +- **Choose your Rendering Options.** You can choose alternative [rendering options](https://gatsbyjs.com/docs/conceptual/rendering-options/), namely Deferred Static Generation (DSG) and Server-Side Rendering (SSR), in addition to Static Site Generation (SSG) — on a per-page basis. This type of granular control allows you to optimize for performance and productivity without sacrificing one for the other. - **Use a Modern Stack for Every Site.** No matter where the data comes from, Gatsby sites are built using React and GraphQL. Build a uniform workflow for you and your team, regardless of
9168d1f912017d3078decd7ea72f7a123ccbdbe3
2019-02-05 17:12:19
Osamah Aldoaiss
feat(www): use blog post preview component on tags pages (#11501)
false
use blog post preview component on tags pages (#11501)
feat
diff --git a/docs/blog/2019-01-31-why-themes/index.md b/docs/blog/2019-01-31-why-themes/index.md index 7cfc2a35f8b6f..25851b3704e00 100644 --- a/docs/blog/2019-01-31-why-themes/index.md +++ b/docs/blog/2019-01-31-why-themes/index.md @@ -1,6 +1,6 @@ --- title: "Why Themes?" -date: "2019-01-31" +date: 2019-01-31 author: "Kyle Mathews" tags: ["themes"] --- diff --git a/www/package.json b/www/package.json index 45fa34716da59..3fd5913a1dc45 100644 --- a/www/package.json +++ b/www/package.json @@ -93,7 +93,7 @@ "scripts": { "build": "gatsby build", "deploy": "gatsby build --prefix-paths && gh-pages -d public", - "develop": "gatsby develop", + "develop": "GATSBY_GRAPHQL_IDE=playground gatsby develop", "start": "npm run develop", "serve": "gatsby serve", "test": "echo \"Error: no test specified\" && exit 1", diff --git a/www/src/templates/tags.js b/www/src/templates/tags.js index e0353071fdec3..f2e4c857b048e 100644 --- a/www/src/templates/tags.js +++ b/www/src/templates/tags.js @@ -1,9 +1,10 @@ import React from "react" -import PropTypes from "prop-types" import { Link, graphql } from "gatsby" +import BlogPostPreviewItem from "../components/blog-post-preview-item" import Container from "../components/container" import Layout from "../components/layout" +import { rhythm } from "../utils/typography" const Tags = ({ pageContext, data, location }) => { const { tag } = pageContext @@ -16,45 +17,19 @@ const Tags = ({ pageContext, data, location }) => { <Layout location={location}> <Container> <h1>{tagHeader}</h1> - <ul> - {edges.map(({ node }) => { - const { - frontmatter: { title }, - fields: { slug }, - } = node - return ( - <li key={slug}> - <Link to={slug}>{title}</Link> - </li> - ) - })} - </ul> + {edges.map(({ node }) => ( + <BlogPostPreviewItem + post={node} + key={node.fields.slug} + css={{ marginBottom: rhythm(2) }} + /> + ))} <Link to="/blog/tags">All tags</Link> </Container> </Layout> ) } -Tags.propTypes = { - pageContext: PropTypes.shape({ - tag: PropTypes.string.isRequired, - }), - data: PropTypes.shape({ - allMarkdownRemark: PropTypes.shape({ - totalCount: PropTypes.number.isRequired, - edges: PropTypes.arrayOf( - PropTypes.shape({ - node: PropTypes.shape({ - frontmatter: PropTypes.shape({ - title: PropTypes.string.isRequired, - }), - }), - }).isRequired - ), - }), - }), -} - export default Tags export const pageQuery = graphql` @@ -71,12 +46,7 @@ export const pageQuery = graphql` totalCount edges { node { - fields { - slug - } - frontmatter { - title - } + ...BlogPostPreview_item } } }
da9ca8a519b3a196ecd732f40912d660abe0cd16
2019-02-08 20:34:40
Janosh Riebesell
fix(docs): typos in gatsby-remark-images-contentful readme (#11523)
false
typos in gatsby-remark-images-contentful readme (#11523)
fix
diff --git a/packages/gatsby-remark-images-contentful/README.md b/packages/gatsby-remark-images-contentful/README.md index 03985020520c3..19c11b0e71669 100644 --- a/packages/gatsby-remark-images-contentful/README.md +++ b/packages/gatsby-remark-images-contentful/README.md @@ -1,8 +1,8 @@ # gatsby-remark-images-contentful -Processes images in markdown so they can be used in the production build using contentful's [Image API](https://www.contentful.com/developers/docs/references/images-api) +Processes images in markdown so they can be used in the production build using Contentful's [Image API](https://www.contentful.com/developers/docs/references/images-api) -In the processing, it make images responsive by: +In the processing, it makes images responsive by: - Adding an elastic container to hold the size of the image while it loads to avoid layout jumps. @@ -46,12 +46,12 @@ plugins: [ | Name | Default | Description | | ---------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `maxWidth` | `650` | The `maxWidth` in pixels of the div where the markdown will be displayed. This value is used when deciding what the width of the various responsive thumbnails should be. | +| `maxWidth` | `650` | The `maxWidth` in pixels of the `div` where the markdown will be displayed. This value is used when deciding what the width of the various responsive thumbnails should be. | | `linkImagesToOriginal` | `true` | Add a link to each image to the original image. Sometimes people want to see a full-sized version of an image e.g. to see extra detail on a part of the image and this is a convenient and common pattern for enabling this. Set this option to false to disable this behavior. | | `showCaptions` | `false` | Add a caption to each image with the contents of the title attribute, when this is not empty. Set this option to true to enable this behavior. | -| `sizeByPixelDensity` | `false` | Analyze images' pixel density to make decisions about target image size. This is what GitHub is doing when embedding images in tickets. This is a useful setting for documentation pages with a lot of screenshots. It can have unintended side effects on high pixel density artworks.<br /><br />Example: A screenshot made on a retina screen with a resolution of 144 (e.g. Macbook) and a width of 100px, will be rendered at 50px. | -| `wrapperStyle` | | Add custom styles to the div wrapping the responsive images. Use the syntax for the style attribute e.g. `margin-bottom:10px; background: red;` | -| `backgroundColor` | `white` | Set the background color of the image to match the background image of your design | +| `sizeByPixelDensity` | `false` | Analyze images' pixel density to make decisions about target image size. This is what GitHub is doing when embedding images in tickets. This is a useful setting for documentation pages with a lot of screenshots. It can have unintended side effects on high-pixel density artworks.<br /><br />Example: A screenshot made on a retina screen with a resolution of 144 (e.g. Macbook) and a width of 100px, will be rendered at 50px. | +| `wrapperStyle` | | Add custom styles to the div wrapping the responsive images. Use regular CSS syntax, e.g. `margin-bottom:10px; background: red;` | +| `backgroundColor` | `white` | Set the background color of the image to match the background of your design | [1]: https://jmperezperez.com/medium-image-progressive-loading-placeholder/ [2]: https://code.facebook.com/posts/991252547593574/the-technology-behind-preview-photos/
9c7da55527c60320dfc439a30656c6bf855b90b2
2020-06-03 18:49:40
Abhishek Jakhar
fix(www): layout for `/guidelines/design-tokens` + convert to theme-ui (#24569)
false
layout for `/guidelines/design-tokens` + convert to theme-ui (#24569)
fix
diff --git a/www/src/components/guidelines/containers.js b/www/src/components/guidelines/containers.js index 3b9d18e570fb5..27094c3277eb2 100755 --- a/www/src/components/guidelines/containers.js +++ b/www/src/components/guidelines/containers.js @@ -79,11 +79,6 @@ export const CopyColumn = ({ ...rest }) => ( <div - css={{ - "p, ul, ol": { - maxWidth: `40rem`, - }, - }} sx={{ ...rest, fontSize: 2, @@ -100,6 +95,9 @@ export const CopyColumn = ({ maxWidth: `none`, width: narrow ? copyColumnWidth : `30rem`, }, + "p, ul, ol": { + maxWidth: `40rem`, + }, }} > <div @@ -119,21 +117,26 @@ export const CopyColumn = ({ </div> ) -export const ContentColumn = ({ children, fullWidth, ...rest }) => ( +export const ContentColumn = ({ + children, + fullWidth, + overflowXMobile, + ...rest +}) => ( <div - css={{ - "p, ul, ol": { - maxWidth: `40rem`, - }, - }} sx={{ ...rest, width: `100%`, overflow: `hidden`, + overflowX: overflowXMobile ? `auto` : `hidden`, position: `relative`, [mediaQueries.lg]: { width: fullWidth ? `100%` : `50rem`, maxWidth: fullWidth ? `none` : false, + overflowX: `hidden`, + }, + "p, ul, ol": { + maxWidth: `40rem`, }, }} > diff --git a/www/src/pages/guidelines/design-tokens.js b/www/src/pages/guidelines/design-tokens.js index 36ba58c56e3cf..91d50af930ce7 100644 --- a/www/src/pages/guidelines/design-tokens.js +++ b/www/src/pages/guidelines/design-tokens.js @@ -1,10 +1,12 @@ -import React from "react" +/** @jsx jsx */ +import { jsx } from "theme-ui" import { MdWarning } from "react-icons/md" import Link from "../../components/localized-link" import { Container, Section, + SectionNoRightPadding, Columns, ContentColumn, CopyColumn, @@ -18,14 +20,26 @@ import { import Layout from "../../components/guidelines/layout" import Badge from "../../components/guidelines/badge" +import { Box, Flex } from "theme-ui" + import theme from "gatsby-design-tokens/dist/theme-gatsbyjs-org" -import { Box, Flex, Text } from "../../components/guidelines/system" +import { Text } from "../../components/guidelines/system" import { mediaQueries } from "gatsby-design-tokens/dist/theme-gatsbyjs-org" +const TdAlignTop = ({ children }) => ( + <td + sx={{ + verticalAlign: `top`, + }} + > + {children} + </td> +) + const ColorExample = ({ hex, token }) => ( <tr> <td - css={{ + sx={{ borderColor: hex, verticalAlign: `middle`, }} @@ -33,7 +47,7 @@ const ColorExample = ({ hex, token }) => ( <code>{token}</code> </td> <td - css={{ + sx={{ borderColor: hex, verticalAlign: `middle`, width: `100%`, @@ -42,21 +56,25 @@ const ColorExample = ({ hex, token }) => ( {hex} </td> <td - css={{ + sx={{ borderColor: hex, verticalAlign: `middle`, }} > - <Flex alignItems="center"> + <Flex + sx={{ + alignItems: `center`, + }} + > <Text color={hex} fontWeight="bold" fontSize={6} mr={8}> Aa </Text> <div - css={{ + sx={{ backgroundColor: hex, height: 40, - margin: 0, width: 80, + m: 0, }} /> </Flex> @@ -71,7 +89,12 @@ const ColorExample = ({ hex, token }) => ( const DesignTokens = ({ location }) => ( <Layout location={location} pageTitle="Design Tokens"> <Container> - <div css={{ position: `relative`, zIndex: 1 }}> + <div + sx={{ + position: `relative`, + zIndex: 1, + }} + > <PageHeading>Design Tokens</PageHeading> <Intro> This page collects all design tokens currently available for @@ -137,9 +160,11 @@ const DesignTokens = ({ location }) => ( {` `} <Box key={`${index}-${space}`} - height={space} - width={space} - bg="grey.30" + sx={{ + height: space, + width: space, + bg: `grey.30`, + }} /> <SrOnly> A box with <code>space[{index}]</code> set as value for @@ -171,30 +196,37 @@ const DesignTokens = ({ location }) => ( deliberately chose to omit adding more documentation at this point. </p> </CopyColumn> - <ContentColumn - css={{ - alignSelf: `flex-end`, - display: `flex`, - flexWrap: `wrap`, - overflow: `visible`, - }} - > - {Object.keys(theme.shadows).map((shadow, i) => ( - <Box - bg="white" - borderRadius="2" - key={`tokens-shadow-${i}`} - mb={10} - mr={4} - p={4} - width="50%" - boxShadow={shadow} - height={0} - pb={`${0.3 * 100}%`} - > - <code>shadows.{shadow}</code> - </Box> - ))} + <ContentColumn> + <Flex + sx={{ + alignSelf: `flex-end`, + flexWrap: `wrap`, + overflow: `visible`, + }} + > + {Object.keys(theme.shadows).map((shadow, i) => ( + <Box + key={`tokens-shadow-${i}`} + sx={{ + bg: `white`, + borderRadius: 2, + mb: 10, + p: 4, + boxShadow: shadow, + width: `100%`, + height: `160px`, + pb: `${0.3 * 100}%`, + [mediaQueries.md]: { + width: `50%`, + mr: 10, + height: 0, + }, + }} + > + <code>shadows.{shadow}</code> + </Box> + ))} + </Flex> </ContentColumn> </Columns> </Section> @@ -209,9 +241,13 @@ const DesignTokens = ({ location }) => ( components along the z-axis. </p> </CopyColumn> - <ContentColumn fullWidth width="100%"> + <ContentColumn overflowXMobile fullWidth> <Flex> - <table css={{ width: `50%` }}> + <table + sx={{ + width: `50%`, + }} + > <thead> <tr> <th scope="col">Token</th> @@ -221,12 +257,10 @@ const DesignTokens = ({ location }) => ( <tbody> {Object.keys(theme.zIndices).map((zIndex, i) => ( <tr key={`tokens-zIndices-${i}`}> - <td css={{ verticalAlign: `top` }}> + <TdAlignTop> <code>zIndices.{zIndex}</code> - </td> - <td css={{ verticalAlign: `top` }}> - {theme.zIndices[zIndex]} - </td> + </TdAlignTop> + <TdAlignTop>{theme.zIndices[zIndex]}</TdAlignTop> </tr> ))} </tbody> @@ -266,10 +300,12 @@ const DesignTokens = ({ location }) => ( {` `} <Box key={`${index}-radius`} - height={40} - width={80} - bg="grey.30" - borderRadius={index} + sx={{ + height: 40, + width: 80, + bg: `grey.30`, + borderRadius: index, + }} /> <SrOnly> A 80&times;40px box with <code>radii[{index}]</code> @@ -294,7 +330,7 @@ const DesignTokens = ({ location }) => ( Intended for use with the <code>font-family</code> CSS property. </p> </CopyColumn> - <ContentColumn> + <ContentColumn overflowXMobile> <table> <thead> <tr> @@ -306,15 +342,15 @@ const DesignTokens = ({ location }) => ( <tbody> {Object.keys(theme.fonts).map((font, i) => ( <tr key={`tokens-fonts-${i}`}> - <td css={{ verticalAlign: `top` }}> + <TdAlignTop> <code>fonts.{font}</code> - </td> - <td css={{ verticalAlign: `top` }}>{theme.fonts[font]}</td> - <td css={{ verticalAlign: `top` }}> + </TdAlignTop> + <TdAlignTop>{theme.fonts[font]}</TdAlignTop> + <TdAlignTop> <Text fontFamily={font} fontSize={4}> ABC </Text> - </td> + </TdAlignTop> </tr> ))} </tbody> @@ -323,7 +359,7 @@ const DesignTokens = ({ location }) => ( </Columns> </Section> - <Section pr={{ xxs: 0, xs: 0, sm: 0, md: 0, lg: 0 }}> + <SectionNoRightPadding> <SectionHeading>Font Sizes</SectionHeading> <Columns> <CopyColumn> @@ -331,12 +367,13 @@ const DesignTokens = ({ location }) => ( Intended for use with the <code>font-size</code> CSS property. </p> </CopyColumn> - <ContentColumn fullWidth> + <ContentColumn overflowXMobile fullWidth> <table> <thead> <tr> <th scope="col">Token</th> <th scope="col">Value</th> + <th scope="col">px</th> <th scope="col">Example</th> </tr> </thead> @@ -347,6 +384,7 @@ const DesignTokens = ({ location }) => ( <code>fontSizes[{index}]</code> </td> <td>{size}</td> + <td>{parseFloat(size) * 16}</td> <td> <Text // don't scale based on root font size here @@ -367,7 +405,7 @@ const DesignTokens = ({ location }) => ( </table> </ContentColumn> </Columns> - </Section> + </SectionNoRightPadding> <Section> <SectionHeading>Font Weights</SectionHeading> @@ -377,7 +415,7 @@ const DesignTokens = ({ location }) => ( Intended for use with the <code>font-weight</code> CSS property. </p> </CopyColumn> - <ContentColumn> + <ContentColumn overflowXMobile> <Flex> <table> <thead> @@ -390,12 +428,10 @@ const DesignTokens = ({ location }) => ( <tbody> {Object.keys(theme.fontWeights).map((fontWeight, i) => ( <tr key={`tokens-fontWeights-${i}`}> - <td css={{ verticalAlign: `top` }}> - <code>fontWeights[{fontWeight}]</code> - </td> - <td css={{ verticalAlign: `top` }}> - {theme.fontWeights[fontWeight]} - </td> + <TdAlignTop> + <code>fontWeights.{fontWeight}</code> + </TdAlignTop> + <TdAlignTop>{theme.fontWeights[fontWeight]}</TdAlignTop> <td> <Text fontWeight={fontWeight} @@ -414,7 +450,7 @@ const DesignTokens = ({ location }) => ( </Columns> </Section> - <Section pr={{ xxs: 0, xs: 0, sm: 0, md: 0, lg: 0 }}> + <SectionNoRightPadding> <SectionHeading>Letter Spacing</SectionHeading> <Columns> <CopyColumn> @@ -422,7 +458,7 @@ const DesignTokens = ({ location }) => ( Intended for use with the <code>letter-spacing</code> CSS property. </p> </CopyColumn> - <ContentColumn fullWidth> + <ContentColumn overflowXMobile fullWidth> <Flex> <table> <thead> @@ -435,12 +471,12 @@ const DesignTokens = ({ location }) => ( <tbody> {Object.keys(theme.letterSpacings).map((letterSpacing, i) => ( <tr key={`tokens-letterSpacings-${i}`}> - <td css={{ verticalAlign: `top` }}> + <TdAlignTop> <code>letterSpacings.{letterSpacing}</code> - </td> - <td css={{ verticalAlign: `top` }}> + </TdAlignTop> + <TdAlignTop> {theme.letterSpacings[letterSpacing]} - </td> + </TdAlignTop> <td> <Text letterSpacing={letterSpacing} @@ -461,7 +497,7 @@ const DesignTokens = ({ location }) => ( </Flex> </ContentColumn> </Columns> - </Section> + </SectionNoRightPadding> <Section> <SectionHeading>Line Heights</SectionHeading> @@ -471,7 +507,7 @@ const DesignTokens = ({ location }) => ( Intended for use with the <code>line-height</code> CSS property. </p> </CopyColumn> - <ContentColumn fullWidth> + <ContentColumn overflowXMobile fullWidth> <table> <thead> <tr> @@ -483,18 +519,18 @@ const DesignTokens = ({ location }) => ( <tbody> {Object.keys(theme.lineHeights).map((lineHeight, i) => ( <tr key={`tokens-lineHeights-${i}`}> - <td css={{ verticalAlign: `top` }}> + <TdAlignTop> <code>lineHeights.{lineHeight}</code> - </td> - <td css={{ verticalAlign: `top` }}> - {theme.lineHeights[lineHeight]} - </td> - <td css={{ verticalAlign: `top` }}> + </TdAlignTop> + + <TdAlignTop>{theme.lineHeights[lineHeight]}</TdAlignTop> + + <TdAlignTop> <Text lineHeight={lineHeight}> Plugins are packages that extend Gatsby sites. They can source content, transform data, and more! </Text> - </td> + </TdAlignTop> </tr> ))} </tbody> @@ -513,9 +549,22 @@ const DesignTokens = ({ location }) => ( <code>breakpoints</code> scale is available. </p> </CopyColumn> - <ContentColumn fullWidth width="100%"> - <Flex> - <table css={{ width: `50%` }}> + <ContentColumn fullWidth> + <Flex + sx={{ + flexDirection: `column`, + [mediaQueries.lg]: { + flexDirection: `row`, + }, + }} + > + <table + sx={{ + [mediaQueries.lg]: { + width: `50%`, + }, + }} + > <thead> <tr> <th scope="col">Token</th> @@ -525,18 +574,21 @@ const DesignTokens = ({ location }) => ( <tbody> {Object.keys(theme.breakpoints).map((breakpoint, i) => ( <tr key={`tokens-breakpoints-${i}`}> - <td css={{ verticalAlign: `top` }}> + <TdAlignTop> <code>breakpoints.{breakpoint}</code> - </td> - <td css={{ verticalAlign: `top` }}> - {theme.breakpoints[breakpoint]} - </td> + </TdAlignTop> + <TdAlignTop>{theme.breakpoints[breakpoint]}</TdAlignTop> </tr> ))} </tbody> </table> - <Box as="table" ml={10}> + <Box + as="table" + sx={{ + ml: [0, null, null, null, 10], + }} + > <thead> <tr> <th scope="col">Token</th> @@ -544,14 +596,12 @@ const DesignTokens = ({ location }) => ( </tr> </thead> <tbody> - {Object.keys(theme.breakpoints).map((breakpoint, i) => ( - <tr key={`tokens-breakpoints-${i}`}> - <td css={{ verticalAlign: `top` }}> - <code>mediaQueries.{breakpoint}</code> - </td> - <td css={{ verticalAlign: `top` }}> - {mediaQueries[breakpoint]} - </td> + {Object.keys(theme.mediaQueries).map((mediaQuery, i) => ( + <tr key={`tokens-mediaQuery-${i}`}> + <TdAlignTop> + <code>mediaQueries.{mediaQuery}</code> + </TdAlignTop> + <TdAlignTop>{mediaQueries[mediaQuery]}</TdAlignTop> </tr> ))} </tbody> @@ -571,7 +621,7 @@ const DesignTokens = ({ location }) => ( section for detailed information and accessibility notes. </p> </CopyColumn> - <ContentColumn fullWidth width="100%"> + <ContentColumn overflowXMobile fullWidth width="100%"> <Flex> <table> <thead> @@ -620,7 +670,7 @@ const DesignTokens = ({ location }) => ( Intended to be used with the <code>transition</code> CSS property. </p> </CopyColumn> - <ContentColumn> + <ContentColumn overflowXMobile> <Flex> <table> <thead>
daaa3a8e23e58a39cf7f7768ad8fd92132fc4404
2020-02-06 01:52:57
Daryl Chan
fix(gatsby-graphiql-explorer): Allow graphiql to set initial query variables from query string (#21158)
false
Allow graphiql to set initial query variables from query string (#21158)
fix
diff --git a/packages/gatsby-graphiql-explorer/src/app/app.js b/packages/gatsby-graphiql-explorer/src/app/app.js index 2c14e283a0fea..68733be6ff8fb 100644 --- a/packages/gatsby-graphiql-explorer/src/app/app.js +++ b/packages/gatsby-graphiql-explorer/src/app/app.js @@ -90,6 +90,11 @@ const DEFAULT_QUERY = (window.localStorage && window.localStorage.getItem(`graphiql:query`)) || null +const DEFAULT_VARIABLES = + parameters.variables || + (window.localStorage && window.localStorage.getItem(`graphiql:variables`)) || + null + const QUERY_EXAMPLE_SITEMETADATA_TITLE = `# { # site { # siteMetadata { @@ -159,6 +164,7 @@ class App extends React.Component { state = { schema: null, query: DEFAULT_QUERY, + variables: DEFAULT_VARIABLES, explorerIsOpen: storedExplorerPaneState, codeExporterIsOpen: storedCodeExporterPaneState, } @@ -297,7 +303,7 @@ class App extends React.Component { } render() { - const { query, schema, codeExporterIsOpen } = this.state + const { query, variables, schema, codeExporterIsOpen } = this.state const codeExporter = codeExporterIsOpen ? ( <CodeExporter hideCodeExporter={this._handleToggleExporter} @@ -324,6 +330,7 @@ class App extends React.Component { fetcher={graphQLFetcher} schema={schema} query={query} + variables={variables} onEditQuery={this._handleEditQuery} onEditVariables={onEditVariables} onEditOperationName={onEditOperationName}
64026113b1ca9b63ba94b4d47bb72fc03323dadf
2019-11-11 20:50:12
Chris Chapman
chore(showcase): Add Wealthsimple (#19410)
false
Add Wealthsimple (#19410)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index 405d61088e3b2..cc48f7167e9cf 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -8381,6 +8381,16 @@ - User Experience built_by: Binaria built_by_url: "https://binaria.com/" +- title: Wealthsimple + url: "https://www.wealthsimple.com/" + main_url: "https://www.wealthsimple.com/en-us/" + description: > + The simple way to grow your money like the world's most sophisticated investors. Zero-maintenance portfolios, expert advisors and low fees. + categories: + - App + - Business + - Finance + featured: false - title: To Be Created description: > tbc is a London based styling agency that champions a modernised minimal aesthetic for both personal clients and brands.
24c85ebe1cc3084ad57ef357457c204d1600ce24
2019-02-20 00:42:55
Volker Rose
fix(docs): Remove gatsbyjswpexample.wordpress.com occurrences (#11905)
false
Remove gatsbyjswpexample.wordpress.com occurrences (#11905)
fix
diff --git a/docs/docs/image-tutorial.md b/docs/docs/image-tutorial.md index adc83bd0e49c8..fff0b01d2c19d 100644 --- a/docs/docs/image-tutorial.md +++ b/docs/docs/image-tutorial.md @@ -48,7 +48,7 @@ module.exports = { options: { /* * The base URL of the WordPress site without the trailingslash and the protocol. This is required. - * Example : 'gatsbyjswpexample.wordpress.com' or 'www.example-site.com' + * Example : 'dev-gatbsyjswp.pantheonsite.io' or 'www.example-site.com' */ baseUrl: `dev-gatbsyjswp.pantheonsite.io`, // The protocol. This can be http or https. @@ -95,7 +95,7 @@ module.exports = { options: { /* * The base URL of the WordPress site without the trailing slash and the protocol. This is required. - * Example : 'gatsbyjswpexample.wordpress.com' or 'www.example-site.com' + * Example : 'dev-gatbsyjswp.pantheonsite.io' or 'www.example-site.com' */ baseUrl: `dev-gatbsyjswp.pantheonsite.io`, // The protocol. This can be http or https. diff --git a/docs/docs/wordpress-source-plugin-tutorial.md b/docs/docs/wordpress-source-plugin-tutorial.md index 75ea75d1a1944..c3b8f8afc4903 100644 --- a/docs/docs/wordpress-source-plugin-tutorial.md +++ b/docs/docs/wordpress-source-plugin-tutorial.md @@ -54,7 +54,7 @@ module.exports = { options: { /* * The base URL of the WordPress site without the trailingslash and the protocol. This is required. - * Example : 'gatsbyjswpexample.wordpress.com' or 'www.example-site.com' + * Example : 'dev-gatbsyjswp.pantheonsite.io' or 'www.example-site.com' */ baseUrl: `dev-gatbsyjswp.pantheonsite.io`, // The protocol. This can be http or https. diff --git a/examples/using-wordpress/gatsby-config.js b/examples/using-wordpress/gatsby-config.js index e042efc0e0f50..6e6e97504b7d3 100644 --- a/examples/using-wordpress/gatsby-config.js +++ b/examples/using-wordpress/gatsby-config.js @@ -14,7 +14,7 @@ module.exports = { options: { /* * The base URL of the Wordpress site without the trailingslash and the protocol. This is required. - * Example : 'gatsbyjswpexample.wordpress.com' or 'www.example-site.com' + * Example : 'dev-gatbsyjswp.pantheonsite.io' or 'www.example-site.com' */ baseUrl: `dev-gatbsyjswp.pantheonsite.io`, // The protocol. This can be http or https.
83517c47ac86d95bc0151e9596d21460abfb5c61
2019-04-12 20:15:09
Rick Brown
chore(gatsby): update dependencies (#13296)
false
update dependencies (#13296)
chore
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 92c571cebc09e..d083569f9d69c 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -53,13 +53,13 @@ "eslint-config-react-app": "^3.0.0", "eslint-loader": "^2.1.0", "eslint-plugin-flowtype": "^2.46.1", - "eslint-plugin-graphql": "^2.0.0", + "eslint-plugin-graphql": "^3.0.3", "eslint-plugin-import": "^2.9.0", "eslint-plugin-jsx-a11y": "^6.0.3", "eslint-plugin-react": "^7.8.2", "event-source-polyfill": "^1.0.5", "express": "^4.16.3", - "express-graphql": "^0.6.12", + "express-graphql": "^0.7.1", "fast-levenshtein": "~2.0.4", "file-loader": "^1.1.11", "flat": "^4.0.0", @@ -74,8 +74,6 @@ "graphql": "^14.1.1", "graphql-compose": "^6.0.3", "graphql-playground-middleware-express": "^1.7.10", - "graphql-relay": "^0.6.0", - "graphql-tools": "^3.0.4", "hash-mod": "^0.0.5", "invariant": "^2.2.4", "is-relative": "^1.0.0", diff --git a/yarn.lock b/yarn.lock index 65d0f1ae45c88..3313a348f4108 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3095,7 +3095,7 @@ abbrev@1: resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== -accepts@^1.3.0, accepts@~1.3.4, accepts@~1.3.5: +accepts@^1.3.5, accepts@~1.3.4, accepts@~1.3.5: version "1.3.5" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2" integrity sha1-63d99gEXI6OxTopywIBcjoZ0a9I= @@ -8382,10 +8382,10 @@ eslint-plugin-flowtype@^2.50.3: dependencies: lodash "^4.17.10" -eslint-plugin-graphql@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-graphql/-/eslint-plugin-graphql-2.1.1.tgz#dae5d597080075320ea8e98795056309ffe73a18" - integrity sha512-JT2paUyu3e9ZDnroSshwUMc6pKcnkfXTsZInX1+/rPotvqOLVLtdrx/cmfb7PTJwjiEAshwcpm3/XPdTpsKJPw== +eslint-plugin-graphql@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-graphql/-/eslint-plugin-graphql-3.0.3.tgz#9ecdaf5ea8397973e29cea9dbf860420694e9df0" + integrity sha512-hHwLyxSkC5rkakJ/SNTWwOswPdVhvfyMCnEOloevrLQIOHUNVIQBg1ljCaRe9C40HdzgcGUFUdG5BHLCKm8tuw== dependencies: graphql-config "^2.0.1" lodash "^4.11.1" @@ -8857,15 +8857,15 @@ expect@^24.0.0: jest-message-util "^24.0.0" jest-regex-util "^24.0.0" -express-graphql@^0.6.12: - version "0.6.12" - resolved "http://registry.npmjs.org/express-graphql/-/express-graphql-0.6.12.tgz#dfcb2058ca72ed5190b140830ad8cdbf76a9128a" - integrity sha512-ouLWV0hRw4hnaLtXzzwhdC79ewxKbY2PRvm05mPc/zOH5W5WVCHDQ1SmNxEPBQdUeeSNh29aIqW9zEQkA3kMuA== +express-graphql@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/express-graphql/-/express-graphql-0.7.1.tgz#6c7712ee966c3aba1930e064ea4c8181e56fd3ef" + integrity sha512-YpheAqTbSKpb5h57rV2yu2dPNUBi4FvZDspZ5iEV3ov34PBRgnM4lEBkv60+vZRJ6SweYL14N8AGYdov7g6ooQ== dependencies: - accepts "^1.3.0" + accepts "^1.3.5" content-type "^1.0.4" - http-errors "^1.3.0" - raw-body "^2.3.2" + http-errors "^1.7.1" + raw-body "^2.3.3" [email protected], express@^4.16.2, express@^4.16.3: version "4.16.3" @@ -10259,13 +10259,6 @@ graphql-playground-middleware-express@^1.7.10: dependencies: graphql-playground-html "1.6.11" -graphql-relay@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/graphql-relay/-/graphql-relay-0.6.0.tgz#18ec36b772cfcb3dbb9bd369c3f8004cf42c7b93" - integrity sha512-OVDi6C9/qOT542Q3KxZdXja3NrDvqzbihn1B44PH8P/c5s0Q90RyQwT6guhGqXqbYEH6zbeLJWjQqiYvcg2vVw== - dependencies: - prettier "^1.16.0" - graphql-request@^1.5.0, graphql-request@^1.6.0: version "1.8.2" resolved "https://registry.yarnpkg.com/graphql-request/-/graphql-request-1.8.2.tgz#398d10ae15c585676741bde3fc01d5ca948f8fbe" @@ -10851,14 +10844,14 @@ [email protected], http-errors@~1.6.2, http-errors@~1.6.3: setprototypeof "1.1.0" statuses ">= 1.4.0 < 2" -http-errors@^1.3.0: - version "1.7.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.1.tgz#6a4ffe5d35188e1c39f872534690585852e1f027" - integrity sha512-jWEUgtZWGSMba9I1N3gc1HmvpBUaNC9vDdA46yScAdp+C5rdEuKWUBLWTQpW9FwSWSbYYs++b6SDCxf9UEJzfw== +http-errors@^1.7.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== dependencies: depd "~1.1.2" inherits "2.0.3" - setprototypeof "1.1.0" + setprototypeof "1.1.1" statuses ">= 1.5.0 < 2" toidentifier "1.0.0" @@ -16751,11 +16744,6 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@^1.16.0: - version "1.16.3" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.3.tgz#8c62168453badef702f34b45b6ee899574a6a65d" - integrity sha512-kn/GU6SMRYPxUakNXhpP0EedT/KmaPzr0H5lIsDogrykbaxOpOfAFfk5XA7DZrJyMAv1wlMV3CPcZruGXVVUZw== - prettier@^1.16.4: version "1.16.4" resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717" @@ -17147,7 +17135,7 @@ [email protected]: iconv-lite "0.4.19" unpipe "1.0.0" [email protected], raw-body@^2.3.2: [email protected], raw-body@^2.3.3: version "2.3.3" resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3" integrity sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw== @@ -18715,6 +18703,11 @@ [email protected]: resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== [email protected]: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + sha.js@^2.4.0, sha.js@^2.4.8: version "2.4.11" resolved "http://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
065a551fb0d00872b1b23aeb7255ec93f376e9b6
2019-08-01 15:29:58
Sidhartha Chatterjee
fix(gatsby): Check if page exists before trying to get page data (#16220)
false
Check if page exists before trying to get page data (#16220)
fix
diff --git a/packages/gatsby/src/utils/websocket-manager.js b/packages/gatsby/src/utils/websocket-manager.js index 6ca2f55c6d52d..9037b770946ee 100644 --- a/packages/gatsby/src/utils/websocket-manager.js +++ b/packages/gatsby/src/utils/websocket-manager.js @@ -16,6 +16,19 @@ type QueryResult = { type QueryResultsMap = Map<string, QueryResult> +const denormalize = path => { + if (path === undefined) { + return path + } + if (path === `/`) { + return `/` + } + if (path.charAt(path.length - 1) !== `/`) { + return path + `/` + } + return path +} + /** * Get cached page query result for given page path. * @param {string} pagePath Path to a page. @@ -25,20 +38,23 @@ const getCachedPageData = async ( pagePath: string, directory: string ): QueryResult => { - const { program } = store.getState() + const { program, pages } = store.getState() const publicDir = path.join(program.directory, `public`) - try { - const pageData = await pageDataUtil.read({ publicDir }, pagePath) - return { - result: pageData.result, - id: pagePath, + if (pages.has(denormalize(pagePath)) || pages.has(pagePath)) { + try { + const pageData = await pageDataUtil.read({ publicDir }, pagePath) + return { + result: pageData.result, + id: pagePath, + } + } catch (err) { + console.log( + `Error loading a result for the page query in "${pagePath}". Query was not run and no cached result was found.` + ) + return undefined } - } catch (err) { - console.log( - `Error loading a result for the page query in "${pagePath}". Query was not run and no cached result was found.` - ) - return undefined } + return undefined } const hashPaths = paths => {
58fe032bfe7b840bd1550fa875d7b1ca664c91af
2019-11-12 20:59:27
Robin MacPherson
fix(gatsby): add / to prefix when stripping prefixes (#17544)
false
add / to prefix when stripping prefixes (#17544)
fix
diff --git a/e2e-tests/path-prefix/cypress/integration/path-prefix.js b/e2e-tests/path-prefix/cypress/integration/path-prefix.js index 00fb257b158da..1faca07f93631 100644 --- a/e2e-tests/path-prefix/cypress/integration/path-prefix.js +++ b/e2e-tests/path-prefix/cypress/integration/path-prefix.js @@ -44,5 +44,14 @@ describe(`Production pathPrefix`, () => { cy.location(`pathname`).should(`eq`, withTrailingSlash(pathPrefix)) }) + + it(`can navigate to the blogtest page that contains the blog prefix`, () => { + cy.getTestElement(`page-blogtest-link`).click() + + cy.location(`pathname`).should( + `eq`, + withTrailingSlash(`${pathPrefix}/blogtest`) + ) + }) }) }) diff --git a/e2e-tests/path-prefix/src/pages/blogtest.js b/e2e-tests/path-prefix/src/pages/blogtest.js new file mode 100644 index 0000000000000..297935c4aa85c --- /dev/null +++ b/e2e-tests/path-prefix/src/pages/blogtest.js @@ -0,0 +1,16 @@ +import React from 'react' +import { Link } from 'gatsby' + +import Layout from '../components/layout' + +const Blogtest = () => ( + <Layout> + <h1>Hi from the blogtest page</h1> + <p>Welcome to page blogtest</p> + <Link data-testid="index-link" to="/"> + Go back to the homepage + </Link> + </Layout> +) + +export default Blogtest diff --git a/e2e-tests/path-prefix/src/pages/index.js b/e2e-tests/path-prefix/src/pages/index.js index ac7128877167d..43d78127a2c77 100644 --- a/e2e-tests/path-prefix/src/pages/index.js +++ b/e2e-tests/path-prefix/src/pages/index.js @@ -11,6 +11,9 @@ const IndexPage = () => ( <Link data-testid="page-2-link" to="/page-2/"> Go to page 2 </Link> + <Link data-testid="page-blogtest-link" to="/blogtest/"> + Go to blogtest + </Link> <button data-testid="page-2-button-link" onClick={() => navigate(`/page-2/`)} diff --git a/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader.js.snap b/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader.js.snap index f43ae2fb75f82..043c64a7b657a 100644 --- a/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader.js.snap +++ b/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader.js.snap @@ -10,7 +10,7 @@ Object { "componentChunkName": "chunk", "matchPath": undefined, "path": "/mypage/", - "webpackCompilationHash": "", + "webpackCompilationHash": "123", }, } `; diff --git a/packages/gatsby/cache-dir/__tests__/__snapshots__/loader.js.snap b/packages/gatsby/cache-dir/__tests__/__snapshots__/loader.js.snap index 2a10f26f4f517..a5094e0885d1b 100644 --- a/packages/gatsby/cache-dir/__tests__/__snapshots__/loader.js.snap +++ b/packages/gatsby/cache-dir/__tests__/__snapshots__/loader.js.snap @@ -10,7 +10,7 @@ Object { "componentChunkName": "chunk", "matchPath": undefined, "path": "/mypage/", - "webpackCompilationHash": "", + "webpackCompilationHash": "123", }, } `; diff --git a/packages/gatsby/cache-dir/__tests__/dev-loader.js b/packages/gatsby/cache-dir/__tests__/dev-loader.js index ead077fcb8b47..8e82edb546ac6 100644 --- a/packages/gatsby/cache-dir/__tests__/dev-loader.js +++ b/packages/gatsby/cache-dir/__tests__/dev-loader.js @@ -279,7 +279,7 @@ describe(`Dev loader`, () => { originalPathPrefix = global.__PATH_PREFIX__ global.__PATH_PREFIX__ = `` mock.setup() - mock.get(`/app-data.json`, (req, res) => + mock.get(`/page-data/app-data.json`, (req, res) => res .status(200) .header(`content-type`, `application/json`) diff --git a/packages/gatsby/cache-dir/__tests__/loader.js b/packages/gatsby/cache-dir/__tests__/loader.js index cfba630c53c3e..5a2c05d7e0387 100644 --- a/packages/gatsby/cache-dir/__tests__/loader.js +++ b/packages/gatsby/cache-dir/__tests__/loader.js @@ -265,7 +265,7 @@ describe(`Production loader`, () => { originalPathPrefix = global.__PATH_PREFIX__ global.__PATH_PREFIX__ = `` mock.setup() - mock.get(`/app-data.json`, (req, res) => + mock.get(`/page-data/app-data.json`, (req, res) => res .status(200) .header(`content-type`, `application/json`) diff --git a/packages/gatsby/cache-dir/__tests__/strip-prefix.js b/packages/gatsby/cache-dir/__tests__/strip-prefix.js index 78fc19be1d27c..5a220adb4e95f 100644 --- a/packages/gatsby/cache-dir/__tests__/strip-prefix.js +++ b/packages/gatsby/cache-dir/__tests__/strip-prefix.js @@ -9,6 +9,10 @@ describe(`strip-prefix`, () => { expect(stripPrefix(`/foo/foo/bar/`, `/foo`)).toBe(`/foo/bar/`) }) + it(`strips full instance only`, () => { + expect(stripPrefix(`/footest/`, `/foo`)).toBe(`/footest/`) + }) + it(`ignores prefix appearing elsewhere in the string`, () => { expect(stripPrefix(`/foo/bar/`, `bar`)).toBe(`/foo/bar/`) }) diff --git a/packages/gatsby/cache-dir/find-path.js b/packages/gatsby/cache-dir/find-path.js index fca4637235ed7..d90e9e9fe250d 100644 --- a/packages/gatsby/cache-dir/find-path.js +++ b/packages/gatsby/cache-dir/find-path.js @@ -6,9 +6,9 @@ const pathCache = new Map() let matchPaths = [] const trimPathname = rawPathname => { - let pathname = decodeURIComponent(rawPathname) + const pathname = decodeURIComponent(rawPathname) // Remove the pathPrefix from the pathname. - let trimmedPathname = stripPrefix(pathname, __BASE_PATH__) + const trimmedPathname = stripPrefix(pathname, __BASE_PATH__) // Remove any hashfragment .split(`#`)[0] // Remove search query diff --git a/packages/gatsby/cache-dir/strip-prefix.js b/packages/gatsby/cache-dir/strip-prefix.js index f5b83ccb56c71..2dda1fbcea17d 100644 --- a/packages/gatsby/cache-dir/strip-prefix.js +++ b/packages/gatsby/cache-dir/strip-prefix.js @@ -4,6 +4,15 @@ */ export default (str, prefix = ``) => { - if (str.substr(0, prefix.length) === prefix) return str.slice(prefix.length) + if (!prefix) { + return str + } + + prefix += `/` + + if (str.substr(0, prefix.length) === prefix) { + return str.slice(prefix.length - 1) + } + return str }
19e545946cbb4bdbad091b5be556f7ccf2234468
2021-11-02 15:45:33
renovate[bot]
chore(deps): update dependency prettier to ^2.4.1 (#33377)
false
update dependency prettier to ^2.4.1 (#33377)
chore
diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json index e8799dced1804..c3bd54bcd88e8 100644 --- a/packages/create-gatsby/package.json +++ b/packages/create-gatsby/package.json @@ -32,7 +32,7 @@ "joi": "^17.4.2", "microbundle": "^0.14.1", "node-fetch": "^2.6.6", - "prettier": "^2.3.2", + "prettier": "^2.4.1", "string-length": "^4.0.2", "terminal-link": "^2.1.1", "tiny-spin": "^1.0.2" diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index b13dd8cbe0d48..0b5c528cef879 100644 --- a/packages/gatsby-recipes/package.json +++ b/packages/gatsby-recipes/package.json @@ -48,7 +48,7 @@ "mkdirp": "^0.5.1", "node-fetch": "^2.5.0", "pkg-dir": "^4.2.0", - "prettier": "^2.3.2", + "prettier": "^2.4.1", "prop-types": "^15.6.1", "remark-mdx": "^2.0.0-next.4", "remark-mdxjs": "^2.0.0-next.4", diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json index ac050418cb2e8..4aad49d670f88 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -35,7 +35,7 @@ "cross-env": "^7.0.3", "gatsby-plugin-image": "^2.2.0-next.0", "msw": "^0.35.0", - "prettier": "^2.3.2", + "prettier": "^2.4.1", "prettier-check": "^2.0.0", "tsc-watch": "^4.5.0", "typescript": "^4.4.4" diff --git a/yarn.lock b/yarn.lock index 255aa13950e5a..4278e0a4eaed1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -20290,7 +20290,7 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" [email protected], prettier@^2.3.2: [email protected], prettier@^2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.4.1.tgz#671e11c89c14a4cfc876ce564106c4a6726c9f5c" integrity sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==
372345eedc1ed2625717fa7988a1174a93fb38ca
2022-10-26 03:40:19
Katherine Beck
fix(gatsby-source-wordpress): check for camelCase single field name (#36817)
false
check for camelCase single field name (#36817)
fix
diff --git a/packages/gatsby-source-wordpress/src/steps/source-nodes/helpers.js b/packages/gatsby-source-wordpress/src/steps/source-nodes/helpers.js index 9d6faad5d2870..ce5672c99034e 100644 --- a/packages/gatsby-source-wordpress/src/steps/source-nodes/helpers.js +++ b/packages/gatsby-source-wordpress/src/steps/source-nodes/helpers.js @@ -1,4 +1,5 @@ import store from "~/store" +import { camelCase } from "lodash" export const getTypeInfoBySingleName = singleName => { const { typeMap } = store.getState().remoteSchema @@ -16,9 +17,10 @@ export const getTypeInfoBySingleName = singleName => { export const getQueryInfoBySingleFieldName = singleName => { const { nodeQueries } = store.getState().remoteSchema - const queryInfo = Object.values(nodeQueries).find( - q => q.typeInfo.singularName === singleName + q => + q.typeInfo.singularName === singleName || + q.typeInfo.singularName === camelCase(singleName) ) return queryInfo diff --git a/packages/gatsby-source-wordpress/src/steps/source-nodes/update-nodes/wp-actions/update.js b/packages/gatsby-source-wordpress/src/steps/source-nodes/update-nodes/wp-actions/update.js index 693859e4cb148..88a4318cafbcd 100644 --- a/packages/gatsby-source-wordpress/src/steps/source-nodes/update-nodes/wp-actions/update.js +++ b/packages/gatsby-source-wordpress/src/steps/source-nodes/update-nodes/wp-actions/update.js @@ -11,6 +11,7 @@ import fetchReferencedMediaItemsAndCreateNodes, { import { dump } from "dumper.js" import { atob } from "atob" +import { camelCase } from "lodash" import { buildTypeName, @@ -75,7 +76,7 @@ export const fetchAndCreateSingleNode = async ({ errorContext: `Error occurred while updating a single "${singleName}" node.`, }) - let remoteNode = data[singleName] + let remoteNode = data[singleName] || data[camelCase(singleName)] if (!data || !remoteNode) { reporter.warn(
d4a6529637a55c5afa5ea16dc76becb06fe9785c
2020-12-17 18:36:26
Peter van der Zee
chore(gatsby): refactor try/finally to .finally (#28436)
false
refactor try/finally to .finally (#28436)
chore
diff --git a/packages/gatsby/src/query/query-runner.ts b/packages/gatsby/src/query/query-runner.ts index 3967ea7547c62..12d34bbdce545 100644 --- a/packages/gatsby/src/query/query-runner.ts +++ b/packages/gatsby/src/query/query-runner.ts @@ -98,15 +98,15 @@ async function startQueryJob( } }, 15000) - try { - return await graphqlRunner.query(queryJob.query, queryJob.context, { + return graphqlRunner + .query(queryJob.query, queryJob.context, { parentSpan, queryName: queryJob.id, }) - } finally { - isPending = false - clearTimeout(timeoutId) - } + .finally(() => { + isPending = false + clearTimeout(timeoutId) + }) } export async function queryRunner(
2a7d93c1a87f0d553f4b3f52339660ba9b72ff43
2023-05-17 11:30:29
renovate[bot]
fix(deps): update starters and examples - gatsby (#38094)
false
update starters and examples - gatsby (#38094)
fix
diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index 41753cb21eb20..ff033b50c4e6d 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -11,17 +11,17 @@ "dependencies": { "@fontsource/merriweather": "^4.5.14", "@fontsource/montserrat": "^4.5.14", - "gatsby": "^5.9.1", - "gatsby-plugin-feed": "^5.9.0", - "gatsby-plugin-image": "^3.9.0", - "gatsby-plugin-manifest": "^5.9.0", - "gatsby-plugin-sharp": "^5.9.0", - "gatsby-remark-images": "^7.9.0", - "gatsby-remark-prismjs": "^7.9.0", - "gatsby-remark-responsive-iframe": "^6.9.0", - "gatsby-source-filesystem": "^5.9.0", - "gatsby-transformer-remark": "^6.9.0", - "gatsby-transformer-sharp": "^5.9.0", + "gatsby": "^5.10.0", + "gatsby-plugin-feed": "^5.10.0", + "gatsby-plugin-image": "^3.10.0", + "gatsby-plugin-manifest": "^5.10.0", + "gatsby-plugin-sharp": "^5.10.0", + "gatsby-remark-images": "^7.10.0", + "gatsby-remark-prismjs": "^7.10.0", + "gatsby-remark-responsive-iframe": "^6.10.0", + "gatsby-source-filesystem": "^5.10.0", + "gatsby-transformer-remark": "^6.10.0", + "gatsby-transformer-sharp": "^5.10.0", "prismjs": "^1.29.0", "react": "^18.1.0", "react-dom": "^18.1.0" @@ -971,11 +971,11 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1284,11 +1284,11 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" }, "engines": { @@ -1871,9 +1871,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "dependencies": { "regenerator-runtime": "^0.13.11" }, @@ -2037,14 +2037,14 @@ "integrity": "sha512-fTvrteVzuFUePhr4QYBGoK8G/YHLJ3IhF1HhKg0AxcFvZajJT7rM7ULdmKLSd2PkX44R3aaFZq1zDbmjbGGI+w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "dependencies": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0", @@ -2240,13 +2240,13 @@ } }, "node_modules/@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2255,13 +2255,13 @@ } }, "node_modules/@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2336,9 +2336,9 @@ } }, "node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -2389,12 +2389,12 @@ } }, "node_modules/@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "dependencies": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" @@ -2403,40 +2403,16 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/code-file-loader/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "dependencies": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2444,12 +2420,12 @@ } }, "node_modules/@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "dependencies": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" }, @@ -2457,36 +2433,12 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/load/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "dependencies": { - "@graphql-tools/utils": "9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/merge/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2494,9 +2446,9 @@ } }, "node_modules/@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "dependencies": { "tslib": "^2.4.0" }, @@ -2505,12 +2457,12 @@ } }, "node_modules/@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "dependencies": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2518,20 +2470,20 @@ } }, "node_modules/@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "dependencies": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" + "value-or-promise": "^1.0.12" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/schema/node_modules/@graphql-tools/utils": { + "node_modules/@graphql-tools/utils": { "version": "9.2.1", "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", @@ -2543,17 +2495,6 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", - "dependencies": { - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-typed-document-node/core": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz", @@ -2696,9 +2637,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dependencies": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -3911,9 +3852,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "node_modules/@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "dependencies": { "@types/node": "*" } @@ -3969,9 +3910,9 @@ "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "node_modules/@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "dependencies": { "@types/node": "*", "form-data": "^3.0.0" @@ -4037,14 +3978,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -4295,133 +4228,133 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -4790,9 +4723,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "funding": [ { "type": "opencollective", @@ -4804,8 +4737,8 @@ } ], "dependencies": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -5010,13 +4943,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0" @@ -5074,9 +5007,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -5091,8 +5024,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" }, "engines": { "node": ">=18.0.0" @@ -5189,9 +5122,9 @@ } }, "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -5297,9 +5230,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "funding": [ { "type": "opencollective", @@ -5311,10 +5244,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" }, "bin": { "browserslist": "cli.js" @@ -5479,9 +5412,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==", + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==", "funding": [ { "type": "opencollective", @@ -5490,6 +5423,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ] }, @@ -6150,9 +6087,9 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/core-js": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz", - "integrity": "sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==", + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -6160,11 +6097,11 @@ } }, "node_modules/core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "dependencies": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" }, "funding": { "type": "opencollective", @@ -6214,9 +6151,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "dependencies": { "@babel/runtime": "^7.20.13" }, @@ -6225,11 +6162,11 @@ } }, "node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "dependencies": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "node_modules/cross-spawn": { @@ -6502,9 +6439,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "node_modules/date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==", + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, "engines": { "node": ">=0.11" }, @@ -6608,9 +6548,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "node_modules/deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "engines": { "node": ">=0.10.0" } @@ -6963,9 +6903,9 @@ } }, "node_modules/engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "dependencies": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -6976,21 +6916,21 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" } }, @@ -7016,9 +6956,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==", + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==", "engines": { "node": ">=10.0.0" } @@ -7045,9 +6985,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -7172,9 +7112,9 @@ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "node_modules/es-shim-unscopables": { "version": "1.0.0", @@ -8534,9 +8474,9 @@ } }, "node_modules/gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8553,16 +8493,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -8570,36 +8510,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -8619,32 +8559,32 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -8657,7 +8597,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -8666,7 +8606,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -8679,28 +8619,28 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "bin": { @@ -8710,7 +8650,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.9.0" + "gatsby-sharp": "^1.10.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8718,9 +8658,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8731,7 +8671,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -8739,16 +8679,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -8757,7 +8697,7 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", @@ -8772,29 +8712,10 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-cli/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "dependencies": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -8818,50 +8739,29 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "dependencies": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "dependencies": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "bin": { - "semver": "bin/semver.js" + "core-js-compat": "3.30.1" } }, "node_modules/gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" }, "engines": { @@ -8874,15 +8774,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "dependencies": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8892,11 +8792,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -8917,15 +8817,15 @@ } }, "node_modules/gatsby-plugin-feed": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-5.9.0.tgz", - "integrity": "sha512-7m3aJAgCNkCpPlPOjvTIU++gM8LaQ3vzQqfGGu+5BZUULt2R3+n0DOJlge8RuAkEKBSAe97JEb6Q3xaBTJPxQg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-5.10.0.tgz", + "integrity": "sha512-eZbcaVxAwn/bXv7Npjz8q/QEa3/yDCrpeYxc7u6cnkp8CPxUzs4qKFbipPsih1GfABM4E1kJ3o+S/lr6//2n8w==", "dependencies": { "@babel/runtime": "^7.20.13", "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-plugin-utils": "^4.10.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" }, @@ -8939,22 +8839,22 @@ } }, "node_modules/gatsby-plugin-image": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.9.0.tgz", - "integrity": "sha512-9oTzosYPRwrw3BNgHgh+0BCpqBE83tBnuM7wuorHehdo1dmcGmz96e7qWfaRLY1LR08kxXLmbW0dWNZJXv66CQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.10.0.tgz", + "integrity": "sha512-6m8RsgA9+01zo5yow1LcA+zph5gjf1S9+zwWASo2d8jfGyHa0KFy3iiHoWKrwYIBOODUFWU/r8NPyVvu1YSyPw==", "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.13", "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" }, @@ -8976,15 +8876,15 @@ } }, "node_modules/gatsby-plugin-manifest": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.9.0.tgz", - "integrity": "sha512-6BrS5WprI+MJM4JsoJ30Z5cuKzICFlohpXiUMO2Xc+p2bzl+hgeIb06nm4lP52gNAPOVyLQDZDqB0PKRNYVe/w==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.10.0.tgz", + "integrity": "sha512-y3TUARyNaK29oD/8ZJOVvLVRvSvfKNjLHmNc0D6KPJRQld7T+ZKCZh4ylwN+Hor8vHnXKHyVoBZd+BIEjTBVAg==", "dependencies": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" @@ -8994,9 +8894,9 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -9004,10 +8904,10 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -9019,9 +8919,9 @@ } }, "node_modules/gatsby-plugin-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.9.0.tgz", - "integrity": "sha512-RXiRmuAwRZf7uqzoqBoG+7qbWWXCuf359Td+yKBLC7M+ktsfw9FMfivS6PpY6v+XmEztO8so1n+Sx+nOU5FScw==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.10.0.tgz", + "integrity": "sha512-hG95JQrpByH8w7Ey25zlFsvgyi99NFmk1+0hmKjMkfh43BxNsTuvhcB2kcbcO2FaZdO9OK89pilRGbLaeA0gew==", "dependencies": { "@babel/runtime": "^7.20.13", "async": "^3.2.4", @@ -9029,12 +8929,12 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" @@ -9070,9 +8970,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "dependencies": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -9080,7 +8980,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" }, "engines": { "node": ">=18.0.0" @@ -9090,18 +8990,18 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "dependencies": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" }, "engines": { @@ -9113,9 +9013,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "dependencies": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" @@ -9130,14 +9030,14 @@ } }, "node_modules/gatsby-remark-images": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.9.0.tgz", - "integrity": "sha512-sSQP5BUZ3UmgOuEtkyghYPqyKvgWG0QmP6Lpvnt0F2+bpj59crRfG2qDzRYFUbJ6JlQNLneitY76W/ynnRFsOg==", + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.10.0.tgz", + "integrity": "sha512-Oh2cTlsGn0gDZug8wuW+eiQn3EU0476B/U8ieyE6eiLy0kTybpUbF9Ic8InnIFJfDOB+hCX5Ve9Ao8nj+PnytQ==", "dependencies": { "@babel/runtime": "^7.20.13", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", @@ -9154,9 +9054,9 @@ } }, "node_modules/gatsby-remark-prismjs": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-7.9.0.tgz", - "integrity": "sha512-SSOO3FxIERCL+GmGMxDz0GRXj6UiCWIlKOBY32HZGQ7a1RctW5wVKFe14l4FbD85yyBA14+9TbTUKhyFd4vNIw==", + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-7.10.0.tgz", + "integrity": "sha512-J9a52Cbl+GrX4l2XHiO8OnBIJvs0FEtKhXlfzyKH5MipREkGFbq6ppm0YAXr2i2LSVvT71sXAJpKThStsq0Efw==", "dependencies": { "@babel/runtime": "^7.20.13", "parse-numeric-range": "^1.3.0", @@ -9171,9 +9071,9 @@ } }, "node_modules/gatsby-remark-responsive-iframe": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-6.9.0.tgz", - "integrity": "sha512-7f2bhz3+eoBurhR0CU9T25sByvg45ucGXLwoHXnvsT31Q6I3uQG2F7ixiMuEVccUOPnpiv4XEqWruguCwnwz/A==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-6.10.0.tgz", + "integrity": "sha512-segywgbmiZv5TrzuBXCo8Yu/Yrdd4SPaTtH5hljKj7X/+ufaUf4cFZPnlnU5heeGA9AYIp1aJKMEYv5zH0YxKA==", "dependencies": { "@babel/runtime": "^7.20.13", "cheerio": "^1.0.0-rc.10", @@ -9189,9 +9089,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "engines": { "node": ">=18.0.0" }, @@ -9202,31 +9102,30 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "dependencies": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-source-filesystem": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.9.0.tgz", - "integrity": "sha512-1DANeWOzkmAcstduQIjk0rLlijDlvVKwUvMTt/Mwj/HdESh+mQXjM9dlDRF3eZwZ2HJ9jiq5eZvfm8Yj67m1+A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.10.0.tgz", + "integrity": "sha512-pTcqFvngUqap4NJfzG9VMmJ4T5TTf/WsMVTVORw18kprXZBchioLu0m5vVb9Tm7/MW7XPXvKJPZQkw+/otmVYw==", "dependencies": { "@babel/runtime": "^7.20.13", "chokidar": "^3.5.3", "file-type": "^16.5.4", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", - "xstate": "^4.37.1" + "xstate": "^4.37.2" }, "engines": { "node": ">=18.0.0" @@ -9236,9 +9135,9 @@ } }, "node_modules/gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -9248,7 +9147,7 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -9258,32 +9157,13 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-transformer-remark": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-6.9.0.tgz", - "integrity": "sha512-zf1FqBL2B7NtlX7NdnAQEx7tX8XfS8G7wukudOzbJWkoOv3nTZEQRF8ifxbkwfzA3U3tjUimKtPmNVBAq/ONhQ==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-6.10.0.tgz", + "integrity": "sha512-Je8K75eNuVeGClegqb09KNbF3bSzNJSslEdzlH6AyyJYsh4A3DxFotA+5qshWCVx3J5psQ0cYoXGBXBbAltXOw==", "dependencies": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "gray-matter": "^4.0.3", "hast-util-raw": "^6.1.0", "hast-util-to-html": "^7.1.3", @@ -9313,18 +9193,18 @@ } }, "node_modules/gatsby-transformer-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.9.0.tgz", - "integrity": "sha512-kA1KTWxV9gcnwCW7r9JSdibGjK4XjnGQgVup05WDGRWw+oAZjW/aZGvHXhGfl1DhyL9t9DinJvoUpdSkk2jdNg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.10.0.tgz", + "integrity": "sha512-skV7QGP8LTVgItZFNHq+JH1YP5F39XKeDHfTWg5QMcV/qnwH9aGzhQxT/LY9liVzYi/XbAn51/pB1v0FSLoyOA==", "dependencies": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-plugin-utils": "^4.10.0", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" @@ -9335,9 +9215,9 @@ } }, "node_modules/gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "dependencies": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -9349,14 +9229,14 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "dependencies": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -9382,12 +9262,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -9408,16 +9288,16 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -9447,13 +9327,13 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "dependencies": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" }, "engines": { @@ -9473,12 +9353,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -9489,9 +9369,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -9501,12 +9381,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -9527,11 +9407,11 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "dependencies": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -9582,25 +9462,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/gatsby/node_modules/node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9842,9 +9703,9 @@ } }, "node_modules/graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "engines": { "node": ">=12" }, @@ -11075,9 +10936,9 @@ } }, "node_modules/joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "dependencies": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -12130,9 +11991,15 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -12213,9 +12080,9 @@ } }, "node_modules/node-abi": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.31.0.tgz", - "integrity": "sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "dependencies": { "semver": "^7.3.5" }, @@ -12229,9 +12096,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -12353,9 +12220,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -13328,9 +13195,9 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "funding": [ { "type": "opencollective", @@ -13339,10 +13206,14 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -14995,9 +14866,9 @@ } }, "node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -15024,9 +14895,9 @@ } }, "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "dependencies": { "lru-cache": "^6.0.0" }, @@ -15164,16 +15035,16 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "node_modules/sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "hasInstallScript": true, "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -15194,9 +15065,9 @@ } }, "node_modules/sharp/node_modules/node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -15334,9 +15205,9 @@ } }, "node_modules/slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==", + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", "engines": { "node": ">=8.0.0" } @@ -15351,15 +15222,15 @@ } }, "node_modules/socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "engines": { @@ -15367,18 +15238,21 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "dependencies": { + "ws": "~8.11.0" + } }, "node_modules/socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "engines": { @@ -16028,9 +15902,9 @@ } }, "node_modules/tar-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -16041,9 +15915,9 @@ } }, "node_modules/terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "dependencies": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -16058,15 +15932,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "engines": { "node": ">= 10.13.0" @@ -16104,9 +15978,9 @@ } }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dependencies": { "randombytes": "^2.1.0" } @@ -16391,9 +16265,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==", + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==", "funding": [ { "type": "opencollective", @@ -16890,21 +16764,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -16913,9 +16787,9 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, @@ -16997,11 +16871,6 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, - "node_modules/webpack/node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -17143,9 +17012,9 @@ } }, "node_modules/ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "engines": { "node": ">=10.0.0" }, @@ -17184,9 +17053,9 @@ } }, "node_modules/xstate": { - "version": "4.37.1", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.1.tgz", - "integrity": "sha512-MuB7s01nV5vG2CzaBg2msXLGz7JuS+x/NBkQuZAwgEYCnWA8iQMiRz2VGxD3pcFjZAOih3fOgDD3kDaFInEx+g==", + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==", "funding": { "type": "opencollective", "url": "https://opencollective.com/xstate" @@ -18123,11 +17992,11 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-syntax-import-assertions": { @@ -18319,11 +18188,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "requires": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -18709,9 +18578,9 @@ } }, "@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "requires": { "regenerator-runtime": "^0.13.11" } @@ -18833,14 +18702,14 @@ "integrity": "sha512-fTvrteVzuFUePhr4QYBGoK8G/YHLJ3IhF1HhKg0AxcFvZajJT7rM7ULdmKLSd2PkX44R3aaFZq1zDbmjbGGI+w==" }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "requires": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "@gatsbyjs/reach-router": { @@ -19012,13 +18881,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -19056,13 +18925,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -19100,9 +18969,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -19149,139 +19018,85 @@ } }, "@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "requires": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "requires": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "requires": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "requires": { - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "requires": { "tslib": "^2.4.0" } }, "@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "requires": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" } }, "@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "requires": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } + "value-or-promise": "^1.0.12" } }, "@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "requires": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }, @@ -19401,9 +19216,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "requires": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -20193,9 +20008,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "requires": { "@types/node": "*" } @@ -20250,9 +20065,9 @@ "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "requires": { "@types/node": "*", "form-data": "^3.0.0" @@ -20318,14 +20133,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "requires": { - "@types/node": "*" - } - }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -20484,133 +20291,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "requires": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -20873,12 +20680,12 @@ "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==" }, "autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -21031,13 +20838,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "requires": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -21085,9 +20892,9 @@ } }, "babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -21102,8 +20909,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" } }, "bail": { @@ -21163,9 +20970,9 @@ }, "dependencies": { "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -21256,14 +21063,14 @@ } }, "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" } }, "bser": { @@ -21380,9 +21187,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==" + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==" }, "capital-case": { "version": "1.0.4", @@ -21897,16 +21704,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz", - "integrity": "sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==" + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" }, "core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "requires": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" } }, "core-js-pure": { @@ -21941,19 +21748,19 @@ } }, "create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "requires": { "@babel/runtime": "^7.20.13" } }, "cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "requires": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "cross-spawn": { @@ -22143,9 +21950,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==" + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } }, "debug": { "version": "3.2.7", @@ -22222,9 +22032,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" }, "defer-to-connect": { "version": "2.0.1", @@ -22491,9 +22301,9 @@ } }, "engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "requires": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -22504,7 +22314,7 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "dependencies": { "debug": { @@ -22523,14 +22333,14 @@ } }, "engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" }, "dependencies": { @@ -22550,14 +22360,14 @@ } }, "engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==" + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==" }, "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -22657,9 +22467,9 @@ } }, "es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "es-shim-unscopables": { "version": "1.0.0", @@ -23649,9 +23459,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -23667,16 +23477,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -23684,36 +23494,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -23733,33 +23543,33 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-sharp": "^1.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-sharp": "^1.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -23772,7 +23582,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -23781,7 +23591,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -23794,40 +23604,40 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "dependencies": { "@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "requires": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -23837,27 +23647,27 @@ }, "dependencies": { "@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "requires": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" } }, "@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -23875,37 +23685,37 @@ } }, "@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "requires": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" } }, "@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==" + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==" }, "@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -23914,11 +23724,11 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "requires": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" } }, @@ -23944,21 +23754,13 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "requires": { - "whatwg-url": "^5.0.0" - } } } }, "gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -23968,7 +23770,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -23976,16 +23778,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -23994,29 +23796,19 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", "yargs": "^15.4.1", "yoga-layout-prebuilt": "^1.10.0", "yurnalist": "^2.1.0" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "requires": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -24037,66 +23829,50 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==" + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==" }, "gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "requires": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - }, - "dependencies": { - "core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "requires": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - } - }, - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } + "core-js-compat": "3.30.1" } }, "gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "requires": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -24111,56 +23887,56 @@ } }, "gatsby-plugin-feed": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-5.9.0.tgz", - "integrity": "sha512-7m3aJAgCNkCpPlPOjvTIU++gM8LaQ3vzQqfGGu+5BZUULt2R3+n0DOJlge8RuAkEKBSAe97JEb6Q3xaBTJPxQg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-5.10.0.tgz", + "integrity": "sha512-eZbcaVxAwn/bXv7Npjz8q/QEa3/yDCrpeYxc7u6cnkp8CPxUzs4qKFbipPsih1GfABM4E1kJ3o+S/lr6//2n8w==", "requires": { "@babel/runtime": "^7.20.13", "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-plugin-utils": "^4.10.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" } }, "gatsby-plugin-image": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.9.0.tgz", - "integrity": "sha512-9oTzosYPRwrw3BNgHgh+0BCpqBE83tBnuM7wuorHehdo1dmcGmz96e7qWfaRLY1LR08kxXLmbW0dWNZJXv66CQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.10.0.tgz", + "integrity": "sha512-6m8RsgA9+01zo5yow1LcA+zph5gjf1S9+zwWASo2d8jfGyHa0KFy3iiHoWKrwYIBOODUFWU/r8NPyVvu1YSyPw==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.13", "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" } }, "gatsby-plugin-manifest": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.9.0.tgz", - "integrity": "sha512-6BrS5WprI+MJM4JsoJ30Z5cuKzICFlohpXiUMO2Xc+p2bzl+hgeIb06nm4lP52gNAPOVyLQDZDqB0PKRNYVe/w==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.10.0.tgz", + "integrity": "sha512-y3TUARyNaK29oD/8ZJOVvLVRvSvfKNjLHmNc0D6KPJRQld7T+ZKCZh4ylwN+Hor8vHnXKHyVoBZd+BIEjTBVAg==", "requires": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", + "semver": "^7.5.0", + "sharp": "^0.32.1" } }, "gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "requires": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -24168,18 +23944,18 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.9.0.tgz", - "integrity": "sha512-RXiRmuAwRZf7uqzoqBoG+7qbWWXCuf359Td+yKBLC7M+ktsfw9FMfivS6PpY6v+XmEztO8so1n+Sx+nOU5FScw==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.10.0.tgz", + "integrity": "sha512-hG95JQrpByH8w7Ey25zlFsvgyi99NFmk1+0hmKjMkfh43BxNsTuvhcB2kcbcO2FaZdO9OK89pilRGbLaeA0gew==", "requires": { "@babel/runtime": "^7.20.13", "async": "^3.2.4", @@ -24187,12 +23963,12 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "dependencies": { "async": { @@ -24216,9 +23992,9 @@ } }, "gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "requires": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -24226,43 +24002,43 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" } }, "gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "requires": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" } }, "gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "requires": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" } }, "gatsby-remark-images": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.9.0.tgz", - "integrity": "sha512-sSQP5BUZ3UmgOuEtkyghYPqyKvgWG0QmP6Lpvnt0F2+bpj59crRfG2qDzRYFUbJ6JlQNLneitY76W/ynnRFsOg==", + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-7.10.0.tgz", + "integrity": "sha512-Oh2cTlsGn0gDZug8wuW+eiQn3EU0476B/U8ieyE6eiLy0kTybpUbF9Ic8InnIFJfDOB+hCX5Ve9Ao8nj+PnytQ==", "requires": { "@babel/runtime": "^7.20.13", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", @@ -24272,9 +24048,9 @@ } }, "gatsby-remark-prismjs": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-7.9.0.tgz", - "integrity": "sha512-SSOO3FxIERCL+GmGMxDz0GRXj6UiCWIlKOBY32HZGQ7a1RctW5wVKFe14l4FbD85yyBA14+9TbTUKhyFd4vNIw==", + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-7.10.0.tgz", + "integrity": "sha512-J9a52Cbl+GrX4l2XHiO8OnBIJvs0FEtKhXlfzyKH5MipREkGFbq6ppm0YAXr2i2LSVvT71sXAJpKThStsq0Efw==", "requires": { "@babel/runtime": "^7.20.13", "parse-numeric-range": "^1.3.0", @@ -24282,9 +24058,9 @@ } }, "gatsby-remark-responsive-iframe": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-6.9.0.tgz", - "integrity": "sha512-7f2bhz3+eoBurhR0CU9T25sByvg45ucGXLwoHXnvsT31Q6I3uQG2F7ixiMuEVccUOPnpiv4XEqWruguCwnwz/A==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-6.10.0.tgz", + "integrity": "sha512-segywgbmiZv5TrzuBXCo8Yu/Yrdd4SPaTtH5hljKj7X/+ufaUf4cFZPnlnU5heeGA9AYIp1aJKMEYv5zH0YxKA==", "requires": { "@babel/runtime": "^7.20.13", "cheerio": "^1.0.0-rc.10", @@ -24294,40 +24070,39 @@ } }, "gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "requires": {} }, "gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "requires": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" } }, "gatsby-source-filesystem": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.9.0.tgz", - "integrity": "sha512-1DANeWOzkmAcstduQIjk0rLlijDlvVKwUvMTt/Mwj/HdESh+mQXjM9dlDRF3eZwZ2HJ9jiq5eZvfm8Yj67m1+A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.10.0.tgz", + "integrity": "sha512-pTcqFvngUqap4NJfzG9VMmJ4T5TTf/WsMVTVORw18kprXZBchioLu0m5vVb9Tm7/MW7XPXvKJPZQkw+/otmVYw==", "requires": { "@babel/runtime": "^7.20.13", "chokidar": "^3.5.3", "file-type": "^16.5.4", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", - "xstate": "^4.37.1" + "xstate": "^4.37.2" } }, "gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.13", @@ -24336,30 +24111,20 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.9" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-transformer-remark": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-6.9.0.tgz", - "integrity": "sha512-zf1FqBL2B7NtlX7NdnAQEx7tX8XfS8G7wukudOzbJWkoOv3nTZEQRF8ifxbkwfzA3U3tjUimKtPmNVBAq/ONhQ==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-6.10.0.tgz", + "integrity": "sha512-Je8K75eNuVeGClegqb09KNbF3bSzNJSslEdzlH6AyyJYsh4A3DxFotA+5qshWCVx3J5psQ0cYoXGBXBbAltXOw==", "requires": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "gray-matter": "^4.0.3", "hast-util-raw": "^6.1.0", "hast-util-to-html": "^7.1.3", @@ -24383,24 +24148,24 @@ } }, "gatsby-transformer-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.9.0.tgz", - "integrity": "sha512-kA1KTWxV9gcnwCW7r9JSdibGjK4XjnGQgVup05WDGRWw+oAZjW/aZGvHXhGfl1DhyL9t9DinJvoUpdSkk2jdNg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.10.0.tgz", + "integrity": "sha512-skV7QGP8LTVgItZFNHq+JH1YP5F39XKeDHfTWg5QMcV/qnwH9aGzhQxT/LY9liVzYi/XbAn51/pB1v0FSLoyOA==", "requires": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-plugin-utils": "^4.10.0", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" } }, "gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "requires": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -24588,9 +24353,9 @@ } }, "graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "requires": {} }, "graphql-tag": { @@ -25435,9 +25200,9 @@ } }, "joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "requires": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -26239,9 +26004,9 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" }, "napi-build-utils": { "version": "1.0.2", @@ -26303,9 +26068,9 @@ } }, "node-abi": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.31.0.tgz", - "integrity": "sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "requires": { "semver": "^7.3.5" } @@ -26316,9 +26081,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "requires": { "whatwg-url": "^5.0.0" } @@ -26400,9 +26165,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "normalize-path": { "version": "3.0.0", @@ -27087,11 +26852,11 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "requires": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } @@ -28240,9 +28005,9 @@ } }, "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -28259,9 +28024,9 @@ } }, "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "requires": { "lru-cache": "^6.0.0" }, @@ -28381,15 +28146,15 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "requires": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -28401,9 +28166,9 @@ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" }, "node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" } } }, @@ -28496,9 +28261,9 @@ } }, "slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==" + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" }, "snake-case": { "version": "3.0.4", @@ -28510,15 +28275,15 @@ } }, "socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "requires": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -28538,18 +28303,21 @@ } }, "socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "requires": { + "ws": "~8.11.0" + } }, "socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -29030,9 +28798,9 @@ }, "dependencies": { "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -29042,9 +28810,9 @@ } }, "terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -29060,15 +28828,15 @@ } }, "terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "requires": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "dependencies": { "jest-worker": { @@ -29082,9 +28850,9 @@ } }, "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "requires": { "randombytes": "^2.1.0" } @@ -29302,9 +29070,9 @@ "peer": true }, "ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==" + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==" }, "unbox-primitive": { "version": "1.0.2", @@ -29638,21 +29406,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "requires": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -29661,18 +29429,13 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "dependencies": { - "@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -29831,9 +29594,9 @@ } }, "ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "requires": {} }, "xdg-basedir": { @@ -29852,9 +29615,9 @@ "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" }, "xstate": { - "version": "4.37.1", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.1.tgz", - "integrity": "sha512-MuB7s01nV5vG2CzaBg2msXLGz7JuS+x/NBkQuZAwgEYCnWA8iQMiRz2VGxD3pcFjZAOih3fOgDD3kDaFInEx+g==" + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==" }, "xtend": { "version": "4.0.2", diff --git a/starters/blog/package.json b/starters/blog/package.json index df5bdd24aab54..39f05a030f780 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -10,17 +10,17 @@ "dependencies": { "@fontsource/merriweather": "^4.5.14", "@fontsource/montserrat": "^4.5.14", - "gatsby": "^5.9.1", - "gatsby-plugin-feed": "^5.9.0", - "gatsby-plugin-image": "^3.9.0", - "gatsby-plugin-manifest": "^5.9.0", - "gatsby-plugin-sharp": "^5.9.0", - "gatsby-remark-images": "^7.9.0", - "gatsby-remark-prismjs": "^7.9.0", - "gatsby-remark-responsive-iframe": "^6.9.0", - "gatsby-source-filesystem": "^5.9.0", - "gatsby-transformer-remark": "^6.9.0", - "gatsby-transformer-sharp": "^5.9.0", + "gatsby": "^5.10.0", + "gatsby-plugin-feed": "^5.10.0", + "gatsby-plugin-image": "^3.10.0", + "gatsby-plugin-manifest": "^5.10.0", + "gatsby-plugin-sharp": "^5.10.0", + "gatsby-remark-images": "^7.10.0", + "gatsby-remark-prismjs": "^7.10.0", + "gatsby-remark-responsive-iframe": "^6.10.0", + "gatsby-source-filesystem": "^5.10.0", + "gatsby-transformer-remark": "^6.10.0", + "gatsby-transformer-sharp": "^5.10.0", "prismjs": "^1.29.0", "react": "^18.1.0", "react-dom": "^18.1.0" diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index 94e0b69e721ed..c1d3f25eaca81 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -9,12 +9,12 @@ "version": "0.1.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.9.1", - "gatsby-plugin-image": "^3.9.0", - "gatsby-plugin-manifest": "^5.9.0", - "gatsby-plugin-sharp": "^5.9.0", - "gatsby-source-filesystem": "^5.9.0", - "gatsby-transformer-sharp": "^5.9.0", + "gatsby": "^5.10.0", + "gatsby-plugin-image": "^3.10.0", + "gatsby-plugin-manifest": "^5.10.0", + "gatsby-plugin-sharp": "^5.10.0", + "gatsby-source-filesystem": "^5.10.0", + "gatsby-transformer-sharp": "^5.10.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, @@ -963,11 +963,11 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1276,11 +1276,11 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" }, "engines": { @@ -1863,9 +1863,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "dependencies": { "regenerator-runtime": "^0.13.11" }, @@ -2019,14 +2019,14 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "dependencies": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0", @@ -2222,13 +2222,13 @@ } }, "node_modules/@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2237,13 +2237,13 @@ } }, "node_modules/@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2318,9 +2318,9 @@ } }, "node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -2371,12 +2371,12 @@ } }, "node_modules/@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "dependencies": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" @@ -2385,40 +2385,16 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/code-file-loader/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "dependencies": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2426,12 +2402,12 @@ } }, "node_modules/@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "dependencies": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" }, @@ -2439,36 +2415,12 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/load/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "dependencies": { - "@graphql-tools/utils": "9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/merge/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2476,9 +2428,9 @@ } }, "node_modules/@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "dependencies": { "tslib": "^2.4.0" }, @@ -2487,12 +2439,12 @@ } }, "node_modules/@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "dependencies": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2500,20 +2452,20 @@ } }, "node_modules/@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "dependencies": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" + "value-or-promise": "^1.0.12" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/schema/node_modules/@graphql-tools/utils": { + "node_modules/@graphql-tools/utils": { "version": "9.2.1", "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", @@ -2525,17 +2477,6 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", - "dependencies": { - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-typed-document-node/core": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz", @@ -2652,9 +2593,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dependencies": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -3854,9 +3795,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "node_modules/@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "dependencies": { "@types/node": "*" } @@ -3904,9 +3845,9 @@ "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "node_modules/@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "dependencies": { "@types/node": "*", "form-data": "^3.0.0" @@ -3967,14 +3908,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -4220,133 +4153,133 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -4706,9 +4639,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "funding": [ { "type": "opencollective", @@ -4720,8 +4653,8 @@ } ], "dependencies": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -4926,13 +4859,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0" @@ -4990,9 +4923,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -5007,8 +4940,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" }, "engines": { "node": ">=18.0.0" @@ -5096,9 +5029,9 @@ } }, "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -5204,9 +5137,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "funding": [ { "type": "opencollective", @@ -5218,10 +5151,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" }, "bin": { "browserslist": "cli.js" @@ -5386,9 +5319,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==", + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==", "funding": [ { "type": "opencollective", @@ -5397,6 +5330,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ] }, @@ -5956,9 +5893,9 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/core-js": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz", - "integrity": "sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==", + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -5966,11 +5903,11 @@ } }, "node_modules/core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "dependencies": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" }, "funding": { "type": "opencollective", @@ -6020,9 +5957,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "dependencies": { "@babel/runtime": "^7.20.13" }, @@ -6031,11 +5968,11 @@ } }, "node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "dependencies": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "node_modules/cross-spawn": { @@ -6303,9 +6240,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "node_modules/date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==", + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, "engines": { "node": ">=0.11" }, @@ -6409,9 +6349,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "node_modules/deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "engines": { "node": ">=0.10.0" } @@ -6764,9 +6704,9 @@ } }, "node_modules/engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "dependencies": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -6777,21 +6717,21 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" } }, @@ -6817,9 +6757,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==", + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==", "engines": { "node": ">=10.0.0" } @@ -6846,9 +6786,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -6970,9 +6910,9 @@ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "node_modules/es-shim-unscopables": { "version": "1.0.0", @@ -8316,9 +8256,9 @@ } }, "node_modules/gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8335,16 +8275,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -8352,36 +8292,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -8401,32 +8341,32 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -8439,7 +8379,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -8448,7 +8388,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -8461,28 +8401,28 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "bin": { @@ -8492,7 +8432,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.9.0" + "gatsby-sharp": "^1.10.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8500,9 +8440,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8513,7 +8453,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -8521,16 +8461,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -8539,7 +8479,7 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", @@ -8554,29 +8494,10 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-cli/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "dependencies": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -8600,50 +8521,29 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "dependencies": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "dependencies": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "bin": { - "semver": "bin/semver.js" + "core-js-compat": "3.30.1" } }, "node_modules/gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" }, "engines": { @@ -8656,15 +8556,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "dependencies": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8674,11 +8574,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -8699,22 +8599,22 @@ } }, "node_modules/gatsby-plugin-image": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.9.0.tgz", - "integrity": "sha512-9oTzosYPRwrw3BNgHgh+0BCpqBE83tBnuM7wuorHehdo1dmcGmz96e7qWfaRLY1LR08kxXLmbW0dWNZJXv66CQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.10.0.tgz", + "integrity": "sha512-6m8RsgA9+01zo5yow1LcA+zph5gjf1S9+zwWASo2d8jfGyHa0KFy3iiHoWKrwYIBOODUFWU/r8NPyVvu1YSyPw==", "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.13", "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" }, @@ -8736,15 +8636,15 @@ } }, "node_modules/gatsby-plugin-manifest": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.9.0.tgz", - "integrity": "sha512-6BrS5WprI+MJM4JsoJ30Z5cuKzICFlohpXiUMO2Xc+p2bzl+hgeIb06nm4lP52gNAPOVyLQDZDqB0PKRNYVe/w==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.10.0.tgz", + "integrity": "sha512-y3TUARyNaK29oD/8ZJOVvLVRvSvfKNjLHmNc0D6KPJRQld7T+ZKCZh4ylwN+Hor8vHnXKHyVoBZd+BIEjTBVAg==", "dependencies": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" @@ -8754,9 +8654,9 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -8764,10 +8664,10 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8779,9 +8679,9 @@ } }, "node_modules/gatsby-plugin-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.9.0.tgz", - "integrity": "sha512-RXiRmuAwRZf7uqzoqBoG+7qbWWXCuf359Td+yKBLC7M+ktsfw9FMfivS6PpY6v+XmEztO8so1n+Sx+nOU5FScw==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.10.0.tgz", + "integrity": "sha512-hG95JQrpByH8w7Ey25zlFsvgyi99NFmk1+0hmKjMkfh43BxNsTuvhcB2kcbcO2FaZdO9OK89pilRGbLaeA0gew==", "dependencies": { "@babel/runtime": "^7.20.13", "async": "^3.2.4", @@ -8789,12 +8689,12 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" @@ -8830,9 +8730,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "dependencies": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -8840,7 +8740,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" }, "engines": { "node": ">=18.0.0" @@ -8850,18 +8750,18 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "dependencies": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" }, "engines": { @@ -8873,9 +8773,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "dependencies": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" @@ -8890,9 +8790,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "engines": { "node": ">=18.0.0" }, @@ -8903,31 +8803,30 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "dependencies": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-source-filesystem": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.9.0.tgz", - "integrity": "sha512-1DANeWOzkmAcstduQIjk0rLlijDlvVKwUvMTt/Mwj/HdESh+mQXjM9dlDRF3eZwZ2HJ9jiq5eZvfm8Yj67m1+A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.10.0.tgz", + "integrity": "sha512-pTcqFvngUqap4NJfzG9VMmJ4T5TTf/WsMVTVORw18kprXZBchioLu0m5vVb9Tm7/MW7XPXvKJPZQkw+/otmVYw==", "dependencies": { "@babel/runtime": "^7.20.13", "chokidar": "^3.5.3", "file-type": "^16.5.4", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", - "xstate": "^4.37.1" + "xstate": "^4.37.2" }, "engines": { "node": ">=18.0.0" @@ -8937,9 +8836,9 @@ } }, "node_modules/gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8949,7 +8848,7 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8959,38 +8858,19 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-transformer-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.9.0.tgz", - "integrity": "sha512-kA1KTWxV9gcnwCW7r9JSdibGjK4XjnGQgVup05WDGRWw+oAZjW/aZGvHXhGfl1DhyL9t9DinJvoUpdSkk2jdNg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.10.0.tgz", + "integrity": "sha512-skV7QGP8LTVgItZFNHq+JH1YP5F39XKeDHfTWg5QMcV/qnwH9aGzhQxT/LY9liVzYi/XbAn51/pB1v0FSLoyOA==", "dependencies": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-plugin-utils": "^4.10.0", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" @@ -9001,9 +8881,9 @@ } }, "node_modules/gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "dependencies": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -9015,14 +8895,14 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "dependencies": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -9048,12 +8928,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -9074,16 +8954,16 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -9113,13 +8993,13 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "dependencies": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" }, "engines": { @@ -9139,12 +9019,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -9155,9 +9035,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -9167,12 +9047,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -9193,11 +9073,11 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "dependencies": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -9248,25 +9128,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/gatsby/node_modules/node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9503,9 +9364,9 @@ } }, "node_modules/graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "engines": { "node": ">=12" }, @@ -10491,9 +10352,9 @@ } }, "node_modules/joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "dependencies": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -11181,9 +11042,15 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -11255,9 +11122,9 @@ } }, "node_modules/node-abi": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.31.0.tgz", - "integrity": "sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "dependencies": { "semver": "^7.3.5" }, @@ -11271,9 +11138,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -11332,9 +11199,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -12223,9 +12090,9 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "funding": [ { "type": "opencollective", @@ -12234,10 +12101,14 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -13651,9 +13522,9 @@ } }, "node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -13668,9 +13539,9 @@ } }, "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "dependencies": { "lru-cache": "^6.0.0" }, @@ -13808,16 +13679,16 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "node_modules/sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "hasInstallScript": true, "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -13838,9 +13709,9 @@ } }, "node_modules/sharp/node_modules/node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -13978,9 +13849,9 @@ } }, "node_modules/slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==", + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", "engines": { "node": ">=8.0.0" } @@ -13995,15 +13866,15 @@ } }, "node_modules/socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "engines": { @@ -14011,18 +13882,21 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "dependencies": { + "ws": "~8.11.0" + } }, "node_modules/socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "engines": { @@ -14570,9 +14444,9 @@ } }, "node_modules/tar-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -14583,9 +14457,9 @@ } }, "node_modules/terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "dependencies": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -14600,15 +14474,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "engines": { "node": ">= 10.13.0" @@ -14646,9 +14520,9 @@ } }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dependencies": { "randombytes": "^2.1.0" } @@ -14924,9 +14798,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==", + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==", "funding": [ { "type": "opencollective", @@ -15206,21 +15080,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -15229,9 +15103,9 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, @@ -15313,11 +15187,6 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, - "node_modules/webpack/node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -15459,9 +15328,9 @@ } }, "node_modules/ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "engines": { "node": ">=10.0.0" }, @@ -15495,9 +15364,9 @@ } }, "node_modules/xstate": { - "version": "4.37.1", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.1.tgz", - "integrity": "sha512-MuB7s01nV5vG2CzaBg2msXLGz7JuS+x/NBkQuZAwgEYCnWA8iQMiRz2VGxD3pcFjZAOih3fOgDD3kDaFInEx+g==", + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==", "funding": { "type": "opencollective", "url": "https://opencollective.com/xstate" @@ -16425,11 +16294,11 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-syntax-import-assertions": { @@ -16621,11 +16490,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "requires": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -17011,9 +16880,9 @@ } }, "@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "requires": { "regenerator-runtime": "^0.13.11" } @@ -17125,14 +16994,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "requires": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "@gatsbyjs/reach-router": { @@ -17304,13 +17173,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -17348,13 +17217,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -17392,9 +17261,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -17441,139 +17310,85 @@ } }, "@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "requires": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "requires": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "requires": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "requires": { - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "requires": { "tslib": "^2.4.0" } }, "@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "requires": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" } }, "@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "requires": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } + "value-or-promise": "^1.0.12" } }, "@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "requires": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }, @@ -17672,9 +17487,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "requires": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -18449,9 +18264,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "requires": { "@types/node": "*" } @@ -18498,9 +18313,9 @@ "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "requires": { "@types/node": "*", "form-data": "^3.0.0" @@ -18561,14 +18376,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "requires": { - "@types/node": "*" - } - }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -18722,133 +18529,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "requires": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -19106,12 +18913,12 @@ "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==" }, "autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -19264,13 +19071,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "requires": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -19318,9 +19125,9 @@ } }, "babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -19335,8 +19142,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" } }, "balanced-match": { @@ -19391,9 +19198,9 @@ }, "dependencies": { "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -19484,14 +19291,14 @@ } }, "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" } }, "bser": { @@ -19608,9 +19415,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==" + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==" }, "capital-case": { "version": "1.0.4", @@ -20058,16 +19865,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz", - "integrity": "sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==" + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" }, "core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "requires": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" } }, "core-js-pure": { @@ -20102,19 +19909,19 @@ } }, "create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "requires": { "@babel/runtime": "^7.20.13" } }, "cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "requires": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "cross-spawn": { @@ -20299,9 +20106,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==" + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } }, "debug": { "version": "3.2.7", @@ -20378,9 +20188,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" }, "defer-to-connect": { "version": "2.0.1", @@ -20647,9 +20457,9 @@ } }, "engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "requires": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -20660,7 +20470,7 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "dependencies": { "debug": { @@ -20679,14 +20489,14 @@ } }, "engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" }, "dependencies": { @@ -20706,14 +20516,14 @@ } }, "engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==" + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==" }, "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -20813,9 +20623,9 @@ } }, "es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "es-shim-unscopables": { "version": "1.0.0", @@ -21792,9 +21602,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -21810,16 +21620,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -21827,36 +21637,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -21876,33 +21686,33 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-sharp": "^1.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-sharp": "^1.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -21915,7 +21725,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -21924,7 +21734,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -21937,40 +21747,40 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "dependencies": { "@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "requires": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -21980,27 +21790,27 @@ }, "dependencies": { "@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "requires": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" } }, "@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -22018,37 +21828,37 @@ } }, "@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "requires": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" } }, "@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==" + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==" }, "@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -22057,11 +21867,11 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "requires": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" } }, @@ -22087,21 +21897,13 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "requires": { - "whatwg-url": "^5.0.0" - } } } }, "gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -22111,7 +21913,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -22119,16 +21921,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -22137,29 +21939,19 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", "yargs": "^15.4.1", "yoga-layout-prebuilt": "^1.10.0", "yurnalist": "^2.1.0" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "requires": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -22180,66 +21972,50 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==" + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==" }, "gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "requires": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - }, - "dependencies": { - "core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "requires": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - } - }, - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } + "core-js-compat": "3.30.1" } }, "gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "requires": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -22254,42 +22030,42 @@ } }, "gatsby-plugin-image": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.9.0.tgz", - "integrity": "sha512-9oTzosYPRwrw3BNgHgh+0BCpqBE83tBnuM7wuorHehdo1dmcGmz96e7qWfaRLY1LR08kxXLmbW0dWNZJXv66CQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.10.0.tgz", + "integrity": "sha512-6m8RsgA9+01zo5yow1LcA+zph5gjf1S9+zwWASo2d8jfGyHa0KFy3iiHoWKrwYIBOODUFWU/r8NPyVvu1YSyPw==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.13", "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" } }, "gatsby-plugin-manifest": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.9.0.tgz", - "integrity": "sha512-6BrS5WprI+MJM4JsoJ30Z5cuKzICFlohpXiUMO2Xc+p2bzl+hgeIb06nm4lP52gNAPOVyLQDZDqB0PKRNYVe/w==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.10.0.tgz", + "integrity": "sha512-y3TUARyNaK29oD/8ZJOVvLVRvSvfKNjLHmNc0D6KPJRQld7T+ZKCZh4ylwN+Hor8vHnXKHyVoBZd+BIEjTBVAg==", "requires": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", + "semver": "^7.5.0", + "sharp": "^0.32.1" } }, "gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "requires": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -22297,18 +22073,18 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.9.0.tgz", - "integrity": "sha512-RXiRmuAwRZf7uqzoqBoG+7qbWWXCuf359Td+yKBLC7M+ktsfw9FMfivS6PpY6v+XmEztO8so1n+Sx+nOU5FScw==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.10.0.tgz", + "integrity": "sha512-hG95JQrpByH8w7Ey25zlFsvgyi99NFmk1+0hmKjMkfh43BxNsTuvhcB2kcbcO2FaZdO9OK89pilRGbLaeA0gew==", "requires": { "@babel/runtime": "^7.20.13", "async": "^3.2.4", @@ -22316,12 +22092,12 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "dependencies": { "async": { @@ -22345,9 +22121,9 @@ } }, "gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "requires": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -22355,69 +22131,68 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" } }, "gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "requires": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" } }, "gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "requires": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "requires": {} }, "gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "requires": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" } }, "gatsby-source-filesystem": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.9.0.tgz", - "integrity": "sha512-1DANeWOzkmAcstduQIjk0rLlijDlvVKwUvMTt/Mwj/HdESh+mQXjM9dlDRF3eZwZ2HJ9jiq5eZvfm8Yj67m1+A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.10.0.tgz", + "integrity": "sha512-pTcqFvngUqap4NJfzG9VMmJ4T5TTf/WsMVTVORw18kprXZBchioLu0m5vVb9Tm7/MW7XPXvKJPZQkw+/otmVYw==", "requires": { "@babel/runtime": "^7.20.13", "chokidar": "^3.5.3", "file-type": "^16.5.4", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", - "xstate": "^4.37.1" + "xstate": "^4.37.2" } }, "gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.13", @@ -22426,42 +22201,32 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.9" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-transformer-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.9.0.tgz", - "integrity": "sha512-kA1KTWxV9gcnwCW7r9JSdibGjK4XjnGQgVup05WDGRWw+oAZjW/aZGvHXhGfl1DhyL9t9DinJvoUpdSkk2jdNg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.10.0.tgz", + "integrity": "sha512-skV7QGP8LTVgItZFNHq+JH1YP5F39XKeDHfTWg5QMcV/qnwH9aGzhQxT/LY9liVzYi/XbAn51/pB1v0FSLoyOA==", "requires": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-plugin-utils": "^4.10.0", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" } }, "gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "requires": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -22644,9 +22409,9 @@ } }, "graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "requires": {} }, "graphql-tag": { @@ -23326,9 +23091,9 @@ } }, "joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "requires": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -23871,9 +23636,9 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" }, "napi-build-utils": { "version": "1.0.2", @@ -23930,9 +23695,9 @@ } }, "node-abi": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.31.0.tgz", - "integrity": "sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "requires": { "semver": "^7.3.5" } @@ -23943,9 +23708,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "requires": { "whatwg-url": "^5.0.0" } @@ -23980,9 +23745,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "normalize-path": { "version": "3.0.0", @@ -24601,11 +24366,11 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "requires": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } @@ -25582,9 +25347,9 @@ } }, "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -25592,9 +25357,9 @@ } }, "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "requires": { "lru-cache": "^6.0.0" }, @@ -25714,15 +25479,15 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "requires": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -25734,9 +25499,9 @@ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" }, "node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" } } }, @@ -25829,9 +25594,9 @@ } }, "slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==" + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" }, "snake-case": { "version": "3.0.4", @@ -25843,15 +25608,15 @@ } }, "socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "requires": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -25871,18 +25636,21 @@ } }, "socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "requires": { + "ws": "~8.11.0" + } }, "socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -26288,9 +26056,9 @@ }, "dependencies": { "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -26300,9 +26068,9 @@ } }, "terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -26318,15 +26086,15 @@ } }, "terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "requires": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "dependencies": { "jest-worker": { @@ -26340,9 +26108,9 @@ } }, "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "requires": { "randombytes": "^2.1.0" } @@ -26555,9 +26323,9 @@ "peer": true }, "ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==" + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==" }, "unbox-primitive": { "version": "1.0.2", @@ -26743,21 +26511,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "requires": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -26766,18 +26534,13 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "dependencies": { - "@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -26936,9 +26699,9 @@ } }, "ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "requires": {} }, "xdg-basedir": { @@ -26952,9 +26715,9 @@ "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" }, "xstate": { - "version": "4.37.1", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.1.tgz", - "integrity": "sha512-MuB7s01nV5vG2CzaBg2msXLGz7JuS+x/NBkQuZAwgEYCnWA8iQMiRz2VGxD3pcFjZAOih3fOgDD3kDaFInEx+g==" + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==" }, "xtend": { "version": "4.0.2", diff --git a/starters/default/package.json b/starters/default/package.json index cb4d23e4cefbe..79431bd735245 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,12 +5,12 @@ "version": "0.1.0", "author": "Kyle Mathews <[email protected]>", "dependencies": { - "gatsby": "^5.9.1", - "gatsby-plugin-image": "^3.9.0", - "gatsby-plugin-manifest": "^5.9.0", - "gatsby-plugin-sharp": "^5.9.0", - "gatsby-source-filesystem": "^5.9.0", - "gatsby-transformer-sharp": "^5.9.0", + "gatsby": "^5.10.0", + "gatsby-plugin-image": "^3.10.0", + "gatsby-plugin-manifest": "^5.10.0", + "gatsby-plugin-sharp": "^5.10.0", + "gatsby-source-filesystem": "^5.10.0", + "gatsby-transformer-sharp": "^5.10.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/starters/gatsby-starter-minimal-ts/package-lock.json b/starters/gatsby-starter-minimal-ts/package-lock.json index d88f55e7066b7..57c0ccbb2f382 100644 --- a/starters/gatsby-starter-minimal-ts/package-lock.json +++ b/starters/gatsby-starter-minimal-ts/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.9.1", + "gatsby": "^5.10.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, @@ -961,11 +961,11 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1274,11 +1274,11 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" }, "engines": { @@ -1861,9 +1861,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "dependencies": { "regenerator-runtime": "^0.13.11" }, @@ -2017,14 +2017,14 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "dependencies": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0", @@ -2160,13 +2160,13 @@ } }, "node_modules/@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2175,13 +2175,13 @@ } }, "node_modules/@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2190,9 +2190,9 @@ } }, "node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -2210,10 +2210,11 @@ } }, "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2238,12 +2239,12 @@ } }, "node_modules/@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "dependencies": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" @@ -2265,15 +2266,15 @@ } }, "node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "dependencies": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2293,12 +2294,12 @@ } }, "node_modules/@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "dependencies": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" }, @@ -2319,11 +2320,11 @@ } }, "node_modules/@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "dependencies": { - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2343,9 +2344,9 @@ } }, "node_modules/@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "dependencies": { "tslib": "^2.4.0" }, @@ -2354,12 +2355,12 @@ } }, "node_modules/@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "dependencies": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2367,10 +2368,11 @@ } }, "node_modules/@graphql-tools/relay-operation-optimizer/node_modules/@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2378,14 +2380,14 @@ } }, "node_modules/@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "dependencies": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" + "value-or-promise": "^1.0.12" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" @@ -2530,9 +2532,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dependencies": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -3732,9 +3734,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "node_modules/@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "dependencies": { "@types/node": "*" } @@ -3782,9 +3784,9 @@ "integrity": "sha512-seOA34WMo9KB+UA78qaJoCO20RJzZGVXQ5Sh6FWu0g/hfT44nKXnej3/tCQl7FL97idFpBhisLYCTB50S0EirA==" }, "node_modules/@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "dependencies": { "@types/node": "*", "form-data": "^3.0.0" @@ -3854,14 +3856,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -4107,133 +4101,133 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -4593,9 +4587,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "funding": [ { "type": "opencollective", @@ -4607,8 +4601,8 @@ } ], "dependencies": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -4813,13 +4807,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0" @@ -4877,9 +4871,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -4894,8 +4888,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" }, "engines": { "node": ">=18.0.0" @@ -5091,9 +5085,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "funding": [ { "type": "opencollective", @@ -5105,10 +5099,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" }, "bin": { "browserslist": "cli.js" @@ -5273,9 +5267,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==", + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==", "funding": [ { "type": "opencollective", @@ -5284,6 +5278,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ] }, @@ -5851,9 +5849,9 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/core-js": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz", - "integrity": "sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==", + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -5861,11 +5859,11 @@ } }, "node_modules/core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "dependencies": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" }, "funding": { "type": "opencollective", @@ -5915,9 +5913,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "dependencies": { "@babel/runtime": "^7.20.13" }, @@ -5926,11 +5924,11 @@ } }, "node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "dependencies": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "node_modules/cross-spawn": { @@ -6198,9 +6196,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "node_modules/date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==", + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, "engines": { "node": ">=0.11" }, @@ -6304,9 +6305,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "node_modules/deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "engines": { "node": ">=0.10.0" } @@ -6659,9 +6660,9 @@ } }, "node_modules/engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "dependencies": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -6672,21 +6673,21 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" } }, @@ -6712,9 +6713,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==", + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==", "engines": { "node": ">=10.0.0" } @@ -6741,9 +6742,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -6874,9 +6875,9 @@ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "node_modules/es-set-tostringtag": { "version": "2.0.1", @@ -8209,9 +8210,9 @@ } }, "node_modules/gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8228,16 +8229,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -8245,36 +8246,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -8294,32 +8295,32 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -8332,7 +8333,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -8341,7 +8342,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -8354,28 +8355,28 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "bin": { @@ -8385,7 +8386,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.9.0" + "gatsby-sharp": "^1.10.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8393,9 +8394,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8406,7 +8407,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -8414,16 +8415,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -8432,7 +8433,7 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", @@ -8447,29 +8448,10 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-cli/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "dependencies": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -8493,50 +8475,29 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "dependencies": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "dependencies": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "bin": { - "semver": "bin/semver.js" + "core-js-compat": "3.30.1" } }, "node_modules/gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" }, "engines": { @@ -8549,15 +8510,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "dependencies": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8567,11 +8528,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -8592,9 +8553,9 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -8602,10 +8563,10 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8617,9 +8578,9 @@ } }, "node_modules/gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "dependencies": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -8627,7 +8588,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" }, "engines": { "node": ">=18.0.0" @@ -8637,18 +8598,18 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "dependencies": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" }, "engines": { @@ -8660,9 +8621,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "dependencies": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" @@ -8677,9 +8638,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "engines": { "node": ">=18.0.0" }, @@ -8690,21 +8651,20 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "dependencies": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8714,7 +8674,7 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8724,29 +8684,10 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "dependencies": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -8774,14 +8715,14 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "dependencies": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -8807,12 +8748,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -8833,16 +8774,16 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -8872,13 +8813,13 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "dependencies": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" }, "engines": { @@ -8898,12 +8839,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -8914,9 +8855,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -8926,12 +8867,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -8952,11 +8893,11 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "dependencies": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -9007,25 +8948,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/gatsby/node_modules/node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9276,9 +9198,9 @@ } }, "node_modules/graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "engines": { "node": ">=12" }, @@ -10275,9 +10197,9 @@ } }, "node_modules/joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "dependencies": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -10962,9 +10884,15 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -11020,9 +10948,9 @@ } }, "node_modules/node-abi": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.35.0.tgz", - "integrity": "sha512-jAlSOFR1Bls963NmFwxeQkNTzqjUF0NThm8Le7eRIRGzFUVJuMOFZDLv5Y30W/Oaw+KEebEJLAigwO9gQHoEmw==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "dependencies": { "semver": "^7.3.5" }, @@ -11036,9 +10964,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -11097,9 +11025,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -11991,9 +11919,9 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "funding": [ { "type": "opencollective", @@ -12002,10 +11930,14 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -13378,9 +13310,9 @@ } }, "node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -13395,9 +13327,9 @@ } }, "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "dependencies": { "lru-cache": "^6.0.0" }, @@ -13535,16 +13467,16 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "node_modules/sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "hasInstallScript": true, "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -13565,9 +13497,9 @@ } }, "node_modules/sharp/node_modules/node-addon-api": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", - "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -13702,9 +13634,9 @@ } }, "node_modules/slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==", + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", "engines": { "node": ">=8.0.0" } @@ -13719,15 +13651,15 @@ } }, "node_modules/socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "engines": { @@ -13735,18 +13667,21 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "dependencies": { + "ws": "~8.11.0" + } }, "node_modules/socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "engines": { @@ -14267,9 +14202,9 @@ } }, "node_modules/terser": { - "version": "5.14.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", - "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "dependencies": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -14284,15 +14219,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "engines": { "node": ">= 10.13.0" @@ -14330,9 +14265,9 @@ } }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dependencies": { "randombytes": "^2.1.0" } @@ -14601,9 +14536,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==", + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==", "funding": [ { "type": "opencollective", @@ -14878,21 +14813,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -14901,9 +14836,9 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, @@ -14985,11 +14920,6 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, - "node_modules/webpack/node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -15131,9 +15061,9 @@ } }, "node_modules/ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "engines": { "node": ">=10.0.0" }, @@ -15167,9 +15097,9 @@ } }, "node_modules/xstate": { - "version": "4.35.4", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.35.4.tgz", - "integrity": "sha512-mqRBYHhljP1xIItI4xnSQNHEv6CKslSM1cOGmvhmxeoDPAZgNbhSUYAL5N6DZIxRfpYY+M+bSm3mUFHD63iuvg==", + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==", "funding": { "type": "opencollective", "url": "https://opencollective.com/xstate" @@ -16105,11 +16035,11 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-syntax-import-assertions": { @@ -16301,11 +16231,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "requires": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -16691,9 +16621,9 @@ } }, "@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "requires": { "regenerator-runtime": "^0.13.11" } @@ -16805,14 +16735,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "requires": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "@gatsbyjs/reach-router": { @@ -16925,33 +16855,33 @@ } }, "@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" } }, "@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -16966,10 +16896,11 @@ }, "dependencies": { "@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "requires": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }, @@ -16993,12 +16924,12 @@ } }, "@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "requires": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" @@ -17016,15 +16947,15 @@ } }, "@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "requires": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "dependencies": { @@ -17040,12 +16971,12 @@ } }, "@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "requires": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" }, @@ -17062,11 +16993,11 @@ } }, "@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "requires": { - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "dependencies": { @@ -17082,42 +17013,43 @@ } }, "@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "requires": { "tslib": "^2.4.0" } }, "@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "requires": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "dependencies": { "@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "requires": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } } } }, "@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "requires": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" + "value-or-promise": "^1.0.12" }, "dependencies": { "@graphql-tools/utils": { @@ -17234,9 +17166,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "requires": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -18011,9 +17943,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "requires": { "@types/node": "*" } @@ -18060,9 +17992,9 @@ "integrity": "sha512-seOA34WMo9KB+UA78qaJoCO20RJzZGVXQ5Sh6FWu0g/hfT44nKXnej3/tCQl7FL97idFpBhisLYCTB50S0EirA==" }, "@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "requires": { "@types/node": "*", "form-data": "^3.0.0" @@ -18132,14 +18064,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "requires": { - "@types/node": "*" - } - }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -18293,133 +18217,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "requires": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -18677,12 +18601,12 @@ "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==" }, "autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -18835,13 +18759,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "requires": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -18889,9 +18813,9 @@ } }, "babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -18906,8 +18830,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" } }, "balanced-match": { @@ -19055,14 +18979,14 @@ } }, "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" } }, "bser": { @@ -19179,9 +19103,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==" + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==" }, "capital-case": { "version": "1.0.4", @@ -19639,16 +19563,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz", - "integrity": "sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==" + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" }, "core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "requires": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" } }, "core-js-pure": { @@ -19683,19 +19607,19 @@ } }, "create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "requires": { "@babel/runtime": "^7.20.13" } }, "cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "requires": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "cross-spawn": { @@ -19880,9 +19804,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==" + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } }, "debug": { "version": "3.2.7", @@ -19959,9 +19886,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" }, "defer-to-connect": { "version": "2.0.1", @@ -20228,9 +20155,9 @@ } }, "engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "requires": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -20241,7 +20168,7 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "dependencies": { "debug": { @@ -20260,14 +20187,14 @@ } }, "engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" }, "dependencies": { @@ -20287,14 +20214,14 @@ } }, "engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==" + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==" }, "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -20403,9 +20330,9 @@ } }, "es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "es-set-tostringtag": { "version": "2.0.1", @@ -21377,9 +21304,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -21395,16 +21322,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -21412,36 +21339,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -21461,33 +21388,33 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-sharp": "^1.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-sharp": "^1.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -21500,7 +21427,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -21509,7 +21436,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -21522,28 +21449,28 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "dependencies": { @@ -21561,14 +21488,14 @@ } }, "@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "requires": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -21578,27 +21505,27 @@ }, "dependencies": { "@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "requires": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" } }, "@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -21616,37 +21543,37 @@ } }, "@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "requires": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" } }, "@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==" + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==" }, "@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -21655,11 +21582,11 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "requires": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" } }, @@ -21685,21 +21612,13 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "requires": { - "whatwg-url": "^5.0.0" - } } } }, "gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -21709,7 +21628,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -21717,16 +21636,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -21735,29 +21654,19 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", "yargs": "^15.4.1", "yoga-layout-prebuilt": "^1.10.0", "yurnalist": "^2.1.0" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "requires": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -21778,66 +21687,50 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==" + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==" }, "gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "requires": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - }, - "dependencies": { - "core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "requires": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - } - }, - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } + "core-js-compat": "3.30.1" } }, "gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "requires": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -21852,9 +21745,9 @@ } }, "gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "requires": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -21862,18 +21755,18 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "requires": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -21881,53 +21774,52 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" } }, "gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "requires": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" } }, "gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "requires": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "requires": {} }, "gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "requires": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" } }, "gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.13", @@ -21936,27 +21828,17 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.9" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "requires": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -22147,9 +22029,9 @@ } }, "graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "requires": {} }, "graphql-tag": { @@ -22834,9 +22716,9 @@ } }, "joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "requires": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -23379,9 +23261,9 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" }, "napi-build-utils": { "version": "1.0.2", @@ -23428,9 +23310,9 @@ } }, "node-abi": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.35.0.tgz", - "integrity": "sha512-jAlSOFR1Bls963NmFwxeQkNTzqjUF0NThm8Le7eRIRGzFUVJuMOFZDLv5Y30W/Oaw+KEebEJLAigwO9gQHoEmw==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "requires": { "semver": "^7.3.5" } @@ -23441,9 +23323,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "requires": { "whatwg-url": "^5.0.0" } @@ -23478,9 +23360,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "normalize-path": { "version": "3.0.0", @@ -24099,11 +23981,11 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "requires": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } @@ -25054,9 +24936,9 @@ } }, "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -25064,9 +24946,9 @@ } }, "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "requires": { "lru-cache": "^6.0.0" }, @@ -25186,15 +25068,15 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "requires": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -25206,9 +25088,9 @@ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" }, "node-addon-api": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", - "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" } } }, @@ -25301,9 +25183,9 @@ } }, "slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==" + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" }, "snake-case": { "version": "3.0.4", @@ -25315,15 +25197,15 @@ } }, "socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "requires": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -25343,18 +25225,21 @@ } }, "socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "requires": { + "ws": "~8.11.0" + } }, "socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -25734,9 +25619,9 @@ } }, "terser": { - "version": "5.14.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", - "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -25752,15 +25637,15 @@ } }, "terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "requires": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "dependencies": { "jest-worker": { @@ -25774,9 +25659,9 @@ } }, "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "requires": { "randombytes": "^2.1.0" } @@ -25983,9 +25868,9 @@ "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==" }, "ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==" + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==" }, "unbox-primitive": { "version": "1.0.2", @@ -26166,21 +26051,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "requires": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -26189,18 +26074,13 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "dependencies": { - "@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -26359,9 +26239,9 @@ } }, "ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "requires": {} }, "xdg-basedir": { @@ -26375,9 +26255,9 @@ "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" }, "xstate": { - "version": "4.35.4", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.35.4.tgz", - "integrity": "sha512-mqRBYHhljP1xIItI4xnSQNHEv6CKslSM1cOGmvhmxeoDPAZgNbhSUYAL5N6DZIxRfpYY+M+bSm3mUFHD63iuvg==" + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==" }, "xtend": { "version": "4.0.2", diff --git a/starters/gatsby-starter-minimal-ts/package.json b/starters/gatsby-starter-minimal-ts/package.json index e47bf7ddf221a..3e715d8c73b65 100644 --- a/starters/gatsby-starter-minimal-ts/package.json +++ b/starters/gatsby-starter-minimal-ts/package.json @@ -17,7 +17,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^5.9.1", + "gatsby": "^5.10.0", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/starters/gatsby-starter-minimal/package-lock.json b/starters/gatsby-starter-minimal/package-lock.json index cf1b9aeb35200..eceee1250872d 100644 --- a/starters/gatsby-starter-minimal/package-lock.json +++ b/starters/gatsby-starter-minimal/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.9.1", + "gatsby": "^5.10.0", "react": "^18.2.0", "react-dom": "^18.2.0" } @@ -955,11 +955,11 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1268,11 +1268,11 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" }, "engines": { @@ -1855,9 +1855,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "dependencies": { "regenerator-runtime": "^0.13.11" }, @@ -2011,14 +2011,14 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "dependencies": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0", @@ -2154,13 +2154,13 @@ } }, "node_modules/@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2169,13 +2169,13 @@ } }, "node_modules/@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2184,9 +2184,9 @@ } }, "node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -2204,10 +2204,11 @@ } }, "node_modules/@graphql-codegen/visitor-plugin-common/node_modules/@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2232,12 +2233,12 @@ } }, "node_modules/@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "dependencies": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" @@ -2259,15 +2260,15 @@ } }, "node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "dependencies": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2287,12 +2288,12 @@ } }, "node_modules/@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "dependencies": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" }, @@ -2313,11 +2314,11 @@ } }, "node_modules/@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "dependencies": { - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2337,9 +2338,9 @@ } }, "node_modules/@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "dependencies": { "tslib": "^2.4.0" }, @@ -2348,12 +2349,12 @@ } }, "node_modules/@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "dependencies": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2361,10 +2362,11 @@ } }, "node_modules/@graphql-tools/relay-operation-optimizer/node_modules/@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "dependencies": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2372,14 +2374,14 @@ } }, "node_modules/@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "dependencies": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" + "value-or-promise": "^1.0.12" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" @@ -2524,9 +2526,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dependencies": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -3726,9 +3728,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "node_modules/@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "dependencies": { "@types/node": "*" } @@ -3776,9 +3778,9 @@ "integrity": "sha512-6qKpDtoaYLM+5+AFChLhHermMQxc3TOEFIDzrZLPRGHPrLEwqFkkT5Kx3ju05g6X7uDPazz3jHbKPX0KzCjntg==" }, "node_modules/@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "dependencies": { "@types/node": "*", "form-data": "^3.0.0" @@ -3839,14 +3841,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -4092,133 +4086,133 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -4578,9 +4572,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "funding": [ { "type": "opencollective", @@ -4592,8 +4586,8 @@ } ], "dependencies": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -4768,13 +4762,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0" @@ -4832,9 +4826,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -4849,8 +4843,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" }, "engines": { "node": ">=18.0.0" @@ -5046,9 +5040,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "funding": [ { "type": "opencollective", @@ -5060,10 +5054,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" }, "bin": { "browserslist": "cli.js" @@ -5228,9 +5222,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==", + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==", "funding": [ { "type": "opencollective", @@ -5239,6 +5233,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ] }, @@ -5806,9 +5804,9 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/core-js": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz", - "integrity": "sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==", + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -5816,11 +5814,11 @@ } }, "node_modules/core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "dependencies": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" }, "funding": { "type": "opencollective", @@ -5870,9 +5868,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "dependencies": { "@babel/runtime": "^7.20.13" }, @@ -5881,11 +5879,11 @@ } }, "node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "dependencies": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "node_modules/cross-spawn": { @@ -6153,9 +6151,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "node_modules/date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==", + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, "engines": { "node": ">=0.11" }, @@ -6259,9 +6260,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "node_modules/deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "engines": { "node": ">=0.10.0" } @@ -6614,9 +6615,9 @@ } }, "node_modules/engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "dependencies": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -6627,21 +6628,21 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" } }, @@ -6667,9 +6668,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==", + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==", "engines": { "node": ">=10.0.0" } @@ -6696,9 +6697,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -6829,9 +6830,9 @@ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "node_modules/es-set-tostringtag": { "version": "2.0.1", @@ -8164,9 +8165,9 @@ } }, "node_modules/gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8183,16 +8184,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -8200,36 +8201,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -8249,32 +8250,32 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -8287,7 +8288,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -8296,7 +8297,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -8309,28 +8310,28 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "bin": { @@ -8340,7 +8341,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.9.0" + "gatsby-sharp": "^1.10.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8348,9 +8349,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8361,7 +8362,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -8369,16 +8370,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -8387,7 +8388,7 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", @@ -8402,29 +8403,10 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-cli/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "dependencies": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -8448,50 +8430,29 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "dependencies": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "dependencies": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "bin": { - "semver": "bin/semver.js" + "core-js-compat": "3.30.1" } }, "node_modules/gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" }, "engines": { @@ -8504,15 +8465,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "dependencies": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8522,11 +8483,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -8547,9 +8508,9 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -8557,10 +8518,10 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8572,9 +8533,9 @@ } }, "node_modules/gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "dependencies": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -8582,7 +8543,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" }, "engines": { "node": ">=18.0.0" @@ -8592,18 +8553,18 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "dependencies": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" }, "engines": { @@ -8615,9 +8576,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "dependencies": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" @@ -8632,9 +8593,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "engines": { "node": ">=18.0.0" }, @@ -8645,21 +8606,20 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "dependencies": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8669,7 +8629,7 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8679,29 +8639,10 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "dependencies": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -8729,14 +8670,14 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "dependencies": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -8762,12 +8703,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -8788,16 +8729,16 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -8827,13 +8768,13 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "dependencies": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" }, "engines": { @@ -8853,12 +8794,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -8869,9 +8810,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -8881,12 +8822,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -8907,11 +8848,11 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "dependencies": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -8962,25 +8903,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/gatsby/node_modules/node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9231,9 +9153,9 @@ } }, "node_modules/graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "engines": { "node": ">=12" }, @@ -10230,9 +10152,9 @@ } }, "node_modules/joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "dependencies": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -10917,9 +10839,15 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -10975,9 +10903,9 @@ } }, "node_modules/node-abi": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.35.0.tgz", - "integrity": "sha512-jAlSOFR1Bls963NmFwxeQkNTzqjUF0NThm8Le7eRIRGzFUVJuMOFZDLv5Y30W/Oaw+KEebEJLAigwO9gQHoEmw==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "dependencies": { "semver": "^7.3.5" }, @@ -10991,9 +10919,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -11052,9 +10980,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -11946,9 +11874,9 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "funding": [ { "type": "opencollective", @@ -11957,10 +11885,14 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -13333,9 +13265,9 @@ } }, "node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -13350,9 +13282,9 @@ } }, "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "dependencies": { "lru-cache": "^6.0.0" }, @@ -13490,16 +13422,16 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "node_modules/sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "hasInstallScript": true, "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -13520,9 +13452,9 @@ } }, "node_modules/sharp/node_modules/node-addon-api": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", - "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -13657,9 +13589,9 @@ } }, "node_modules/slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==", + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", "engines": { "node": ">=8.0.0" } @@ -13674,15 +13606,15 @@ } }, "node_modules/socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "engines": { @@ -13690,18 +13622,21 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "dependencies": { + "ws": "~8.11.0" + } }, "node_modules/socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "engines": { @@ -14222,9 +14157,9 @@ } }, "node_modules/terser": { - "version": "5.14.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", - "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "dependencies": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -14239,15 +14174,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "engines": { "node": ">= 10.13.0" @@ -14285,9 +14220,9 @@ } }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dependencies": { "randombytes": "^2.1.0" } @@ -14544,9 +14479,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==", + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==", "funding": [ { "type": "opencollective", @@ -14821,21 +14756,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -14844,9 +14779,9 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, @@ -14928,11 +14863,6 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, - "node_modules/webpack/node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -15074,9 +15004,9 @@ } }, "node_modules/ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "engines": { "node": ">=10.0.0" }, @@ -15110,9 +15040,9 @@ } }, "node_modules/xstate": { - "version": "4.35.4", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.35.4.tgz", - "integrity": "sha512-mqRBYHhljP1xIItI4xnSQNHEv6CKslSM1cOGmvhmxeoDPAZgNbhSUYAL5N6DZIxRfpYY+M+bSm3mUFHD63iuvg==", + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==", "funding": { "type": "opencollective", "url": "https://opencollective.com/xstate" @@ -16048,11 +15978,11 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-syntax-import-assertions": { @@ -16244,11 +16174,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "requires": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -16634,9 +16564,9 @@ } }, "@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "requires": { "regenerator-runtime": "^0.13.11" } @@ -16748,14 +16678,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "requires": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "@gatsbyjs/reach-router": { @@ -16868,33 +16798,33 @@ } }, "@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" } }, "@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -16909,10 +16839,11 @@ }, "dependencies": { "@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "requires": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }, @@ -16936,12 +16867,12 @@ } }, "@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "requires": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" @@ -16959,15 +16890,15 @@ } }, "@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "requires": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "dependencies": { @@ -16983,12 +16914,12 @@ } }, "@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "requires": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" }, @@ -17005,11 +16936,11 @@ } }, "@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "requires": { - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "dependencies": { @@ -17025,42 +16956,43 @@ } }, "@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "requires": { "tslib": "^2.4.0" } }, "@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "requires": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "dependencies": { "@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "requires": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } } } }, "@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "requires": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" + "value-or-promise": "^1.0.12" }, "dependencies": { "@graphql-tools/utils": { @@ -17177,9 +17109,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "requires": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -17954,9 +17886,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "requires": { "@types/node": "*" } @@ -18003,9 +17935,9 @@ "integrity": "sha512-6qKpDtoaYLM+5+AFChLhHermMQxc3TOEFIDzrZLPRGHPrLEwqFkkT5Kx3ju05g6X7uDPazz3jHbKPX0KzCjntg==" }, "@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "requires": { "@types/node": "*", "form-data": "^3.0.0" @@ -18066,14 +17998,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "requires": { - "@types/node": "*" - } - }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -18227,133 +18151,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "requires": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -18611,12 +18535,12 @@ "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==" }, "autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -18747,13 +18671,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "requires": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -18801,9 +18725,9 @@ } }, "babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -18818,8 +18742,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" } }, "balanced-match": { @@ -18967,14 +18891,14 @@ } }, "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" } }, "bser": { @@ -19091,9 +19015,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==" + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==" }, "capital-case": { "version": "1.0.4", @@ -19551,16 +19475,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz", - "integrity": "sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==" + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" }, "core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "requires": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" } }, "core-js-pure": { @@ -19595,19 +19519,19 @@ } }, "create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "requires": { "@babel/runtime": "^7.20.13" } }, "cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "requires": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "cross-spawn": { @@ -19792,9 +19716,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==" + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } }, "debug": { "version": "3.2.7", @@ -19871,9 +19798,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" }, "defer-to-connect": { "version": "2.0.1", @@ -20140,9 +20067,9 @@ } }, "engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "requires": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -20153,7 +20080,7 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "dependencies": { "debug": { @@ -20172,14 +20099,14 @@ } }, "engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" }, "dependencies": { @@ -20199,14 +20126,14 @@ } }, "engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==" + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==" }, "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -20315,9 +20242,9 @@ } }, "es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "es-set-tostringtag": { "version": "2.0.1", @@ -21289,9 +21216,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -21307,16 +21234,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -21324,36 +21251,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -21373,33 +21300,33 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-sharp": "^1.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-sharp": "^1.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -21412,7 +21339,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -21421,7 +21348,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -21434,28 +21361,28 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "dependencies": { @@ -21473,14 +21400,14 @@ } }, "@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "requires": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -21490,27 +21417,27 @@ }, "dependencies": { "@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "requires": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" } }, "@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -21528,37 +21455,37 @@ } }, "@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "requires": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" } }, "@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==" + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==" }, "@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -21567,11 +21494,11 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "requires": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" } }, @@ -21597,21 +21524,13 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "requires": { - "whatwg-url": "^5.0.0" - } } } }, "gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -21621,7 +21540,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -21629,16 +21548,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -21647,29 +21566,19 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", "yargs": "^15.4.1", "yoga-layout-prebuilt": "^1.10.0", "yurnalist": "^2.1.0" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "requires": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -21690,66 +21599,50 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==" + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==" }, "gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "requires": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - }, - "dependencies": { - "core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "requires": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - } - }, - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } + "core-js-compat": "3.30.1" } }, "gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "requires": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -21764,9 +21657,9 @@ } }, "gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "requires": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -21774,18 +21667,18 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "requires": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -21793,53 +21686,52 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" } }, "gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "requires": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" } }, "gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "requires": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "requires": {} }, "gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "requires": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" } }, "gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.13", @@ -21848,27 +21740,17 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.9" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "requires": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -22059,9 +21941,9 @@ } }, "graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "requires": {} }, "graphql-tag": { @@ -22746,9 +22628,9 @@ } }, "joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "requires": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -23291,9 +23173,9 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" }, "napi-build-utils": { "version": "1.0.2", @@ -23340,9 +23222,9 @@ } }, "node-abi": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.35.0.tgz", - "integrity": "sha512-jAlSOFR1Bls963NmFwxeQkNTzqjUF0NThm8Le7eRIRGzFUVJuMOFZDLv5Y30W/Oaw+KEebEJLAigwO9gQHoEmw==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "requires": { "semver": "^7.3.5" } @@ -23353,9 +23235,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "requires": { "whatwg-url": "^5.0.0" } @@ -23390,9 +23272,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "normalize-path": { "version": "3.0.0", @@ -24011,11 +23893,11 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "requires": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } @@ -24966,9 +24848,9 @@ } }, "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -24976,9 +24858,9 @@ } }, "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "requires": { "lru-cache": "^6.0.0" }, @@ -25098,15 +24980,15 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "requires": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -25118,9 +25000,9 @@ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" }, "node-addon-api": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", - "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" } } }, @@ -25213,9 +25095,9 @@ } }, "slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==" + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" }, "snake-case": { "version": "3.0.4", @@ -25227,15 +25109,15 @@ } }, "socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "requires": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -25255,18 +25137,21 @@ } }, "socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "requires": { + "ws": "~8.11.0" + } }, "socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -25646,9 +25531,9 @@ } }, "terser": { - "version": "5.14.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.14.2.tgz", - "integrity": "sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -25664,15 +25549,15 @@ } }, "terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "requires": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "dependencies": { "jest-worker": { @@ -25686,9 +25571,9 @@ } }, "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "requires": { "randombytes": "^2.1.0" } @@ -25890,9 +25775,9 @@ } }, "ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==" + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==" }, "unbox-primitive": { "version": "1.0.2", @@ -26073,21 +25958,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "requires": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -26096,18 +25981,13 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "dependencies": { - "@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -26266,9 +26146,9 @@ } }, "ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "requires": {} }, "xdg-basedir": { @@ -26282,9 +26162,9 @@ "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" }, "xstate": { - "version": "4.35.4", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.35.4.tgz", - "integrity": "sha512-mqRBYHhljP1xIItI4xnSQNHEv6CKslSM1cOGmvhmxeoDPAZgNbhSUYAL5N6DZIxRfpYY+M+bSm3mUFHD63iuvg==" + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==" }, "xtend": { "version": "4.0.2", diff --git a/starters/gatsby-starter-minimal/package.json b/starters/gatsby-starter-minimal/package.json index b1eb452d80b2f..5ed3839c31688 100644 --- a/starters/gatsby-starter-minimal/package.json +++ b/starters/gatsby-starter-minimal/package.json @@ -16,7 +16,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^5.9.1", + "gatsby": "^5.10.0", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/starters/gatsby-starter-theme-workspace/example/package.json b/starters/gatsby-starter-theme-workspace/example/package.json index bb00d76a2be8e..c924653e266fb 100644 --- a/starters/gatsby-starter-theme-workspace/example/package.json +++ b/starters/gatsby-starter-theme-workspace/example/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^5.9.1", + "gatsby": "^5.10.0", "gatsby-theme-minimal": "^1.0.0", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/starters/gatsby-starter-wordpress-blog/package-lock.json b/starters/gatsby-starter-wordpress-blog/package-lock.json index d30c14592b0e3..8ffc166e2cda6 100644 --- a/starters/gatsby-starter-wordpress-blog/package-lock.json +++ b/starters/gatsby-starter-wordpress-blog/package-lock.json @@ -12,12 +12,12 @@ "@fontsource/merriweather": "^4.5.14", "@fontsource/montserrat": "^4.5.14", "@wordpress/block-library": "^8.9.0", - "gatsby": "^5.9.1", - "gatsby-plugin-image": "^3.9.0", - "gatsby-plugin-manifest": "^5.9.0", - "gatsby-plugin-sharp": "^5.9.0", - "gatsby-source-wordpress": "^7.9.0", - "gatsby-transformer-sharp": "^5.9.0", + "gatsby": "^5.10.0", + "gatsby-plugin-image": "^3.10.0", + "gatsby-plugin-manifest": "^5.10.0", + "gatsby-plugin-sharp": "^5.10.0", + "gatsby-source-wordpress": "^7.10.0", + "gatsby-transformer-sharp": "^5.10.0", "html-react-parser": "^3.0.16", "lodash": "^4.17.21", "react": "^18.2.0", @@ -968,11 +968,11 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1281,11 +1281,11 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" }, "engines": { @@ -1868,9 +1868,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "dependencies": { "regenerator-runtime": "^0.13.11" }, @@ -2257,14 +2257,14 @@ "integrity": "sha512-fTvrteVzuFUePhr4QYBGoK8G/YHLJ3IhF1HhKg0AxcFvZajJT7rM7ULdmKLSd2PkX44R3aaFZq1zDbmjbGGI+w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "dependencies": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0", @@ -2460,13 +2460,13 @@ } }, "node_modules/@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2475,13 +2475,13 @@ } }, "node_modules/@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2556,9 +2556,9 @@ } }, "node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -2609,12 +2609,12 @@ } }, "node_modules/@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "dependencies": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" @@ -2623,40 +2623,16 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/code-file-loader/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "dependencies": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2664,12 +2640,12 @@ } }, "node_modules/@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "dependencies": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" }, @@ -2677,36 +2653,12 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/load/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "dependencies": { - "@graphql-tools/utils": "9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/merge/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2714,9 +2666,9 @@ } }, "node_modules/@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "dependencies": { "tslib": "^2.4.0" }, @@ -2725,12 +2677,12 @@ } }, "node_modules/@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "dependencies": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2738,20 +2690,20 @@ } }, "node_modules/@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "dependencies": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" + "value-or-promise": "^1.0.12" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/schema/node_modules/@graphql-tools/utils": { + "node_modules/@graphql-tools/utils": { "version": "9.2.1", "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", @@ -2763,17 +2715,6 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", - "dependencies": { - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-typed-document-node/core": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz", @@ -2890,9 +2831,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dependencies": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -4222,9 +4163,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "node_modules/@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "dependencies": { "@types/node": "*" } @@ -4277,9 +4218,9 @@ "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "node_modules/@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "dependencies": { "@types/node": "*", "form-data": "^3.0.0" @@ -4353,14 +4294,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -4671,133 +4604,133 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -5957,9 +5890,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "funding": [ { "type": "opencollective", @@ -5971,8 +5904,8 @@ } ], "dependencies": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -6160,13 +6093,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0" @@ -6224,9 +6157,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -6241,8 +6174,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" }, "engines": { "node": ">=18.0.0" @@ -6353,9 +6286,9 @@ } }, "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -6466,9 +6399,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "funding": [ { "type": "opencollective", @@ -6480,10 +6413,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" }, "bin": { "browserslist": "cli.js" @@ -6670,9 +6603,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==", + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==", "funding": [ { "type": "opencollective", @@ -6681,6 +6614,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ] }, @@ -7331,9 +7268,9 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/core-js": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz", - "integrity": "sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==", + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -7341,11 +7278,11 @@ } }, "node_modules/core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "dependencies": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" }, "funding": { "type": "opencollective", @@ -7395,9 +7332,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "dependencies": { "@babel/runtime": "^7.20.13" }, @@ -7406,11 +7343,11 @@ } }, "node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "dependencies": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "node_modules/cross-spawn": { @@ -7686,9 +7623,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "node_modules/date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==", + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, "engines": { "node": ">=0.11" }, @@ -7792,9 +7732,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "node_modules/deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "engines": { "node": ">=0.10.0" } @@ -8221,9 +8161,9 @@ } }, "node_modules/engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "dependencies": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -8234,21 +8174,21 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" } }, @@ -8274,9 +8214,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==", + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==", "engines": { "node": ">=10.0.0" } @@ -8303,9 +8243,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -8435,9 +8375,9 @@ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "node_modules/es-shim-unscopables": { "version": "1.0.0", @@ -9833,9 +9773,9 @@ } }, "node_modules/gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -9852,16 +9792,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -9869,36 +9809,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -9918,32 +9858,32 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -9956,7 +9896,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -9965,7 +9905,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -9978,28 +9918,28 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "bin": { @@ -10009,7 +9949,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.9.0" + "gatsby-sharp": "^1.10.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -10017,9 +9957,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -10030,7 +9970,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -10038,16 +9978,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -10056,7 +9996,7 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", @@ -10071,29 +10011,10 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-cli/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "dependencies": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -10117,50 +10038,29 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "dependencies": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "dependencies": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "bin": { - "semver": "bin/semver.js" + "core-js-compat": "3.30.1" } }, "node_modules/gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" }, "engines": { @@ -10173,15 +10073,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "dependencies": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -10191,11 +10091,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -10216,9 +10116,9 @@ } }, "node_modules/gatsby-plugin-catch-links": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-5.9.0.tgz", - "integrity": "sha512-u54jKQhWrTn0TDIQlb60SvMvp2EI5NMf6WIctSO6EDEOWYBH90vzdQHlzxJ2dudgvqN9/hk/mmsHKCiCrr0Pyg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-5.10.0.tgz", + "integrity": "sha512-hVo5s1MQ3KyofvuAQgtU1neFdRNfkzMOLaqMU+e7JU3zaFAecc2Oa2WEQ429LQfP+wX9S8gJ9D7ixrZGS+vFPw==", "dependencies": { "@babel/runtime": "^7.20.13", "escape-string-regexp": "^1.0.5" @@ -10239,22 +10139,22 @@ } }, "node_modules/gatsby-plugin-image": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.9.0.tgz", - "integrity": "sha512-9oTzosYPRwrw3BNgHgh+0BCpqBE83tBnuM7wuorHehdo1dmcGmz96e7qWfaRLY1LR08kxXLmbW0dWNZJXv66CQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.10.0.tgz", + "integrity": "sha512-6m8RsgA9+01zo5yow1LcA+zph5gjf1S9+zwWASo2d8jfGyHa0KFy3iiHoWKrwYIBOODUFWU/r8NPyVvu1YSyPw==", "dependencies": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.13", "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" }, @@ -10276,15 +10176,15 @@ } }, "node_modules/gatsby-plugin-manifest": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.9.0.tgz", - "integrity": "sha512-6BrS5WprI+MJM4JsoJ30Z5cuKzICFlohpXiUMO2Xc+p2bzl+hgeIb06nm4lP52gNAPOVyLQDZDqB0PKRNYVe/w==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.10.0.tgz", + "integrity": "sha512-y3TUARyNaK29oD/8ZJOVvLVRvSvfKNjLHmNc0D6KPJRQld7T+ZKCZh4ylwN+Hor8vHnXKHyVoBZd+BIEjTBVAg==", "dependencies": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" @@ -10294,9 +10194,9 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -10304,10 +10204,10 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -10319,9 +10219,9 @@ } }, "node_modules/gatsby-plugin-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.9.0.tgz", - "integrity": "sha512-RXiRmuAwRZf7uqzoqBoG+7qbWWXCuf359Td+yKBLC7M+ktsfw9FMfivS6PpY6v+XmEztO8so1n+Sx+nOU5FScw==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.10.0.tgz", + "integrity": "sha512-hG95JQrpByH8w7Ey25zlFsvgyi99NFmk1+0hmKjMkfh43BxNsTuvhcB2kcbcO2FaZdO9OK89pilRGbLaeA0gew==", "dependencies": { "@babel/runtime": "^7.20.13", "async": "^3.2.4", @@ -10329,12 +10229,12 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" @@ -10370,9 +10270,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "dependencies": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -10380,7 +10280,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" }, "engines": { "node": ">=18.0.0" @@ -10390,18 +10290,18 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "dependencies": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" }, "engines": { @@ -10413,9 +10313,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "dependencies": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" @@ -10430,9 +10330,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "engines": { "node": ">=18.0.0" }, @@ -10443,31 +10343,30 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "dependencies": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-source-filesystem": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.9.0.tgz", - "integrity": "sha512-1DANeWOzkmAcstduQIjk0rLlijDlvVKwUvMTt/Mwj/HdESh+mQXjM9dlDRF3eZwZ2HJ9jiq5eZvfm8Yj67m1+A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.10.0.tgz", + "integrity": "sha512-pTcqFvngUqap4NJfzG9VMmJ4T5TTf/WsMVTVORw18kprXZBchioLu0m5vVb9Tm7/MW7XPXvKJPZQkw+/otmVYw==", "dependencies": { "@babel/runtime": "^7.20.13", "chokidar": "^3.5.3", "file-type": "^16.5.4", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", - "xstate": "^4.37.1" + "xstate": "^4.37.2" }, "engines": { "node": ">=18.0.0" @@ -10477,9 +10376,9 @@ } }, "node_modules/gatsby-source-wordpress": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.9.0.tgz", - "integrity": "sha512-f/u5pNFlytTvAeWKPvWoKpFIdeE5Az1vDzhGV1IyS0GsL+QoajWZxUMlwLjm7UXJIiSYjqwuzNwdEsfiTf9zUw==", + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.10.0.tgz", + "integrity": "sha512-NIlEZrvIIBeksMiUtZgR7duQ6sg39wY5vd/lmWUM4ql5UUjjWFofDVYZS3Q1TYr7GkTu7Ps6E9aSYAdD23KC2Q==", "dependencies": { "@babel/runtime": "^7.20.13", "@rematch/core": "^1.4.0", @@ -10501,21 +10400,21 @@ "file-type": "^15.0.1", "filesize": "^6.4.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-catch-links": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-source-filesystem": "^5.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-catch-links": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-source-filesystem": "^5.10.0", "glob": "^7.2.3", "got": "^11.8.6", "json-diff": "^1.0.3", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "p-queue": "^6.6.2", - "prettier": "^2.8.7", + "prettier": "^2.8.8", "read-chunk": "^3.2.0", "replaceall": "^0.1.6", - "semver": "^7.3.8", - "sharp": "^0.31.3", + "semver": "^7.5.0", + "sharp": "^0.32.1", "valid-url": "^1.0.9" }, "engines": { @@ -10584,25 +10483,6 @@ "node": ">=10" } }, - "node_modules/gatsby-source-wordpress/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-source-wordpress/node_modules/readable-web-to-node-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-2.0.0.tgz", @@ -10630,9 +10510,9 @@ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "node_modules/gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -10642,7 +10522,7 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -10652,38 +10532,19 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-transformer-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.9.0.tgz", - "integrity": "sha512-kA1KTWxV9gcnwCW7r9JSdibGjK4XjnGQgVup05WDGRWw+oAZjW/aZGvHXhGfl1DhyL9t9DinJvoUpdSkk2jdNg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.10.0.tgz", + "integrity": "sha512-skV7QGP8LTVgItZFNHq+JH1YP5F39XKeDHfTWg5QMcV/qnwH9aGzhQxT/LY9liVzYi/XbAn51/pB1v0FSLoyOA==", "dependencies": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-plugin-utils": "^4.10.0", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" @@ -10694,9 +10555,9 @@ } }, "node_modules/gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "dependencies": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -10736,25 +10597,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/gatsby/node_modules/node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -11016,9 +10858,9 @@ } }, "node_modules/graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "engines": { "node": ">=12" }, @@ -12061,9 +11903,9 @@ } }, "node_modules/joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "dependencies": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -12820,9 +12662,15 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -12894,9 +12742,9 @@ } }, "node_modules/node-abi": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.31.0.tgz", - "integrity": "sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "dependencies": { "semver": "^7.3.5" }, @@ -12915,9 +12763,9 @@ "integrity": "sha512-mTCTZk29tmX1OGfVkPt63H3c3VqXrI2Kvua98S7iUIB/Gbp0MNw05YtUomxQIxnnKMyRIIuY9izPcFixzhSBrA==" }, "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -13039,9 +12887,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -13992,9 +13840,9 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "funding": [ { "type": "opencollective", @@ -14003,10 +13851,14 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -15682,9 +15534,9 @@ } }, "node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -15704,9 +15556,9 @@ "integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==" }, "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "dependencies": { "lru-cache": "^6.0.0" }, @@ -15844,16 +15696,16 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "node_modules/sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "hasInstallScript": true, "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -15874,9 +15726,9 @@ } }, "node_modules/sharp/node_modules/node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -16213,9 +16065,9 @@ } }, "node_modules/slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==", + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", "engines": { "node": ">=8.0.0" } @@ -16230,15 +16082,15 @@ } }, "node_modules/socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "engines": { @@ -16246,18 +16098,21 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "dependencies": { + "ws": "~8.11.0" + } }, "node_modules/socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "engines": { @@ -16897,9 +16752,9 @@ } }, "node_modules/tar-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -16910,9 +16765,9 @@ } }, "node_modules/terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "dependencies": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -16927,15 +16782,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "engines": { "node": ">= 10.13.0" @@ -16973,9 +16828,9 @@ } }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dependencies": { "randombytes": "^2.1.0" } @@ -17256,9 +17111,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==", + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==", "funding": [ { "type": "opencollective", @@ -17606,21 +17461,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -17629,9 +17484,9 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, @@ -17713,11 +17568,6 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, - "node_modules/webpack/node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -17877,9 +17727,9 @@ } }, "node_modules/ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "engines": { "node": ">=10.0.0" }, @@ -17913,9 +17763,9 @@ } }, "node_modules/xstate": { - "version": "4.37.1", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.1.tgz", - "integrity": "sha512-MuB7s01nV5vG2CzaBg2msXLGz7JuS+x/NBkQuZAwgEYCnWA8iQMiRz2VGxD3pcFjZAOih3fOgDD3kDaFInEx+g==", + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==", "funding": { "type": "opencollective", "url": "https://opencollective.com/xstate" @@ -18843,11 +18693,11 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-syntax-import-assertions": { @@ -19039,11 +18889,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "requires": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -19429,9 +19279,9 @@ } }, "@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "requires": { "regenerator-runtime": "^0.13.11" } @@ -19723,14 +19573,14 @@ "integrity": "sha512-fTvrteVzuFUePhr4QYBGoK8G/YHLJ3IhF1HhKg0AxcFvZajJT7rM7ULdmKLSd2PkX44R3aaFZq1zDbmjbGGI+w==" }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "requires": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "@gatsbyjs/reach-router": { @@ -19902,13 +19752,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -19946,13 +19796,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -19990,9 +19840,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -20039,139 +19889,85 @@ } }, "@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "requires": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "requires": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "requires": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "requires": { - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "requires": { "tslib": "^2.4.0" } }, "@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "requires": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" } }, "@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "requires": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } + "value-or-promise": "^1.0.12" } }, "@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "requires": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }, @@ -20269,9 +20065,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "requires": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -21151,9 +20947,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "requires": { "@types/node": "*" } @@ -21205,9 +21001,9 @@ "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "requires": { "@types/node": "*", "form-data": "^3.0.0" @@ -21281,14 +21077,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "requires": { - "@types/node": "*" - } - }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -21479,133 +21267,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "requires": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -22484,12 +22272,12 @@ "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==" }, "autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -22630,13 +22418,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "requires": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -22684,9 +22472,9 @@ } }, "babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -22701,8 +22489,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" } }, "balanced-match": { @@ -22779,9 +22567,9 @@ }, "dependencies": { "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -22877,14 +22665,14 @@ } }, "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" } }, "bser": { @@ -23017,9 +22805,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==" + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==" }, "capital-case": { "version": "1.0.4", @@ -23542,16 +23330,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz", - "integrity": "sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==" + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" }, "core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "requires": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" } }, "core-js-pure": { @@ -23586,19 +23374,19 @@ } }, "create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "requires": { "@babel/runtime": "^7.20.13" } }, "cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "requires": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "cross-spawn": { @@ -23786,9 +23574,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==" + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } }, "debug": { "version": "3.2.7", @@ -23865,9 +23656,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" }, "defer-to-connect": { "version": "2.0.1", @@ -24198,9 +23989,9 @@ } }, "engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "requires": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -24211,7 +24002,7 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "dependencies": { "debug": { @@ -24230,14 +24021,14 @@ } }, "engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" }, "dependencies": { @@ -24257,14 +24048,14 @@ } }, "engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==" + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==" }, "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -24369,9 +24160,9 @@ } }, "es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "es-shim-unscopables": { "version": "1.0.0", @@ -25390,9 +25181,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -25408,16 +25199,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -25425,36 +25216,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -25474,33 +25265,33 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-sharp": "^1.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-sharp": "^1.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -25513,7 +25304,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -25522,7 +25313,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -25535,28 +25326,28 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "dependencies": { @@ -25577,21 +25368,13 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "requires": { - "whatwg-url": "^5.0.0" - } } } }, "gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -25601,7 +25384,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -25609,16 +25392,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -25627,29 +25410,19 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", "yargs": "^15.4.1", "yoga-layout-prebuilt": "^1.10.0", "yurnalist": "^2.1.0" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "requires": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -25670,66 +25443,50 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==" + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==" }, "gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "requires": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - }, - "dependencies": { - "core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "requires": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - } - }, - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } + "core-js-compat": "3.30.1" } }, "gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "requires": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -25744,9 +25501,9 @@ } }, "gatsby-plugin-catch-links": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-5.9.0.tgz", - "integrity": "sha512-u54jKQhWrTn0TDIQlb60SvMvp2EI5NMf6WIctSO6EDEOWYBH90vzdQHlzxJ2dudgvqN9/hk/mmsHKCiCrr0Pyg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-catch-links/-/gatsby-plugin-catch-links-5.10.0.tgz", + "integrity": "sha512-hVo5s1MQ3KyofvuAQgtU1neFdRNfkzMOLaqMU+e7JU3zaFAecc2Oa2WEQ429LQfP+wX9S8gJ9D7ixrZGS+vFPw==", "requires": { "@babel/runtime": "^7.20.13", "escape-string-regexp": "^1.0.5" @@ -25760,42 +25517,42 @@ } }, "gatsby-plugin-image": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.9.0.tgz", - "integrity": "sha512-9oTzosYPRwrw3BNgHgh+0BCpqBE83tBnuM7wuorHehdo1dmcGmz96e7qWfaRLY1LR08kxXLmbW0dWNZJXv66CQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-3.10.0.tgz", + "integrity": "sha512-6m8RsgA9+01zo5yow1LcA+zph5gjf1S9+zwWASo2d8jfGyHa0KFy3iiHoWKrwYIBOODUFWU/r8NPyVvu1YSyPw==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/parser": "^7.20.13", "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", "camelcase": "^6.3.0", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" } }, "gatsby-plugin-manifest": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.9.0.tgz", - "integrity": "sha512-6BrS5WprI+MJM4JsoJ30Z5cuKzICFlohpXiUMO2Xc+p2bzl+hgeIb06nm4lP52gNAPOVyLQDZDqB0PKRNYVe/w==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.10.0.tgz", + "integrity": "sha512-y3TUARyNaK29oD/8ZJOVvLVRvSvfKNjLHmNc0D6KPJRQld7T+ZKCZh4ylwN+Hor8vHnXKHyVoBZd+BIEjTBVAg==", "requires": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", + "semver": "^7.5.0", + "sharp": "^0.32.1" } }, "gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "requires": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -25803,18 +25560,18 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.9.0.tgz", - "integrity": "sha512-RXiRmuAwRZf7uqzoqBoG+7qbWWXCuf359Td+yKBLC7M+ktsfw9FMfivS6PpY6v+XmEztO8so1n+Sx+nOU5FScw==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-5.10.0.tgz", + "integrity": "sha512-hG95JQrpByH8w7Ey25zlFsvgyi99NFmk1+0hmKjMkfh43BxNsTuvhcB2kcbcO2FaZdO9OK89pilRGbLaeA0gew==", "requires": { "@babel/runtime": "^7.20.13", "async": "^3.2.4", @@ -25822,12 +25579,12 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-utils": "^4.10.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" }, "dependencies": { "async": { @@ -25851,9 +25608,9 @@ } }, "gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "requires": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -25861,68 +25618,67 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" } }, "gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "requires": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" } }, "gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "requires": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==" + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==" }, "gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "requires": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" } }, "gatsby-source-filesystem": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.9.0.tgz", - "integrity": "sha512-1DANeWOzkmAcstduQIjk0rLlijDlvVKwUvMTt/Mwj/HdESh+mQXjM9dlDRF3eZwZ2HJ9jiq5eZvfm8Yj67m1+A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-5.10.0.tgz", + "integrity": "sha512-pTcqFvngUqap4NJfzG9VMmJ4T5TTf/WsMVTVORw18kprXZBchioLu0m5vVb9Tm7/MW7XPXvKJPZQkw+/otmVYw==", "requires": { "@babel/runtime": "^7.20.13", "chokidar": "^3.5.3", "file-type": "^16.5.4", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", - "xstate": "^4.37.1" + "xstate": "^4.37.2" } }, "gatsby-source-wordpress": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.9.0.tgz", - "integrity": "sha512-f/u5pNFlytTvAeWKPvWoKpFIdeE5Az1vDzhGV1IyS0GsL+QoajWZxUMlwLjm7UXJIiSYjqwuzNwdEsfiTf9zUw==", + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.10.0.tgz", + "integrity": "sha512-NIlEZrvIIBeksMiUtZgR7duQ6sg39wY5vd/lmWUM4ql5UUjjWFofDVYZS3Q1TYr7GkTu7Ps6E9aSYAdD23KC2Q==", "requires": { "@babel/runtime": "^7.20.13", "@rematch/core": "^1.4.0", @@ -25944,21 +25700,21 @@ "file-type": "^15.0.1", "filesize": "^6.4.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-plugin-catch-links": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-source-filesystem": "^5.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-plugin-catch-links": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-source-filesystem": "^5.10.0", "glob": "^7.2.3", "got": "^11.8.6", "json-diff": "^1.0.3", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "p-queue": "^6.6.2", - "prettier": "^2.8.7", + "prettier": "^2.8.8", "read-chunk": "^3.2.0", "replaceall": "^0.1.6", - "semver": "^7.3.8", - "sharp": "^0.31.3", + "semver": "^7.5.0", + "sharp": "^0.32.1", "valid-url": "^1.0.9" }, "dependencies": { @@ -26006,14 +25762,6 @@ "yallist": "^4.0.0" } }, - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - }, "readable-web-to-node-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-2.0.0.tgz", @@ -26036,9 +25784,9 @@ } }, "gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.13", @@ -26047,42 +25795,32 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.9" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-transformer-sharp": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.9.0.tgz", - "integrity": "sha512-kA1KTWxV9gcnwCW7r9JSdibGjK4XjnGQgVup05WDGRWw+oAZjW/aZGvHXhGfl1DhyL9t9DinJvoUpdSkk2jdNg==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-5.10.0.tgz", + "integrity": "sha512-skV7QGP8LTVgItZFNHq+JH1YP5F39XKeDHfTWg5QMcV/qnwH9aGzhQxT/LY9liVzYi/XbAn51/pB1v0FSLoyOA==", "requires": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^11.1.1", - "gatsby-plugin-utils": "^4.9.0", + "gatsby-plugin-utils": "^4.10.0", "probe-image-size": "^7.2.3", - "semver": "^7.3.8", - "sharp": "^0.31.3" + "semver": "^7.5.0", + "sharp": "^0.32.1" } }, "gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "requires": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -26287,9 +26025,9 @@ } }, "graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==" + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==" }, "graphql-tag": { "version": "2.12.6", @@ -27023,9 +26761,9 @@ } }, "joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "requires": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -27624,9 +27362,9 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" }, "napi-build-utils": { "version": "1.0.2", @@ -27683,9 +27421,9 @@ } }, "node-abi": { - "version": "3.31.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.31.0.tgz", - "integrity": "sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "requires": { "semver": "^7.3.5" } @@ -27701,9 +27439,9 @@ "integrity": "sha512-mTCTZk29tmX1OGfVkPt63H3c3VqXrI2Kvua98S7iUIB/Gbp0MNw05YtUomxQIxnnKMyRIIuY9izPcFixzhSBrA==" }, "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "requires": { "whatwg-url": "^5.0.0" } @@ -27785,9 +27523,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "normalize-path": { "version": "3.0.0", @@ -28450,11 +28188,11 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "requires": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } @@ -29615,9 +29353,9 @@ } }, "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -29630,9 +29368,9 @@ "integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==" }, "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "requires": { "lru-cache": "^6.0.0" }, @@ -29752,15 +29490,15 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "requires": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -29772,9 +29510,9 @@ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" }, "node-addon-api": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz", - "integrity": "sha512-CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" } } }, @@ -30026,9 +29764,9 @@ } }, "slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==" + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" }, "snake-case": { "version": "3.0.4", @@ -30040,15 +29778,15 @@ } }, "socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "requires": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -30068,18 +29806,21 @@ } }, "socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "requires": { + "ws": "~8.11.0" + } }, "socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -30561,9 +30302,9 @@ }, "dependencies": { "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -30573,9 +30314,9 @@ } }, "terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -30591,15 +30332,15 @@ } }, "terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "requires": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "dependencies": { "jest-worker": { @@ -30613,9 +30354,9 @@ } }, "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "requires": { "randombytes": "^2.1.0" } @@ -30837,9 +30578,9 @@ } }, "ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==" + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==" }, "unbox-primitive": { "version": "1.0.2", @@ -31052,21 +30793,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "requires": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -31075,18 +30816,13 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "dependencies": { - "@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -31260,9 +30996,9 @@ } }, "ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==" + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" }, "xdg-basedir": { "version": "4.0.0", @@ -31275,9 +31011,9 @@ "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" }, "xstate": { - "version": "4.37.1", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.1.tgz", - "integrity": "sha512-MuB7s01nV5vG2CzaBg2msXLGz7JuS+x/NBkQuZAwgEYCnWA8iQMiRz2VGxD3pcFjZAOih3fOgDD3kDaFInEx+g==" + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==" }, "xtend": { "version": "4.0.2", diff --git a/starters/gatsby-starter-wordpress-blog/package.json b/starters/gatsby-starter-wordpress-blog/package.json index 8a69d95508d8e..32d90b9dfbded 100644 --- a/starters/gatsby-starter-wordpress-blog/package.json +++ b/starters/gatsby-starter-wordpress-blog/package.json @@ -11,12 +11,12 @@ "@fontsource/merriweather": "^4.5.14", "@fontsource/montserrat": "^4.5.14", "@wordpress/block-library": "^8.9.0", - "gatsby": "^5.9.1", - "gatsby-plugin-image": "^3.9.0", - "gatsby-plugin-manifest": "^5.9.0", - "gatsby-plugin-sharp": "^5.9.0", - "gatsby-source-wordpress": "^7.9.0", - "gatsby-transformer-sharp": "^5.9.0", + "gatsby": "^5.10.0", + "gatsby-plugin-image": "^3.10.0", + "gatsby-plugin-manifest": "^5.10.0", + "gatsby-plugin-sharp": "^5.10.0", + "gatsby-source-wordpress": "^7.10.0", + "gatsby-transformer-sharp": "^5.10.0", "html-react-parser": "^3.0.16", "lodash": "^4.17.21", "react": "^18.2.0", diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index 3b36e7f07bb47..16006b77a8bd0 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -9,7 +9,7 @@ "version": "0.1.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.9.1", + "gatsby": "^5.10.0", "react": "^18.2.0", "react-dom": "^18.2.0" } @@ -955,11 +955,11 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" }, "engines": { "node": ">=6.9.0" @@ -1268,11 +1268,11 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" }, "engines": { @@ -1855,9 +1855,9 @@ } }, "node_modules/@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "dependencies": { "regenerator-runtime": "^0.13.11" }, @@ -2011,14 +2011,14 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "dependencies": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0", @@ -2214,13 +2214,13 @@ } }, "node_modules/@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2229,13 +2229,13 @@ } }, "node_modules/@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -2310,9 +2310,9 @@ } }, "node_modules/@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "dependencies": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -2363,12 +2363,12 @@ } }, "node_modules/@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "dependencies": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" @@ -2377,40 +2377,16 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/code-file-loader/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "dependencies": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2418,12 +2394,12 @@ } }, "node_modules/@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "dependencies": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" }, @@ -2431,36 +2407,12 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/load/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "dependencies": { - "@graphql-tools/utils": "9.2.1", - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, - "node_modules/@graphql-tools/merge/node_modules/@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "dependencies": { - "@graphql-typed-document-node/core": "^3.1.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2468,9 +2420,9 @@ } }, "node_modules/@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "dependencies": { "tslib": "^2.4.0" }, @@ -2479,12 +2431,12 @@ } }, "node_modules/@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "dependencies": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" }, "peerDependencies": { @@ -2492,20 +2444,20 @@ } }, "node_modules/@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "dependencies": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" + "value-or-promise": "^1.0.12" }, "peerDependencies": { "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/schema/node_modules/@graphql-tools/utils": { + "node_modules/@graphql-tools/utils": { "version": "9.2.1", "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", @@ -2517,17 +2469,6 @@ "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" } }, - "node_modules/@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", - "dependencies": { - "tslib": "^2.4.0" - }, - "peerDependencies": { - "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" - } - }, "node_modules/@graphql-typed-document-node/core": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.1.tgz", @@ -2644,9 +2585,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "dependencies": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -3846,9 +3787,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "node_modules/@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "dependencies": { "@types/node": "*" } @@ -3896,9 +3837,9 @@ "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "node_modules/@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "dependencies": { "@types/node": "*", "form-data": "^3.0.0" @@ -3959,14 +3900,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -4212,133 +4145,133 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -4698,9 +4631,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "funding": [ { "type": "opencollective", @@ -4712,8 +4645,8 @@ } ], "dependencies": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -4888,13 +4821,13 @@ } }, "node_modules/babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" }, "engines": { "node": ">=18.0.0" @@ -4952,9 +4885,9 @@ } }, "node_modules/babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -4969,8 +4902,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" }, "engines": { "node": ">=18.0.0" @@ -5166,9 +5099,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "funding": [ { "type": "opencollective", @@ -5180,10 +5113,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" }, "bin": { "browserslist": "cli.js" @@ -5348,9 +5281,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==", + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==", "funding": [ { "type": "opencollective", @@ -5359,6 +5292,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ] }, @@ -5918,9 +5855,9 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "node_modules/core-js": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz", - "integrity": "sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==", + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -5928,11 +5865,11 @@ } }, "node_modules/core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "dependencies": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" }, "funding": { "type": "opencollective", @@ -5982,9 +5919,9 @@ } }, "node_modules/create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "dependencies": { "@babel/runtime": "^7.20.13" }, @@ -5993,11 +5930,11 @@ } }, "node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "dependencies": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "node_modules/cross-spawn": { @@ -6265,9 +6202,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "node_modules/date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==", + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, "engines": { "node": ">=0.11" }, @@ -6371,9 +6311,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "node_modules/deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "engines": { "node": ">=0.10.0" } @@ -6726,9 +6666,9 @@ } }, "node_modules/engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "dependencies": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -6739,21 +6679,21 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" } }, @@ -6779,9 +6719,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==", + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==", "engines": { "node": ">=10.0.0" } @@ -6808,9 +6748,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -6932,9 +6872,9 @@ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" }, "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "node_modules/es-shim-unscopables": { "version": "1.0.0", @@ -8254,9 +8194,9 @@ } }, "node_modules/gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8273,16 +8213,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -8290,36 +8230,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -8339,32 +8279,32 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -8377,7 +8317,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -8386,7 +8326,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -8399,28 +8339,28 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "bin": { @@ -8430,7 +8370,7 @@ "node": ">=18.0.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.9.0" + "gatsby-sharp": "^1.10.0" }, "peerDependencies": { "react": "^18.0.0 || ^0.0.0", @@ -8438,9 +8378,9 @@ } }, "node_modules/gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8451,7 +8391,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -8459,16 +8399,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -8477,7 +8417,7 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", @@ -8492,29 +8432,10 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-cli/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "dependencies": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -8538,50 +8459,29 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==", "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "dependencies": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "dependencies": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/gatsby-legacy-polyfills/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "bin": { - "semver": "bin/semver.js" + "core-js-compat": "3.30.1" } }, "node_modules/gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" }, "engines": { @@ -8594,15 +8494,15 @@ } }, "node_modules/gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "dependencies": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -8612,11 +8512,11 @@ } }, "node_modules/gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -8637,9 +8537,9 @@ } }, "node_modules/gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "dependencies": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -8647,10 +8547,10 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, @@ -8662,9 +8562,9 @@ } }, "node_modules/gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "dependencies": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -8672,7 +8572,7 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" }, "engines": { "node": ">=18.0.0" @@ -8682,18 +8582,18 @@ } }, "node_modules/gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "dependencies": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" }, "engines": { @@ -8705,9 +8605,9 @@ } }, "node_modules/gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "dependencies": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" @@ -8722,9 +8622,9 @@ } }, "node_modules/gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "engines": { "node": ">=18.0.0" }, @@ -8735,21 +8635,20 @@ } }, "node_modules/gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "dependencies": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" }, "engines": { "node": ">=18.0.0" } }, "node_modules/gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "hasInstallScript": true, "dependencies": { "@babel/code-frame": "^7.18.6", @@ -8759,7 +8658,7 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -8769,29 +8668,10 @@ "node": ">=18.0.0" } }, - "node_modules/gatsby-telemetry/node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "dependencies": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -8803,14 +8683,14 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "dependencies": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -8836,12 +8716,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "dependencies": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -8862,16 +8742,16 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -8901,13 +8781,13 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "dependencies": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" }, "engines": { @@ -8927,12 +8807,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -8943,9 +8823,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -8955,12 +8835,12 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "dependencies": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -8981,11 +8861,11 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "dependencies": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -9036,25 +8916,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/gatsby/node_modules/node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -9291,9 +9152,9 @@ } }, "node_modules/graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "engines": { "node": ">=12" }, @@ -10279,9 +10140,9 @@ } }, "node_modules/joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "dependencies": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -10969,9 +10830,15 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -11027,9 +10894,9 @@ } }, "node_modules/node-abi": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.35.0.tgz", - "integrity": "sha512-jAlSOFR1Bls963NmFwxeQkNTzqjUF0NThm8Le7eRIRGzFUVJuMOFZDLv5Y30W/Oaw+KEebEJLAigwO9gQHoEmw==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "dependencies": { "semver": "^7.3.5" }, @@ -11043,9 +10910,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "dependencies": { "whatwg-url": "^5.0.0" }, @@ -11104,9 +10971,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -11990,9 +11857,9 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "node_modules/postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "funding": [ { "type": "opencollective", @@ -12001,10 +11868,14 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -13377,9 +13248,9 @@ } }, "node_modules/schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -13394,9 +13265,9 @@ } }, "node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "dependencies": { "lru-cache": "^6.0.0" }, @@ -13534,16 +13405,16 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "node_modules/sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "hasInstallScript": true, "dependencies": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -13564,9 +13435,9 @@ } }, "node_modules/sharp/node_modules/node-addon-api": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", - "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" }, "node_modules/shebang-command": { "version": "2.0.0", @@ -13704,9 +13575,9 @@ } }, "node_modules/slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==", + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", "engines": { "node": ">=8.0.0" } @@ -13721,15 +13592,15 @@ } }, "node_modules/socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "engines": { @@ -13737,18 +13608,21 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "dependencies": { + "ws": "~8.11.0" + } }, "node_modules/socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "dependencies": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "engines": { @@ -14269,9 +14143,9 @@ } }, "node_modules/terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "dependencies": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -14286,15 +14160,15 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "engines": { "node": ">= 10.13.0" @@ -14332,9 +14206,9 @@ } }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "dependencies": { "randombytes": "^2.1.0" } @@ -14578,9 +14452,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==", + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==", "funding": [ { "type": "opencollective", @@ -14855,21 +14729,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "dependencies": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -14878,9 +14752,9 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, @@ -14962,11 +14836,6 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, - "node_modules/webpack/node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -15108,9 +14977,9 @@ } }, "node_modules/ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "engines": { "node": ">=10.0.0" }, @@ -15144,9 +15013,9 @@ } }, "node_modules/xstate": { - "version": "4.35.4", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.35.4.tgz", - "integrity": "sha512-mqRBYHhljP1xIItI4xnSQNHEv6CKslSM1cOGmvhmxeoDPAZgNbhSUYAL5N6DZIxRfpYY+M+bSm3mUFHD63iuvg==", + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==", "funding": { "type": "opencollective", "url": "https://opencollective.com/xstate" @@ -16074,11 +15943,11 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.21.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz", + "integrity": "sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==", "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.20.2" } }, "@babel/plugin-syntax-import-assertions": { @@ -16270,11 +16139,11 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz", + "integrity": "sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==", "requires": { - "@babel/helper-plugin-utils": "^7.19.0", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-flow": "^7.18.6" } }, @@ -16660,9 +16529,9 @@ } }, "@babel/runtime": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", - "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz", + "integrity": "sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==", "requires": { "regenerator-runtime": "^0.13.11" } @@ -16774,14 +16643,14 @@ } }, "@gatsbyjs/parcel-namer-relative-to-cwd": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.9.0.tgz", - "integrity": "sha512-k/4cDpiA25Ah3RfgrxJ0SaqtjjtqJd1lYqnKjf2jNoTa1vkYzhL7Mihl3w5GSGS4TpPympESl25N32JWtq5XAA==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.10.0.tgz", + "integrity": "sha512-HRHJua+grDQbYYg7jeOecT0CwVrDTalZq8Zq9leyszF5PlaVx/4IjXovoO4DwY0LNvRXIBk0vYAozuMB4yGqBQ==", "requires": { "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "@gatsbyjs/reach-router": { @@ -16953,13 +16822,13 @@ } }, "@graphql-codegen/typescript": { - "version": "2.8.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.7.tgz", - "integrity": "sha512-Nm5keWqIgg/VL7fivGmglF548tJRP2ttSmfTMuAdY5GNGTJTVZOzNbIOfnbVEDMMWF4V+quUuSyeUQ6zRxtX1w==", + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.8.tgz", + "integrity": "sha512-A0oUi3Oy6+DormOlrTC4orxT9OBZkIglhbJBcDmk34jAKKUgesukXRd4yOhmTrnbchpXz2T8IAOFB3FWIaK4Rw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-codegen/schema-ast": "^2.6.1", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -16997,13 +16866,13 @@ } }, "@graphql-codegen/typescript-operations": { - "version": "2.5.12", - "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.12.tgz", - "integrity": "sha512-/w8IgRIQwmebixf514FOQp2jXOe7vxZbMiSFoQqJgEgzrr42joPsgu4YGU+owv2QPPmu4736OcX8FSavb7SLiA==", + "version": "2.5.13", + "resolved": "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.13.tgz", + "integrity": "sha512-3vfR6Rx6iZU0JRt29GBkFlrSNTM6t+MSLF86ChvL4d/Jfo/JYAGuB3zNzPhirHYzJPCvLOAx2gy9ID1ltrpYiw==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/visitor-plugin-common": "2.13.7", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/visitor-plugin-common": "2.13.8", "auto-bind": "~4.0.0", "tslib": "~2.4.0" }, @@ -17041,9 +16910,9 @@ } }, "@graphql-codegen/visitor-plugin-common": { - "version": "2.13.7", - "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.7.tgz", - "integrity": "sha512-xE6iLDhr9sFM1qwCGJcCXRu5MyA0moapG2HVejwyAXXLubYKYwWnoiEigLH2b5iauh6xsl6XP8hh9D1T1dn5Cw==", + "version": "2.13.8", + "resolved": "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.8.tgz", + "integrity": "sha512-IQWu99YV4wt8hGxIbBQPtqRuaWZhkQRG2IZKbMoSvh0vGeWb3dB0n0hSgKaOOxDY+tljtOf9MTcUYvJslQucMQ==", "requires": { "@graphql-codegen/plugin-helpers": "^3.1.2", "@graphql-tools/optimize": "^1.3.0", @@ -17090,139 +16959,85 @@ } }, "@graphql-tools/code-file-loader": { - "version": "7.3.20", - "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.20.tgz", - "integrity": "sha512-htwylU+/if5j5rgrd/i2xgM22cWC2RGgUGO7K+nxZU+l7iCimJUdDQnqCW9G3eVHbLpVOhyza9bBUNMPzh3sxg==", + "version": "7.3.23", + "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.23.tgz", + "integrity": "sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==", "requires": { - "@graphql-tools/graphql-tag-pluck": "7.4.6", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/graphql-tag-pluck": "7.5.2", + "@graphql-tools/utils": "^9.2.1", "globby": "^11.0.3", "tslib": "^2.4.0", "unixify": "^1.0.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/graphql-tag-pluck": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.4.6.tgz", - "integrity": "sha512-KPlkrC+WtJAg/Sv93rPiDHZDsgQDIZEy9ViHqz80KdRvq0aeQN9TGp26mQCyD7zo1Ib2paT16IVwTNQf02yxpQ==", + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.5.2.tgz", + "integrity": "sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==", "requires": { "@babel/parser": "^7.16.8", - "@babel/plugin-syntax-import-assertions": "7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.20.0", "@babel/traverse": "^7.16.8", "@babel/types": "^7.16.8", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/load": { - "version": "7.8.12", - "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.12.tgz", - "integrity": "sha512-JwxgNS2c6i6oIdKttcbXns/lpKiyN7c6/MkkrJ9x2QE9rXk5HOhSJxRvPmOueCuAin1542xUrcDRGBXJ7thSig==", + "version": "7.8.14", + "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.14.tgz", + "integrity": "sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==", "requires": { - "@graphql-tools/schema": "9.0.16", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/schema": "^9.0.18", + "@graphql-tools/utils": "^9.2.1", "p-limit": "3.1.0", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/merge": { - "version": "8.3.18", - "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.18.tgz", - "integrity": "sha512-R8nBglvRWPAyLpZL/f3lxsY7wjnAeE0l056zHhcO/CgpvK76KYUt9oEkR05i8Hmt8DLRycBN0FiotJ0yDQWTVA==", + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz", + "integrity": "sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw==", "requires": { - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } } }, "@graphql-tools/optimize": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz", - "integrity": "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.4.0.tgz", + "integrity": "sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==", "requires": { "tslib": "^2.4.0" } }, "@graphql-tools/relay-operation-optimizer": { - "version": "6.5.14", - "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.14.tgz", - "integrity": "sha512-RAy1fMfXig9X3gIkYnfEmv0mh20vZuAgWDq+zf1MrrsCAP364B+DKrBjLwn3D+4e0PMTlqwmqR0JB5t1VtZn2w==", + "version": "6.5.18", + "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.18.tgz", + "integrity": "sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==", "requires": { "@ardatan/relay-compiler": "12.0.0", - "@graphql-tools/utils": "9.1.3", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0" } }, "@graphql-tools/schema": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.16.tgz", - "integrity": "sha512-kF+tbYPPf/6K2aHG3e1SWIbapDLQaqnIHVRG6ow3onkFoowwtKszvUyOASL6Krcv2x9bIMvd1UkvRf9OaoROQQ==", + "version": "9.0.19", + "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.19.tgz", + "integrity": "sha512-oBRPoNBtCkk0zbUsyP4GaIzCt8C0aCI4ycIRUL67KK5pOHljKLBBtGT+Jr6hkzA74C8Gco8bpZPe7aWFjiaK2w==", "requires": { - "@graphql-tools/merge": "8.3.18", - "@graphql-tools/utils": "9.2.1", + "@graphql-tools/merge": "^8.4.1", + "@graphql-tools/utils": "^9.2.1", "tslib": "^2.4.0", - "value-or-promise": "1.0.12" - }, - "dependencies": { - "@graphql-tools/utils": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", - "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", - "requires": { - "@graphql-typed-document-node/core": "^3.1.1", - "tslib": "^2.4.0" - } - } + "value-or-promise": "^1.0.12" } }, "@graphql-tools/utils": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz", - "integrity": "sha512-bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-WUw506Ql6xzmOORlriNrD6Ugx+HjVgYxt9KCXD9mHAak+eaXSwuGGPyE60hy9xaDEoXKBsG7SkG69ybitaVl6A==", "requires": { + "@graphql-typed-document-node/core": "^3.1.1", "tslib": "^2.4.0" } }, @@ -17321,9 +17136,9 @@ "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.18", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", + "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", "requires": { "@jridgewell/resolve-uri": "3.1.0", "@jridgewell/sourcemap-codec": "1.4.14" @@ -18098,9 +17913,9 @@ "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" }, "@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.11.tgz", + "integrity": "sha512-HC8G7c1WmaF2ekqpnFq626xd3Zz0uvaqFmBJNRZCGEZCXkvSdJoNFn/8Ygbd9fKNQj8UzLdCETaI0UWPAjK7IA==", "requires": { "@types/node": "*" } @@ -18147,9 +17962,9 @@ "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" }, "@types/node-fetch": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz", - "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz", + "integrity": "sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==", "requires": { "@types/node": "*", "form-data": "^3.0.0" @@ -18210,14 +18025,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/sharp": { - "version": "0.31.1", - "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.31.1.tgz", - "integrity": "sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==", - "requires": { - "@types/node": "*" - } - }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -18371,133 +18178,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==" + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "requires": { - "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, @@ -18755,12 +18562,12 @@ "integrity": "sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==" }, "autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "version": "10.4.14", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", + "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", + "browserslist": "^4.21.5", + "caniuse-lite": "^1.0.30001464", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -18891,13 +18698,13 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.9.0.tgz", - "integrity": "sha512-moGeKUT+QZ+jZ3/PCUjNitp9ZEqQChm3FUjtoH97UlqbtzlA88SSBq/4uTnCXiXCVy+R6wHu/jhTp6U2dOBOnA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-5.10.0.tgz", + "integrity": "sha512-YVjBg0RD6aHE8LOWeuDSqadOB2lPV9FeGpc32rLClaDK+wHdIPaXYqUd9ty30UY30PfB/gDclyexXlfv7qgcxA==", "requires": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.9.0" + "gatsby-core-utils": "^4.10.0" } }, "babel-plugin-syntax-trailing-function-commas": { @@ -18945,9 +18752,9 @@ } }, "babel-preset-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.9.0.tgz", - "integrity": "sha512-mPWsCwz4tz6oTff6cSj8ZMDKFdsOhhRTp1VVdJDGlKSNg0x8+CamNJLsnIayJvv+PpoXEZuaNF5LOUZNGfx1oQ==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-3.10.0.tgz", + "integrity": "sha512-sogPa6DBrH2fZpiVOD6mYDCbnX/OEExl4jtZzfYPuKjcFDKPs8hs6lmmeLIdXKZhLIM2tJhJXQV/bqYlwWRARw==", "requires": { "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -18962,8 +18769,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.9.0", - "gatsby-legacy-polyfills": "^3.9.0" + "gatsby-core-utils": "^4.10.0", + "gatsby-legacy-polyfills": "^3.10.0" } }, "balanced-match": { @@ -19111,14 +18918,14 @@ } }, "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "version": "4.21.5", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", + "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "caniuse-lite": "^1.0.30001449", + "electron-to-chromium": "^1.4.284", + "node-releases": "^2.0.8", + "update-browserslist-db": "^1.0.10" } }, "bser": { @@ -19235,9 +19042,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001430", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001430.tgz", - "integrity": "sha512-IB1BXTZKPDVPM7cnV4iaKaHxckvdr/3xtctB3f7Hmenx3qYBhGtTZ//7EllK66aKXW98Lx0+7Yr0kxBtIt3tzg==" + "version": "1.0.30001487", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001487.tgz", + "integrity": "sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==" }, "capital-case": { "version": "1.0.4", @@ -19685,16 +19492,16 @@ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" }, "core-js": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.26.0.tgz", - "integrity": "sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==" + "version": "3.30.2", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz", + "integrity": "sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==" }, "core-js-compat": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.0.tgz", - "integrity": "sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==", + "version": "3.30.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz", + "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==", "requires": { - "browserslist": "^4.21.4" + "browserslist": "^4.21.5" } }, "core-js-pure": { @@ -19729,19 +19536,19 @@ } }, "create-gatsby": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.9.0.tgz", - "integrity": "sha512-44BJv3u+0yM0DaWH4iw98yaFxHN47qO0iReHB3R/ux1WKula9BkPm2q+qw/ASz1rT4L4Ar9Sm7xNseg7ptQRqg==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.10.0.tgz", + "integrity": "sha512-ZKkibIo8B75yxw0/IobjMITZKdZJ+m24mbFY/nLwrMcN6RfkZ98Pa4DNTmUIyfA4AFF4nZCDgVkl+3sfoNk8iQ==", "requires": { "@babel/runtime": "^7.20.13" } }, "cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz", + "integrity": "sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g==", "requires": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.11" } }, "cross-spawn": { @@ -19926,9 +19733,12 @@ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" }, "date-fns": { - "version": "2.29.3", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz", - "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==" + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } }, "debug": { "version": "3.2.7", @@ -20005,9 +19815,9 @@ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" }, "deepmerge": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.0.tgz", - "integrity": "sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==" + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" }, "defer-to-connect": { "version": "2.0.1", @@ -20274,9 +20084,9 @@ } }, "engine.io": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.2.1.tgz", - "integrity": "sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.4.2.tgz", + "integrity": "sha512-FKn/3oMiJjrOEOeUub2WCox6JhxBXq/Zn3fZOMCBxKnNYtsdKjxhl7yR3fZhM9PV+rdE75SU5SYMc+2PGzo+Tg==", "requires": { "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", @@ -20287,7 +20097,7 @@ "cors": "~2.8.5", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3" + "ws": "~8.11.0" }, "dependencies": { "debug": { @@ -20306,14 +20116,14 @@ } }, "engine.io-client": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz", - "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.4.0.tgz", + "integrity": "sha512-GyKPDyoEha+XZ7iEqam49vz6auPnNJ9ZBfy89f+rMMas8AuiMWOZ9PVzu8xb9ZC6rafUqiGHSCfu22ih66E+1g==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.1", "engine.io-parser": "~5.0.3", - "ws": "~8.2.3", + "ws": "~8.11.0", "xmlhttprequest-ssl": "~2.0.0" }, "dependencies": { @@ -20333,14 +20143,14 @@ } }, "engine.io-parser": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.5.tgz", - "integrity": "sha512-mjEyaa4zhuuRhaSLOdjEb57X0XPP9JEsnXI4E+ivhwT0GgzUogARx4MqoY1jQyB+4Bkz3BUOmzL7t9RMKmlG3g==" + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz", + "integrity": "sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw==" }, "enhanced-resolve": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", - "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz", + "integrity": "sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -20440,9 +20250,9 @@ } }, "es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", + "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" }, "es-shim-unscopables": { "version": "1.0.0", @@ -21404,9 +21214,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.9.1.tgz", - "integrity": "sha512-TNMmFqRnEZBZsoecp11ZhSeYmgKV6QfPsl1f46I+DK7n3yNWMkMN4ZpKuCdH2gw98d2LgtU7nHWHCohr54eb6A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.10.0.tgz", + "integrity": "sha512-/CsCBskAzrit4olmzzN58v6ayvUYUwVRwQVxkHTDb8b9bGRy0VBG9Ntsq/IvGtEYRvYd6VrWpj/U0Xfcf+pnDg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -21422,16 +21232,16 @@ "@graphql-codegen/add": "^3.2.3", "@graphql-codegen/core": "^2.6.8", "@graphql-codegen/plugin-helpers": "^2.7.2", - "@graphql-codegen/typescript": "^2.8.7", - "@graphql-codegen/typescript-operations": "^2.5.12", - "@graphql-tools/code-file-loader": "^7.3.16", - "@graphql-tools/load": "^7.8.10", - "@jridgewell/trace-mapping": "^0.3.17", + "@graphql-codegen/typescript": "^2.8.8", + "@graphql-codegen/typescript-operations": "^2.5.13", + "@graphql-tools/code-file-loader": "^7.3.23", + "@graphql-tools/load": "^7.8.14", + "@jridgewell/trace-mapping": "^0.3.18", "@nodelib/fs.walk": "^1.2.8", "@parcel/cache": "2.8.3", "@parcel/core": "2.8.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "@types/http-proxy": "^1.17.9", + "@types/http-proxy": "^1.17.11", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vercel/webpack-asset-relocator-loader": "^1.7.3", @@ -21439,36 +21249,36 @@ "acorn-walk": "^8.2.0", "address": "1.2.2", "anser": "^2.1.1", - "autoprefixer": "^10.4.13", + "autoprefixer": "^10.4.14", "axios": "^0.21.1", "babel-jsx-utils": "^1.1.0", "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "^3.3.4", - "babel-plugin-remove-graphql-queries": "^5.9.0", - "babel-preset-gatsby": "^3.9.0", + "babel-plugin-remove-graphql-queries": "^5.10.0", + "babel-preset-gatsby": "^3.10.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", - "browserslist": "^4.21.4", + "browserslist": "^4.21.5", "cache-manager": "^2.11.1", "chalk": "^4.1.2", "chokidar": "^3.5.3", "common-tags": "^1.8.2", "compression": "^1.7.4", "cookie": "^0.5.0", - "core-js": "^3.22.3", + "core-js": "^3.30.1", "cors": "^2.8.5", "css-loader": "^5.2.7", "css-minimizer-webpack-plugin": "^2.0.0", "css.escape": "^1.5.1", - "date-fns": "^2.29.3", + "date-fns": "^2.30.0", "debug": "^4.3.4", - "deepmerge": "^4.3.0", + "deepmerge": "^4.3.1", "detect-port": "^1.5.1", "devcert": "^1.2.2", "dotenv": "^8.6.0", - "enhanced-resolve": "^5.12.0", + "enhanced-resolve": "^5.13.0", "error-stack-parser": "^2.1.4", "eslint": "^7.32.0", "eslint-config-react-app": "^6.0.0", @@ -21488,33 +21298,33 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.1.1", - "gatsby-cli": "^5.9.0", - "gatsby-core-utils": "^4.9.0", - "gatsby-graphiql-explorer": "^3.9.0", - "gatsby-legacy-polyfills": "^3.9.0", - "gatsby-link": "^5.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-parcel-config": "1.9.0", - "gatsby-plugin-page-creator": "^5.9.0", - "gatsby-plugin-typescript": "^5.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-react-router-scroll": "^6.9.0", - "gatsby-script": "^2.9.0", - "gatsby-sharp": "^1.9.0", - "gatsby-telemetry": "^4.9.0", - "gatsby-worker": "^2.9.0", + "gatsby-cli": "^5.10.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-graphiql-explorer": "^3.10.0", + "gatsby-legacy-polyfills": "^3.10.0", + "gatsby-link": "^5.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-parcel-config": "1.10.0", + "gatsby-plugin-page-creator": "^5.10.0", + "gatsby-plugin-typescript": "^5.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-react-router-scroll": "^6.10.0", + "gatsby-script": "^2.10.0", + "gatsby-sharp": "^1.10.0", + "gatsby-telemetry": "^4.10.0", + "gatsby-worker": "^2.10.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", "graphql": "^16.6.0", "graphql-compose": "^9.0.10", - "graphql-http": "^1.13.0", + "graphql-http": "^1.18.0", "graphql-tag": "^2.12.6", "hasha": "^5.2.2", "invariant": "^2.2.4", "is-relative": "^1.0.0", "is-relative-url": "^3.0.0", - "joi": "^17.7.0", + "joi": "^17.9.2", "json-loader": "^0.5.7", "latest-version": "^7.0.0", "lmdb": "2.5.3", @@ -21527,7 +21337,7 @@ "mitt": "^1.2.0", "moment": "^2.29.4", "multer": "^1.4.5-lts.1", - "node-fetch": "^2.6.8", + "node-fetch": "^2.6.9", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", "null-loader": "^4.0.1", @@ -21536,7 +21346,7 @@ "parseurl": "^1.3.3", "physical-cpu-count": "^2.0.0", "platform": "^1.3.6", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-flexbugs-fixes": "^5.0.2", "postcss-loader": "^5.3.0", "prompts": "^2.4.2", @@ -21549,40 +21359,40 @@ "redux": "4.2.1", "redux-thunk": "^2.4.2", "resolve-from": "^5.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", - "slugify": "^1.6.5", - "socket.io": "4.5.4", - "socket.io-client": "4.5.4", + "slugify": "^1.6.6", + "socket.io": "4.6.1", + "socket.io-client": "4.6.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", - "terser-webpack-plugin": "^5.3.6", + "terser-webpack-plugin": "^5.3.7", "tmp": "^0.2.1", "true-case-path": "^2.2.1", "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.75.0", + "webpack": "^5.81.0", "webpack-dev-middleware": "^4.3.0", "webpack-merge": "^5.8.0", "webpack-stats-plugin": "^1.1.1", "webpack-virtual-modules": "^0.5.0", - "xstate": "^4.35.3", + "xstate": "^4.37.2", "yaml-loader": "^0.8.0" }, "dependencies": { "@typescript-eslint/eslint-plugin": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz", - "integrity": "sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.6.tgz", + "integrity": "sha512-sXtOgJNEuRU5RLwPUb1jxtToZbgvq3M6FPpY4QENxoOggK+UpTxUBpj6tD8+Qh2g46Pi9We87E+eHnUw8YcGsw==", "requires": { "@eslint-community/regexpp": "^4.4.0", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/type-utils": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/type-utils": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", @@ -21592,27 +21402,27 @@ }, "dependencies": { "@typescript-eslint/type-utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz", - "integrity": "sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.59.6.tgz", + "integrity": "sha512-A4tms2Mp5yNvLDlySF+kAThV9VTBPCvGf0Rp8nl/eoDX9Okun8byTKoj3fJ52IJitjWOk0fKPNQhXEB++eNozQ==", "requires": { - "@typescript-eslint/typescript-estree": "5.59.5", - "@typescript-eslint/utils": "5.59.5", + "@typescript-eslint/typescript-estree": "5.59.6", + "@typescript-eslint/utils": "5.59.6", "debug": "^4.3.4", "tsutils": "^3.21.0" } }, "@typescript-eslint/utils": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.5.tgz", - "integrity": "sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.59.6.tgz", + "integrity": "sha512-vzaaD6EXbTS29cVH0JjXBdzMt6VBlv+hE31XktDRMX1j3462wZCJa7VzO2AxXEXcIl8GQqZPcOPuW/Z1tZVogg==", "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "eslint-scope": "^5.1.1", "semver": "^7.3.7" }, @@ -21630,37 +21440,37 @@ } }, "@typescript-eslint/parser": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.5.tgz", - "integrity": "sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.6.tgz", + "integrity": "sha512-7pCa6al03Pv1yf/dUg/s1pXz/yGMUBAw5EeWqNTFiSueKvRNonze3hma3lhdsOrQcaOXhbk5gKu2Fludiho9VA==", "requires": { - "@typescript-eslint/scope-manager": "5.59.5", - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/typescript-estree": "5.59.5", + "@typescript-eslint/scope-manager": "5.59.6", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/typescript-estree": "5.59.6", "debug": "^4.3.4" } }, "@typescript-eslint/scope-manager": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz", - "integrity": "sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.6.tgz", + "integrity": "sha512-gLbY3Le9Dxcb8KdpF0+SJr6EQ+hFGYFl6tVY8VxLPFDfUZC7BHFw+Vq7bM5lE9DwWPfx4vMWWTLGXgpc0mAYyQ==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5" + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6" } }, "@typescript-eslint/types": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.5.tgz", - "integrity": "sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w==" + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.6.tgz", + "integrity": "sha512-tH5lBXZI7T2MOUgOWFdVNUILsI02shyQvfzG9EJkoONWugCG77NDDa1EeDGw7oJ5IvsTAAGVV8I3Tk2PNu9QfA==" }, "@typescript-eslint/typescript-estree": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz", - "integrity": "sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.6.tgz", + "integrity": "sha512-vW6JP3lMAs/Tq4KjdI/RiHaaJSO7IUsbkz17it/Rl9Q+WkQ77EOuOnlbaU8kKfVIOJxMhnRiBG+olE7f3M16DA==", "requires": { - "@typescript-eslint/types": "5.59.5", - "@typescript-eslint/visitor-keys": "5.59.5", + "@typescript-eslint/types": "5.59.6", + "@typescript-eslint/visitor-keys": "5.59.6", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -21669,11 +21479,11 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.59.5", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz", - "integrity": "sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==", + "version": "5.59.6", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.6.tgz", + "integrity": "sha512-zEfbFLzB9ETcEJ4HZEEsCR9HHeNku5/Qw1jSS5McYJv5BR+ftYXwFFAH5Al+xkGaZEqowMwl7uoJjQb1YSPF8Q==", "requires": { - "@typescript-eslint/types": "5.59.5", + "@typescript-eslint/types": "5.59.6", "eslint-visitor-keys": "^3.3.0" } }, @@ -21699,21 +21509,13 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node-fetch": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.10.tgz", - "integrity": "sha512-5YytjUVbwzjE/BX4N62vnPPkGNxlJPwdA9/ArUc4pcM6cYS4Hinuv4VazzwjMGgnWuiQqcemOanib/5PpcsGug==", - "requires": { - "whatwg-url": "^5.0.0" - } } } }, "gatsby-cli": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.9.0.tgz", - "integrity": "sha512-yuUF5k6oqTdo81fhak/gaOQcFtc3FZtIEs8E2egcn+u5XlPXSa6/6opjj2jon/qc6A42KEQ3osBQk2eUjujrhA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.10.0.tgz", + "integrity": "sha512-k8Z5l+2pAzf09/w1YgODAExjJKnZCd8WON6pxsHV1nht9I+zXE3sqB5FbsitckufaHhoOer6ezsQjxLVAe4+mA==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -21723,7 +21525,7 @@ "@babel/runtime": "^7.20.13", "@babel/template": "^7.20.7", "@babel/types": "^7.20.7", - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "@types/common-tags": "^1.8.1", "better-opn": "^2.1.1", "boxen": "^5.1.2", @@ -21731,16 +21533,16 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.9.0", + "create-gatsby": "^3.10.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", - "joi": "^17.9.1", + "joi": "^17.9.2", "lodash": "^4.17.21", "node-fetch": "^2.6.9", "opentracing": "^0.14.7", @@ -21749,29 +21551,19 @@ "prompts": "^2.4.2", "redux": "4.2.1", "resolve-cwd": "^3.0.0", - "semver": "^7.3.8", + "semver": "^7.5.0", "signal-exit": "^3.0.7", "stack-trace": "^0.0.10", "strip-ansi": "^6.0.1", "yargs": "^15.4.1", "yoga-layout-prebuilt": "^1.10.0", "yurnalist": "^2.1.0" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-core-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.9.0.tgz", - "integrity": "sha512-diCAmlr42YQpSKapD374JVF+ojDXTHxnrNoS907jNGgT4J35t2az9GsEQFgrEou3Td5TLuUl/8yJM2Hpwn4gyg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.10.0.tgz", + "integrity": "sha512-7wNANRPzxyTsZMnZFyCq1f2D0T6299l1qUew8q8Ax2QJM0kzFY/4uuJaV/fnrC0RdjWnkwGIAiZ1ZnGK4E8HSA==", "requires": { "@babel/runtime": "^7.20.13", "ci-info": "2.0.0", @@ -21792,66 +21584,50 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.9.0.tgz", - "integrity": "sha512-HA2J96QEnp/C+VGXiyW2Pdcivguej4tZ/1QYy3AtMe1iQ2JV9Wx19kN0By8m3G1hluu/Sm1Ca842NO/Nyq5VTw==" + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.10.0.tgz", + "integrity": "sha512-KUYzObIk+W0zRlyVjOWdNLTTL4KyozygT54TOhbBMq4LgUf0mFtnA50UzwV/SqfjksUwE9Xtv7278K1z1Hjuiw==" }, "gatsby-legacy-polyfills": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.9.0.tgz", - "integrity": "sha512-gKQ8tbQ1h6nmR8xmLBox7GrzSgYhso/aMKSC0o3BQNOlutI+DHdkmsz+Jph0R2cB+yakqQfZBUYM/xg/Om515Q==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-3.10.0.tgz", + "integrity": "sha512-b1uNl/Fdfry+7cHjRNa9mtQcmN6xQgqgAOf5F9Z1rJ9vKCylNny4Fs1qkmI8H6UiZYyI33lZq+G1C0SYbhwgxA==", "requires": { "@babel/runtime": "^7.20.13", - "core-js-compat": "3.9.0" - }, - "dependencies": { - "core-js-compat": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", - "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", - "requires": { - "browserslist": "^4.16.3", - "semver": "7.0.0" - } - }, - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } + "core-js-compat": "3.30.1" } }, "gatsby-link": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.9.0.tgz", - "integrity": "sha512-xoa9sJJH4mZBEU41eIoFNPc7x5+z+Ecl2Mqi6LKhQflBg0j5vmCTeDYnRwQ2wC2EwLdb5/Xd9tvMG7r9zlXvag==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-5.10.0.tgz", + "integrity": "sha512-bcPFOcBQNJuSPRyqYE7ELBB4FEmQ7x/xWATzzs2ZCRMzp+SO13iZb5Vi+i0Obdu/YLJZhJ0f+pOIjlio4XNEZA==", "requires": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.9.0", + "gatsby-page-utils": "^3.10.0", "prop-types": "^15.8.1" } }, "gatsby-page-utils": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.9.0.tgz", - "integrity": "sha512-XvyxshcYk9G9V3WddPIosynahlspftrKf6eOOtoSr4EwiYfc86BTETtHyIWfqKa1THySBuvmYI8rueYV+0Ol1g==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-3.10.0.tgz", + "integrity": "sha512-tpbcPhpi1CNQVc/dZiroktSY3wGk0iQ57HpSGL6Xo92XOLtjNXl0ipkYQhz0ecWABDcsKKn7H+E+GBbi9XHYqw==", "requires": { "@babel/runtime": "^7.20.13", "bluebird": "^3.7.2", "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" } }, "gatsby-parcel-config": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.9.0.tgz", - "integrity": "sha512-5wclOXzeI6HmH5iEYvqzLnt/kc0cnqlIObRmQE2zpV0xs9YTPXAH7GdnaheYKN8kibF1EWuBKJF79dv99/nGHg==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-parcel-config/-/gatsby-parcel-config-1.10.0.tgz", + "integrity": "sha512-F1ESLH7/RxdPsCHnpbB2tZ78+NDvUoawHi/3+QHLSt8p9PrejY9qFKV9vKBS9S4qI1k713enFF54zJo1O80aeQ==", "requires": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.9.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "^2.10.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", @@ -21866,9 +21642,9 @@ } }, "gatsby-plugin-page-creator": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.9.0.tgz", - "integrity": "sha512-euXNdeM9j7V5n1USxLmSqvaR5PKyEhw0AbLxT7ddEO9mPzemfr/OprZEzZZRdwrWA0anHs3oqX3qkkEYQJ7I7A==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-5.10.0.tgz", + "integrity": "sha512-Vji1iC9CabZExrJZkWvDNPbqJ8nwLJ1kE1u04HN+IopA+hheJ8natBucNf8Xol/40R/xk62peJXlkuV/s5jM1g==", "requires": { "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", @@ -21876,18 +21652,18 @@ "chokidar": "^3.5.3", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-page-utils": "^3.9.0", - "gatsby-plugin-utils": "^4.9.0", - "gatsby-telemetry": "^4.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-page-utils": "^3.10.0", + "gatsby-plugin-utils": "^4.10.0", + "gatsby-telemetry": "^4.10.0", "globby": "^11.1.0", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.9.0.tgz", - "integrity": "sha512-dvdLKwadAwpg7rd3kffupC6yqCpzJ+lTAxkCp6BUY11jyCItPZwDqP+wh0xUk/ilA6ZoyG1hJEfxkX4SIkuWIA==", + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-5.10.0.tgz", + "integrity": "sha512-e/jkoRHUxHlswOWTJBwkQCI9iBh8JcRq9YZaibfWwY9cZBEtBHjMDiic8zhQvyObnUKhke5IYDqLLCignrvC7A==", "requires": { "@babel/core": "^7.20.12", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", @@ -21895,53 +21671,52 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.9.0" + "babel-plugin-remove-graphql-queries": "^5.10.0" } }, "gatsby-plugin-utils": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.9.0.tgz", - "integrity": "sha512-JGd6FNjoj2ceb4eCw7xzIELlPwSBxGGkJpy+iQTnLT32aPT0vidjGmiytXpNDvktLrxpmuTDPVfMJTjopu+y2A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-4.10.0.tgz", + "integrity": "sha512-+hQ4wVvdai8cNI+Mg0CoJbZGJVXAda7hPEekiI9oTSbqGxtTkIw0L3s4EADUEJ5jTuuJhNQzuuueOBkwJVioIw==", "requires": { "@babel/runtime": "^7.20.13", "fastq": "^1.15.0", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", - "gatsby-sharp": "^1.9.0", + "gatsby-core-utils": "^4.10.0", + "gatsby-sharp": "^1.10.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", - "joi": "^17.9.1", + "joi": "^17.9.2", "mime": "^3.0.0" } }, "gatsby-react-router-scroll": { - "version": "6.9.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.9.0.tgz", - "integrity": "sha512-HVhAaze2DUpE5F31fgKTTPfLdP2uOA9W9J8bYTccbLvdh21F4EmARiwBX4D6z1FwA5MaoJKw9EqeS6QmTWx93Q==", + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-6.10.0.tgz", + "integrity": "sha512-jiI8Q2VDa2rAyK+NCuzCX23tYuCc6Me1kNOSMLDT6pto6x2+P/arnbNq+SL1G1u8u5bnijEwNm5fD/ivd6sqtg==", "requires": { "@babel/runtime": "^7.20.13", "prop-types": "^15.8.1" } }, "gatsby-script": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.9.0.tgz", - "integrity": "sha512-9AWRBIDgahdurDjOnlNnEeiQLPzSpeec4zESDNRJXHBeGgsqq/i8k5nVf19dp0zF5iaYH6EdxMk7nAedTYX80w==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-script/-/gatsby-script-2.10.0.tgz", + "integrity": "sha512-VeHXBNP3nZZCMILcVi8W+50clgH0b2X/Z6k2q3GNH6QNYxMy+Uyf9hgen0jPMH4B+O8anruAumOlDaO5srDY2g==", "requires": {} }, "gatsby-sharp": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.9.0.tgz", - "integrity": "sha512-R5uahYWf1vWZJs97n6DMC+yMByWcDFZiYCkghdS4qvFz4MsbtS/jzU8qz/mcgwxQW3G10VlFa2XuxTsKGYdzzQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-1.10.0.tgz", + "integrity": "sha512-9D1hYBRyr85RBCqbqXbKdGgSoNO5qrqhqs7F9igOEAT9Qv8m65gfBBg+rVz6eWhlCA7TvYRBIsUfpAbB2dfTUg==", "requires": { - "@types/sharp": "^0.31.1", - "sharp": "^0.31.3" + "sharp": "^0.32.1" } }, "gatsby-telemetry": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.9.0.tgz", - "integrity": "sha512-sz2Zsr/6T6bIG5xamiPa4hG8SYsFrhWlLc0skF5UNmk9rPXrIJpxqCkaR8KPFpuxC+FufGSFcTnll9hOF3vJ9A==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.10.0.tgz", + "integrity": "sha512-t3QRGZdRWIxMQ3yHtdON8KgihkMgq1VROjRb+fqzJtHRFIQu8wsrpXCrYmaYv2oWoWH9fWymMu5PhrSywjGuGQ==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/runtime": "^7.20.13", @@ -21950,27 +21725,17 @@ "boxen": "^5.1.2", "configstore": "^5.0.1", "fs-extra": "^11.1.1", - "gatsby-core-utils": "^4.9.0", + "gatsby-core-utils": "^4.10.0", "git-up": "^7.0.0", "is-docker": "^2.2.1", "lodash": "^4.17.21", "node-fetch": "^2.6.9" - }, - "dependencies": { - "node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "requires": { - "whatwg-url": "^5.0.0" - } - } } }, "gatsby-worker": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.9.0.tgz", - "integrity": "sha512-mUcpiuIwLIUxBYEUfbLyfWHnNIazxtE2VPd1IGo6xDiS0kkYspfDd0KVOMJjM4n74AnRJYvwzFp9f3Vg3rnCOQ==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-2.10.0.tgz", + "integrity": "sha512-LWsfp/NC4DljuQx5LxBwiz24yp8FpY1WLyZB61idc1Xqf2mhIYUKkeqpmPNzMiuICm44XkJadzdn77AdSEgw0Q==", "requires": { "@babel/core": "^7.20.12", "@babel/runtime": "^7.20.13", @@ -22153,9 +21918,9 @@ } }, "graphql-http": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.13.0.tgz", - "integrity": "sha512-3Ia3ql9k+i/GvjNucwRdqdbumLeyJ8Zame4IhniMy/974t+Dy2mDnF08fOCKwXJwd3ErmzhYS/ZyvcXiX4v8wg==", + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/graphql-http/-/graphql-http-1.18.0.tgz", + "integrity": "sha512-r2sIo6jCTQi1aj7s+Srg7oU3+r5pUUgxgDD5JDZOmFzrbXVGz+yMhIKhvqW0cV10DcnVIFCOzuFuc1qvnjJ7yQ==", "requires": {} }, "graphql-tag": { @@ -22835,9 +22600,9 @@ } }, "joi": { - "version": "17.9.1", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.1.tgz", - "integrity": "sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==", + "version": "17.9.2", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.9.2.tgz", + "integrity": "sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==", "requires": { "@hapi/hoek": "^9.0.0", "@hapi/topo": "^5.0.0", @@ -23380,9 +23145,9 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" }, "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" }, "napi-build-utils": { "version": "1.0.2", @@ -23429,9 +23194,9 @@ } }, "node-abi": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.35.0.tgz", - "integrity": "sha512-jAlSOFR1Bls963NmFwxeQkNTzqjUF0NThm8Le7eRIRGzFUVJuMOFZDLv5Y30W/Oaw+KEebEJLAigwO9gQHoEmw==", + "version": "3.40.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz", + "integrity": "sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA==", "requires": { "semver": "^7.3.5" } @@ -23442,9 +23207,9 @@ "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" }, "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==", "requires": { "whatwg-url": "^5.0.0" } @@ -23479,9 +23244,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", + "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==" }, "normalize-path": { "version": "3.0.0", @@ -24095,11 +23860,11 @@ "integrity": "sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==" }, "postcss": { - "version": "8.4.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", - "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", + "version": "8.4.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz", + "integrity": "sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==", "requires": { - "nanoid": "^3.3.4", + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" } @@ -25050,9 +24815,9 @@ } }, "schema-utils": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", - "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", + "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -25060,9 +24825,9 @@ } }, "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", + "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", "requires": { "lru-cache": "^6.0.0" }, @@ -25182,15 +24947,15 @@ "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, "sharp": { - "version": "0.31.3", - "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", - "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "version": "0.32.1", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.1.tgz", + "integrity": "sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==", "requires": { "color": "^4.2.3", "detect-libc": "^2.0.1", - "node-addon-api": "^5.0.0", + "node-addon-api": "^6.1.0", "prebuild-install": "^7.1.1", - "semver": "^7.3.8", + "semver": "^7.5.0", "simple-get": "^4.0.1", "tar-fs": "^2.1.1", "tunnel-agent": "^0.6.0" @@ -25202,9 +24967,9 @@ "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" }, "node-addon-api": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", - "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", + "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" } } }, @@ -25297,9 +25062,9 @@ } }, "slugify": { - "version": "1.6.5", - "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.5.tgz", - "integrity": "sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==" + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==" }, "snake-case": { "version": "3.0.4", @@ -25311,15 +25076,15 @@ } }, "socket.io": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.5.4.tgz", - "integrity": "sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.6.1.tgz", + "integrity": "sha512-KMcaAi4l/8+xEjkRICl6ak8ySoxsYG+gG6/XfRCPJPQ/haCRIJBTL4wIl8YCsmtaBovcAXGLOShyVWQ/FG8GZA==", "requires": { "accepts": "~1.3.4", "base64id": "~2.0.0", "debug": "~4.3.2", - "engine.io": "~6.2.1", - "socket.io-adapter": "~2.4.0", + "engine.io": "~6.4.1", + "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -25339,18 +25104,21 @@ } }, "socket.io-adapter": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz", - "integrity": "sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg==" + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz", + "integrity": "sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==", + "requires": { + "ws": "~8.11.0" + } }, "socket.io-client": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.4.tgz", - "integrity": "sha512-ZpKteoA06RzkD32IbqILZ+Cnst4xewU7ZYK12aS1mzHftFFjpoMz69IuhP/nL25pJfao/amoPI527KnuhFm01g==", + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.6.1.tgz", + "integrity": "sha512-5UswCV6hpaRsNg5kkEHVcbBIXEYoVbMQaHJBXJCyEQ+CiFPV1NIOY0XOFWG4XR4GZcB8Kn6AsRs/9cy9TbqVMQ==", "requires": { "@socket.io/component-emitter": "~3.1.0", "debug": "~4.3.2", - "engine.io-client": "~6.2.3", + "engine.io-client": "~6.4.0", "socket.io-parser": "~4.2.1" }, "dependencies": { @@ -25730,9 +25498,9 @@ } }, "terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "version": "5.17.4", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", + "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -25748,15 +25516,15 @@ } }, "terser-webpack-plugin": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", - "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "version": "5.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz", + "integrity": "sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg==", "requires": { - "@jridgewell/trace-mapping": "^0.3.14", + "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" }, "dependencies": { "jest-worker": { @@ -25770,9 +25538,9 @@ } }, "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", "requires": { "randombytes": "^2.1.0" } @@ -25964,9 +25732,9 @@ } }, "ua-parser-js": { - "version": "0.7.32", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.32.tgz", - "integrity": "sha512-f9BESNVhzlhEFf2CHMSj40NWOjYPl1YKYbrvIr/hFTDEmLq7SRbWvm7FcdcpCYT95zrOhC7gZSxjdnnTpBcwVw==" + "version": "0.7.35", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz", + "integrity": "sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==" }, "unbox-primitive": { "version": "1.0.2", @@ -26147,21 +25915,21 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.75.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", - "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", + "version": "5.82.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.82.1.tgz", + "integrity": "sha512-C6uiGQJ+Gt4RyHXXYt+v9f+SN1v83x68URwgxNQ98cvH8kxiuywWGP4XeNZ1paOzZ63aY3cTciCEQJNFUljlLw==", "requires": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", + "enhanced-resolve": "^5.14.0", + "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", @@ -26170,18 +25938,13 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", + "schema-utils": "^3.1.2", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", + "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, "dependencies": { - "@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" - }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -26340,9 +26103,9 @@ } }, "ws": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", - "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==", + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "requires": {} }, "xdg-basedir": { @@ -26356,9 +26119,9 @@ "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" }, "xstate": { - "version": "4.35.4", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.35.4.tgz", - "integrity": "sha512-mqRBYHhljP1xIItI4xnSQNHEv6CKslSM1cOGmvhmxeoDPAZgNbhSUYAL5N6DZIxRfpYY+M+bSm3mUFHD63iuvg==" + "version": "4.37.2", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz", + "integrity": "sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg==" }, "xtend": { "version": "4.0.2", diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 2d46c9717a88b..135f24283bf3c 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -13,7 +13,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^5.9.1", + "gatsby": "^5.10.0", "react": "^18.2.0", "react-dom": "^18.2.0" },
844c19e988485ef9ad85f66366f8f5ef72114b0b
2021-05-11 15:45:23
Lukas
chore(gatsby-plugin-sitemap): fix typos (#31351)
false
fix typos (#31351)
chore
diff --git a/packages/gatsby-plugin-sitemap/README.md b/packages/gatsby-plugin-sitemap/README.md index 2aa64b702cec6..4f18d6db9af48 100644 --- a/packages/gatsby-plugin-sitemap/README.md +++ b/packages/gatsby-plugin-sitemap/README.md @@ -58,7 +58,7 @@ The options are as follows: - `createLinkInHead` (boolean = true) Whether to populate the `<head>` of your site with a link to the sitemap. - `entryLimit` (number = 45000) Number of entries per sitemap file, a sitemap index and multiple sitemaps are created if you have more entries. - `excludes` (string[] = []) An array of paths to exclude from the sitemap. While this is usually an array of strings it is possible to enter other data types into this array for custom filtering. Doing so will require customization of the [`filterPages`](#filterPages) function. -- `query` (GraphQL Query) The query for the data you need to generate the sitemap. It's required to get the site's URL, if you are not fetching it from `site.siteMetadata.siteUrl`, you will need to set a custom [`resolveSiteUrl`](#resolveSiteUrl) function. If you override the query, you may need to pass in a custom [`resolvePagePath`](#resolvePagePath), [`resolvePages`](#resolvePages) to keep everything working. If you fetch pages without using `allSitePage.nodes` query structure you will definately need to customize the [`resolvePages`](#resolvePages) function. +- `query` (GraphQL Query) The query for the data you need to generate the sitemap. It's required to get the site's URL, if you are not fetching it from `site.siteMetadata.siteUrl`, you will need to set a custom [`resolveSiteUrl`](#resolveSiteUrl) function. If you override the query, you may need to pass in a custom [`resolvePagePath`](#resolvePagePath), [`resolvePages`](#resolvePages) to keep everything working. If you fetch pages without using `allSitePage.nodes` query structure you will definitely need to customize the [`resolvePages`](#resolvePages) function. - [`resolveSiteUrl`](#resolveSiteUrl) (function) Takes the output of the data query and lets you return the site URL. Sync or async functions allowed. - [`resolvePagePath`](#resolvePagePath) (function) Takes a page object and returns the uri of the page (no domain or protocol). - [`resolvePages`](#resolvePagePath) (function) Takes the output of the data query and expects an array of page objects to be returned. Sync or async functions allowed. @@ -178,7 +178,7 @@ This function is executed via: ```javascript allPages.filter( - page => !excludes.some(excludedRoute => thisFunc(page, ecludedRoute, tools)) + page => !excludes.some(excludedRoute => thisFunc(page, excludedRoute, tools)) ) ```
2f40b0a8536316b01b941f4889eb99211cb43160
2021-03-01 16:34:41
Ahmet Can Aydemir
fix(gatsby-react-router-scroll): debounce function for scollListener (#26933)
false
debounce function for scollListener (#26933)
fix
diff --git a/e2e-tests/production-runtime/cypress/integration/scroll-behavior.js b/e2e-tests/production-runtime/cypress/integration/scroll-behavior.js index e62a769a2132e..fa8302a1577b8 100644 --- a/e2e-tests/production-runtime/cypress/integration/scroll-behavior.js +++ b/e2e-tests/production-runtime/cypress/integration/scroll-behavior.js @@ -44,6 +44,7 @@ describe(`Scroll behaviour`, () => { expect(win.scrollY).not.to.eq(0, 0) cy.scrollTo(`bottom`) + cy.wait(500) // allow ScrollContext to update scroll position store cy.go(`back`).waitForRouteChange() cy.go(`forward`).waitForRouteChange() diff --git a/packages/gatsby-react-router-scroll/src/scroll-handler.tsx b/packages/gatsby-react-router-scroll/src/scroll-handler.tsx index b547308b84810..41ac28debe2c9 100644 --- a/packages/gatsby-react-router-scroll/src/scroll-handler.tsx +++ b/packages/gatsby-react-router-scroll/src/scroll-handler.tsx @@ -25,12 +25,29 @@ export class ScrollHandler extends React.Component< _stateStorage: SessionStorage = new SessionStorage() + // @see https://www.html5rocks.com/en/tutorials/speed/animations/ + _isTicking = false + _latestKnownScrollY = 0 scrollListener = (): void => { - const { key } = this.props.location + this._latestKnownScrollY = window.scrollY + + if (!this._isTicking) { + this._isTicking = true + requestAnimationFrame(this._saveScroll.bind(this)) + } + } + + _saveScroll(): void { + const key = this.props.location.key || null if (key) { - this._stateStorage.save(this.props.location, key, window.scrollY) + this._stateStorage.save( + this.props.location, + key, + this._latestKnownScrollY + ) } + this._isTicking = false } componentDidMount(): void {
5df2dcd09939906255a7e89be23a9283955dcf3d
2022-02-01 21:26:02
renovate[bot]
chore(deps): update dependency del-cli to v4 for gatsby-plugin-preload-fonts (#34664)
false
update dependency del-cli to v4 for gatsby-plugin-preload-fonts (#34664)
chore
diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json index d15a2b2780b5b..62264ad6fbeee 100644 --- a/packages/gatsby-plugin-preload-fonts/package.json +++ b/packages/gatsby-plugin-preload-fonts/package.json @@ -25,7 +25,7 @@ "@babel/core": "^7.15.5", "babel-preset-gatsby-package": "^2.7.0-next.0", "cross-env": "^7.0.3", - "del-cli": "^3.0.1" + "del-cli": "^4.0.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-preload-fonts#readme", "keywords": [ diff --git a/yarn.lock b/yarn.lock index 633797740f915..0a42bce16e812 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4102,7 +4102,7 @@ version "3.0.3" resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" -"@types/minimist@^1.2.0": +"@types/minimist@^1.2.0", "@types/minimist@^1.2.2": version "1.2.2" resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== @@ -6533,6 +6533,16 @@ camelcase-keys@^6.2.2: map-obj "^4.0.0" quick-lru "^4.0.1" +camelcase-keys@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-7.0.1.tgz#5a57e6dfb3f6c7929dad15599ee4476a7e9a3b2d" + integrity sha512-P331lEls98pW8JLyodNWfzuz91BEDVA4VpW2/SwXnyv2K495tq1N777xzDbFgnEigfA7UIY0xa6PwR/H9jijjA== + dependencies: + camelcase "^6.2.0" + map-obj "^4.1.0" + quick-lru "^5.1.1" + type-fest "^1.2.1" + [email protected], camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" @@ -8443,6 +8453,11 @@ decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" +decamelize@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-5.0.1.tgz#db11a92e58c741ef339fb0a2868d8a06a9a7b1e9" + integrity sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA== + decimal.js@^10.2.1: version "10.3.1" resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" @@ -8579,6 +8594,14 @@ del-cli@^3.0.1: del "^5.1.0" meow "^6.1.1" +del-cli@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/del-cli/-/del-cli-4.0.1.tgz#2303ccaa45708ee8c6211568344cf87336abf30a" + integrity sha512-KtR/6cBfZkGDAP2NA7z+bP4p1OMob3wjN9mq13+SWvExx6jT9gFWfLgXEeX8J2B47OKeNCq9yTONmtryQ+m+6g== + dependencies: + del "^6.0.0" + meow "^10.1.0" + del@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" @@ -12408,6 +12431,11 @@ indent-string@^4.0.0: resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== +indent-string@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-5.0.0.tgz#4fd2980fccaf8622d14c64d694f4cf33c81951a5" + integrity sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg== + indexes-of@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" @@ -15188,10 +15216,10 @@ map-obj@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" -map-obj@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.2.1.tgz#e4ea399dbc979ae735c83c863dd31bdf364277b7" - integrity sha512-+WA2/1sPmDj1dlvvJmB5G6JKfY9dpn7EVBUL06+y6PoljPkh+6V1QihwxNkbcGxCRjt2b0F9K0taiCuo7MbdFQ== +map-obj@^4.0.0, map-obj@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" + integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== map-stream@~0.1.0: version "0.1.0" @@ -15627,6 +15655,24 @@ memorystream@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" +meow@^10.1.0: + version "10.1.2" + resolved "https://registry.yarnpkg.com/meow/-/meow-10.1.2.tgz#62951cb69afa69594142c8250806bc30a3912e4d" + integrity sha512-zbuAlN+V/sXlbGchNS9WTWjUzeamwMt/BApKCJi7B0QyZstZaMx0n4Unll/fg0njGtMdC9UP5SAscvOCLYdM+Q== + dependencies: + "@types/minimist" "^1.2.2" + camelcase-keys "^7.0.0" + decamelize "^5.0.0" + decamelize-keys "^1.1.0" + hard-rejection "^2.1.0" + minimist-options "4.1.0" + normalize-package-data "^3.0.2" + read-pkg-up "^8.0.0" + redent "^4.0.0" + trim-newlines "^4.0.2" + type-fest "^1.2.2" + yargs-parser "^20.2.9" + meow@^3.3.0, meow@^3.7.0: version "3.7.0" resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" @@ -15978,7 +16024,7 @@ min-document@^2.19.0: dependencies: dom-walk "^0.1.0" -min-indent@^1.0.0: +min-indent@^1.0.0, min-indent@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== @@ -16625,7 +16671,7 @@ normalize-package-data@^2.0.0, normalize-package-data@^2.3.0, normalize-package- semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" -normalize-package-data@^3.0.0: +normalize-package-data@^3.0.0, normalize-package-data@^3.0.2: version "3.0.3" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== @@ -17464,7 +17510,7 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" -parse-json@^5.0.0: +parse-json@^5.0.0, parse-json@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== @@ -19300,6 +19346,15 @@ read-pkg-up@^7.0.1: read-pkg "^5.2.0" type-fest "^0.8.1" +read-pkg-up@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-8.0.0.tgz#72f595b65e66110f43b052dd9af4de6b10534670" + integrity sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ== + dependencies: + find-up "^5.0.0" + read-pkg "^6.0.0" + type-fest "^1.0.1" + read-pkg@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" @@ -19326,6 +19381,16 @@ read-pkg@^5.1.1, read-pkg@^5.2.0: parse-json "^5.0.0" type-fest "^0.6.0" +read-pkg@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-6.0.0.tgz#a67a7d6a1c2b0c3cd6aa2ea521f40c458a4a504c" + integrity sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^3.0.2" + parse-json "^5.2.0" + type-fest "^1.0.1" + read@1, read@^1.0.7, read@~1.0.1: version "1.0.7" resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" @@ -19480,6 +19545,14 @@ redent@^3.0.0: indent-string "^4.0.0" strip-indent "^3.0.0" +redent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-4.0.0.tgz#0c0ba7caabb24257ab3bb7a4fd95dd1d5c5681f9" + integrity sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag== + dependencies: + indent-string "^5.0.0" + strip-indent "^4.0.0" + redux-thunk@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.0.tgz#ac89e1d6b9bdb9ee49ce69a69071be41bbd82d67" @@ -22346,6 +22419,13 @@ strip-indent@^3.0.0: dependencies: min-indent "^1.0.0" +strip-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-4.0.0.tgz#b41379433dd06f5eae805e21d631e07ee670d853" + integrity sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA== + dependencies: + min-indent "^1.0.1" + strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" @@ -23188,6 +23268,11 @@ trim-newlines@^3.0.0: resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.0.tgz#79726304a6a898aa8373427298d54c2ee8b1cb30" integrity sha512-C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA== +trim-newlines@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-4.0.2.tgz#d6aaaf6a0df1b4b536d183879a6b939489808c7c" + integrity sha512-GJtWyq9InR/2HRiLZgpIKv+ufIKrVrvjQWEj7PxAXNc5dwbNJkqhAUoAGgzRmULAnoOM5EIpveYd3J2VeSAIew== + trim-off-newlines@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" @@ -23359,7 +23444,7 @@ type-fest@^0.8.0, type-fest@^0.8.1: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== -type-fest@^1.2.2: +type-fest@^1.0.1, type-fest@^1.2.1, type-fest@^1.2.2: version "1.4.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1" integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== @@ -25178,7 +25263,7 @@ yargs-parser@^18.1.2, yargs-parser@^18.1.3: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@^20.2.2, yargs-parser@^20.2.3, yargs-parser@^20.2.7: +yargs-parser@^20.2.2, yargs-parser@^20.2.3, yargs-parser@^20.2.7, yargs-parser@^20.2.9: version "20.2.9" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
dd47e25b226371959e769684f8b0556ff1f7f119
2020-09-26 13:24:23
renovate[bot]
chore(deps): update dependency @babel/core to ^7.11.6 (#27066)
false
update dependency @babel/core to ^7.11.6 (#27066)
chore
diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json index 76295dbbf692e..c573ccac2c1c9 100644 --- a/packages/gatsby-plugin-emotion/package.json +++ b/packages/gatsby-plugin-emotion/package.json @@ -12,7 +12,7 @@ }, "devDependencies": { "@babel/cli": "^7.11.6", - "@babel/core": "^7.10.3", + "@babel/core": "^7.11.6", "babel-preset-gatsby-package": "^0.5.3", "cross-env": "^7.0.2" }, diff --git a/yarn.lock b/yarn.lock index 57b699760a792..67590d26c3bac 100644 --- a/yarn.lock +++ b/yarn.lock @@ -94,7 +94,7 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.10.2", "@babel/core@^7.10.3", "@babel/core@^7.11.6", "@babel/core@^7.7.5", "@babel/core@^7.9.0": +"@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.10.2", "@babel/core@^7.11.6", "@babel/core@^7.7.5", "@babel/core@^7.9.0": version "7.11.6" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651" integrity sha512-Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==
ea00e1279300b9c2a0aa42e8314dc4cd9d1002a7
2022-09-21 12:14:55
LekoArts
chore(release): Publish next
false
Publish next
chore
diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json index b1d4cae69d4fb..69e872c5289f3 100644 --- a/packages/create-gatsby/package.json +++ b/packages/create-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "create-gatsby", - "version": "2.24.0-next.0", + "version": "2.24.0-next.1", "main": "lib/index.js", "bin": "cli.js", "license": "MIT", @@ -26,7 +26,7 @@ "enquirer": "^2.3.6", "execa": "^5.1.1", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "joi": "^17.4.2", "microbundle": "^0.15.0", "node-fetch": "^2.6.6", diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index bb4b0974f538f..57e7bc322f0d6 100644 --- a/packages/gatsby-cli/package.json +++ b/packages/gatsby-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-cli", "description": "Gatsby command-line interface for creating new sites and running Gatsby commands", - "version": "4.24.0-next.0", + "version": "4.24.0-next.1", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "cli.js" @@ -26,7 +26,7 @@ "clipboardy": "^2.3.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.24.0-next.0", + "create-gatsby": "^2.24.0-next.1", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", diff --git a/packages/gatsby-parcel-config/package.json b/packages/gatsby-parcel-config/package.json index c7bf9f7b3b6de..b2adaf02a4f7d 100644 --- a/packages/gatsby-parcel-config/package.json +++ b/packages/gatsby-parcel-config/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-parcel-config", "main": "lib/index.json", - "version": "0.15.0-next.0", + "version": "0.15.0-next.1", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-config#readme", "description": "A minimal Parcel config for use in Gatsby", "repository": { diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json index ec5642c6fcd8e..278f2bcf27961 100644 --- a/packages/gatsby-plugin-cxs/package.json +++ b/packages/gatsby-plugin-cxs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-cxs", "description": "Gatsby plugin to add SSR support for ctx", - "version": "4.24.0-next.1", + "version": "4.24.0-next.2", "author": "Chen-Tai Hou <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", "cxs": "^6.2.0", - "gatsby-plugin-utils": "^3.18.0-next.0" + "gatsby-plugin-utils": "^3.18.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme", "keywords": [ diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json index 68eadd4a67747..f69c66b3b7a81 100644 --- a/packages/gatsby-plugin-feed/package.json +++ b/packages/gatsby-plugin-feed/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-feed", "description": "Creates an RSS feed for your Gatsby site.", - "version": "4.24.0-next.1", + "version": "4.24.0-next.2", "author": "Nicholas Young <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,7 +11,7 @@ "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "lodash.merge": "^4.6.2", "rss": "^1.2.2" }, diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json index 216fe0e586ed7..4ea905840da83 100644 --- a/packages/gatsby-plugin-flow/package.json +++ b/packages/gatsby-plugin-flow/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-flow", - "version": "3.24.0-next.0", + "version": "3.24.0-next.1", "description": "Provides drop-in support for Flow by adding @babel/preset-flow.", "main": "index.js", "scripts": { @@ -32,7 +32,7 @@ "@babel/core": "^7.15.5", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.18.0-next.0" + "gatsby-plugin-utils": "^3.18.0-next.1" }, "peerDependencies": { "gatsby": "^4.0.0-next" diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json index 147aaed2bfb44..808a8b4c30c00 100644 --- a/packages/gatsby-plugin-google-tagmanager/package.json +++ b/packages/gatsby-plugin-google-tagmanager/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-tagmanager", "description": "Gatsby plugin to add google tagmanager onto a site", - "version": "4.24.0-next.1", + "version": "4.24.0-next.2", "author": "Thijs Koerselman <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "@babel/core": "^7.15.5", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.18.0-next.0" + "gatsby-plugin-utils": "^3.18.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme", "keywords": [ diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json index 54d87a0a0665e..c5ad58763c292 100644 --- a/packages/gatsby-plugin-image/package.json +++ b/packages/gatsby-plugin-image/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-image", - "version": "2.24.0-next.1", + "version": "2.24.0-next.2", "scripts": { "build": "npm-run-all --npm-path npm -s clean -p build:*", "postbuild": "prepend-directive --files=dist/gatsby-image.browser.js,dist/gatsby-image.browser.modern.js --directive=\"client export\"", @@ -85,7 +85,7 @@ "common-tags": "^1.8.2", "fs-extra": "^10.1.0", "gatsby-core-utils": "^3.24.0-next.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" }, diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json index 59c2e6ba9c494..f4a63682d3e85 100644 --- a/packages/gatsby-plugin-manifest/package.json +++ b/packages/gatsby-plugin-manifest/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-manifest", "description": "Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps", - "version": "4.24.0-next.0", + "version": "4.24.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.15.4", "gatsby-core-utils": "^3.24.0-next.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "semver": "^7.3.7", "sharp": "^0.30.7" }, diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json index 205c997ee0308..495732a01edd5 100644 --- a/packages/gatsby-plugin-mdx/package.json +++ b/packages/gatsby-plugin-mdx/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-mdx", - "version": "4.3.0-next.2", + "version": "4.3.0-next.3", "description": "MDX integration for Gatsby", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -35,7 +35,7 @@ "estree-util-build-jsx": "^2.1.0", "fs-extra": "^10.1.0", "gatsby-core-utils": "^3.24.0-next.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "gray-matter": "^4.0.3", "mdast-util-mdx": "^2.0.0", "mdast-util-to-hast": "^10.2.0", diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json index 0cd233b900e52..a78764bbdb814 100644 --- a/packages/gatsby-plugin-offline/package.json +++ b/packages/gatsby-plugin-offline/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-offline", "description": "Gatsby plugin which sets up a site to be able to run offline", - "version": "5.24.0-next.1", + "version": "5.24.0-next.2", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -21,7 +21,7 @@ "babel-preset-gatsby-package": "^2.24.0-next.0", "cpy-cli": "^3.1.1", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "rewire": "^6.0.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme", diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json index 5f8419ad78e9d..fd02419afb2cf 100644 --- a/packages/gatsby-plugin-page-creator/package.json +++ b/packages/gatsby-plugin-page-creator/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-page-creator", - "version": "4.24.0-next.0", + "version": "4.24.0-next.1", "description": "Gatsby plugin that automatically creates pages from React components in specified directories", "main": "index.js", "scripts": { @@ -32,7 +32,7 @@ "fs-extra": "^10.1.0", "gatsby-core-utils": "^3.24.0-next.0", "gatsby-page-utils": "^2.24.0-next.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "gatsby-telemetry": "^3.24.0-next.0", "globby": "^11.1.0", "lodash": "^4.17.21" diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index 373350c7c25a5..b91c0137d7c44 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sass", "description": "Gatsby plugin to handle SCSS/Sass files", - "version": "5.24.0-next.0", + "version": "5.24.0-next.1", "author": "Daniel Farrell <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,7 +17,7 @@ "autoprefixer": "^10.4.8", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.18.0-next.0" + "gatsby-plugin-utils": "^3.18.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass#readme", "keywords": [ diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index 1111ae46c019e..f546e42e76f53 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sharp", "description": "Wrapper of the Sharp image manipulation library for Gatsby plugins", - "version": "4.24.0-next.1", + "version": "4.24.0-next.2", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "filenamify": "^4.3.0", "fs-extra": "^10.1.0", "gatsby-core-utils": "^3.24.0-next.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.4", "probe-image-size": "^7.2.3", @@ -29,7 +29,7 @@ "@types/sharp": "^0.30.5", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^2.24.0-next.1" + "gatsby-plugin-image": "^2.24.0-next.2" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme", "keywords": [ diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json index a49d840d6416d..cd903b954f17c 100644 --- a/packages/gatsby-plugin-sitemap/package.json +++ b/packages/gatsby-plugin-sitemap/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sitemap", "description": "Gatsby plugin that automatically creates a sitemap for your site", - "version": "5.24.0-next.2", + "version": "5.24.0-next.3", "contributors": [ "Alex Moon <[email protected]>", "Nicholas Young <[email protected]>" @@ -20,7 +20,7 @@ "@babel/core": "^7.15.5", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.18.0-next.0" + "gatsby-plugin-utils": "^3.18.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme", "keywords": [ diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json index f3e6dfa529be6..6d41e85594159 100644 --- a/packages/gatsby-plugin-twitter/package.json +++ b/packages/gatsby-plugin-twitter/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-twitter", "description": "Loads the Twitter JavaScript for embedding tweets.", - "version": "4.24.0-next.0", + "version": "4.24.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "@babel/core": "^7.15.5", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.18.0-next.0" + "gatsby-plugin-utils": "^3.18.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-twitter#readme", "keywords": [ diff --git a/packages/gatsby-plugin-utils/package.json b/packages/gatsby-plugin-utils/package.json index c7592ce9270cc..d919f9785cf38 100644 --- a/packages/gatsby-plugin-utils/package.json +++ b/packages/gatsby-plugin-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-utils", - "version": "3.18.0-next.0", + "version": "3.18.0-next.1", "description": "Gatsby utils that help creating plugins", "main": "dist/index.js", "exports": { @@ -51,7 +51,7 @@ "fastq": "^1.13.0", "fs-extra": "^10.1.0", "gatsby-core-utils": "^3.24.0-next.0", - "gatsby-sharp": "^0.18.0-next.0", + "gatsby-sharp": "^0.18.0-next.1", "graphql-compose": "^9.0.7", "import-from": "^4.0.0", "joi": "^17.4.2", diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json index 8829c1af471f0..eb9fd5e61baa3 100644 --- a/packages/gatsby-remark-autolink-headers/package.json +++ b/packages/gatsby-remark-autolink-headers/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-autolink-headers", "description": "Gatsby plugin to autolink headers in markdown processed by Remark", - "version": "5.24.0-next.1", + "version": "5.24.0-next.2", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "@babel/core": "^7.15.5", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.18.0-next.0" + "gatsby-plugin-utils": "^3.18.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers#readme", "keywords": [ diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json index f1731b1f41a60..31c1848f515a2 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-images", "description": "Processes images in markdown so they can be used in the production build.", - "version": "6.24.0-next.0", + "version": "6.24.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -24,7 +24,7 @@ "@babel/core": "^7.15.5", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "hast-util-to-html": "^7.1.3", "mdast-util-to-hast": "^10.2.0" }, diff --git a/packages/gatsby-script/package.json b/packages/gatsby-script/package.json index ddb25b495fb14..1579361c4fb85 100644 --- a/packages/gatsby-script/package.json +++ b/packages/gatsby-script/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-script", "description": "An enhanced script component for Gatsby sites with support for various loading strategies", - "version": "1.9.0-next.1", + "version": "1.9.0-next.2", "author": "Ty Hopp <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -48,4 +48,4 @@ "url": "https://github.com/gatsbyjs/gatsby.git", "directory": "packages/gatsby-script" } -} \ No newline at end of file +} diff --git a/packages/gatsby-sharp/package.json b/packages/gatsby-sharp/package.json index a943896663b6c..b393ac1764da0 100644 --- a/packages/gatsby-sharp/package.json +++ b/packages/gatsby-sharp/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-sharp", - "version": "0.18.0-next.0", + "version": "0.18.0-next.1", "sideEffects": false, "keywords": [ "gatsby", @@ -40,4 +40,4 @@ "prepare": "cross-env NODE_ENV=production npm-run-all --npm-path npm -s build typegen", "watch": "babel -w src --out-dir dist --ignore \"**/__tests__\" --extensions \".ts,.js\"" } -} \ No newline at end of file +} diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index 04912a9ddffd2..28ea6d9d0bb68 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "7.22.0-next.0", + "version": "7.22.0-next.1", "author": "Marcus Ericsson <[email protected]> (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,7 +17,7 @@ "contentful": "^9.1.33", "fs-extra": "^10.1.0", "gatsby-core-utils": "^3.24.0-next.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "gatsby-source-filesystem": "^4.24.0-next.0", "is-online": "^9.0.1", "json-stringify-safe": "^5.0.1", diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index 25de158ff5dc3..1512edc1f166c 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-drupal", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", - "version": "5.25.0-next.0", + "version": "5.25.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "bluebird": "^3.7.2", "body-parser": "^1.20.0", "fastq": "^1.13.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "gatsby-source-filesystem": "^4.24.0-next.0", "got": "^11.8.5", "http2-wrapper": "^2.1.11", diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json index 9c78f9f1f2f27..266653628962c 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-shopify", - "version": "7.13.0-next.1", + "version": "7.13.0-next.2", "description": "Gatsby source plugin for building websites using Shopify as a data source.", "scripts": { "watch": "tsc-watch --outDir .", @@ -25,7 +25,7 @@ "dependencies": { "@babel/runtime": "^7.15.4", "gatsby-core-utils": "^3.24.0-next.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "gatsby-source-filesystem": "^4.24.0-next.0", "node-fetch": "^2.6.7", "sharp": "^0.30.7", @@ -36,7 +36,7 @@ "@types/node-fetch": "^2.5.12", "@types/sharp": "^0.30.5", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^2.24.0-next.1", + "gatsby-plugin-image": "^2.24.0-next.2", "msw": "^0.38.2", "prettier": "^2.7.1", "prettier-check": "^2.0.0", diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index 0f03a100b7a38..889f6ac3c876f 100644 --- a/packages/gatsby-source-wordpress/package.json +++ b/packages/gatsby-source-wordpress/package.json @@ -2,7 +2,7 @@ "name": "gatsby-source-wordpress", "description": "Source data from WordPress in an efficient and scalable way.", "author": "Tyler Barnes <[email protected]>", - "version": "6.24.0-next.1", + "version": "6.24.0-next.2", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, @@ -29,7 +29,7 @@ "fs-extra": "^10.1.0", "gatsby-core-utils": "^3.24.0-next.0", "gatsby-plugin-catch-links": "^4.24.0-next.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "gatsby-source-filesystem": "^4.24.0-next.0", "glob": "^7.2.3", "got": "^11.8.5", @@ -56,7 +56,7 @@ "babel-preset-gatsby": "^2.24.0-next.0", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^2.24.0-next.1", + "gatsby-plugin-image": "^2.24.0-next.2", "identity-obj-proxy": "^3.0.0", "react-test-renderer": "^16.14.0", "rimraf": "^3.0.2", diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index ad8ee11abe971..1e67c5e3c44a4 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-remark", "description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem", - "version": "5.24.0-next.0", + "version": "5.24.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -35,7 +35,7 @@ "@babel/core": "^7.15.5", "babel-preset-gatsby-package": "^2.24.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^3.18.0-next.0" + "gatsby-plugin-utils": "^3.18.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark#readme", "keywords": [ diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index 8ce346543d327..7d9289346f26d 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sharp", "description": "Gatsby transformer plugin for images using Sharp", - "version": "4.24.0-next.0", + "version": "4.24.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^10.1.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "probe-image-size": "^7.2.3", "semver": "^7.3.7", "sharp": "^0.30.7" diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json index a21e2bbeb7092..d80f7c8633306 100644 --- a/packages/gatsby-transformer-sqip/package.json +++ b/packages/gatsby-transformer-sqip/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sqip", "description": "Generates geometric primitive version of images", - "version": "4.24.0-next.1", + "version": "4.24.0-next.2", "author": "Benedikt Rötsch <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,7 +10,7 @@ "@babel/runtime": "^7.15.4", "fs-extra": "^10.1.0", "gatsby-core-utils": "^3.24.0-next.0", - "gatsby-plugin-sharp": "^4.24.0-next.1", + "gatsby-plugin-sharp": "^4.24.0-next.2", "md5-file": "^5.0.0", "mini-svg-data-uri": "^1.4.4", "p-queue": "^6.6.2", diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index e798ca54a4bd7..b82729056de00 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": "4.24.0-next.3", + "version": "4.24.0-next.4", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js" @@ -88,18 +88,18 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^4.24.0-next.0", + "gatsby-cli": "^4.24.0-next.1", "gatsby-core-utils": "^3.24.0-next.0", "gatsby-graphiql-explorer": "^2.24.0-next.0", "gatsby-legacy-polyfills": "^2.24.0-next.0", "gatsby-link": "^4.24.0-next.2", "gatsby-page-utils": "^2.24.0-next.0", - "gatsby-parcel-config": "0.15.0-next.0", - "gatsby-plugin-page-creator": "^4.24.0-next.0", + "gatsby-parcel-config": "0.15.0-next.1", + "gatsby-plugin-page-creator": "^4.24.0-next.1", "gatsby-plugin-typescript": "^4.24.0-next.0", - "gatsby-plugin-utils": "^3.18.0-next.0", + "gatsby-plugin-utils": "^3.18.0-next.1", "gatsby-react-router-scroll": "^5.24.0-next.1", - "gatsby-script": "^1.9.0-next.1", + "gatsby-script": "^1.9.0-next.2", "gatsby-telemetry": "^3.24.0-next.0", "gatsby-worker": "^1.24.0-next.0", "glob": "^7.2.3", @@ -204,7 +204,7 @@ "zipkin-transport-http": "^0.22.0" }, "optionalDependencies": { - "gatsby-sharp": "^0.18.0-next.0" + "gatsby-sharp": "^0.18.0-next.1" }, "engines": { "node": ">=14.15.0"
0215f74f34e13aedd68f196c2184eaaa445a2d93
2019-04-05 03:38:02
Dustin Schau
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index b194c68bde57c..a84adb0ae8c99 100644 --- a/packages/gatsby-cli/CHANGELOG.md +++ b/packages/gatsby-cli/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.5.5](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cli/compare/[email protected]@2.5.5) (2019-04-04) + +**Note:** Version bump only for package gatsby-cli + ## [2.5.4](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cli/compare/[email protected]@2.5.4) (2019-03-28) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index c9b0b28b76f31..c9e7935dca4e5 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.5.4", + "version": "2.5.5", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "lib/index.js" @@ -20,7 +20,7 @@ "execa": "^0.8.0", "fs-exists-cached": "^1.0.0", "fs-extra": "^4.0.1", - "gatsby-telemetry": "^1.0.4", + "gatsby-telemetry": "^1.0.5", "hosted-git-info": "^2.6.0", "lodash": "^4.17.10", "meant": "^1.0.1", diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md index 081f3f4b71cea..7eda18bfe13b8 100644 --- a/packages/gatsby-telemetry/CHANGELOG.md +++ b/packages/gatsby-telemetry/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.0.5](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-telemetry/compare/[email protected]@1.0.5) (2019-04-04) + +**Note:** Version bump only for package gatsby-telemetry + ## [1.0.4](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-telemetry/compare/[email protected]@1.0.4) (2019-03-28) ### Bug Fixes diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json index 80d0db2df0f71..53a7ac414b1d6 100644 --- a/packages/gatsby-telemetry/package.json +++ b/packages/gatsby-telemetry/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-telemetry", "description": "Gatsby Telemetry", - "version": "1.0.4", + "version": "1.0.5", "author": "Jarmo Isotalo <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 5293dbbb67242..17e8453a8d564 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.3.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.13) (2019-04-04) + +### Features + +- **gatsby:** add DANGEROUSLY_DISABLE_OOM ([#13066](https://github.com/gatsbyjs/gatsby/issues/13066)) ([800b8d7](https://github.com/gatsbyjs/gatsby/commit/800b8d7)) + ## [2.3.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.12) (2019-04-04) **Note:** Version bump only for package gatsby diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 7385f02383a76..0f54c82a9151d 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.3.12", + "version": "2.3.13", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js" @@ -65,11 +65,11 @@ "flat": "^4.0.0", "fs-exists-cached": "1.0.0", "fs-extra": "^5.0.0", - "gatsby-cli": "^2.5.4", + "gatsby-cli": "^2.5.5", "gatsby-link": "^2.0.16", "gatsby-plugin-page-creator": "^2.0.12", "gatsby-react-router-scroll": "^2.0.7", - "gatsby-telemetry": "^1.0.4", + "gatsby-telemetry": "^1.0.5", "glob": "^7.1.1", "graphql": "^14.1.1", "graphql-compose": "^6.0.3",
2f0044d5dcc43b4570cac8945f61edf3dec0f5bc
2020-04-15 14:45:08
Matt Kane
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-theme-blog-core/CHANGELOG.md b/packages/gatsby-theme-blog-core/CHANGELOG.md index d8d99f6a9b614..92c6d772394ca 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.3.23](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.23) (2020-04-15) + +**Note:** Version bump only for package gatsby-theme-blog-core + ## [1.3.22](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.22) (2020-04-14) **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 4d8403f5826e2..675df5440bfc8 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.3.22", + "version": "1.3.23", "main": "index.js", "author": "christopherbiscardi <[email protected]> (@chrisbiscardi)", "license": "MIT", @@ -30,7 +30,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.5.7", - "gatsby": "^2.20.20", + "gatsby": "^2.20.22", "prettier": "^1.19.1", "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 cef3adc23e7be..d646b29771425 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.4.23](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.4.23) (2020-04-15) + +**Note:** Version bump only for package gatsby-theme-blog + ## [1.4.22](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.4.22) (2020-04-14) **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 90d00de18b78c..ab4595f435284 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.4.22", + "version": "1.4.23", "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.2.2", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.2.2", - "gatsby-theme-blog-core": "^1.3.22", + "gatsby-theme-blog-core": "^1.3.23", "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.20.20", + "gatsby": "^2.20.22", "prettier": "^1.19.1", "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 561790739a57c..9faafca7046da 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.2.22](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.22) (2020-04-15) + +**Note:** Version bump only for package gatsby-theme-notes + ## [1.2.21](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.21) (2020-04-14) **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 38c6a44c2287b..e05a29397e5b2 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.2.21", + "version": "1.2.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.20.20", + "gatsby": "^2.20.22", "react": "^16.12.0", "react-dom": "^16.12.0" }, diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 0ff6dacd72283..072d30ca44388 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.20.22](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.20.22) (2020-04-15) + +**Note:** Version bump only for package gatsby + ## [2.20.20](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.20.20) (2020-04-14) ### Performance Improvements diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index bfd4eea7469a8..0cee71d09fec6 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.20.21", + "version": "2.20.22", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js"
8b96f950b22d3688d8e2a800109fd4ae902917e9
2020-04-01 18:40:42
Peter van der Zee
chore(gatsby): create single filter cache key generator (#22716)
false
create single filter cache key generator (#22716)
chore
diff --git a/packages/gatsby/src/redux/nodes.ts b/packages/gatsby/src/redux/nodes.ts index 3385e108a6a8d..1c68274b3f17f 100644 --- a/packages/gatsby/src/redux/nodes.ts +++ b/packages/gatsby/src/redux/nodes.ts @@ -2,6 +2,8 @@ import { store } from "./" import { IGatsbyNode } from "./types" import { createPageDependency } from "./actions/add-page-dependency" +export type FilterCacheKey = string + /** * Get all nodes from redux store. */ @@ -155,27 +157,22 @@ export const addResolvedNodes = ( * looping over all the nodes, when the number of pages (/nodes) scale up. */ export const ensureIndexByTypedChain = ( + cacheKey: FilterCacheKey, chain: string[], nodeTypeNames: string[], typedKeyValueIndexes: Map< - string, + FilterCacheKey, Map<string | number | boolean, Set<IGatsbyNode>> > ): void => { - const chained = chain.join(`+`) - - const nodeTypeNamePrefix = nodeTypeNames.join(`,`) + `/` - // The format of the typedKey is `type,type/path+to+eqobj` - const typedKey = nodeTypeNamePrefix + chained - - if (typedKeyValueIndexes.has(typedKey)) { + if (typedKeyValueIndexes.has(cacheKey)) { return } const { nodes, resolvedNodesCache } = store.getState() const byKeyValue = new Map<string | number | boolean, Set<IGatsbyNode>>() - typedKeyValueIndexes.set(typedKey, byKeyValue) + typedKeyValueIndexes.set(cacheKey, byKeyValue) nodes.forEach(node => { if (!nodeTypeNames.includes(node.internal.type)) { @@ -232,18 +229,13 @@ export const ensureIndexByTypedChain = ( * per `id` so there's a minor optimization for that (no need for Sets). */ export const getNodesByTypedChain = ( - chain: string[], + cacheKey: FilterCacheKey, value: boolean | number | string, - nodeTypeNames: string[], typedKeyValueIndexes: Map< - string, + FilterCacheKey, Map<string | number | boolean, Set<IGatsbyNode>> > ): Set<IGatsbyNode> | undefined => { - const key = chain.join(`+`) - - const typedKey = nodeTypeNames.join(`,`) + `/` + key - - const byTypedKey = typedKeyValueIndexes?.get(typedKey) + const byTypedKey = typedKeyValueIndexes?.get(cacheKey) return byTypedKey?.get(value) } diff --git a/packages/gatsby/src/redux/run-sift.js b/packages/gatsby/src/redux/run-sift.js index e1905a2c21010..aba8ae2936406 100644 --- a/packages/gatsby/src/redux/run-sift.js +++ b/packages/gatsby/src/redux/run-sift.js @@ -1,4 +1,5 @@ // @flow + const { default: sift } = require(`sift`) const { prepareRegex } = require(`../utils/prepare-regex`) const { makeRe } = require(`micromatch`) @@ -19,6 +20,35 @@ const { getNode: siftGetNode, } = require(`./nodes`) +/** + * Creates a key for the filterCache + * + * @param {Array<string>} typeNames + * @param {DbQuery} filter + * @returns {FilterCacheKey} (a string: `types.join()/path.join()/operator` ) + */ +const createTypedFilterCacheKey = (typeNames, filter) => { + // Note: while `elemMatch` is a special case, in the key it's just `elemMatch` + // (This function is future proof for elemMatch support, won't receive it yet) + let f = filter + let comparator = `` + let paths /*: Array<string>*/ = [] + while (f) { + paths.push(...f.path) + if (f.type === `elemMatch`) { + let q /*: IDbQueryElemMatch*/ = f + f = q.nestedQuery + } else { + let q /*: IDbQueryQuery*/ = f + comparator = q.query.comparator + break + } + } + + // Note: the separators (`,` and `/`) are arbitrary but must be different + return typeNames.join(`,`) + `/` + comparator + `/` + paths.join(`,`) +} + ///////////////////////////////////////////////////////////////////// // Parse filter ///////////////////////////////////////////////////////////////////// @@ -105,7 +135,7 @@ function handleMany(siftArgs, nodes) { * * @param {Array<DbQuery>} filters Resolved. (Should be checked by caller to exist) * @param {Array<string>} nodeTypeNames - * @param {Map<string, Map<string | number | boolean, Set<IGatsbyNode>>>} typedKeyValueIndexes + * @param {Map<FilterCacheKey, Map<string | number | boolean, Set<IGatsbyNode>>>} typedKeyValueIndexes * @returns {Array<IGatsbyNode> | undefined} */ const runFlatFiltersWithoutSift = ( @@ -149,7 +179,7 @@ const runFlatFiltersWithoutSift = ( /** * @param {Array<DbQuery>} filters * @param {Array<string>} nodeTypeNames - * @param {Map<string, Map<string | number | boolean, Set<IGatsbyNode>>>} typedKeyValueIndexes + * @param {Map<FilterCacheKey, Map<string | number | boolean, Set<IGatsbyNode>>>} typedKeyValueIndexes * @returns {Array<Set<IGatsbyNode>> | undefined} Undefined means at least one * cache was not found. Must fallback to sift. */ @@ -163,15 +193,21 @@ const getBucketsForFilters = (filters, nodeTypeNames, typedKeyValueIndexes) => { query: { value: targetValue }, } = filter - ensureIndexByTypedChain(chain, nodeTypeNames, typedKeyValueIndexes) + let cacheKey = createTypedFilterCacheKey(nodeTypeNames, filter) - const nodesByKeyValue = getNodesByTypedChain( + ensureIndexByTypedChain( + cacheKey, chain, - targetValue, nodeTypeNames, typedKeyValueIndexes ) + const nodesByKeyValue = getNodesByTypedChain( + cacheKey, + targetValue, + typedKeyValueIndexes + ) + // If we couldn't find the needle then maybe sift can, for example if the // schema contained a proxy; `slug: String @proxy(from: "slugInternal")` // There are also cases (and tests) where id exists with a different type @@ -202,7 +238,7 @@ const getBucketsForFilters = (filters, nodeTypeNames, typedKeyValueIndexes) => { * @property {boolean} args.firstOnly true if you want to return only the first * result found. This will return a collection of size 1. Not a single element * @property {{filter?: Object, sort?: Object} | undefined} args.queryArgs - * @property {undefined | Map<string, Map<string | number | boolean, Set<IGatsbyNode>>>} args.typedKeyValueIndexes + * @property {undefined | Map<FilterCacheKey, Map<string | number | boolean, Set<IGatsbyNode>>>} args.typedKeyValueIndexes * May be undefined. A cache of indexes where you can look up Nodes grouped * by a key: `types.join(',')+'/'+filterPath.join('+')`, which yields a Map * which holds a Set of Nodes for the value that the filter is trying to eq @@ -243,7 +279,7 @@ exports.runSift = runFilterAndSort * @param {Array<DbQuery> | undefined} filterFields * @param {boolean} firstOnly * @param {Array<string>} nodeTypeNames - * @param {undefined | Map<string, Map<string | number | boolean, Set<IGatsbyNode>>>} typedKeyValueIndexes + * @param {undefined | Map<FilterCacheKey, Map<string | number | boolean, Set<IGatsbyNode>>>} typedKeyValueIndexes * @param resolvedFields * @returns {Array<IGatsbyNode> | undefined} Collection of results. Collection * will be limited to 1 if `firstOnly` is true @@ -318,7 +354,7 @@ const filterToStats = ( * * @param {Array<DbQuery>} filters Resolved. (Should be checked by caller to exist) * @param {Array<string>} nodeTypeNames - * @param {Map<string, Map<string | number | boolean, Set<IGatsbyNode>>>} typedKeyValueIndexes + * @param {Map<FilterCacheKey, Map<string | number | boolean, Set<IGatsbyNode>>>} typedKeyValueIndexes * @returns {Array|undefined} Collection of results */ const filterWithoutSift = (filters, nodeTypeNames, typedKeyValueIndexes) => {
6f82ddf7bfe23b4f55585dc3b3e23f5abf9a8caa
2019-01-28 23:05:26
Jam Risser
docs(adding-search): use elasticlunr-search plugin updated for v2 (#11354)
false
use elasticlunr-search plugin updated for v2 (#11354)
docs
diff --git a/docs/docs/adding-search.md b/docs/docs/adding-search.md index 1fbb30517ecf5..a79041775c8db 100644 --- a/docs/docs/adding-search.md +++ b/docs/docs/adding-search.md @@ -41,9 +41,9 @@ Using an open source search engine is always free and allows you to enable offli Open source libraries like [`elasticlunr`](https://www.npmjs.com/package/elasticlunr) or [`js-search`](https://github.com/bvaughn/js-search) can be used to enable search for your site. -Doing so will require you to create a search index when your site is built. For `elesticlunr`, there is a plugin called [`gatsby-plugin-elasticlunr-search`](https://github.com/andrew-codes/gatsby-plugin-elasticlunr-search) that creates a search index automatically. +Doing so will require you to create a search index when your site is built. For `elesticlunr`, there is a plugin called [`gatsby-plugin-elasticlunr-search`](https://github.com/gatsby-contrib/gatsby-plugin-elasticlunr-search) that creates a search index automatically. -For other libraries, you can use a combination of [`onCreateNode`](https://www.gatsbyjs.org/docs/node-apis/#onCreateNode), [`setFieldsOnGraphQLNodeType`](https://www.gatsbyjs.org/docs/node-apis/#setFieldsOnGraphQLNodeType) and [`sourceNodes`](https://www.gatsbyjs.org/docs/node-apis/#sourceNodes) from the Gatsby node API to create the search index and make it available in GraphQL. For more info on how to do this check out [`gatsby-plugin-elasticlunr-search`'s source code](https://github.com/andrew-codes/gatsby-plugin-elasticlunr-search/blob/master/src/gatsby-node.js#L88-L126). +For other libraries, you can use a combination of [`onCreateNode`](https://www.gatsbyjs.org/docs/node-apis/#onCreateNode), [`setFieldsOnGraphQLNodeType`](https://www.gatsbyjs.org/docs/node-apis/#setFieldsOnGraphQLNodeType) and [`sourceNodes`](https://www.gatsbyjs.org/docs/node-apis/#sourceNodes) from the Gatsby node API to create the search index and make it available in GraphQL. For more info on how to do this check out [`gatsby-plugin-elasticlunr-search`'s source code](https://github.com/gatsby-contrib/gatsby-plugin-elasticlunr-search/blob/master/src/gatsby-node.js#L96-L131). Another option is to generate the search index at the end of the build using the [`onPostBuild`](https://www.gatsbyjs.org/docs/node-apis/#onPostBuild) node API. This approach is used by [`gatsby-plugin-lunr`](https://github.com/humanseelabs/gatsby-plugin-lunr) to build a multilanguage index.
f45791264f6b11745bbfa3ba6e9aebecff843ac6
2020-05-11 22:34:08
Diogo Capela
chore(showcase): Add Zona Digital to Gatsby Showcase (#23980)
false
Add Zona Digital to Gatsby Showcase (#23980)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index a3b6857698bc7..51c586f51d731 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -10544,6 +10544,20 @@ 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
dda64c3b8089f36cb96be0281e197aabc5e3cd06
2022-01-07 07:29:00
Anil Seervi
chore(docs): Old occurrences of gatbyjs.org (#34402)
false
Old occurrences of gatbyjs.org (#34402)
chore
diff --git a/docs/contributing/gatsby-style-guide.md b/docs/contributing/gatsby-style-guide.md index 38dde5f1e2ca7..47dc7538e89ce 100644 --- a/docs/contributing/gatsby-style-guide.md +++ b/docs/contributing/gatsby-style-guide.md @@ -42,8 +42,8 @@ If the content is already somewhere else on the .org site, feel free to copy and Possible sources of great research materials: -- blogposts (on gatsbyjs.org and other sites) -- docs (on gatsbyjs.org and other sites) +- blogposts (on gatsbyjs.com and other sites) +- docs (on gatsbyjs.com and other sites) - video tutorials - Discord or Twitter conversations - search engine results @@ -495,7 +495,7 @@ Attributes: - intermediate to advanced at React - frontend developer -- prefer using a search engine and/or `ctrl + f` to find things on the gatsbyjs.org site +- prefer using a search engine and/or `ctrl + f` to find things on the gatsbyjs.com site Looking for: diff --git a/docs/contributing/managing-pull-requests.md b/docs/contributing/managing-pull-requests.md index 7476224bfb64f..f6e716df53e7c 100644 --- a/docs/contributing/managing-pull-requests.md +++ b/docs/contributing/managing-pull-requests.md @@ -73,7 +73,7 @@ For PRs that add a blog post, we ought to check: ## Automated Checks -Our repository on [GitHub](https://github.com/gatsbyjs/gatsby) has several automated CI checks that are run automatically for all PRs. These include tests, linting and even preview builds for [gatsbyjs.org](https://www.gatsbyjs.com). +Our repository on [GitHub](https://github.com/gatsbyjs/gatsby) has several automated CI checks that are run automatically for all PRs. These include tests, linting and even preview builds for [gatsbyjs.com](https://www.gatsbyjs.com). We want all of these checks to pass. While we'll sometimes review a work in progress PR with some failed checks, a PR is only ready to ship when all the tests have passed. diff --git a/docs/contributing/where-to-participate.md b/docs/contributing/where-to-participate.md index 7d296cd560432..12f889c4b0d4c 100644 --- a/docs/contributing/where-to-participate.md +++ b/docs/contributing/where-to-participate.md @@ -7,7 +7,7 @@ We want contributing to Gatsby to be fun, enjoyable, and educational for anyone - Blogging, speaking about, or creating tutorials about one of Gatsby's many features. Mention [@gatsbyjs on Twitter](https://twitter.com/gatsbyjs) and/or email `devrel [at] gatsbyjs [dot] com` so we can give pointers and tips (if you want them 😄) and help you spread the word. Please add your blog posts and videos of talks to our [Awesome Gatsby](/docs/awesome-gatsby-resources/) page. - Presenting at meetups and conferences about your Gatsby projects. Your unique challenges and successes in building things with Gatsby can provide great speaking material. We'd love to review your talk abstract/CFP, so get in touch with us if you'd like some help! - [Submitting new feature ideas through an RFC](/blog/2018-04-06-introducing-gatsby-rfc-process/) -- Submitting new documentation; titles in the side navigation on [docs](/docs) which are lighter in color on gatsbyjs.org are stubs and need contributions +- Submitting new documentation; titles in the side navigation on [docs](/docs) which are lighter in color on gatsbyjs.com are stubs and need contributions - Tweeting about things you [#buildwithgatsby](https://twitter.com/search?q=%23buildwithgatsby) (make sure to use the hashtag and/or @ mention us!) - Submitting documentation updates, enhancements, designs, or bug fixes - Submitting spelling or grammar fixes diff --git a/docs/docs/how-to/styling/using-web-fonts.md b/docs/docs/how-to/styling/using-web-fonts.md index 805667742eaea..dc2198683a5cb 100644 --- a/docs/docs/how-to/styling/using-web-fonts.md +++ b/docs/docs/how-to/styling/using-web-fonts.md @@ -18,7 +18,7 @@ Some examples of web font services include [Google Fonts](https://fonts.google.c ### How to use Web Font Loader with Typekit -You can add Typekit Web Fonts to your project by using the [gatsby-plugin-web-font-loader](https://www.gatsbyjs.org/packages/gatsby-plugin-web-font-loader/?=font) and your [Adobe Fonts project id](https://fonts.adobe.com/my_fonts#web_projects-section). For example, this is how you can add Futura to your project. +You can add Typekit Web Fonts to your project by using the [gatsby-plugin-web-font-loader](/plugins/gatsby-plugin-web-font-loader/?=font) and your [Adobe Fonts project id](https://fonts.adobe.com/my_fonts#web_projects-section). For example, this is how you can add Futura to your project. First, install the Gatsby plugin with npm: diff --git a/docs/docs/using-gatsby-professionally/winning-over-marketers.md b/docs/docs/using-gatsby-professionally/winning-over-marketers.md index df3669a02dc96..77bb9ad403dbe 100644 --- a/docs/docs/using-gatsby-professionally/winning-over-marketers.md +++ b/docs/docs/using-gatsby-professionally/winning-over-marketers.md @@ -51,4 +51,4 @@ A perception marketers often have of developers is that they are not very busine The explanations above -- whether you use them word-for-word or restate them in your own and your organization's language -- are intended to demonstrate concern for the business as a whole, so marketers see you as a trusted partner. -_Want to read more on this topic? Check out [How to Talk About Gatsby To Your Clients And Team](https://www.gatsbyjs.com/blog/2019-03-07-sell-gatsby-to-clients/) by [Linda Watkins](https://www.gatsbyjs.org/contributors/linda-watkins/)._ +_Want to read more on this topic? Check out [How to Talk About Gatsby To Your Clients And Team](https://www.gatsbyjs.com/blog/2019-03-07-sell-gatsby-to-clients/) by [Linda Watkins](https://www.gatsbyjs.com/contributors/linda-watkins/)._ diff --git a/packages/gatsby-source-wordpress/docs/community-and-support.md b/packages/gatsby-source-wordpress/docs/community-and-support.md index eba55cca1a4a3..ca15f7106e438 100644 --- a/packages/gatsby-source-wordpress/docs/community-and-support.md +++ b/packages/gatsby-source-wordpress/docs/community-and-support.md @@ -2,7 +2,7 @@ Fortunately there are very strong WPGraphQL and Gatsby communities! -Check out this [GatsbyJS page](https://www.gatsbyjs.org/contributing/community/) or this [WPGraphQL page](https://www.wpgraphql.com/community-and-support/) on community for more information about each community. +Check out this [GatsbyJS page](https://www.gatsbyjs.com/contributing/community/) or this [WPGraphQL page](https://www.wpgraphql.com/community-and-support/) on community for more information about each community. The WPGraphQL Slack is a great place to get help. Feel free to [open an issue in this repo](https://github.com/gatsbyjs/gatsby/issues/new) as well (after you've searched for a previously existing issue). diff --git a/packages/gatsby-source-wordpress/docs/getting-started.md b/packages/gatsby-source-wordpress/docs/getting-started.md index 81efd350f0de3..5f0687233c610 100644 --- a/packages/gatsby-source-wordpress/docs/getting-started.md +++ b/packages/gatsby-source-wordpress/docs/getting-started.md @@ -4,7 +4,7 @@ If you've had previous experience with Gatsby or you like to move fast, you can ## Quick start -1. [Install Node, Gatsby, and gatsby-cli](https://www.gatsbyjs.org/docs/) +1. [Install Node, Gatsby, and gatsby-cli](https://www.gatsbyjs.com/docs/) 2. Install [a starter](https://github.com/gatsbyjs/gatsby-starter-wordpress-blog) `gatsby new my-wordpress-gatsby-site https://github.com/gatsbyjs/gatsby-starter-wordpress-blog` 3. Install and activate both of the following plugins in a live WordPress instance. diff --git a/packages/gatsby-source-wordpress/docs/migrating-from-other-wp-source-plugins.md b/packages/gatsby-source-wordpress/docs/migrating-from-other-wp-source-plugins.md index 5e1114dc13fb9..8956d961bd008 100644 --- a/packages/gatsby-source-wordpress/docs/migrating-from-other-wp-source-plugins.md +++ b/packages/gatsby-source-wordpress/docs/migrating-from-other-wp-source-plugins.md @@ -6,7 +6,7 @@ From what we've seen migrating is a fairly painless process as the GraphQL schem **Note**: If you're using Gatsby Cloud and you have `gatsby-source-wordpress@v3` and `gatsby-source-wordpress` installed in the same site, only the experimental plugin will receive webhook updates when updating content. -[Graphiql](https://www.gatsbyjs.org/docs/running-queries-with-graphiql/) is your best friend when migrating from the last major version of this plugin. Run `gatsby develop` and visit `http://localhost:8000/___graphiql` +[Graphiql](https://www.gatsbyjs.com/docs/running-queries-with-graphiql/) is your best friend when migrating from the last major version of this plugin. Run `gatsby develop` and visit `http://localhost:8000/___graphiql` Any node list queries such as `allWordpressPage { nodes { title } }` will need to be updated to match the new WordPress types in the Gatsby schema. The new pattern for type names is `Wp` and then the capitalized type such as `Page`. So to replace the node list query above, you would write `allWpPage { nodes { title } }`. @@ -60,7 +60,7 @@ So your query would change to look like this: ### `gatsby-source-graphql` and inline fragments -Any inline fragments will need to be updated since type names have changed. Use Gatsby's [Graphiql](https://www.gatsbyjs.org/docs/running-queries-with-graphiql/) at `http://localhost:8000/___graphiql` with `gatsby develop` running to determine how your inline fragment typenames should be modified. +Any inline fragments will need to be updated since type names have changed. Use Gatsby's [Graphiql](https://www.gatsbyjs.com/docs/running-queries-with-graphiql/) at `http://localhost:8000/___graphiql` with `gatsby develop` running to determine how your inline fragment typenames should be modified. ### `gatsby-source-graphql` and `gatsby-plugin-image` diff --git a/packages/gatsby-source-wordpress/docs/problems-with-v3.md b/packages/gatsby-source-wordpress/docs/problems-with-v3.md index e25186b2f9282..a5307282f435f 100644 --- a/packages/gatsby-source-wordpress/docs/problems-with-v3.md +++ b/packages/gatsby-source-wordpress/docs/problems-with-v3.md @@ -4,7 +4,7 @@ - The inflexibility and lack of an enforced schema for this API made proper node caching technically possible but functionally impossible. It also made it impossible to know beforehand the shape and type of data to expect which made it impossible to programmatically determine how to use the returned data. - The REST API is largely untyped, and REST does not enforce typing even if it was. - - This means Gatsby needed to use [inference](https://www.gatsbyjs.org/docs/glossary/#inference) to automatically build GraphQL types for the data that was returned from WP. The big issue with this is: if all data of a type is removed from WP, your Gatsby site's GraphQL queries will break because no data means Gatsby can no longer can infer the data structure. This led to a lot of odd and counterintuitive issues and a poor developer/content creator experience. + - This means Gatsby needed to use [inference](https://www.gatsbyjs.com/docs/glossary/#inference) to automatically build GraphQL types for the data that was returned from WP. The big issue with this is: if all data of a type is removed from WP, your Gatsby site's GraphQL queries will break because no data means Gatsby can no longer can infer the data structure. This led to a lot of odd and counterintuitive issues and a poor developer/content creator experience. - If we were to manually write out types for the entire core WP REST API so that we no longer needed to use inference, any custom WP REST plugins would not work and would require a lot of additional tedious and error prone work to support these plugins changing their data structure over time. - REST does not have a popularly used standard way of implementing connections between nodes - For example if you fetch 100 posts, you will also be fetching repeated data if each post includes data about the posts author including their name and email, etc. Perhaps all the posts had the same author and so we fetched 100x more data than we needed to. diff --git a/packages/gatsby-source-wordpress/docs/tutorials/building-a-new-site-wordpress-and-gatsby.md b/packages/gatsby-source-wordpress/docs/tutorials/building-a-new-site-wordpress-and-gatsby.md index c94681d52475f..2577382046ed8 100644 --- a/packages/gatsby-source-wordpress/docs/tutorials/building-a-new-site-wordpress-and-gatsby.md +++ b/packages/gatsby-source-wordpress/docs/tutorials/building-a-new-site-wordpress-and-gatsby.md @@ -13,7 +13,7 @@ gatsby new wordpress-tutorial-site cd wordpress-tutorial-site ``` -Install the `gatsby-source-wordpress` plugin. For extra reading on the plugin’s features and examples of GraphQL queries not included in this tutorial, see the [`gatsby-source-wordpress` plugin’s README file](https://www.gatsbyjs.org/packages/gatsby-source-wordpress). +Install the `gatsby-source-wordpress` plugin. For extra reading on the plugin’s features and examples of GraphQL queries not included in this tutorial, see the [`gatsby-source-wordpress` plugin’s README file](https://www.gatsbyjs.com/packages/gatsby-source-wordpress). ```shell npm install gatsby-source-wordpress @@ -176,7 +176,7 @@ To do this, you need to: 1. Create pages for each blog post 2. Link up the title on the index page with the post page. -If you haven't already, please read through [Part 7](https://www.gatsbyjs.org/tutorial/part-7/) of the foundational tutorial, as it goes through the concept and examples of this process with Markdown instead of WordPress. +If you haven't already, please read through [Part 7](https://www.gatsbyjs.com/docs/tutorial/part-7/) of the foundational tutorial, as it goes through the concept and examples of this process with Markdown instead of WordPress. ### Creating pages for each blog post @@ -207,7 +207,7 @@ exports.createPages = ({ graphql, actions }) => { } ``` -Next, [stop and restart](https://www.gatsbyjs.org/tutorial/part-0/#view-your-site-locally) the `gatsby develop` environment. As you watch the terminal you should see two Post objects log to the terminal. +Next, [stop and restart](https://www.gatsbyjs.com/docs/tutorial/part-0/#view-your-site-locally) the `gatsby develop` environment. As you watch the terminal you should see two Post objects log to the terminal. Excellent! As explained in Part 7 of the tutorial, this `createPages` export is one of the Gatsby "workhorses" and allows us to create your blog posts (or pages, or custom post types, etc.) from your WordPress install. diff --git a/packages/gatsby-source-wordpress/docs/tutorials/configuring-previews-legacy.md b/packages/gatsby-source-wordpress/docs/tutorials/configuring-previews-legacy.md index e2011020f06ca..7c85a35cf36d4 100644 --- a/packages/gatsby-source-wordpress/docs/tutorials/configuring-previews-legacy.md +++ b/packages/gatsby-source-wordpress/docs/tutorials/configuring-previews-legacy.md @@ -4,7 +4,7 @@ Once configured in the GatsbyJS settings page in wp-admin, Previews will work ou ### Connecting Preview -To get started, set up a Preview instance on [Gatsby Cloud](https://www.gatsbyjs.com/) or set up your [self-hosted Preview instance](https://www.gatsbyjs.org/docs/running-a-gatsby-preview-server/). If you want to try out Preview but aren't sure whether you want to subscribe to Gatsby Cloud or self-host, you can start a free 2 week Gatsby Cloud trial with no credit card to help you make up your mind! +To get started, set up a Preview instance on [Gatsby Cloud](https://www.gatsbyjs.com/) or set up your [self-hosted Preview instance](https://www.gatsbyjs.com/docs/running-a-gatsby-preview-server/). If you want to try out Preview but aren't sure whether you want to subscribe to Gatsby Cloud or self-host, you can start a free 2 week Gatsby Cloud trial with no credit card to help you make up your mind! #### WordPress Settings diff --git a/packages/gatsby-source-wordpress/docs/why-use-this-plugin.md b/packages/gatsby-source-wordpress/docs/why-use-this-plugin.md index 5f60ada17b7e2..67d3a91cf7403 100644 --- a/packages/gatsby-source-wordpress/docs/why-use-this-plugin.md +++ b/packages/gatsby-source-wordpress/docs/why-use-this-plugin.md @@ -16,18 +16,18 @@ Some highlights: - A componentized architecture for your front-end code with React (better maintainability) - A simpler way of asking for data with GraphQL (no need to remember dozens of data retrieval functions) - Client-side state management with React opens up the doors to creating an app-like or full on app experience for your users -- [Gatsby is committed to ensuring we are as accessible as possible out of the box](https://www.gatsbyjs.org/blog/2019-04-18-gatsby-commitment-to-accessibility/) +- [Gatsby is committed to ensuring we are as accessible as possible out of the box](https://www.gatsbyjs.com/blog/2019-04-18-gatsby-commitment-to-accessibility/) Additionally, this plugin is a great reason to use Gatsby with WordPress. Many of the complex and difficult aspects of going decoupled with WordPress have been abstracted for you behind the scenes, so you can work on building awesome apps and sites instead of reinventing the wheel to get decoupled WordPress working in your project. -Check out this page on [convincing developers why Gatsby is awesome](https://www.gatsbyjs.org/docs/winning-over-developers/#specific-benefits). It's meant for developers who want to convince their coworkers to use Gatsby, but it actually does a great job of describing directly to you the main reasons why using Gatsby is a great idea :) +Check out this page on [convincing developers why Gatsby is awesome](https://www.gatsbyjs.com/docs/winning-over-developers/#specific-benefits). It's meant for developers who want to convince their coworkers to use Gatsby, but it actually does a great job of describing directly to you the main reasons why using Gatsby is a great idea :) ### Related information: - [ReactJS](https://reactjs.org/) -- [Gatsy Site Showcase](https://www.gatsbyjs.org/showcase/) -- [Gatsby Case Study Blog posts](https://www.gatsbyjs.org/blog/tags/case-studies/) -- [How Tinder is using WordPress with Gatsby](https://www.gatsbyjs.org/blog/2020-04-07-LA-2020-Boss/) +- [Gatsy Site Showcase](https://www.gatsbyjs.com/showcase/) +- [Gatsby Case Study Blog posts](https://www.gatsbyjs.com/blog/tags/case-studies/) +- [How Tinder is using WordPress with Gatsby](https://www.gatsbyjs.com/blog/2020-04-07-la-2020-boss/) - [Zac Gordon on what Gatsby is and why to use it](https://www.youtube.com/watch?v=GuvAMcsoreI) ## Why use this plugin instead of X source plugin? diff --git a/scripts/i18n/README.md b/scripts/i18n/README.md index 8211f63214653..693bfe59258dd 100644 --- a/scripts/i18n/README.md +++ b/scripts/i18n/README.md @@ -79,4 +79,4 @@ Usage: yarn run-all [script name] ``` -The `run-all` script runs the script provided in the argument across all languages for which there are translations of gatbyjs.org, listed in /www/src/i18n.json. +The `run-all` script runs the script provided in the argument across all languages for which there are translations of gatsbyjs.com, listed in /www/src/i18n.json.
750285a530c8ddad270626feb20a4b4b21bdf32f
2019-05-20 15:46:08
Mhel Pineda
chore(showcase): add greenorbit.com (#14171)
false
add greenorbit.com (#14171)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index 8b0a0df875f31..eb7e50c27e0c3 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -5983,6 +5983,20 @@ built_by: Jacob Herper built_by_url: https://herper.io featured: false +- title: Green Orbit + main_url: https://www.greenorbit.com/ + url: https://www.greenorbit.com/ + description: > + Cloud-based intranet software. Get your people going with everything you need, built in. + categories: + - B2B Services + - Business + - App + - Productivity + - Technology + - CMS + built_by: Effective Digital + built_by_url: https://effective.digital/ - title: Purple11 main_url: https://purple11.com/ url: https://purple11.com/
a96090690b479e7e042544ec18eec39d81ed4c96
2021-09-21 20:46:25
Ward Peeters
chore(gatsby-telemetry): remove deps that are global (#33270)
false
remove deps that are global (#33270)
chore
diff --git a/packages/gatsby-telemetry/src/__tests__/telemetry.ts b/packages/gatsby-telemetry/src/__tests__/telemetry.ts index 968b8b8cab964..08fc34046e1f2 100644 --- a/packages/gatsby-telemetry/src/__tests__/telemetry.ts +++ b/packages/gatsby-telemetry/src/__tests__/telemetry.ts @@ -1,4 +1,3 @@ -jest.mock(`../event-storage`) import { EventStorage } from "../event-storage" import { AnalyticsTracker } from "../telemetry" import * as fs from "fs-extra" @@ -6,6 +5,8 @@ import * as os from "os" import * as path from "path" import uuidv4 from "uuid/v4" +jest.mock(`../event-storage`) + let telemetry beforeEach(() => { ;(EventStorage as jest.Mock).mockReset()
23da1f8e48a06ca1c50706dec137cc40329a79eb
2019-04-08 22:17:29
Lennart
feat(examples): Add "using-i18n" example (#13077)
false
Add "using-i18n" example (#13077)
feat
diff --git a/examples/using-i18n/.eslintrc.json b/examples/using-i18n/.eslintrc.json new file mode 100644 index 0000000000000..c5401e9318647 --- /dev/null +++ b/examples/using-i18n/.eslintrc.json @@ -0,0 +1,11 @@ +{ + "env": { + "browser": true + }, + "globals": { + "graphql": false + }, + "rules": { + "react/prop-types": [0] + } +} diff --git a/examples/using-i18n/.gitignore b/examples/using-i18n/.gitignore new file mode 100644 index 0000000000000..e86fe25559ba0 --- /dev/null +++ b/examples/using-i18n/.gitignore @@ -0,0 +1,69 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Typescript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# dotenv environment variables file +.env + +# gatsby files +.cache/ +public + +# Mac files +.DS_Store + +# Yarn +yarn-error.log +.pnp/ +.pnp.js +# Yarn Integrity file +.yarn-integrity diff --git a/examples/using-i18n/LICENSE b/examples/using-i18n/LICENSE new file mode 100644 index 0000000000000..20f91f2b3c52b --- /dev/null +++ b/examples/using-i18n/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 gatsbyjs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/examples/using-i18n/README.md b/examples/using-i18n/README.md new file mode 100644 index 0000000000000..9edde4f86676e --- /dev/null +++ b/examples/using-i18n/README.md @@ -0,0 +1,12 @@ +# Using i18n + +https://using-i18n.gatsbyjs.org + +Example site that demonstrates how to build Gatsby sites with multiple languages (Internationalization / i18n) without any third-party plugins or packages. Per language a dedicated page is built (so no client-side translations) which is among other things important for SEO. + +The general information are defined in `config/i18n.js`, the translations are located in `config/translations`. The custom hook `useTranslations` pulls in these translations then (when the former is changed, the latter needs to update its GraphQL query). Due to the usage of a global layout/Context API and the passed `locale` to all pages (see `gatsby-node.js`) you know on every page which language is currently displayed. Moreover, with the usage of MDX and `gatsby-mdx` a custom component for the `<a>` tag is implemented -- this way links can stay the same for every language, without the need to manually write path prefixes. + +**Opinionated choices that were made:** + +- Usage of a custom hook with GraphQL to access translations. That part can be replaced with a i18n library +- Blogposts are defined in `blog`. The folder names are the `slug` of the page. Inside these folders there has to be an `index.mdx` file (for the default language). Any other language needs to be defined in the format `name-with-dashes.lang.mdx` diff --git a/examples/using-i18n/blog/game-of-thrones/index.de.mdx b/examples/using-i18n/blog/game-of-thrones/index.de.mdx new file mode 100644 index 0000000000000..611aa79d56ea0 --- /dev/null +++ b/examples/using-i18n/blog/game-of-thrones/index.de.mdx @@ -0,0 +1,18 @@ +--- +title: 'Game of Thrones ist toll' +date: 2019-04-01 +--- + +Game of Thrones (deutsch „Spiel der Throne“) ist eine US-amerikanische Fantasy-Fernsehserie von David Benioff und D. B. Weiss für den US-Kabelsender HBO. Die von Kritikern gelobte und kommerziell erfolgreiche Serie basiert auf der Romanreihe A Song of Ice and Fire (deutsch „Das Lied von Eis und Feuer“) von George R. R. Martin, der ebenfalls an der Serie mitwirkt. + +Du kannst auch etwas lesen zu [Harry Potter](/harry-potter) + +Die Handlung ist in einer fiktiven Welt angesiedelt und spielt auf den Kontinenten Westeros und Essos. Die sieben Königreiche von Westeros ähneln dem europäischen Mittelalter und sind durch eine riesige Mauer von einem Gebiet des ewigen Winters im Norden abgeschirmt. Frühling, Sommer, Herbst und Winter können mehrere Jahre oder gar Jahrzehnte andauern, ihre Länge ist variabel und nicht vorhersehbar. Die Geschichte beginnt am Ende eines langen Sommers und wird in drei Handlungssträngen weitgehend parallel erzählt. Zwischen den mächtigen Adelshäusern des Reiches bauen sich Spannungen auf, die schließlich zum offenen Thronkampf führen. Der Winter bahnt sich an und es zeichnet sich im hohen Norden von Westeros, wo die Nachtwache an der Mauer die Königreiche schützen soll, eine Gefahr durch eine fremde Rasse ab. In Essos ist Daenerys Targaryen als Erbin der vor Jahren abgesetzten Königsfamilie von Westeros bestrebt, wieder an die Macht zu gelangen. + +Die komplexe Handlung umfasst zahlreiche Figuren und thematisiert unter anderem Politik und Machtkämpfe, Gesellschaftsverhältnisse, Kriege und Religionen. Zahlreiche Charaktere weisen differenzierte moralische Schattierungen auf; ebenso kommen des Öfteren zentrale Figuren ums Leben. + +Die Erstausstrahlung erfolgte am 17. April 2011 bei HBO, gefolgt von der deutschsprachigen Erstausstrahlung am 2. November 2011. + +Insgesamt sind acht Staffeln Game of Thrones geplant. Die ersten sechs Staffeln umfassen jeweils zehn Episoden, die siebte Staffel sieben Folgen, während für die achte Staffel sechs Episoden geplant sind. Die achte Staffel soll ab dem 14. April 2019 von HBO ausgestrahlt werden. + +[Von Wikipedia](https://de.wikipedia.org/wiki/Game_of_Thrones). diff --git a/examples/using-i18n/blog/game-of-thrones/index.mdx b/examples/using-i18n/blog/game-of-thrones/index.mdx new file mode 100644 index 0000000000000..ffe2a62c39afb --- /dev/null +++ b/examples/using-i18n/blog/game-of-thrones/index.mdx @@ -0,0 +1,16 @@ +--- +title: 'Game of Thrones is awesome' +date: 2019-04-01 +--- + +Game of Thrones is an American fantasy drama television series created by David Benioff and D. B. Weiss. It is an adaptation of A Song of Ice and Fire, George R. R. Martin's series of fantasy novels, the first of which is A Game of Thrones. The show is filmed in Belfast and elsewhere in Northern Ireland, Canada, Croatia, Iceland, Malta, Morocco, Scotland, Spain, and the United States. The series premiered on HBO in the United States on April 17, 2011, and will conclude with its eighth season, which will premiere on April 14, 2019. + +You can also read up on [Harry Potter](/harry-potter) + +Set on the fictional continents of Westeros and Essos, Game of Thrones has several plots and a large ensemble cast, but follows three story arcs. The first arc is about the Iron Throne of the Seven Kingdoms, and follows a web of alliances and conflicts among the noble dynasties either vying to claim the throne or fighting for independence from it. The second story arc focuses on the last descendant of the realm's deposed ruling dynasty, who has been exiled and is plotting a return to the throne. The third story arc follows the Night's Watch, a longstanding brotherhood charged with defending the realm against the ancient threats of the fierce peoples and legendary creatures that lie far north of The Wall, and an impending winter that threatens the realm. + +Game of Thrones has attracted record viewership on HBO and has a broad, active, international fan base. It has been acclaimed by critics, particularly for its acting, complex characters, story, scope, and production values, although its frequent use of nudity and violence (including sexual violence) have been criticized. The series has received 47 Primetime Emmy Awards, including Outstanding Drama Series in 2015, 2016, and 2018, more than any other primetime scripted television series. Its other awards and nominations include three Hugo Awards for Best Dramatic Presentation (2012–2014), a 2011 Peabody Award, and five nominations for the Golden Globe Award for Best Television Series – Drama (2012 and 2015–2018). + +Of the ensemble cast, Peter Dinklage has won three Primetime Emmy Awards for Outstanding Supporting Actor in a Drama Series (2011, 2015 and 2018) and the Golden Globe Award for Best Supporting Actor – Series, Miniseries or Television Film (2012) for his performance as Tyrion Lannister. Lena Headey, Emilia Clarke, Kit Harington, Maisie Williams, Nikolaj Coster-Waldau, Diana Rigg, and Max von Sydow have also received Primetime Emmy Award nominations for their performances. + +[From Wikipedia](https://en.wikipedia.org/wiki/Game_of_Thrones). diff --git a/examples/using-i18n/blog/harry-potter/index.de.mdx b/examples/using-i18n/blog/harry-potter/index.de.mdx new file mode 100644 index 0000000000000..317b28de781ba --- /dev/null +++ b/examples/using-i18n/blog/harry-potter/index.de.mdx @@ -0,0 +1,12 @@ +--- +title: 'Die Harry Potter Bücher' +date: 2019-04-02 +--- + +Harry Potter ist eine Fantasy-Romanreihe der englischen Schriftstellerin Joanne K. Rowling. Erzählt wird die Geschichte der titelgebenden Figur Harry Potter, der an seinem elften Geburtstag von seiner magischen Herkunft erfährt und fortan Schüler des britischen Zaubererinternats Hogwarts ist, wo er mit seinen neuen Freunden gegen den bösen Magier Lord Voldemort und dessen Gefolgsleute, die sogenannten Todesser, kämpfen muss. Jeder der sieben Bände beschreibt ein Schul- und Lebensjahr von Harry Potter. + +Du kannst auch etwas lesen von: [Game of Thrones](/game-of-thrones) + +Der Bloomsbury-Verlag veröffentlichte 1997 zunächst 500 Stück des ersten Bandes Harry Potter und der Stein der Weisen, der schnell zum Verkaufserfolg wurde, an den auch Band zwei (1998) und Band drei (1999) anknüpfen konnten. Mit dem Erscheinen des 4. Bandes Harry Potter und der Feuerkelch im Jahr 2000 gelang der Reihe in vielen Ländern der Durchbruch. Die Bände fünf bis sieben brachen Vorbestellungsrekorde in Großbritannien und den USA und die Harry-Potter-Reihe wurde zum größten Bucherfolg der 2000er-Jahre. Laut Pottermore wurden bis 2018 rund 500 Millionen Bücher der sieben Bände sowie drei Ableger-Büchern verkauft, davon über 33 Millionen in deutscher Sprache. + +[Von Wikipedia](https://de.wikipedia.org/wiki/Harry_Potter). diff --git a/examples/using-i18n/blog/harry-potter/index.mdx b/examples/using-i18n/blog/harry-potter/index.mdx new file mode 100644 index 0000000000000..508d2ee27b326 --- /dev/null +++ b/examples/using-i18n/blog/harry-potter/index.mdx @@ -0,0 +1,12 @@ +--- +title: 'The Harry Potter books' +date: 2019-04-02 +--- + +Harry Potter is a series of fantasy novels written by British author J. K. Rowling. The novels chronicle the lives of a young wizard, Harry Potter, and his friends Hermione Granger and Ron Weasley, all of whom are students at Hogwarts School of Witchcraft and Wizardry. The main story arc concerns Harry's struggle against Lord Voldemort, a dark wizard who intends to become immortal, overthrow the wizard governing body known as the Ministry of Magic, and subjugate all wizards and Muggles (non-magical people). + +You can also read up on [Game of Thrones](/game-of-thrones) + +Since the release of the first novel, Harry Potter and the Philosopher's Stone, on 26 June 1997, the books have found immense popularity, critical acclaim and commercial success worldwide. They have attracted a wide adult audience as well as younger readers and are often considered cornerstones of modern young adult literature. The series has also had its share of criticism, including concern about the increasingly dark tone as the series progressed, as well as the often gruesome and graphic violence it depicts. As of February 2018, the books have sold more than 500 million copies worldwide, making them the best-selling book series in history, and have been translated into eighty languages. The last four books consecutively set records as the fastest-selling books in history, with the final instalment selling roughly eleven million copies in the United States within twenty-four hours of its release. + +[From Wikipedia](https://en.wikipedia.org/wiki/Harry_Potter). diff --git a/examples/using-i18n/config/i18n.js b/examples/using-i18n/config/i18n.js new file mode 100644 index 0000000000000..47506216036e6 --- /dev/null +++ b/examples/using-i18n/config/i18n.js @@ -0,0 +1,23 @@ +// Only one item MUST have the "default: true" key + +module.exports = { + en: { + default: true, + path: `en`, + locale: `en-US`, + dateFormat: `DD/MM/YYYY`, + siteLanguage: `en`, + ogLanguage: `en_US`, + defaultTitle: `Using i18n with Gatsby`, + defaultDescription: `Gatsby example site using MDX and dependency-free i18n`, + }, + de: { + path: `de`, + locale: `de-DE`, + dateFormat: `DD.MM.YYYY`, + siteLanguage: `de`, + ogLanguage: `de_DE`, + defaultTitle: `i18n mit Gatsby nutzen`, + defaultDescription: `Gatsby Beispielseite, die MDX und i18n (frei von dependencies) nutzt`, + }, +} diff --git a/examples/using-i18n/config/translations/de.json b/examples/using-i18n/config/translations/de.json new file mode 100644 index 0000000000000..fff311938a418 --- /dev/null +++ b/examples/using-i18n/config/translations/de.json @@ -0,0 +1,5 @@ +{ + "hello": "Hallo und herzlich Willkommen zu dieser i18n Beispielseite!", + "subline": "Lies doch ein paar coole Artikel von mir!", + "backToHome": "Zurück zur Startseite" +} diff --git a/examples/using-i18n/config/translations/en.json b/examples/using-i18n/config/translations/en.json new file mode 100644 index 0000000000000..47a8bcd4a1a47 --- /dev/null +++ b/examples/using-i18n/config/translations/en.json @@ -0,0 +1,5 @@ +{ + "hello": "Hello and welcome to this i18n example site!", + "subline": "You can read some of my cool articles I wrote!", + "backToHome": "Back to home" +} diff --git a/examples/using-i18n/gatsby-browser.js b/examples/using-i18n/gatsby-browser.js new file mode 100644 index 0000000000000..16f2e1b011320 --- /dev/null +++ b/examples/using-i18n/gatsby-browser.js @@ -0,0 +1,4 @@ +import CustomLayout from "./wrapPageElement" +import "./src/global.css" + +export const wrapPageElement = CustomLayout diff --git a/examples/using-i18n/gatsby-config.js b/examples/using-i18n/gatsby-config.js new file mode 100644 index 0000000000000..a721e24fac656 --- /dev/null +++ b/examples/using-i18n/gatsby-config.js @@ -0,0 +1,20 @@ +module.exports = { + plugins: [ + `gatsby-mdx`, + { + resolve: `gatsby-source-filesystem`, + options: { + path: `${__dirname}/config/translations`, + name: `translations`, + }, + }, + { + resolve: `gatsby-source-filesystem`, + options: { + path: `${__dirname}/blog`, + name: `blog`, + }, + }, + `gatsby-transformer-json`, + ], +} diff --git a/examples/using-i18n/gatsby-node.js b/examples/using-i18n/gatsby-node.js new file mode 100644 index 0000000000000..6553ccadbd78a --- /dev/null +++ b/examples/using-i18n/gatsby-node.js @@ -0,0 +1,126 @@ +const path = require(`path`) +const locales = require(`./config/i18n`) +const { + localizedSlug, + findKey, + removeTrailingSlash, +} = require(`./src/utils/gatsby-node-helpers`) + +exports.onCreatePage = ({ page, actions }) => { + const { createPage, deletePage } = actions + + // First delete the incoming page that was automatically created by Gatsby + // So everything in src/pages/ + deletePage(page) + + // Grab the keys ('en' & 'de') of locales and map over them + Object.keys(locales).map(lang => { + // Use the values defined in "locales" to construct the path + const localizedPath = locales[lang].default + ? page.path + : `${locales[lang].path}${page.path}` + + return createPage({ + // Pass on everything from the original page + ...page, + // Since page.path returns with a trailing slash (e.g. "/de/") + // We want to remove that + path: removeTrailingSlash(localizedPath), + // Pass in the locale as context to every page + // This context also gets passed to the src/components/layout file + // This should ensure that the locale is available on every page + context: { + locale: lang, + dateFormat: locales[lang].dateFormat, + }, + }) + }) +} + +// As you don't want to manually add the correct languge to the frontmatter of each file +// a new node is created automatically with the filename +// It's necessary to do that -- otherwise you couldn't filter by language +exports.onCreateNode = ({ node, actions }) => { + const { createNodeField } = actions + + // Check for "Mdx" type so that other files (e.g. images) are exluded + if (node.internal.type === `Mdx`) { + // Use path.basename + // https://nodejs.org/api/path.html#path_path_basename_path_ext + const name = path.basename(node.fileAbsolutePath, `.mdx`) + + // Check if post.name is "index" -- because that's the file for default language + // (In this case "en") + const isDefault = name === `index` + + // Find the key that has "default: true" set (in this case it returns "en") + const defaultKey = findKey(locales, o => o.default === true) + + // Files are defined with "name-with-dashes.lang.mdx" + // name returns "name-with-dashes.lang" + // So grab the lang from that string + // If it's the default language, pass the locale for that + const lang = isDefault ? defaultKey : name.split(`.`)[1] + + createNodeField({ node, name: `locale`, value: lang }) + createNodeField({ node, name: `isDefault`, value: isDefault }) + } +} + +exports.createPages = async ({ graphql, actions }) => { + const { createPage } = actions + + const postTemplate = require.resolve(`./src/templates/post.js`) + + const result = await graphql(` + { + blog: allFile(filter: { sourceInstanceName: { eq: "blog" } }) { + edges { + node { + relativeDirectory + childMdx { + fields { + locale + isDefault + } + frontmatter { + title + } + } + } + } + } + } + `) + + if (result.errors) { + console.error(result.errors) + return + } + + const postList = result.data.blog.edges + + postList.forEach(({ node: post }) => { + // All files for a blogpost are stored in a folder + // relativeDirectory is the name of the folder + const slug = post.relativeDirectory + + const title = post.childMdx.frontmatter.title + + // Use the fields created in exports.onCreateNode + const locale = post.childMdx.fields.locale + const isDefault = post.childMdx.fields.isDefault + + createPage({ + path: localizedSlug({ isDefault, locale, slug }), + component: postTemplate, + context: { + // Pass both the "title" and "locale" to find a unique file + // Only the title would not have been sufficient as articles could have the same title + // in different languages, e.g. because an english phrase is also common in german + locale, + title, + }, + }) + }) +} diff --git a/examples/using-i18n/gatsby-ssr.js b/examples/using-i18n/gatsby-ssr.js new file mode 100644 index 0000000000000..af4a0f043797d --- /dev/null +++ b/examples/using-i18n/gatsby-ssr.js @@ -0,0 +1,3 @@ +import CustomLayout from "./wrapPageElement" + +export const wrapPageElement = CustomLayout diff --git a/examples/using-i18n/package.json b/examples/using-i18n/package.json new file mode 100644 index 0000000000000..40f449374b28e --- /dev/null +++ b/examples/using-i18n/package.json @@ -0,0 +1,23 @@ +{ + "name": "using-i18n", + "private": true, + "description": "Gatsby example site using MDX and dependency-free i18n", + "author": "LekoArts <[email protected]>", + "version": "0.1.0", + "license": "MIT", + "scripts": { + "build": "gatsby build", + "develop": "gatsby develop", + "start": "npm run develop" + }, + "dependencies": { + "@mdx-js/mdx": "^0.20.3", + "@mdx-js/tag": "^0.20.3", + "gatsby": "^2.3.3", + "gatsby-mdx": "^0.4.4", + "gatsby-source-filesystem": "^2.0.28", + "gatsby-transformer-json": "^2.1.11", + "react": "^16.8.6", + "react-dom": "^16.8.6" + } +} diff --git a/examples/using-i18n/src/components/layout.js b/examples/using-i18n/src/components/layout.js new file mode 100644 index 0000000000000..6427f7ab9d345 --- /dev/null +++ b/examples/using-i18n/src/components/layout.js @@ -0,0 +1,21 @@ +import React from "react" +import Navigation from "./navigation" + +const LocaleContext = React.createContext() + +// Use the built-in Context API to make the "locale" available to every component in the tree +// This e.g. enables the LocalizedLink to function correctly +// As this component wraps every page (due to the wrapPageElement API) we can be sure to have +// the locale available everywhere! +const Layout = ({ children, pageContext: { locale } }) => ( + <LocaleContext.Provider value={{ locale }}> + <div className="global-wrapper"> + <header className="global-header"> + <Navigation /> + </header> + <main>{children}</main> + </div> + </LocaleContext.Provider> +) + +export { Layout, LocaleContext } diff --git a/examples/using-i18n/src/components/localizedLink.js b/examples/using-i18n/src/components/localizedLink.js new file mode 100644 index 0000000000000..a0e6b96917584 --- /dev/null +++ b/examples/using-i18n/src/components/localizedLink.js @@ -0,0 +1,23 @@ +import React from "react" +import { Link } from "gatsby" +import { LocaleContext } from "./layout" +import locales from "../../config/i18n" + +// Use the globally available context to choose the right path +const LocalizedLink = ({ to, ...props }) => { + const { locale } = React.useContext(LocaleContext) + + const isIndex = to === `/` + + // If it's the default language, don't do anything + // If it's another language, add the "path" + // However, if the homepage/index page is linked don't add the "to" + // Because otherwise this would add a trailing slash + const path = locales[locale].default + ? to + : `${locales[locale].path}${isIndex ? `` : `${to}`}` + + return <Link {...props} to={path} /> +} + +export default LocalizedLink diff --git a/examples/using-i18n/src/components/mdxLink.js b/examples/using-i18n/src/components/mdxLink.js new file mode 100644 index 0000000000000..c96c63c618495 --- /dev/null +++ b/examples/using-i18n/src/components/mdxLink.js @@ -0,0 +1,15 @@ +import React from "react" +import LocalizedLink from "./localizedLink" + +const isHash = str => /^#/.test(str) +const isInternal = to => /^\/(?!\/)/.test(to) + +// Only use <LocalizedLink /> for internal links +const MdxLink = ({ href, ...props }) => + isHash(href) || !isInternal(href) ? ( + <a {...props} href={href} /> + ) : ( + <LocalizedLink {...props} to={href} /> + ) + +export default MdxLink diff --git a/examples/using-i18n/src/components/navigation.js b/examples/using-i18n/src/components/navigation.js new file mode 100644 index 0000000000000..a41e3fde0127b --- /dev/null +++ b/examples/using-i18n/src/components/navigation.js @@ -0,0 +1,27 @@ +import React from "react" +import { Link } from "gatsby" +import LocalizedLink from "./localizedLink" +import useTranslations from "./useTranslations" + +const Navigation = () => { + const { backToHome } = useTranslations() + + return ( + <nav> + <LocalizedLink to="/" aria-label={backToHome}> + Homepage + </LocalizedLink> + <div> + <Link to="/" hrefLang="en"> + English + </Link> + {` `}/{` `} + <Link to="/de" hrefLang="de"> + Deutsch + </Link> + </div> + </nav> + ) +} + +export default Navigation diff --git a/examples/using-i18n/src/components/useTranslations.js b/examples/using-i18n/src/components/useTranslations.js new file mode 100644 index 0000000000000..468797f0d2de3 --- /dev/null +++ b/examples/using-i18n/src/components/useTranslations.js @@ -0,0 +1,42 @@ +import React from "react" +import { useStaticQuery, graphql } from "gatsby" +import { LocaleContext } from "./layout" + +function useTranslations() { + // Grab the locale (passed through context) from the Context Provider + const { locale } = React.useContext(LocaleContext) + // Query the JSON files in <rootDir>/i18n/translations + const { rawData } = useStaticQuery(query) + + // Simplify the response from GraphQL + const simplified = rawData.edges.map(item => { + return { + name: item.node.name, + translations: item.node.translations, + } + }) + + // Only return translations for the current locale + const { translations } = simplified.filter(lang => lang.name === locale)[0] + + return translations +} + +export default useTranslations + +const query = graphql` + query useTranslations { + rawData: allFile(filter: { sourceInstanceName: { eq: "translations" } }) { + edges { + node { + name + translations: childTranslationsJson { + hello + subline + backToHome + } + } + } + } + } +` diff --git a/examples/using-i18n/src/global.css b/examples/using-i18n/src/global.css new file mode 100644 index 0000000000000..19112081cac7b --- /dev/null +++ b/examples/using-i18n/src/global.css @@ -0,0 +1,71 @@ +*, +*:before, +*:after { + box-sizing: inherit; +} + +html { + text-rendering: optimizeLegibility; + box-sizing: border-box; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", + "Roboto Light", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", + "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", + "Segoe UI Symbol"; + color: #2a2a2a; +} + +a { + text-decoration: none; + box-shadow: inset 0 -2px 0 rgba(102, 51, 153, 0.25); + transition: all 0.3s ease-in-out; +} +a:hover { + color: black; + background: rgba(102, 51, 153, 0.2); +} + +body { + margin: 0; + padding: 0; +} + +.global-wrapper { + max-width: 1000px; + margin: 0 auto; + padding: 3rem 1.5rem; +} + +.global-header { + margin-bottom: 3rem; +} + +.global-header nav { + display: flex; + flex-wrap: nowrap; + justify-content: space-between; +} + +.post-list { + list-style: none; + padding-left: 0; +} + +.post-list li { + font-size: 1.25rem; + margin: 1rem 0; + display: flex; + justify-content: space-between; +} + +.post-list li div { + font-style: italic; + font-size: 1.1rem; +} + +.blogpost p { + font-size: 1.1rem; + letter-spacing: -0.003em; + line-height: 1.58; + --baseline-multiplier: 0.179; + --x-height-multiplier: 0.35; +} diff --git a/examples/using-i18n/src/pages/404.js b/examples/using-i18n/src/pages/404.js new file mode 100644 index 0000000000000..73b12971a4862 --- /dev/null +++ b/examples/using-i18n/src/pages/404.js @@ -0,0 +1,5 @@ +import React from "react" + +const NotFound = () => <React.Fragment>Page not found!</React.Fragment> + +export default NotFound diff --git a/examples/using-i18n/src/pages/index.js b/examples/using-i18n/src/pages/index.js new file mode 100644 index 0000000000000..13e3af7f0b5ec --- /dev/null +++ b/examples/using-i18n/src/pages/index.js @@ -0,0 +1,56 @@ +import React from "react" +import { graphql } from "gatsby" +import LocalizedLink from "../components/localizedLink" +import useTranslations from "../components/useTranslations" + +const Index = ({ data: { allMdx } }) => { + // useTranslations is aware of the global context (and therefore also "locale") + // so it'll automatically give back the right translations + const { hello, subline } = useTranslations() + + return ( + <> + <h1>{hello}</h1> + <p>{subline}</p> + <hr style={{ margin: `2rem 0` }} /> + <ul className="post-list"> + {allMdx.edges.map(({ node: post }) => ( + <li key={`${post.frontmatter.title}-${post.fields.locale}`}> + <LocalizedLink to={`/${post.parent.relativeDirectory}`}> + {post.frontmatter.title} + </LocalizedLink> + <div>{post.frontmatter.date}</div> + </li> + ))} + </ul> + </> + ) +} + +export default Index + +export const query = graphql` + query Index($locale: String!, $dateFormat: String!) { + allMdx( + filter: { fields: { locale: { eq: $locale } } } + sort: { fields: [frontmatter___date], order: DESC } + ) { + edges { + node { + frontmatter { + title + date(formatString: $dateFormat) + } + fields { + locale + } + parent { + ... on File { + relativeDirectory + } + } + } + } + } + } +` diff --git a/examples/using-i18n/src/templates/post.js b/examples/using-i18n/src/templates/post.js new file mode 100644 index 0000000000000..e8ca149a7871e --- /dev/null +++ b/examples/using-i18n/src/templates/post.js @@ -0,0 +1,38 @@ +import React from "react" +import { graphql } from "gatsby" +import MDXRenderer from "gatsby-mdx/mdx-renderer" +import MdxLink from "../components/mdxLink" + +// The normal <a> tag is modified here (so that internal links use gatsby-link/LocalizedLink +// More info: +// https://www.gatsbyjs.org/docs/mdx/customizing-components/ +const Post = ({ data: { mdx } }) => ( + <div className="blogpost"> + <h1>{mdx.frontmatter.title}</h1> + <MDXRenderer + components={{ + a: MdxLink, + }} + > + {mdx.code.body} + </MDXRenderer> + </div> +) + +export default Post + +export const query = graphql` + query Post($locale: String!, $title: String!) { + mdx( + frontmatter: { title: { eq: $title } } + fields: { locale: { eq: $locale } } + ) { + frontmatter { + title + } + code { + body + } + } + } +` diff --git a/examples/using-i18n/src/utils/gatsby-node-helpers.js b/examples/using-i18n/src/utils/gatsby-node-helpers.js new file mode 100644 index 0000000000000..9adfa0d1499cf --- /dev/null +++ b/examples/using-i18n/src/utils/gatsby-node-helpers.js @@ -0,0 +1,24 @@ +// Use a little helper function to remove trailing slashes from paths +exports.removeTrailingSlash = path => + path === `/` ? path : path.replace(/\/$/, ``) + +exports.localizedSlug = ({ isDefault, locale, slug }) => + isDefault ? `/${slug}` : `/${locale}/${slug}` + +// From lodash: +// https://github.com/lodash/lodash/blob/750067f42d3aa5f927604ece2c6df0ff2b2e9d72/findKey.js +exports.findKey = (object, predicate) => { + let result + if (object == null) { + return result + } + Object.keys(object).some(key => { + const value = object[key] + if (predicate(value, key, object)) { + result = key + return true + } + return false + }) + return result +} diff --git a/examples/using-i18n/wrapPageElement.js b/examples/using-i18n/wrapPageElement.js new file mode 100644 index 0000000000000..c48e306ecb1a1 --- /dev/null +++ b/examples/using-i18n/wrapPageElement.js @@ -0,0 +1,9 @@ +import React from "react" +import { Layout } from "./src/components/layout" + +// Pass all props (hence the ...props) to the layout component so it has access to things like pageContext or location +const wrapPageElement = ({ element, props }) => ( + <Layout {...props}>{element}</Layout> +) + +export default wrapPageElement
b3f434b38b9a5cbcbfb6d4afca260b39cdeb76a4
2022-07-19 17:13:14
Lennart
fix(gatsby-plugin-image): Correct type for getImage (#36169)
false
Correct type for getImage (#36169)
fix
diff --git a/packages/gatsby-plugin-image/src/components/hooks.ts b/packages/gatsby-plugin-image/src/components/hooks.ts index ce2bd9c5f99fd..038823ce15f97 100644 --- a/packages/gatsby-plugin-image/src/components/hooks.ts +++ b/packages/gatsby-plugin-image/src/components/hooks.ts @@ -27,8 +27,8 @@ export type IGatsbyImageDataParent<T = never> = T & { export type IGatsbyImageParent<T = never> = T & { gatsbyImage: IGatsbyImageData } -export type FileNode = Node & { - childImageSharp?: IGatsbyImageDataParent<Node> +export type FileNode = Partial<Node> & { + childImageSharp?: IGatsbyImageDataParent<Partial<Node>> } const isGatsbyImageData = ( @@ -54,7 +54,10 @@ export type ImageDataLike = | IGatsbyImageParent | IGatsbyImageData -export const getImage = (node: ImageDataLike): IGatsbyImageData | undefined => { +export const getImage = ( + node: ImageDataLike | null +): IGatsbyImageData | undefined => { + // This checks both for gatsbyImageData and gatsbyImage if (isGatsbyImageData(node)) { return node }
857ffd95828b17db592a4ed895746649b3d64564
2018-01-27 22:39:17
Alvis Tang
fix(gatsby-link): correct dependency declaration (#3707)
false
correct dependency declaration (#3707)
fix
diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index 1944e1a36bde1..17c8d497fcfb5 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -17,10 +17,13 @@ "license": "MIT", "devDependencies": { "babel-cli": "^6.26.0", - "cross-env": "^5.0.5", - "react-router-dom": "^4.2.2" + "cross-env": "^5.0.5" + }, + "peerDependencies": { + "gatsby": "^1.0.0" }, "dependencies": { + "@types/react-router-dom": "^4.2.2", "babel-runtime": "^6.26.0", "prop-types": "^15.5.8", "ric": "^1.3.0"
ae5fa1fdc0dba42c42f5db07e868c4f32c754ff7
2019-10-16 18:10:26
Nievac
chore(docs): Title Casing update (#18708)
false
Title Casing update (#18708)
chore
diff --git a/docs/tutorial/writing-documentation-with-docz.md b/docs/tutorial/writing-documentation-with-docz.md index fda1f9a15f0ae..5106eaad9c405 100644 --- a/docs/tutorial/writing-documentation-with-docz.md +++ b/docs/tutorial/writing-documentation-with-docz.md @@ -1,5 +1,5 @@ --- -title: "Writing documentation with Docz" +title: "Writing Documentation with Docz" --- Writing good documentation is important for your project maintainers (and for your future self). [Docz](https://www.docz.site) is a very nice documentation generator. It enables you to write interactive documentation for your React components with very little effort.
2d942ed5f319625fcabd06f708c3fc7331d975e7
2019-09-14 23:43:01
renovate[bot]
fix: update dependency @babel/parser to ^7.6.0 (#17620)
false
update dependency @babel/parser to ^7.6.0 (#17620)
fix
diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json index 28ea96104dfca..63b63e4355ea0 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/package.json +++ b/packages/gatsby-transformer-javascript-frontmatter/package.json @@ -5,7 +5,7 @@ "author": "Jacob Bolda <[email protected]>", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme", "dependencies": { - "@babel/parser": "^7.5.5", + "@babel/parser": "^7.6.0", "@babel/runtime": "^7.6.0", "@babel/traverse": "^7.6.0", "bluebird": "^3.5.5" diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json index 64554696a9754..8328da0eb8c33 100644 --- a/packages/gatsby-transformer-javascript-static-exports/package.json +++ b/packages/gatsby-transformer-javascript-static-exports/package.json @@ -7,7 +7,7 @@ "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { - "@babel/parser": "^7.5.5", + "@babel/parser": "^7.6.0", "@babel/runtime": "^7.6.0", "@babel/traverse": "^7.6.0", "bluebird": "^3.5.5" diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 1e70e5355bd5a..443780a47fe67 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -12,7 +12,7 @@ "dependencies": { "@babel/code-frame": "^7.5.5", "@babel/core": "^7.6.0", - "@babel/parser": "^7.5.5", + "@babel/parser": "^7.6.0", "@babel/polyfill": "^7.6.0", "@babel/runtime": "^7.6.0", "@babel/traverse": "^7.6.0",
4a0c103fd5775873f870ed890c95908582c52aeb
2019-11-25 16:29:15
Michael Caveney
chore(starters): add gatsby-minimalist-starter (#19724)
false
add gatsby-minimalist-starter (#19724)
chore
diff --git a/docs/starters.yml b/docs/starters.yml index 50c4b396141a4..8c8c6d6a86f3e 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -4479,6 +4479,18 @@ - Based on the official Gatsby starter blog - Uses TailwindCSS - Uses PostCSS +- url: https://gatsby-minimalist-starter.netlify.com/ + repo: https://github.com/dylanesque/Gatsby-Minimalist-Starter + description: A minimalist, general-purpose Gatsby starter + tags: + - SEO + - Markdown + - Styling:CSS-in-JS + features: + - Less starting boilerplate than the Gatsby default starter + - Layout.css includes checklist of initial design system decisions to make + - Uses Emotion + - Uses CSS-In-JS - url: https://gastby-starter-zeevo.netlify.com/ repo: https://github.com/zeevosec/gatsby-starter-zeevo description: Yet another Blog starter with a different style
491d66273910d31a636c7e028aedb404b5e3d5c2
2019-09-10 22:12:53
John Letey
chore(gatsby): Add deprecation msg for `__experimentalThemes` (#17534)
false
Add deprecation msg for `__experimentalThemes` (#17534)
chore
diff --git a/packages/gatsby/src/bootstrap/index.js b/packages/gatsby/src/bootstrap/index.js index ed0d2a1386768..5368d09a8e9ae 100644 --- a/packages/gatsby/src/bootstrap/index.js +++ b/packages/gatsby/src/bootstrap/index.js @@ -88,7 +88,9 @@ module.exports = async (args: BootstrapArgs) => { // theme gatsby configs can be functions or objects if (config && config.__experimentalThemes) { - // TODO: deprecation message for old __experimentalThemes + report.warn( + `The gatsby-config key "__experimentalThemes" has been deprecated. Please use the "plugins" key instead.` + ) const themes = await loadThemes(config, { useLegacyThemes: true }) config = themes.config
d9fe5df4effb7a4d59a798025626682542318007
2022-03-16 17:50:34
Sean Parmelee
feat(gatsby-source-graphql): upgrade apollo & graphql-tools deps (#34772)
false
upgrade apollo & graphql-tools deps (#34772)
feat
diff --git a/docs/docs/how-to/plugins-and-themes/creating-a-source-plugin.md b/docs/docs/how-to/plugins-and-themes/creating-a-source-plugin.md index 93ed010168bce..de7138f43b16f 100644 --- a/docs/docs/how-to/plugins-and-themes/creating-a-source-plugin.md +++ b/docs/docs/how-to/plugins-and-themes/creating-a-source-plugin.md @@ -505,12 +505,14 @@ Now in your plugin's `gatsby-node.js` file, you can implement a new API, called Import the `createRemoteFileNode` helper from `gatsby-source-filesystem`, which will download a file from a remote location and create a `File` node for you. ```javascript:title=source-plugin/gatsby-node.js -const { ApolloClient } = require("apollo-client") -const { InMemoryCache } = require("apollo-cache-inmemory") -const { split } = require("apollo-link") -const { HttpLink } = require("apollo-link-http") -const { WebSocketLink } = require("apollo-link-ws") -const { getMainDefinition } = require("apollo-utilities") +const { + ApolloClient, + InMemoryCache, + split, + HttpLink, +} = require("@apollo/client") +const { WebSocketLink } = require("@apollo/client/link/ws") +const { getMainDefinition } = require("@apollo/client/utilities") const fetch = require("node-fetch") const gql = require("graphql-tag") const WebSocket = require("ws") diff --git a/examples/creating-source-plugins/source-plugin/gatsby-node.js b/examples/creating-source-plugins/source-plugin/gatsby-node.js index 8331e060dc639..73669de83121e 100644 --- a/examples/creating-source-plugins/source-plugin/gatsby-node.js +++ b/examples/creating-source-plugins/source-plugin/gatsby-node.js @@ -1,11 +1,13 @@ const { createRemoteFileNode } = require(`gatsby-source-filesystem`) const WebSocket = require("ws") -const { ApolloClient } = require("apollo-client") -const { InMemoryCache } = require("apollo-cache-inmemory") -const { split } = require("apollo-link") -const { HttpLink } = require("apollo-link-http") -const { WebSocketLink } = require("apollo-link-ws") -const { getMainDefinition } = require("apollo-utilities") +const { + ApolloClient, + InMemoryCache, + split, + HttpLink, +} = require("@apollo/client") +const { WebSocketLink } = require("@apollo/client/link/ws") +const { getMainDefinition } = require("@apollo/client/utilities") const fetch = require("node-fetch") const gql = require("graphql-tag") @@ -145,9 +147,7 @@ exports.sourceNodes = async function sourceNodes( // touch nodes to ensure they aren't garbage collected getNodesByType(POST_NODE_TYPE).forEach(node => touchNode(node)) - getNodesByType(AUTHOR_NODE_TYPE).forEach(node => - touchNode(node) - ) + getNodesByType(AUTHOR_NODE_TYPE).forEach(node => touchNode(node)) // listen for updates using subscriptions from the API if (pluginOptions.preview) { diff --git a/examples/creating-source-plugins/source-plugin/package.json b/examples/creating-source-plugins/source-plugin/package.json index 618174234d3ae..cc5bcc7c0a287 100644 --- a/examples/creating-source-plugins/source-plugin/package.json +++ b/examples/creating-source-plugins/source-plugin/package.json @@ -13,12 +13,7 @@ "author": "Kyle Gill <[email protected]>", "license": "MIT", "dependencies": { - "apollo-cache-inmemory": "^1.6.6", - "apollo-client": "^2.6.10", - "apollo-link": "^1.2.14", - "apollo-link-http": "^1.5.17", - "apollo-link-ws": "^1.0.20", - "apollo-utilities": "^1.3.4", + "@apollo/client": "^3.5.8", "gatsby-source-filesystem": "next", "graphql": "^15.3.0", "graphql-tag": "^2.11.0", diff --git a/packages/gatsby-source-graphql/README.md b/packages/gatsby-source-graphql/README.md index b17f3135adea9..1762af7a9eb6d 100644 --- a/packages/gatsby-source-graphql/README.md +++ b/packages/gatsby-source-graphql/README.md @@ -154,7 +154,7 @@ module.exports = { ## Composing Apollo Links for production network setup -Network requests can fail, return errors or take too long. Use [Apollo Link](https://www.apollographql.com/docs/link/) to +Network requests can fail, return errors or take too long. Use [Apollo Link](https://www.apollographql.com/docs/react/api/link/introduction/) to add retries, error handling, logging and more to your GraphQL requests. Use the plugin's `createLink` option to add a custom Apollo Link to your GraphQL requests. @@ -162,18 +162,18 @@ Use the plugin's `createLink` option to add a custom Apollo Link to your GraphQL You can compose different types of links, depending on the functionality you're trying to achieve. The most common links are: -- `apollo-link-retry` for retrying queries that fail or time out -- `apollo-link-error` for error handling -- `apollo-link-http` for sending queries in http requests (used by default) +- `@apollo/client/link/retry` for retrying queries that fail or time out +- `@apollo/client/link/error` for error handling +- `@apollo/client/link/http` for sending queries in http requests (used by default) For more explanation of how Apollo Links work together, check out this Medium article: [Productionizing Apollo Links](https://medium.com/@joanvila/productionizing-apollo-links-4cdc11d278eb). -Here's an example of using the HTTP link with retries (using [apollo-link-retry](https://www.npmjs.com/package/apollo-link-retry)): +Here's an example of using the HTTP link with retries (using [@apollo/client/link/retry](https://www.apollographql.com/docs/react/api/link/apollo-link-retry/)): ```js // gatsby-config.js -const { createHttpLink } = require(`apollo-link-http`) -const { RetryLink } = require(`apollo-link-retry`) +const { createHttpLink, from } = require(`@apollo/client`) +const { RetryLink } = require(`@apollo/client/link/retry`) const retryLink = new RetryLink({ delay: { @@ -200,10 +200,7 @@ module.exports = { // `pluginOptions`: all plugin options // (i.e. in this example object with keys `typeName`, `fieldName`, `url`, `createLink`) createLink: pluginOptions => - ApolloLink.from([ - retryLink, - createHttpLink({ uri: pluginOptions.url }), - ]), + from([retryLink, createHttpLink({ uri: pluginOptions.url })]), }, }, ], diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json index efab67b4d2672..826ef6d8f302b 100644 --- a/packages/gatsby-source-graphql/package.json +++ b/packages/gatsby-source-graphql/package.json @@ -7,12 +7,11 @@ "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { + "@apollo/client": "^3.5.8", "@babel/runtime": "^7.15.4", - "@graphql-tools/links": "^7.1.0", - "@graphql-tools/utils": "^7.10.0", - "@graphql-tools/wrap": "^7.0.8", - "apollo-link": "1.2.14", - "apollo-link-http": "^1.5.17", + "@graphql-tools/links": "^8.2.1", + "@graphql-tools/utils": "^8.6.1", + "@graphql-tools/wrap": "^8.3.3", "dataloader": "^2.0.0", "gatsby-core-utils": "^3.11.0-next.0", "invariant": "^2.2.4", diff --git a/packages/gatsby-source-graphql/src/__tests__/gatsby-node.js b/packages/gatsby-source-graphql/src/__tests__/gatsby-node.js index 14069de5af5f8..ef0e0425fc4d7 100644 --- a/packages/gatsby-source-graphql/src/__tests__/gatsby-node.js +++ b/packages/gatsby-source-graphql/src/__tests__/gatsby-node.js @@ -5,12 +5,12 @@ jest.mock(`@graphql-tools/wrap`, () => { RenameTypes: jest.fn(), } }) -jest.mock(`apollo-link-http`, () => { +jest.mock(`@apollo/client`, () => { return { createHttpLink: jest.fn(), } }) -const { createHttpLink } = require(`apollo-link-http`) +const { createHttpLink } = require(`@apollo/client`) const { testPluginOptionsSchema } = require(`gatsby-plugin-utils`) jest.mock(`gatsby/graphql`, () => { const graphql = jest.requireActual(`gatsby/graphql`) diff --git a/packages/gatsby-source-graphql/src/batching/__tests__/dataloader-link.js b/packages/gatsby-source-graphql/src/batching/__tests__/dataloader-link.js index 0c162201b1672..678f508b89573 100644 --- a/packages/gatsby-source-graphql/src/batching/__tests__/dataloader-link.js +++ b/packages/gatsby-source-graphql/src/batching/__tests__/dataloader-link.js @@ -1,5 +1,5 @@ const { parse } = require(`gatsby/graphql`) -const { execute } = require(`apollo-link`) +const { execute } = require(`@apollo/client`) const { createDataloaderLink } = require(`../dataloader-link`) const sampleQuery = parse(`{ foo }`) diff --git a/packages/gatsby-source-graphql/src/batching/dataloader-link.js b/packages/gatsby-source-graphql/src/batching/dataloader-link.js index 3ff971dce66c3..4afcb4b41c7d8 100644 --- a/packages/gatsby-source-graphql/src/batching/dataloader-link.js +++ b/packages/gatsby-source-graphql/src/batching/dataloader-link.js @@ -1,5 +1,5 @@ const DataLoader = require(`dataloader`) -const { ApolloLink, Observable } = require(`apollo-link`) +const { ApolloLink, Observable } = require(`@apollo/client`) const { print } = require(`gatsby/graphql`) const { merge, resolveResult } = require(`./merge-queries`) diff --git a/packages/gatsby-source-graphql/src/gatsby-node.js b/packages/gatsby-source-graphql/src/gatsby-node.js index 89532c9f2b1e5..a325f2a2ca9d5 100644 --- a/packages/gatsby-source-graphql/src/gatsby-node.js +++ b/packages/gatsby-source-graphql/src/gatsby-node.js @@ -6,7 +6,7 @@ const { RenameTypes, } = require(`@graphql-tools/wrap`) const { linkToExecutor } = require(`@graphql-tools/links`) -const { createHttpLink } = require(`apollo-link-http`) +const { createHttpLink } = require(`@apollo/client`) const { fetchWrapper } = require(`./fetch`) const { createDataloaderLink } = require(`./batching/dataloader-link`) diff --git a/yarn.lock b/yarn.lock index 873420362ae50..b9db4fb7f4857 100644 --- a/yarn.lock +++ b/yarn.lock @@ -106,24 +106,23 @@ "@algolia/logger-common" "4.9.1" "@algolia/requester-common" "4.9.1" -"@apollo/client@^3.2.5": - version "3.3.15" - resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.3.15.tgz#bdd230894aac4beb8ade2b472a1d3c9ea6152812" - integrity sha512-/WQmNvLEZMA0mA3u+FkEPTXKzxZD/KhyO7WlbKcy3zKGrXKza83tAbNMzsitQE7DTcSc3DLEcIu1Z5Rc7PFq0Q== +"@apollo/client@^3.5.8": + version "3.5.8" + resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.5.8.tgz#7215b974c5988b6157530eb69369209210349fe0" + integrity sha512-MAm05+I1ullr64VLpZwon/ISnkMuNLf6vDqgo9wiMhHYBGT4yOAbAIseRdjCHZwfSx/7AUuBgaTNOssZPIr6FQ== dependencies: "@graphql-typed-document-node/core" "^3.0.0" - "@types/zen-observable" "^0.8.0" "@wry/context" "^0.6.0" - "@wry/equality" "^0.4.0" - fast-json-stable-stringify "^2.0.0" - graphql-tag "^2.12.0" + "@wry/equality" "^0.5.0" + "@wry/trie" "^0.3.0" + graphql-tag "^2.12.3" hoist-non-react-statics "^3.3.2" - optimism "^0.15.0" + optimism "^0.16.1" prop-types "^15.7.2" - symbol-observable "^2.0.0" - ts-invariant "^0.7.0" - tslib "^1.10.0" - zen-observable "^0.8.14" + symbol-observable "^4.0.0" + ts-invariant "^0.9.4" + tslib "^2.3.0" + zen-observable-ts "^1.2.0" "@ardatan/[email protected]": version "0.0.6" @@ -1859,15 +1858,15 @@ meros "^1.1.2" subscriptions-transport-ws "^0.9.18" -"@graphql-tools/batch-execute@^7.1.2": - version "7.1.2" - resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-7.1.2.tgz#35ba09a1e0f80f34f1ce111d23c40f039d4403a0" - integrity sha512-IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg== +"@graphql-tools/batch-execute@^8.3.1": + version "8.3.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-8.3.1.tgz#0b74c54db5ac1c5b9a273baefc034c2343ebbb74" + integrity sha512-63kHY8ZdoO5FoeDXYHnAak1R3ysMViMPwWC2XUblFckuVLMUPmB2ONje8rjr2CvzWBHAW8c1Zsex+U3xhKtGIA== dependencies: - "@graphql-tools/utils" "^7.7.0" + "@graphql-tools/utils" "^8.5.1" dataloader "2.0.0" - tslib "~2.2.0" - value-or-promise "1.0.6" + tslib "~2.3.0" + value-or-promise "1.0.11" "@graphql-tools/delegate@^6.2.4": version "6.2.4" @@ -1881,18 +1880,17 @@ is-promise "4.0.0" tslib "~2.0.1" -"@graphql-tools/delegate@^7.1.0", "@graphql-tools/delegate@^7.1.5": - version "7.1.5" - resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-7.1.5.tgz#0b027819b7047eff29bacbd5032e34a3d64bd093" - integrity sha512-bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g== +"@graphql-tools/delegate@^8.4.1", "@graphql-tools/delegate@^8.4.2": + version "8.4.3" + resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-8.4.3.tgz#ad73ed7cc3b4cad9242c6d4835a5ae0b640f7164" + integrity sha512-hKTJdJXJnKL0+2vpU+Kt7OHQTIXZ9mBmNBwHsYiG5WNArz/vNI7910r6TC2XMf/e7zhyyK+mXxMDBmDQkkJagA== dependencies: - "@ardatan/aggregate-error" "0.0.6" - "@graphql-tools/batch-execute" "^7.1.2" - "@graphql-tools/schema" "^7.1.5" - "@graphql-tools/utils" "^7.7.1" + "@graphql-tools/batch-execute" "^8.3.1" + "@graphql-tools/schema" "^8.3.1" + "@graphql-tools/utils" "^8.5.4" dataloader "2.0.0" - tslib "~2.2.0" - value-or-promise "1.0.6" + tslib "~2.3.0" + value-or-promise "1.0.11" "@graphql-tools/graphql-file-loader@^6.0.0": version "6.2.4" @@ -1922,18 +1920,17 @@ fs-extra "9.0.1" tslib "~2.0.1" -"@graphql-tools/links@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@graphql-tools/links/-/links-7.1.0.tgz#239eaf4832a9871d490fec272766916688d6e7fc" - integrity sha512-8cJLs3ko0Zq0agJiFiHuAZ27OXbfgRF5JtVtIx8q2RfjVN0sss9QeetrTBjc2XfTj5HYZr6BHqqlyMMA4OXp7A== +"@graphql-tools/links@^8.2.1": + version "8.2.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/links/-/links-8.2.1.tgz#88fee599963d25f98be2b1ec33d5f293d498d1ac" + integrity sha512-J0igz42eKh/RQxDZPdEE4YiztY3zWTBcsn/bUtJp52XKNj0EIO0fR6WLEocT6uxgWCNnWYPOQUaf7bEgeW44Vg== dependencies: - "@graphql-tools/delegate" "^7.1.0" - "@graphql-tools/utils" "^7.7.0" - apollo-upload-client "14.1.3" - cross-fetch "3.1.2" + "@graphql-tools/delegate" "^8.4.1" + "@graphql-tools/utils" "^8.5.1" + apollo-upload-client "16.0.0" + cross-fetch "3.1.4" form-data "4.0.0" - is-promise "4.0.0" - tslib "~2.1.0" + tslib "~2.3.0" "@graphql-tools/load@^6.0.0": version "6.2.4" @@ -1959,6 +1956,14 @@ "@graphql-tools/utils" "^6.2.4" tslib "~2.0.1" +"@graphql-tools/merge@^8.2.1": + version "8.2.2" + resolved "https://registry.yarnpkg.com/@graphql-tools/merge/-/merge-8.2.2.tgz#433566c662a33f5a9c3cc5f3ce3753fb0019477a" + integrity sha512-2DyqhIOMUMKbCPqo8p6xSdll2OBcBxGdOrxlJJlFQvinsSaYqp/ct3dhAxNtzaIcvSVgXvttQqfD7O2ziFtE7Q== + dependencies: + "@graphql-tools/utils" "^8.5.1" + tslib "~2.3.0" + "@graphql-tools/schema@^6.2.4": version "6.2.4" resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-6.2.4.tgz#cc4e9f5cab0f4ec48500e666719d99fc5042481d" @@ -1967,14 +1972,15 @@ "@graphql-tools/utils" "^6.2.4" tslib "~2.0.1" -"@graphql-tools/schema@^7.1.5": - version "7.1.5" - resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-7.1.5.tgz#07b24e52b182e736a6b77c829fc48b84d89aa711" - integrity sha512-uyn3HSNSckf4mvQSq0Q07CPaVZMNFCYEVxroApOaw802m9DcZPgf9XVPy/gda5GWj9AhbijfRYVTZQgHnJ4CXA== +"@graphql-tools/schema@^8.3.1": + version "8.3.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/schema/-/schema-8.3.1.tgz#1ee9da494d2da457643b3c93502b94c3c4b68c74" + integrity sha512-3R0AJFe715p4GwF067G5i0KCr/XIdvSfDLvTLEiTDQ8V/hwbOHEKHKWlEBHGRQwkG5lwFQlW1aOn7VnlPERnWQ== dependencies: - "@graphql-tools/utils" "^7.1.2" - tslib "~2.2.0" - value-or-promise "1.0.6" + "@graphql-tools/merge" "^8.2.1" + "@graphql-tools/utils" "^8.5.1" + tslib "~2.3.0" + value-or-promise "1.0.11" "@graphql-tools/url-loader@^6.0.0": version "6.3.0" @@ -2000,14 +2006,12 @@ camel-case "4.1.1" tslib "~2.0.1" -"@graphql-tools/utils@^7.1.2", "@graphql-tools/utils@^7.10.0", "@graphql-tools/utils@^7.7.0", "@graphql-tools/utils@^7.7.1", "@graphql-tools/utils@^7.8.1": - version "7.10.0" - resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-7.10.0.tgz#07a4cb5d1bec1ff1dc1d47a935919ee6abd38699" - integrity sha512-d334r6bo9mxdSqZW6zWboEnnOOFRrAPVQJ7LkU8/6grglrbcu6WhwCLzHb90E94JI3TD3ricC3YGbUqIi9Xg0w== +"@graphql-tools/utils@^8.5.1", "@graphql-tools/utils@^8.5.3", "@graphql-tools/utils@^8.5.4", "@graphql-tools/utils@^8.6.1": + version "8.6.1" + resolved "https://registry.yarnpkg.com/@graphql-tools/utils/-/utils-8.6.1.tgz#52c7eb108f2ca2fd01bdba8eef85077ead1bf882" + integrity sha512-uxcfHCocp4ENoIiovPxUWZEHOnbXqj3ekWc0rm7fUhW93a1xheARNHcNKhwMTR+UKXVJbTFQdGI1Rl5XdyvDBg== dependencies: - "@ardatan/aggregate-error" "0.0.6" - camel-case "4.1.2" - tslib "~2.2.0" + tslib "~2.3.0" "@graphql-tools/wrap@^6.2.4": version "6.2.4" @@ -2020,16 +2024,16 @@ is-promise "4.0.0" tslib "~2.0.1" -"@graphql-tools/wrap@^7.0.8": - version "7.0.8" - resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-7.0.8.tgz#ad41e487135ca3ea1ae0ea04bb3f596177fb4f50" - integrity sha512-1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg== +"@graphql-tools/wrap@^8.3.3": + version "8.3.3" + resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-8.3.3.tgz#014aa04a6cf671ffe477516255d1134777da056a" + integrity sha512-TpXN1S4Cv+oMA1Zsg9Nu4N9yrFxLuJkX+CTtSRrrdfETGHIxqfyDkm5slPDCckxP+RILA00g8ny2jzsYyNvX1w== dependencies: - "@graphql-tools/delegate" "^7.1.5" - "@graphql-tools/schema" "^7.1.5" - "@graphql-tools/utils" "^7.8.1" - tslib "~2.2.0" - value-or-promise "1.0.6" + "@graphql-tools/delegate" "^8.4.2" + "@graphql-tools/schema" "^8.3.1" + "@graphql-tools/utils" "^8.5.3" + tslib "~2.3.0" + value-or-promise "1.0.11" "@graphql-typed-document-node/core@^3.0.0": version "3.1.0" @@ -4982,11 +4986,6 @@ resolved "https://registry.yarnpkg.com/@types/yoga-layout/-/yoga-layout-1.9.2.tgz#efaf9e991a7390dc081a0b679185979a83a9639a" integrity sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw== -"@types/zen-observable@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.0.tgz#8b63ab7f1aa5321248aad5ac890a485656dcea4d" - integrity sha512-te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg== - "@typescript-eslint/eslint-plugin@^4.33.0": version "4.33.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz#c24dc7c8069c7706bc40d99f6fa87edcb2005276" @@ -5262,19 +5261,12 @@ dependencies: tslib "^2.1.0" -"@wry/equality@^0.1.2": - version "0.1.9" - resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.1.9.tgz#b13e18b7a8053c6858aa6c85b54911fb31e3a909" - integrity sha512-mB6ceGjpMGz1ZTza8HYnrPGos2mC6So4NhS1PtZ8s4Qt0K7fBiIGhpSxUbQmhwcSWE3no+bYxmI2OL6KuXYmoQ== - dependencies: - tslib "^1.9.3" - -"@wry/equality@^0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.4.0.tgz#474491869a8d0590f4a33fd2a4850a77a0f63408" - integrity sha512-DxN/uawWfhRbgYE55zVCPOoe+jvsQ4m7PT1Wlxjyb/LCCLuU1UsucV2BbCxFAX8bjcSueFBbB5Qfj1Zfe8e7Fw== +"@wry/equality@^0.5.0": + version "0.5.2" + resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.5.2.tgz#72c8a7a7d884dff30b612f4f8464eba26c080e73" + integrity sha512-oVMxbUXL48EV/C0/M7gLVsoK6qRHPS85x8zECofEZOVvxGmIPLA9o5Z27cc2PoAyZz1S2VoM2A7FLAnpfGlneA== dependencies: - tslib "^2.1.0" + tslib "^2.3.0" "@wry/trie@^0.3.0": version "0.3.0" @@ -5688,52 +5680,12 @@ [email protected]: resolved "https://registry.yarnpkg.com/apache-md5/-/apache-md5-1.1.2.tgz#ee49736b639b4f108b6e9e626c6da99306b41692" integrity sha1-7klza2ObTxCLbp5ibG2pkwa0FpI= -apollo-link-http-common@^0.2.16: - version "0.2.16" - resolved "https://registry.yarnpkg.com/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz#756749dafc732792c8ca0923f9a40564b7c59ecc" - integrity sha512-2tIhOIrnaF4UbQHf7kjeQA/EmSorB7+HyJIIrUjJOKBgnXwuexi8aMecRlqTIDWcyVXCeqLhUnztMa6bOH/jTg== - dependencies: - apollo-link "^1.2.14" - ts-invariant "^0.4.0" - tslib "^1.9.3" - -apollo-link-http@^1.5.17: - version "1.5.17" - resolved "https://registry.yarnpkg.com/apollo-link-http/-/apollo-link-http-1.5.17.tgz#499e9f1711bf694497f02c51af12d82de5d8d8ba" - integrity sha512-uWcqAotbwDEU/9+Dm9e1/clO7hTB2kQ/94JYcGouBVLjoKmTeJTUPQKcJGpPwUjZcSqgYicbFqQSoJIW0yrFvg== - dependencies: - apollo-link "^1.2.14" - apollo-link-http-common "^0.2.16" - tslib "^1.9.3" - [email protected], apollo-link@^1.2.14: - version "1.2.14" - resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.14.tgz#3feda4b47f9ebba7f4160bef8b977ba725b684d9" - integrity sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg== - dependencies: - apollo-utilities "^1.3.0" - ts-invariant "^0.4.0" - tslib "^1.9.3" - zen-observable-ts "^0.8.21" - [email protected]: - version "14.1.3" - resolved "https://registry.yarnpkg.com/apollo-upload-client/-/apollo-upload-client-14.1.3.tgz#91f39011897bd08e99c0de0164e77ad2f3402247" - integrity sha512-X2T+7pHk5lcaaWnvP9h2tuAAMCzOW6/9juedQ0ZuGp3Ufl81BpDISlCs0o6u29wBV0RRT/QpMU2gbP+3FCfVpQ== - dependencies: - "@apollo/client" "^3.2.5" - "@babel/runtime" "^7.12.5" - extract-files "^9.0.0" - -apollo-utilities@^1.3.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.3.2.tgz#8cbdcf8b012f664cd6cb5767f6130f5aed9115c9" - integrity sha512-JWNHj8XChz7S4OZghV6yc9FNnzEXj285QYp/nLNh943iObycI5GTDO3NGR9Dth12LRrSFMeDOConPfPln+WGfg== [email protected]: + version "16.0.0" + resolved "https://registry.yarnpkg.com/apollo-upload-client/-/apollo-upload-client-16.0.0.tgz#704c9bc21e12bd4687172876eb927cf756b2e524" + integrity sha512-aLhYucyA0T8aBEQ5g+p13qnR9RUyL8xqb8FSZ7e/Kw2KUOsotLUlFluLobqaE7JSUFwc6sKfXIcwB7y4yEjbZg== dependencies: - "@wry/equality" "^0.1.2" - fast-json-stable-stringify "^2.0.0" - ts-invariant "^0.4.0" - tslib "^1.9.3" + extract-files "^11.0.0" append-buffer@^1.0.2: version "1.0.2" @@ -7028,14 +6980,6 @@ [email protected]: pascal-case "^3.1.1" tslib "^1.10.0" [email protected], camel-case@^4.1.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" - integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== - dependencies: - pascal-case "^3.1.2" - tslib "^2.0.3" - camel-case@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" @@ -7043,6 +6987,14 @@ camel-case@^3.0.0: no-case "^2.2.0" upper-case "^1.1.1" +camel-case@^4.1.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + [email protected], camelcase-css@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" @@ -8364,10 +8316,10 @@ [email protected]: dependencies: node-fetch "2.6.1" [email protected]: - version "3.1.2" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.2.tgz#ee0c2f18844c4fde36150c2a4ddc068d20c1bc41" - integrity sha512-+JhD65rDNqLbGmB3Gzs3HrEKC0aQnD+XA3SY6RjgkF88jV2q5cTc5+CwxlS3sdmLk98gpPt5CF9XRnPdlxZe6w== [email protected]: + version "3.1.4" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.4.tgz#9723f3a3a247bf8b89039f3a380a9244e8fa2f39" + integrity sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ== dependencies: node-fetch "2.6.1" @@ -10711,10 +10663,10 @@ extglob@^2.0.4: snapdragon "^0.8.1" to-regex "^3.0.1" -extract-files@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-9.0.0.tgz#8a7744f2437f81f5ed3250ed9f1550de902fe54a" - integrity sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ== +extract-files@^11.0.0: + version "11.0.0" + resolved "https://registry.yarnpkg.com/extract-files/-/extract-files-11.0.0.tgz#b72d428712f787eef1f5193aff8ab5351ca8469a" + integrity sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ== extract-zip@^2.0.0: version "2.0.1" @@ -12081,10 +12033,10 @@ graphql-request@^1.8.2: dependencies: cross-fetch "2.2.2" -graphql-tag@^2.12.0: - version "2.12.3" - resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.3.tgz#ac47bf9d51c67c68ada8a33fd527143ed15bb647" - integrity sha512-5wJMjSvj30yzdciEuk9dPuUBUR56AqDi3xncoYQl1i42pGdSqOJrJsdb/rz5BDoy+qoGvQwABcBeF0xXY3TrKw== +graphql-tag@^2.12.3: + version "2.12.6" + resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1" + integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg== dependencies: tslib "^2.1.0" @@ -17704,10 +17656,10 @@ opentracing@^0.14.5, opentracing@^0.14.7, opentracing@~0.14.3: resolved "https://registry.yarnpkg.com/opentracing/-/opentracing-0.14.7.tgz#25d472bd0296dc0b64d7b94cbc995219031428f5" integrity sha512-vz9iS7MJ5+Bp1URw8Khvdyw1H/hGvzHWlKQ7eRrQojSCDL1/SrWfrY9QebLw97n2deyRtzHRC3MkQfVNUCo91Q== -optimism@^0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.15.0.tgz#c65e694bec7ce439f41e9cb8fc261a72d798125b" - integrity sha512-KLKl3Kb7hH++s9ewRcBhmfpXgXF0xQ+JZ3xQFuPjnoT6ib2TDmYyVkKENmGxivsN2G3VRxpXuauCkB4GYOhtPw== +optimism@^0.16.1: + version "0.16.1" + resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.16.1.tgz#7c8efc1f3179f18307b887e18c15c5b7133f6e7d" + integrity sha512-64i+Uw3otrndfq5kaoGNoY7pvOhSsjFEN4bdEFh80MWVk/dbgJfMv7VFDeCT8LxNAlEVhQmdVEbfE7X2nWNIIg== dependencies: "@wry/context" "^0.6.0" "@wry/trie" "^0.3.0" @@ -23386,10 +23338,10 @@ symbol-observable@^1.0.4: version "1.2.0" resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" -symbol-observable@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-2.0.3.tgz#5b521d3d07a43c351055fa43b8355b62d33fd16a" - integrity sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA== +symbol-observable@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205" + integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ== symbol-tree@^3.2.2, symbol-tree@^3.2.4: version "3.2.4" @@ -23935,17 +23887,10 @@ trough@^1.0.0: resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-2.2.1.tgz#c5bf04a5bbec3fd118be4084461b3a27c4d796bf" integrity sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q== -ts-invariant@^0.4.0: - version "0.4.4" - resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.4.4.tgz#97a523518688f93aafad01b0e80eb803eb2abd86" - integrity sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA== - dependencies: - tslib "^1.9.3" - -ts-invariant@^0.7.0: - version "0.7.3" - resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.7.3.tgz#13aae22a4a165393aaf5cecdee45ef4128d358b8" - integrity sha512-UWDDeovyUTIMWj+45g5nhnl+8oo+GhxL5leTaHn5c8FkQWfh8v66gccLd2/YzVmV5hoQUjCEjhrXnQqVDJdvKA== +ts-invariant@^0.9.4: + version "0.9.4" + resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.9.4.tgz#42ac6c791aade267dd9dc65276549df5c5d71cac" + integrity sha512-63jtX/ZSwnUNi/WhXjnK8kz4cHHpYS60AnmA6ixz17l7E12a5puCWFlNpkne5Rl0J8TBPVHpGjsj4fxs8ObVLQ== dependencies: tslib "^2.1.0" @@ -23975,16 +23920,21 @@ [email protected]: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.1.tgz#410eb0d113e5b6356490eec749603725b021b43e" integrity sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ== -tslib@^1.10.0, tslib@^1.6.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: +tslib@^1.10.0, tslib@^1.6.0, tslib@^1.8.1, tslib@^1.9.0: version "1.13.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== -tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0, tslib@~2.2.0: +tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c" integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w== +tslib@^2.3.0, tslib@~2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + tslib@~2.0.1: version "2.0.3" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" @@ -24885,10 +24835,10 @@ value-or-function@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/value-or-function/-/value-or-function-3.0.0.tgz#1c243a50b595c1be54a754bfece8563b9ff8d813" [email protected]: - version "1.0.6" - resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.6.tgz#218aa4794aa2ee24dcf48a29aba4413ed584747f" - integrity sha512-9r0wQsWD8z/BxPOvnwbPf05ZvFngXyouE9EKB+5GbYix+BYnAwrIChCUyFIinfbf2FL/U71z+CPpbnmTdxrwBg== [email protected]: + version "1.0.11" + resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.11.tgz#3e90299af31dd014fe843fe309cefa7c1d94b140" + integrity sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg== vary@^1, vary@~1.1.2: version "1.1.2" @@ -26033,15 +25983,14 @@ yurnalist@^2.1.0: read "^1.0.7" strip-ansi "^5.2.0" -zen-observable-ts@^0.8.21: - version "0.8.21" - resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz#85d0031fbbde1eba3cd07d3ba90da241215f421d" - integrity sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg== +zen-observable-ts@^1.2.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-1.2.3.tgz#c2f5ccebe812faf0cfcde547e6004f65b1a6d769" + integrity sha512-hc/TGiPkAWpByykMwDcem3SdUgA4We+0Qb36bItSuJC9xD0XVBZoFHYoadAomDSNf64CG8Ydj0Qb8Od8BUWz5g== dependencies: - tslib "^1.9.3" - zen-observable "^0.8.0" + zen-observable "0.8.15" -zen-observable@^0.8.0, zen-observable@^0.8.14: [email protected]: version "0.8.15" resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15" integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==
29a73e77d5908dccef548156b1d030862d817164
2019-04-28 21:34:37
Can Rau
docs(node-apis): fix missing comma in createResolvers example (#13687)
false
fix missing comma in createResolvers example (#13687)
docs
diff --git a/packages/gatsby/src/utils/api-node-docs.js b/packages/gatsby/src/utils/api-node-docs.js index 8b778d8e1bffe..ec0fdd8098fcb 100644 --- a/packages/gatsby/src/utils/api-node-docs.js +++ b/packages/gatsby/src/utils/api-node-docs.js @@ -246,7 +246,7 @@ exports.setFieldsOnGraphQLNodeType = true * }, * Query: { * allRecentPosts: { - * type: [`BlogPost`] + * type: [`BlogPost`], * resolve: (source, args, context, info) => { * const posts = context.nodeModel.getAllNodes({ type: `BlogPost` }) * const recentPosts = posts.filter(
10abdcb3d64876e71383dd7fd6362b598abc7823
2022-11-03 13:11:15
LekoArts
chore(release): Publish next
false
Publish next
chore
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index bbca51c7680ee..31a79997fe400 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": "5.0.0-next.11", + "version": "5.0.0-next.12", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js"
79186abdac525f6e16779015ae48c5cea5eec14a
2022-01-03 15:24:51
renovate[bot]
chore(deps): update dependency @types/sharp to ^0.29.5 (#34356)
false
update dependency @types/sharp to ^0.29.5 (#34356)
chore
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index f6532eb54cdc6..f4b774d687936 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "@types/sharp": "^0.29.4", + "@types/sharp": "^0.29.5", "babel-preset-gatsby-package": "^2.5.0-next.0", "cross-env": "^7.0.3", "gatsby-plugin-image": "^2.5.0-next.2" diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json index efee902127295..e69a832f81077 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -30,7 +30,7 @@ "devDependencies": { "@types/node": "^14.17.34", "@types/node-fetch": "^2.5.12", - "@types/sharp": "^0.29.4", + "@types/sharp": "^0.29.5", "cross-env": "^7.0.3", "gatsby-plugin-image": "^2.5.0-next.2", "msw": "^0.35.0", diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index 37d60630bca6e..a506f39700383 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.15.4", "@babel/core": "^7.15.5", - "@types/sharp": "^0.29.4", + "@types/sharp": "^0.29.5", "babel-preset-gatsby-package": "^2.5.0-next.0", "cross-env": "^7.0.3" }, diff --git a/yarn.lock b/yarn.lock index 78743dceef063..ebbe8f6bcc78c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4281,10 +4281,10 @@ dependencies: "@types/node" "*" -"@types/sharp@^0.29.4": - version "0.29.4" - resolved "https://registry.yarnpkg.com/@types/sharp/-/sharp-0.29.4.tgz#e47d8677befc9944d4b9d76ed837452814166de0" - integrity sha512-asrPef2LYenr76zBzyy+Fw40yGzq/q/CY77mUP5n43DnuWjQoOB+8vxnzFcqccz+LF+A7mbnknGCfpVWSG82Bw== +"@types/sharp@^0.29.5": + version "0.29.5" + resolved "https://registry.yarnpkg.com/@types/sharp/-/sharp-0.29.5.tgz#9c7032d30d138ad16dde6326beaff2af757b91b3" + integrity sha512-3TC+S3H5RwnJmLYMHrcdfNjz/CaApKmujjY9b6PU/pE6n0qfooi99YqXGWoW8frU9EWYj/XTI35Pzxa+ThAZ5Q== dependencies: "@types/node" "*"
08ab60141619f23bc5113919b77686cc698e6f56
2019-02-02 05:38:37
Muhammad Muhsin
fix(blog): Re-arrange content after code was moved between snippets (#11410)
false
Re-arrange content after code was moved between snippets (#11410)
fix
diff --git a/docs/blog/2019-01-31-using-react-context-api-with-gatsby/index.md b/docs/blog/2019-01-31-using-react-context-api-with-gatsby/index.md index 4584ed162dc01..3cfc3db499d10 100644 --- a/docs/blog/2019-01-31-using-react-context-api-with-gatsby/index.md +++ b/docs/blog/2019-01-31-using-react-context-api-with-gatsby/index.md @@ -28,7 +28,7 @@ First of all, you have to initialize a Gatsby project and start it in develop mo Then, create a `context` folder within src and the `ThemeContext.js` file within it. -```js:title=src/contex/ThemeContext.js +```jsx:title=src/contex/ThemeContext.js import React from "react" const defaultState = { @@ -87,6 +87,10 @@ export { ThemeProvider } [`React.createContext`](https://reactjs.org/docs/context.html#reactcreatecontext) is a new function in React 16.3 and allows you to create a Context object. It accepts a default state, the value which will be used when a component does not have a matching Provider above it in the tree.  The function returns an object with Provider and Consumer properties which we will be using later. +Create the `ThemeProvider` component which wraps its children with `ThemeContext.Provider`. This component is exported as a named export from the file. + +The `toggleDark` function gets the current `state.dark` value and switches the value to the opposite. It then stores the new value in `localStorage` before setting it back to state using the `setState` function, so that it persists over page refreshes. The dark value from `state` and the `togglDark` function are passed to the Provider. + ## Modifying the Gatsby Browser file Next, write the following code within the `gatsby-browser.js` file, which is in the root folder in a Gatsby project: @@ -103,9 +107,7 @@ export const wrapRootElement = ({ element }) => ( // highlight-end ``` -Create the `ThemeProvider` component which wraps its children with `ThemeContext.Provider`. This component then wraps the root element and is exported as `wrapRootElement`. This API is then invoked appropriately by the Gatsby API runner. - -The `toggleDark` function gets the current `state.dark` value and switches the value to the opposite. It then stores the new value in `localStorage` before setting it back to state using the `setState` function, so that it persists over page refreshes. The dark value from `state` and the `togglDark` function are passed to the Provider. +The `ThemeProvider` component exported from the `ThemeContext.js` file wraps the root element and is exported as `wrapRootElement`. This API is then invoked appropriately by the Gatsby API runner. ## Editing the Layout file
3a1b7477afea16ca7e2407c774c1b26e466a6a31
2020-05-30 15:45:39
Max Stoiber
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index 514d0f2bf6ace..a187b2e86b1fa 100644 --- a/packages/gatsby-admin/CHANGELOG.md +++ b/packages/gatsby-admin/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.54](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.54) (2020-05-30) + +### Features + +- **gatsby:** serve Admin from develop parent process ([#23734](https://github.com/gatsbyjs/gatsby/issues/23734)) ([a6eb21b](https://github.com/gatsbyjs/gatsby/commit/a6eb21b)) + ## [0.1.53](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.53) (2020-05-28) **Note:** Version bump only for package gatsby-admin diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index 2e95e3d23cd2a..781de9e838e43 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-admin", - "version": "0.1.53", + "version": "0.1.54", "main": "index.js", "author": "Max Stoiber", "license": "MIT", @@ -17,15 +17,15 @@ "@typescript-eslint/parser": "^2.28.0", "csstype": "^2.6.10", "formik": "^2.1.4", - "gatsby": "^2.22.12", + "gatsby": "^2.22.13", "gatsby-interface": "0.0.163", "gatsby-plugin-typescript": "^2.4.3", "gatsby-source-graphql": "^2.5.2", "react": "^16.12.0", "react-dom": "^16.12.0", "react-icons": "^3.10.0", - "subscriptions-transport-ws": "^0.9.16", "strict-ui": "^0.1.2", + "subscriptions-transport-ws": "^0.9.16", "theme-ui": "^0.4.0-alpha.3", "typescript": "^3.9.2", "urql": "^1.9.7", diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index d20fc66200d14..437dbddafb697 100644 --- a/packages/gatsby-cli/CHANGELOG.md +++ b/packages/gatsby-cli/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.12.38](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.38) (2020-05-30) + +**Note:** Version bump only for package gatsby-cli + ## [2.12.37](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.37) (2020-05-28) ### Bug Fixes diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index bd494e4ad34c6..f1b88566ebc17 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.37", + "version": "2.12.38", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "lib/index.js" @@ -26,7 +26,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.3.3", - "gatsby-recipes": "^0.1.31", + "gatsby-recipes": "^0.1.32", "gatsby-telemetry": "^1.3.9", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", diff --git a/packages/gatsby-dev-cli/CHANGELOG.md b/packages/gatsby-dev-cli/CHANGELOG.md index 3be6e8785645d..d3301a27ba9a1 100644 --- a/packages/gatsby-dev-cli/CHANGELOG.md +++ b/packages/gatsby-dev-cli/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.7.6](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.7.6) (2020-05-30) + +### Bug Fixes + +- **gatsby-dev-cli:** show spawned processes output unless `--quiet` is used ([#24607](https://github.com/gatsbyjs/gatsby/issues/24607)) ([69383a8](https://github.com/gatsbyjs/gatsby/commit/69383a8)) + ## [2.7.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.7.5) (2020-05-20) **Note:** Version bump only for package gatsby-dev-cli diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json index c3cdaae3912ca..abf272525c387 100644 --- a/packages/gatsby-dev-cli/package.json +++ b/packages/gatsby-dev-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-dev-cli", "description": "CLI helpers for contributors working on Gatsby", - "version": "2.7.5", + "version": "2.7.6", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby-dev": "./dist/index.js" diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md index 54c2b35fa479a..8c6d0c1cb03e6 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.32](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.32) (2020-05-30) + +### Features + +- **gatsby-recipes:** Add description to Gatsby Plugin resource ([#24602](https://github.com/gatsbyjs/gatsby/issues/24602)) ([3429474](https://github.com/gatsbyjs/gatsby/commit/3429474)) + ## [0.1.31](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.31) (2020-05-28) ### Bug Fixes diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index 5ae078b131a70..c60b809ef85cd 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.31", + "version": "0.1.32", "author": "Kyle Mathews <[email protected]>", "main": "dist/index.js", "bugs": { diff --git a/packages/gatsby-theme-blog-core/CHANGELOG.md b/packages/gatsby-theme-blog-core/CHANGELOG.md index 3c23cd622b242..74c386c68be59 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.5.29](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.5.29) (2020-05-30) + +**Note:** Version bump only for package gatsby-theme-blog-core + ## [1.5.28](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.5.28) (2020-05-28) **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 3cfc3ee89f181..f48b484cff06a 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.5.28", + "version": "1.5.29", "main": "index.js", "author": "christopherbiscardi <[email protected]> (@chrisbiscardi)", "license": "MIT", @@ -30,7 +30,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.6.1", - "gatsby": "^2.22.12", + "gatsby": "^2.22.13", "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 c6591476a3cd5..658390f20add1 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.6.29](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.6.29) (2020-05-30) + +**Note:** Version bump only for package gatsby-theme-blog + ## [1.6.28](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.6.28) (2020-05-28) **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 d9096782d59d7..bcec64d9449bb 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.6.28", + "version": "1.6.29", "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.2", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.3.2", - "gatsby-theme-blog-core": "^1.5.28", + "gatsby-theme-blog-core": "^1.5.29", "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.22.12", + "gatsby": "^2.22.13", "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 3612e91590f67..e717ae7de2c68 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.55](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.55) (2020-05-30) + +**Note:** Version bump only for package gatsby-theme-notes + ## [1.3.54](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.54) (2020-05-28) **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 edb386ee51321..de9052254eaa0 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.54", + "version": "1.3.55", "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.22.12", + "gatsby": "^2.22.13", "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 83a35bd30c992..1549a7b1178d7 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.44](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.44) (2020-05-30) + +**Note:** Version bump only for package gatsby-theme-ui-preset + ## [0.0.43](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.43) (2020-05-28) ### Bug Fixes diff --git a/packages/gatsby-theme-ui-preset/package.json b/packages/gatsby-theme-ui-preset/package.json index ba5b1a500c3e6..bfeede79f61ff 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.43", + "version": "0.0.44", "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.22.12", + "gatsby": "^2.22.13", "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 2293f4bf19da1..e89d96ff66eac 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.22.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.22.13) (2020-05-30) + +### Bug Fixes + +- **gatsby:** show correct `serve` info when running on another port ([#24591](https://github.com/gatsbyjs/gatsby/issues/24591)) ([3717ad6](https://github.com/gatsbyjs/gatsby/commit/3717ad6)) +- **gatsby:** Turn off react/jsx-pascal-case in ESLint to fix Theme-UI warnings ([#24560](https://github.com/gatsbyjs/gatsby/issues/24560)) ([ee00a6f](https://github.com/gatsbyjs/gatsby/commit/ee00a6f)) + +### Features + +- **gatsby:** serve Admin from develop parent process ([#23734](https://github.com/gatsbyjs/gatsby/issues/23734)) ([a6eb21b](https://github.com/gatsbyjs/gatsby/commit/a6eb21b)) + ## [2.22.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.22.12) (2020-05-28) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 1fd85551032c9..058b3f56ccdaf 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.22.12", + "version": "2.22.13", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js" @@ -72,8 +72,8 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-admin": "^0.1.0", - "gatsby-cli": "^2.12.37", + "gatsby-admin": "^0.1.54", + "gatsby-cli": "^2.12.38", "gatsby-core-utils": "^1.3.3", "gatsby-graphiql-explorer": "^0.4.3", "gatsby-link": "^2.4.3",
ef8d53d0d1f3b62c76cac76fa30baed7e9c9f5a6
2020-02-28 18:58:40
Benedikt Rötsch
fix(gatsby-transformer-sqip): properly check for correct input… (#21401)
false
properly check for correct input… (#21401)
fix
diff --git a/packages/gatsby-transformer-sqip/src/extend-node-type.js b/packages/gatsby-transformer-sqip/src/extend-node-type.js index c2a84d0f43a72..6264347eaf8d7 100644 --- a/packages/gatsby-transformer-sqip/src/extend-node-type.js +++ b/packages/gatsby-transformer-sqip/src/extend-node-type.js @@ -195,7 +195,7 @@ async function sqipContentful({ type, cache, store }) { file: { contentType }, } = asset - if (contentType.includes(`image/`)) { + if (!contentType.includes(`image/`)) { return null }
c184d1b9cc53e2d6ab9e6e4c833bf492d8863675
2019-02-18 17:26:17
Almero Steyn
docs(showcase): Add Technica11y to sites showcase (#11859)
false
Add Technica11y to sites showcase (#11859)
docs
diff --git a/docs/sites.yml b/docs/sites.yml index 1bd68c9e66694..8518d6fa8156e 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -4335,3 +4335,15 @@ built_by: Incremental built_by_url: https://www.incremental.com.au featured: false +- title: Technica11y + main_url: https://www.technica11y.org + url: https://www.technica11y.org + description: > + Discussing challenges in technical accessibility. + categories: + - Accessibility + - Education + - Video + built_by: Tenon.io + built_by_url: https://tenon.io + featured: false
e1cba20f20df7d973b5a3cb6d1d517160350dffe
2021-09-14 11:41:34
Ward Peeters
fix(gatsby): add webpack export to npm (#33164)
false
add webpack export to npm (#33164)
fix
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 92b5524dd1a95..4fff2353bde9b 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -207,6 +207,8 @@ "utils.js", "internal.js", "internal.d.ts", + "webpack.js", + "webpack.d.ts", "!**/__tests__/" ], "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby#readme",
11206e46d69a26ff3500c6b8a6d26f3850439c3b
2018-07-06 22:29:23
Mike Allanson
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md index 64afa05f71e5a..9feda22791fe7 100644 --- a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md +++ b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="2.0.0-beta.4"></a> +# [2.0.0-beta.4](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify-cms/compare/gatsby-plugin-netlify-cms@[email protected]) (2018-07-06) + +**Note:** Version bump only for package gatsby-plugin-netlify-cms + + + + + <a name="2.0.0-beta.3"></a> # [2.0.0-beta.3](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify-cms/compare/gatsby-plugin-netlify-cms@[email protected]) (2018-06-20) diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json index f521c7a48f89e..91722a481d3d3 100644 --- a/packages/gatsby-plugin-netlify-cms/package.json +++ b/packages/gatsby-plugin-netlify-cms/package.json @@ -1,16 +1,16 @@ { "name": "gatsby-plugin-netlify-cms", "description": "A Gatsby plugin which generates the Netlify CMS single page app", - "version": "2.0.0-beta.3", + "version": "2.0.0-beta.4", "author": "Shawn Erquhart <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "@babel/runtime": "7.0.0-beta.51", - "mini-css-extract-plugin": "^0.4.1", "html-webpack-include-assets-plugin": "^1.0.4", "html-webpack-plugin": "^3.2.0", + "mini-css-extract-plugin": "^0.4.1", "netlify-cms": "^1.3.5", "netlify-identity-widget": "^1.4.11" }, diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index 0c602c3c76459..88674c4b5e461 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="2.0.1-beta.9"></a> +## [2.0.1-beta.9](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful/compare/[email protected]@2.0.1-beta.9) (2018-07-06) + +**Note:** Version bump only for package gatsby-source-contentful + + + + + <a name="2.0.1-beta.8"></a> ## [2.0.1-beta.8](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful/compare/[email protected]@2.0.1-beta.8) (2018-06-25) diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index 499d1a73ea55f..018d5ede1d54d 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "2.0.1-beta.8", + "version": "2.0.1-beta.9", "author": "Marcus Ericsson <[email protected]> (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 6a619167192c4..a6f68728faa49 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="2.0.0-beta.18"></a> +# [2.0.0-beta.18](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-beta.18) (2018-07-06) + +**Note:** Version bump only for package gatsby + + + + + <a name="2.0.0-beta.17"></a> # [2.0.0-beta.17](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-beta.17) (2018-07-03) diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 795e6e28ff21e..38bf56cf158bc 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "React.js Static Site Generator", - "version": "2.0.0-beta.17", + "version": "2.0.0-beta.18", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js"
c9a2ea0d3d99a98fd143afe87a02d021bef32428
2020-09-29 13:35:02
renovate[bot]
chore(deps): update dependency @types/webpack to ^4.41.22 (#27079)
false
update dependency @types/webpack to ^4.41.22 (#27079)
chore
diff --git a/package.json b/package.json index bffa279c49c99..ed3d121f9d9d3 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "@types/semver": "^7.1.0", "@types/signal-exit": "^3.0.0", "@types/stack-trace": "^0.0.29", - "@types/webpack": "^4.41.18", + "@types/webpack": "^4.41.22", "@types/webpack-merge": "^4.1.5", "@typescript-eslint/eslint-plugin": "^2.24.0", "@typescript-eslint/parser": "^2.24.0", diff --git a/yarn.lock b/yarn.lock index eb8abe54c329a..bfdd621c28d88 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4016,7 +4016,7 @@ dependencies: "@types/webpack" "*" -"@types/webpack@*", "@types/webpack@^4.41.18": +"@types/webpack@*": version "4.41.18" resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.18.tgz#2945202617866ecdffa582087f1b6de04a7eed55" integrity sha512-mQm2R8vV2BZE/qIDVYqmBVLfX73a8muwjs74SpjEyJWJxeXBbsI9L65Pcia9XfYLYWzD1c1V8m+L0p30y2N7MA== @@ -4028,6 +4028,18 @@ "@types/webpack-sources" "*" source-map "^0.6.0" +"@types/webpack@^4.41.22": + version "4.41.22" + resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.22.tgz#ff9758a17c6bd499e459b91e78539848c32d0731" + integrity sha512-JQDJK6pj8OMV9gWOnN1dcLCyU9Hzs6lux0wBO4lr1+gyEhIBR9U3FMrz12t2GPkg110XAxEAw2WHF6g7nZIbRQ== + dependencies: + "@types/anymatch" "*" + "@types/node" "*" + "@types/tapable" "*" + "@types/uglify-js" "*" + "@types/webpack-sources" "*" + source-map "^0.6.0" + "@types/yargs-parser@*": version "13.0.0" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.0.0.tgz#453743c5bbf9f1bed61d959baab5b06be029b2d0"
9f2acbed064737c712cd74343f928b8759ad7e49
2019-08-01 17:20:56
renovate[bot]
fix: update dependency theme-ui to ^0.2.25 (#16262)
false
update dependency theme-ui to ^0.2.25 (#16262)
fix
diff --git a/themes/gatsby-theme-blog/package.json b/themes/gatsby-theme-blog/package.json index 39cc4d10fa114..9383522e4795a 100644 --- a/themes/gatsby-theme-blog/package.json +++ b/themes/gatsby-theme-blog/package.json @@ -42,7 +42,7 @@ "react-helmet": "^5.2.1", "react-switch": "^5.0.1", "remark-slug": "^5.1.2", - "theme-ui": "^0.2.23", + "theme-ui": "^0.2.25", "typeface-merriweather": "0.0.72", "typeface-montserrat": "0.0.75", "typography-theme-wordpress-2016": "^0.16.19" diff --git a/themes/gatsby-theme-notes/package.json b/themes/gatsby-theme-notes/package.json index d291b508bdc76..65857946e56da 100644 --- a/themes/gatsby-theme-notes/package.json +++ b/themes/gatsby-theme-notes/package.json @@ -44,6 +44,6 @@ "gatsby-source-filesystem": "^2.1.7", "is-present": "^1.0.0", "react-feather": "^1.1.6", - "theme-ui": "^0.2.23" + "theme-ui": "^0.2.25" } }
37976e7d758305f68abf478bdf322af57c2499cd
2020-06-30 00:16:56
Blaine Kasten
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index 6dee3899d76cc..3261f49e4be1e 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.76](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.76) (2020-06-29) + +**Note:** Version bump only for package gatsby-admin + ## [0.1.75](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.75) (2020-06-24) **Note:** Version bump only for package gatsby-admin diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index 3b38aba571390..cdc54ebd78793 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-admin", - "version": "0.1.75", + "version": "0.1.76", "main": "index.js", "author": "Max Stoiber", "license": "MIT", @@ -17,7 +17,7 @@ "@typescript-eslint/parser": "^2.28.0", "csstype": "^2.6.10", "formik": "^2.1.4", - "gatsby": "^2.23.11", + "gatsby": "^2.23.12", "gatsby-interface": "0.0.171", "gatsby-plugin-typescript": "^2.4.8", "gatsby-source-graphql": "^2.5.7", diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index 6ec2b3a7ebbf7..291ad8df95098 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.52](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.52) (2020-06-29) + +### Bug Fixes + +- **gatsby:** fix build-html error stacktrace ([#25385](https://github.com/gatsbyjs/gatsby/issues/25385)) ([eac89cb](https://github.com/gatsbyjs/gatsby/commit/eac89cb)) + ## [2.12.51](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.51) (2020-06-24) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index a868cca59e845..ed01ce897a552 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.51", + "version": "2.12.52", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "cli.js" @@ -27,7 +27,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.3.8", - "gatsby-recipes": "^0.1.43", + "gatsby-recipes": "^0.1.44", "gatsby-telemetry": "^1.3.14", "hosted-git-info": "^3.0.4", "ink": "^2.7.1", diff --git a/packages/gatsby-design-tokens/CHANGELOG.md b/packages/gatsby-design-tokens/CHANGELOG.md index e3ffd6ca4f76a..dadb97860d66c 100644 --- a/packages/gatsby-design-tokens/CHANGELOG.md +++ b/packages/gatsby-design-tokens/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.9](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.9) (2020-06-29) + +### Bug Fixes + +- **gatsby-design-tokens:** yarn run watch broken ([#25369](https://github.com/gatsbyjs/gatsby/issues/25369)) ([e563a2e](https://github.com/gatsbyjs/gatsby/commit/e563a2e)) + ## [2.0.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.8) (2020-06-24) **Note:** Version bump only for package gatsby-design-tokens diff --git a/packages/gatsby-design-tokens/package.json b/packages/gatsby-design-tokens/package.json index f29763af9c065..9714a40f13b1e 100644 --- a/packages/gatsby-design-tokens/package.json +++ b/packages/gatsby-design-tokens/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-design-tokens", - "version": "2.0.8", + "version": "2.0.9", "description": "Gatsby Design Tokens", "main": "dist/index.js", "module": "dist/index.esm.js", diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md index 9fda117c60204..c886fb7e0c9de 100644 --- a/packages/gatsby-plugin-mdx/CHANGELOG.md +++ b/packages/gatsby-plugin-mdx/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.19](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.19) (2020-06-29) + +### Bug Fixes + +- **gatsby-plugin-mdx:** set childOf extension for Mdx type definition ([#25112](https://github.com/gatsbyjs/gatsby/issues/25112)) ([49c0929](https://github.com/gatsbyjs/gatsby/commit/49c0929)) + ## [1.2.18](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.18) (2020-06-24) **Note:** Version bump only for package gatsby-plugin-mdx diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json index ed0ece1f0494d..36a44ec7cdb23 100644 --- a/packages/gatsby-plugin-mdx/package.json +++ b/packages/gatsby-plugin-mdx/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-mdx", - "version": "1.2.18", + "version": "1.2.19", "description": "MDX integration for Gatsby", "main": "index.js", "license": "MIT", diff --git a/packages/gatsby-plugin-sass/CHANGELOG.md b/packages/gatsby-plugin-sass/CHANGELOG.md index 1b40bbdfcdf21..a79f50274a13e 100644 --- a/packages/gatsby-plugin-sass/CHANGELOG.md +++ b/packages/gatsby-plugin-sass/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.3.7](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.7) (2020-06-29) + +**Note:** Version bump only for package gatsby-plugin-sass + ## [2.3.6](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.6) (2020-06-24) **Note:** Version bump only for package gatsby-plugin-sass diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index 8678973ad3b6a..b45fc514ed4a1 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sass", "description": "Gatsby plugin to handle scss/sass files", - "version": "2.3.6", + "version": "2.3.7", "author": "Daniel Farrell <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md index 1dbcdfa9506f6..1cd12223c3f13 100644 --- a/packages/gatsby-recipes/CHANGELOG.md +++ b/packages/gatsby-recipes/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.44](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.44) (2020-06-29) + +**Note:** Version bump only for package gatsby-recipes + ## [0.1.43](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.1.43) (2020-06-24) **Note:** Version bump only for package gatsby-recipes diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index 6c55719386b9e..51cc2e6646ba5 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.43", + "version": "0.1.44", "author": "Kyle Mathews <[email protected]>", "main": "dist/index.js", "bugs": { diff --git a/packages/gatsby-remark-embed-snippet/CHANGELOG.md b/packages/gatsby-remark-embed-snippet/CHANGELOG.md index 9644293e17142..47d7d1a034cea 100644 --- a/packages/gatsby-remark-embed-snippet/CHANGELOG.md +++ b/packages/gatsby-remark-embed-snippet/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.3.9) (2020-06-29) + +### Features + +- **gatsby-remark-embed-snippet:** Add the ability to embed named snippets ([#24512](https://github.com/gatsbyjs/gatsby/issues/24512)) ([2b68c84](https://github.com/gatsbyjs/gatsby/commit/2b68c84)) + ## [4.3.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.3.8) (2020-06-24) **Note:** Version bump only for package gatsby-remark-embed-snippet diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json index f0d25d4143d62..1efa9e939cc80 100644 --- a/packages/gatsby-remark-embed-snippet/package.json +++ b/packages/gatsby-remark-embed-snippet/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-embed-snippet", "description": "Gatsby plugin to embed formatted code snippets within markdown", - "version": "4.3.8", + "version": "4.3.9", "author": "Brian Vaughn <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md index b35d37d65099d..200b4efb511af 100644 --- a/packages/gatsby-remark-images/CHANGELOG.md +++ b/packages/gatsby-remark-images/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.3.14](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.3.14) (2020-06-29) + +**Note:** Version bump only for package gatsby-remark-images + ## [3.3.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.3.13) (2020-06-24) **Note:** Version bump only for package gatsby-remark-images diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json index 1258d33a95ca6..c1cb14a54e8b0 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-images", "description": "Processes images in markdown so they can be used in the production build.", - "version": "3.3.13", + "version": "3.3.14", "author": "Kyle Mathews <[email protected]>", "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 df18737d86caf..5322f8c8acec0 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.5.51](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.5.51) (2020-06-29) + +**Note:** Version bump only for package gatsby-theme-blog-core + ## [1.5.50](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.5.50) (2020-06-24) **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 d814bef5144cb..f3b6b0b040c8d 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.5.50", + "version": "1.5.51", "main": "index.js", "author": "christopherbiscardi <[email protected]> (@chrisbiscardi)", "license": "MIT", @@ -19,10 +19,10 @@ "dependencies": { "@mdx-js/mdx": "^1.6.6", "gatsby-core-utils": "^1.3.8", - "gatsby-plugin-mdx": "^1.2.18", + "gatsby-plugin-mdx": "^1.2.19", "gatsby-plugin-sharp": "^2.6.14", "gatsby-remark-copy-linked-files": "^2.3.7", - "gatsby-remark-images": "^3.3.13", + "gatsby-remark-images": "^3.3.14", "gatsby-remark-smartypants": "^2.3.6", "gatsby-source-filesystem": "^2.3.14", "gatsby-transformer-sharp": "^2.5.7", @@ -30,7 +30,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.6.6", - "gatsby": "^2.23.11", + "gatsby": "^2.23.12", "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 fe64e274c8dbe..8d566e62b1f8e 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.6.51](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.6.51) (2020-06-29) + +**Note:** Version bump only for package gatsby-theme-blog + ## [1.6.50](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.6.50) (2020-06-24) **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 5f408f3223b80..7fc87e2f05ff2 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.6.50", + "version": "1.6.51", "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.6", "gatsby-plugin-theme-ui": "^0.2.53", "gatsby-plugin-twitter": "^2.3.6", - "gatsby-theme-blog-core": "^1.5.50", + "gatsby-theme-blog-core": "^1.5.51", "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.23.11", + "gatsby": "^2.23.12", "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 46f4874cff34a..e688977b4860f 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.77](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.77) (2020-06-29) + +**Note:** Version bump only for package gatsby-theme-notes + ## [1.3.76](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.76) (2020-06-24) **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 bcda656491bb3..796856cc1e8b7 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.76", + "version": "1.3.77", "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.23.11", + "gatsby": "^2.23.12", "react": "^16.12.0", "react-dom": "^16.12.0" }, @@ -39,7 +39,7 @@ "gatsby-core-utils": "^1.3.8", "gatsby-plugin-compile-es6-packages": "^2.1.0", "gatsby-plugin-emotion": "^4.3.6", - "gatsby-plugin-mdx": "^1.2.18", + "gatsby-plugin-mdx": "^1.2.19", "gatsby-plugin-meta-redirect": "^1.1.1", "gatsby-plugin-redirects": "^1.0.0", "gatsby-plugin-theme-ui": "^0.2.53", diff --git a/packages/gatsby-theme-ui-preset/CHANGELOG.md b/packages/gatsby-theme-ui-preset/CHANGELOG.md index 9d29b33638f22..5c32e94a1516b 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.66](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.66) (2020-06-29) + +**Note:** Version bump only for package gatsby-theme-ui-preset + ## [0.0.65](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.0.65) (2020-06-24) **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 cc6b315bb59f8..1a5ec70052b1e 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.65", + "version": "0.0.66", "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.23.11", + "gatsby": "^2.23.12", "prettier": "2.0.5", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-transformer-documentationjs/CHANGELOG.md b/packages/gatsby-transformer-documentationjs/CHANGELOG.md index affff5f3a5c29..ec5eb0d8174e0 100644 --- a/packages/gatsby-transformer-documentationjs/CHANGELOG.md +++ b/packages/gatsby-transformer-documentationjs/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.7](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-documentationjs@[email protected]) (2020-06-29) + +### Bug Fixes + +- **gatsby-transformer-documentationjs:** Add childOf, mimeTypes and fill in other schema typings ([#25113](https://github.com/gatsbyjs/gatsby/issues/25113)) ([48f7878](https://github.com/gatsbyjs/gatsby/commit/48f7878)) + ## [4.3.6](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-documentationjs@[email protected]) (2020-06-24) **Note:** Version bump only for package gatsby-transformer-documentationjs diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json index aac65dd513e82..fc39f81ea4b3f 100644 --- a/packages/gatsby-transformer-documentationjs/package.json +++ b/packages/gatsby-transformer-documentationjs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-documentationjs", "description": "Gatsby transformer plugin which uses Documentation.js to extract JavaScript documentation", - "version": "4.3.6", + "version": "4.3.7", "author": "Kyle Mathews", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-remark/CHANGELOG.md b/packages/gatsby-transformer-remark/CHANGELOG.md index 1992f2dc1a7fc..509a6d7ea1814 100644 --- a/packages/gatsby-transformer-remark/CHANGELOG.md +++ b/packages/gatsby-transformer-remark/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.8.20](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.20) (2020-06-29) + +**Note:** Version bump only for package gatsby-transformer-remark + ## [2.8.19](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.19) (2020-06-24) **Note:** Version bump only for package gatsby-transformer-remark diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index b3e380f7e49f9..39e6c5fd8b536 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-remark", "description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem", - "version": "2.8.19", + "version": "2.8.20", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 39ddf79a4285e..b74af2c449d15 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.23.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.23.12) (2020-06-29) + +### Bug Fixes + +- **gatsby:** fix build-html error stacktrace ([#25385](https://github.com/gatsbyjs/gatsby/issues/25385)) ([eac89cb](https://github.com/gatsbyjs/gatsby/commit/eac89cb)) + ## [2.23.11](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.23.11) (2020-06-24) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 876325205624b..7e83919df1d7d 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.23.11", + "version": "2.23.12", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js" @@ -72,7 +72,7 @@ "flat": "^4.1.0", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.12.51", + "gatsby-cli": "^2.12.52", "gatsby-core-utils": "^1.3.8", "gatsby-graphiql-explorer": "^0.4.7", "gatsby-link": "^2.4.8",
5b10f0336a27583f0189747c7ba3f5a882d88695
2023-02-08 12:57:44
pieh
chore(release): Publish next
false
Publish next
chore
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index bfc76acb1f344..aeb495cbff1f0 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": "5.7.0-next.0", + "version": "5.7.0-next.1", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js"