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
bd5b5856d0a8f265dffffbed60c9b0d014726dd1
2019-07-26 21:05:15
Saqib Ameen
docs(tutorial): Remove period in heading (#16113)
false
Remove period in heading (#16113)
docs
diff --git a/docs/tutorial/part-three/index.md b/docs/tutorial/part-three/index.md index ba09f590f55b1..5532160c2dc0c 100644 --- a/docs/tutorial/part-three/index.md +++ b/docs/tutorial/part-three/index.md @@ -215,7 +215,7 @@ But try navigating to `/about/`, or `/contact/`. The content on those pages stil The content of all three of your pages is centered thanks to this single shared layout component! -### ✋ Add a site title. +### ✋ Add a site title 1. Add the following line to your new layout component: @@ -234,7 +234,7 @@ If you go to any of your three pages, you'll see the same title added, e.g. the ![with-title](with-title.png) -### ✋ Add navigation links between pages. +### ✋ Add navigation links between pages 1. Copy the following into your layout component file:
bac1e7a2481f87e57f5237a87ddb0098bf73c719
2022-09-07 16:22:56
Coby Sher
chore(gatsby): Update `react-refresh` to `^0.14.0` (#36553)
false
Update `react-refresh` to `^0.14.0` (#36553)
chore
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index d193fdaf00e77..f957fd1a8e30f 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -143,7 +143,7 @@ "query-string": "^6.14.1", "raw-loader": "^4.0.2", "react-dev-utils": "^12.0.1", - "react-refresh": "^0.9.0", + "react-refresh": "^0.14.0", "redux": "4.1.2", "redux-thunk": "^2.4.0", "resolve-from": "^5.0.0", diff --git a/yarn.lock b/yarn.lock index ce412d3be09e3..940a397e9c092 100644 --- a/yarn.lock +++ b/yarn.lock @@ -19955,6 +19955,11 @@ react-reconciler@^0.26.2: object-assign "^4.1.1" scheduler "^0.20.2" +react-refresh@^0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e" + integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== + react-refresh@^0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.9.0.tgz#71863337adc3e5c2f8a6bfddd12ae3bfe32aafbf"
4ce33dabd7faeb82c86e9ab2114971a56fee65dd
2019-05-26 20:32:15
Benjamin Lannon
chore(showcase): Updated Aman Mittal's portfolio domain (#14323)
false
Updated Aman Mittal's portfolio domain (#14323)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index 4ba5bbbb99918..fc939561775b4 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -1472,13 +1472,13 @@ - title: Timeline Theme Portfolio description: | I'm Aman Mittal, a software developer. - main_url: "http://www.amanhimself.me/" - url: "http://www.amanhimself.me/" + main_url: "https://amanhimself.dev/" + url: "https://amanhimself.dev/" categories: - Web Development - Portfolio built_by: Aman Mittal - built_by_url: "http://www.amanhimself.me/" + built_by_url: "https://amanhimself.dev/" - title: Ocean artUp description: > Science outreach site built using styled-components and Contentful. It
cf2dfdda69a72b1300e0229ec630afdd6118dad8
2023-02-24 13:15:23
GatsbyJS Bot
chore(changelogs): update changelogs (#37699)
false
update changelogs (#37699)
chore
diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index e4e66f1f23151..16c56cf12a190 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. +### [6.7.1](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-source-drupal) (2023-02-23) + +#### Features + +- filter api requests by languages [#37684](https://github.com/gatsbyjs/gatsby/issues/37684) [#37690](https://github.com/gatsbyjs/gatsby/issues/37690) ([81619b2](https://github.com/gatsbyjs/gatsby/commit/81619b25b0c9d8d60f7bbc639eded68c4fb330e1)) + ## [6.7.0](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby-source-drupal) (2023-02-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.7)
44b2ef5905801d1b40a15313966867bd3d410be7
2022-01-17 15:00:20
Ty Hopp
fix(create-gatsby): Respect telemetry disable (#34495)
false
Respect telemetry disable (#34495)
fix
diff --git a/packages/create-gatsby/src/__tests__/tracking.ts b/packages/create-gatsby/src/__tests__/tracking.ts new file mode 100644 index 0000000000000..42bd45bb0abcb --- /dev/null +++ b/packages/create-gatsby/src/__tests__/tracking.ts @@ -0,0 +1,61 @@ +let isTrackingEnabled: () => boolean + +const get = jest.fn() +const set = jest.fn() + +jest.doMock(`../get-config-store`, () => { + return { + getConfigStore: (): unknown => { + return { + get, + set, + } + }, + } +}) + +describe(`isTrackingEnabled`, () => { + beforeEach(() => { + jest.resetModules() + isTrackingEnabled = require(`../tracking`).isTrackingEnabled + }) + + it(`is enabled by default`, () => { + const enabled = isTrackingEnabled() + expect(enabled).toBeTrue() + }) + + it(`respects the setting of the config store`, () => { + get.mockImplementationOnce(key => { + if (key === `telemetry.enabled`) { + return false + } else { + return true + } + }) + + const enabled = isTrackingEnabled() + expect(enabled).toBeFalse() + + const cachedEnabled = isTrackingEnabled() + expect(cachedEnabled).toBeFalse() + }) + + describe(`process.env.GATSBY_TELEMETRY_DISABLED`, () => { + beforeAll(() => { + process.env.GATSBY_TELEMETRY_DISABLED = `true` + }) + + it(`respects the setting of the environment variable`, () => { + const enabled = isTrackingEnabled() + expect(enabled).toBeFalse() + + const cachedEnabled = isTrackingEnabled() + expect(cachedEnabled).toBeFalse() + }) + + afterAll(() => { + process.env.GATSBY_TELEMETRY_DISABLED = undefined + }) + }) +}) diff --git a/packages/create-gatsby/src/is-truthy.ts b/packages/create-gatsby/src/is-truthy.ts new file mode 100644 index 0000000000000..25b0c67e77c18 --- /dev/null +++ b/packages/create-gatsby/src/is-truthy.ts @@ -0,0 +1,23 @@ +// Copied from gatsby-core-utils to avoid depending on it, similar to get-config-store +// +// Returns true for `true`, true, positive numbers +// Returns false for `false`, false, 0, negative integers and anything else +export function isTruthy(value: any): boolean { + // Return if Boolean + if (typeof value === `boolean`) return value + + // Return false if null or undefined + if (value === undefined || value === null) return false + + // If the String is true or false + if (value.toLowerCase() === `true`) return true + if (value.toLowerCase() === `false`) return false + + // Now check if it's a number + const number = parseInt(value, 10) + if (isNaN(number)) return false + if (number > 0) return true + + // Default to false + return false +} diff --git a/packages/create-gatsby/src/tracking.ts b/packages/create-gatsby/src/tracking.ts index d0c2d60801895..712119a7935da 100644 --- a/packages/create-gatsby/src/tracking.ts +++ b/packages/create-gatsby/src/tracking.ts @@ -1,11 +1,16 @@ import fetch from "node-fetch" import { v4 as uuidv4 } from "@lukeed/uuid" import { getConfigStore } from "./get-config-store" +import { isTruthy } from "./is-truthy" const store = getConfigStore() const gatsbyCliVersion = require(`../package.json`).version const analyticsApi = process.env.GATSBY_TELEMETRY_API || `https://analytics.gatsbyjs.com/events` +let trackingEnabled: boolean | undefined +const trackingDisabledFromEnvVar: boolean | undefined = isTruthy( + process.env.GATSBY_TELEMETRY_DISABLED +) const getMachineId = (): string => { let machineId = store.get(`telemetry.machineId`) @@ -28,7 +33,34 @@ export interface ITrackCliArgs { const sessionId = uuidv4() +// Adapted from gatsby-telemetry +export function isTrackingEnabled(): boolean { + // Cache the result + if (trackingEnabled !== undefined) { + return trackingEnabled + } + + let enabled = store.get(`telemetry.enabled`) as boolean | null + + if (enabled === undefined || enabled === null) { + enabled = true + store.set(`telemetry.enabled`, enabled) + } + + if (trackingDisabledFromEnvVar) { + enabled = false + } + + trackingEnabled = enabled + + return enabled +} + export const trackCli = (eventType: string, args?: ITrackCliArgs): void => { + if (!isTrackingEnabled()) { + return + } + fetch(analyticsApi, { method: `POST`, headers: {
1a4b2340a7b6f6006c9bcfb0b05119523361ccd7
2023-05-02 15:16:33
renovate[bot]
chore(deps): update dependency @jridgewell/trace-mapping to ^0.3.18 for gatsby-legacy-polyfills (#37996)
false
update dependency @jridgewell/trace-mapping to ^0.3.18 for gatsby-legacy-polyfills (#37996)
chore
diff --git a/packages/gatsby-legacy-polyfills/package.json b/packages/gatsby-legacy-polyfills/package.json index 0a8ad7a9fc6ca..0dfa55e805b66 100644 --- a/packages/gatsby-legacy-polyfills/package.json +++ b/packages/gatsby-legacy-polyfills/package.json @@ -31,7 +31,7 @@ "dist/" ], "devDependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.18", "chokidar-cli": "^3.0.0", "codegen.macro": "^4.1.0", "core-js": "3.30.1",
2ed0b7164a8bd17c613da8f30d5366f340b56875
2019-08-07 21:28:21
Mike Patterson
docs(themes): Wrong file name in building theme docs (#16430)
false
Wrong file name in building theme docs (#16430)
docs
diff --git a/docs/docs/themes/building-themes.md b/docs/docs/themes/building-themes.md index 96233c44b9ea5..fb015e4d522e7 100644 --- a/docs/docs/themes/building-themes.md +++ b/docs/docs/themes/building-themes.md @@ -49,7 +49,7 @@ For Gatsby theme development, that means you can keep multiple themes and exampl The `package.json` in the root of the new project is primarily responsible for setting up the yarn workspaces. In this case, there are two workspaces, `gatsby-theme-minimal` and `example`. -```json:title=my-theme/gatsby-config.js +```json:title=my-theme/package.json { "name": "gatsby-starter-theme-workspace", "private": true,
a4969d94ae373a858a121f2126f50e4bd91a2296
2020-05-06 15:06:54
Nadiia
fix(gatsby-plugin-styletron): Styletron to peerDependencies (#22731)
false
Styletron to peerDependencies (#22731)
fix
diff --git a/packages/gatsby-plugin-styletron/README.md b/packages/gatsby-plugin-styletron/README.md index 0ac99157e47fb..bc5b7c1109248 100644 --- a/packages/gatsby-plugin-styletron/README.md +++ b/packages/gatsby-plugin-styletron/README.md @@ -9,7 +9,7 @@ rendering support. ## Install ```shell -npm install gatsby-plugin-styletron +npm install gatsby-plugin-styletron styletron-react styletron-engine-atomic ``` ## How to use diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json index 417a97ac82e83..ef6fa5d49e561 100644 --- a/packages/gatsby-plugin-styletron/package.json +++ b/packages/gatsby-plugin-styletron/package.json @@ -6,16 +6,14 @@ "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, - "dependencies": { - "@babel/runtime": "^7.9.6", - "styletron-engine-atomic": "^1.4.6", - "styletron-react": "^5.2.7" - }, + "dependencies": {}, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.9.6", "babel-preset-gatsby-package": "^0.4.1", - "cross-env": "^5.2.1" + "cross-env": "^5.2.1", + "styletron-engine-atomic": "^1.4.6", + "styletron-react": "^5.2.7" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styletron#readme", "keywords": [ @@ -25,7 +23,10 @@ "license": "MIT", "main": "index.js", "peerDependencies": { - "gatsby": "^2.0.0" + "gatsby": "^2.0.0", + "react": "^16.4.2", + "styletron-engine-atomic": "^1.4.6", + "styletron-react": "^5.2.7" }, "repository": { "type": "git",
5c7a3e1136050c9d3c39853b2e0afe6a0dbd977d
2019-08-13 04:40:34
stefanprobst
fix(gatsby): Don't show deprecation warning when adding childr… (#16559)
false
Don't show deprecation warning when adding childr… (#16559)
fix
diff --git a/packages/gatsby/src/schema/extensions/__tests__/child-relations.js b/packages/gatsby/src/schema/extensions/__tests__/child-relations.js index 0a83a8696cf7e..3c3684fd3d0c9 100644 --- a/packages/gatsby/src/schema/extensions/__tests__/child-relations.js +++ b/packages/gatsby/src/schema/extensions/__tests__/child-relations.js @@ -58,7 +58,7 @@ describe(`Define parent-child relationships with field extensions`, () => { type: `Child`, contentDigest: `Child1`, }, - parent: [`parent1`], + parent: `parent1`, children: [], name: `Child 1`, }, @@ -68,7 +68,7 @@ describe(`Define parent-child relationships with field extensions`, () => { type: `Child`, contentDigest: `Child2`, }, - parent: [`parent2`], + parent: `parent2`, children: [], name: `Child 2`, }, @@ -78,7 +78,7 @@ describe(`Define parent-child relationships with field extensions`, () => { type: `AnotherChild`, contentDigest: `AnotherChild1`, }, - parent: [`parent1`], + parent: `parent1`, children: [], name: `Another Child 1`, }, @@ -88,7 +88,7 @@ describe(`Define parent-child relationships with field extensions`, () => { type: `AnotherChild`, contentDigest: `AnotherChild2`, }, - parent: [`parent1`], + parent: `parent1`, children: [], name: `Another Child 2`, }, @@ -160,9 +160,13 @@ describe(`Define parent-child relationships with field extensions`, () => { type Child implements Node { id: ID! } + type AnotherChild implements Node @childOf(types: ["Parent"], many: true) { + id: ID! + } `) ) await buildSchema() + expect(report.warn).toBeCalledTimes(1) expect(report.warn).toBeCalledWith( `On types with the \`@dontInfer\` directive, or with the \`infer\` ` + `extension set to \`false\`, automatically adding fields for ` + diff --git a/packages/gatsby/src/schema/extensions/__tests__/interfaces.js b/packages/gatsby/src/schema/extensions/__tests__/interfaces.js index f22a916f77a7c..2f2086f9614b6 100644 --- a/packages/gatsby/src/schema/extensions/__tests__/interfaces.js +++ b/packages/gatsby/src/schema/extensions/__tests__/interfaces.js @@ -141,7 +141,7 @@ describe(`Queryable Node interfaces`, () => { date: { type: `Date`, extensions: { - dateformat: true, + dateformat: {}, }, }, }, @@ -154,7 +154,7 @@ describe(`Queryable Node interfaces`, () => { date: { type: `Date`, extensions: { - dateformat: true, + dateformat: {}, }, }, }, @@ -167,7 +167,7 @@ describe(`Queryable Node interfaces`, () => { date: { type: `Date`, extensions: { - dateformat: true, + dateformat: {}, }, }, }, diff --git a/packages/gatsby/src/schema/schema.js b/packages/gatsby/src/schema/schema.js index e8a237025ad4d..1286d1543b883 100644 --- a/packages/gatsby/src/schema/schema.js +++ b/packages/gatsby/src/schema/schema.js @@ -811,7 +811,8 @@ const addImplicitConvenienceChildrenFields = ({ // relations explicitly set with the `childOf` extension will be added. // if (shouldInfer === false) return - const nodes = nodeStore.getNodesByType(typeComposer.getTypeName()) + const parentTypeName = typeComposer.getTypeName() + const nodes = nodeStore.getNodesByType(parentTypeName) const childNodesByType = groupChildNodesByType({ nodeStore, nodes }) @@ -824,17 +825,26 @@ const addImplicitConvenienceChildrenFields = ({ // Adding children fields to types with the `@dontInfer` extension is deprecated if (shouldInfer === false) { - const fieldName = _.camelCase( - `${maxChildCount > 1 ? `children` : `child`} ${typeName}` - ) - if (!typeComposer.hasField(fieldName)) { + const childTypeComposer = schemaComposer.getAnyTC(typeName) + const childOfExtension = childTypeComposer.getExtension(`childOf`) + const many = maxChildCount > 1 + + // Only warn when the parent-child relation has not been explicitly set with + if ( + !childOfExtension || + !childOfExtension.types.includes(parentTypeName) || + !childOfExtension.many === many + ) { + const fieldName = _.camelCase( + `${many ? `children` : `child`} ${typeName}` + ) report.warn( `On types with the \`@dontInfer\` directive, or with the \`infer\` ` + `extension set to \`false\`, automatically adding fields for ` + `children types is deprecated.\n` + `In Gatsby v3, only children fields explicitly set with the ` + `\`childOf\` extension will be added.\n` + - `For example, in Gatsby v3, \`${typeComposer.getTypeName()}\` will ` + + `For example, in Gatsby v3, \`${parentTypeName}\` will ` + `not get a \`${fieldName}\` field.` ) } @@ -931,7 +941,7 @@ const addTypeToRootQuery = ({ schemaComposer, typeComposer }) => { }, resolve: findManyPaginated(typeName), }, - }).makeFieldNonNull([queryNamePlural]) + }).makeFieldNonNull(queryNamePlural) } const parseTypes = ({
5e1c836a76c19dccf2c965381ea3f666e3d348a5
2018-12-04 04:22:50
Dustin Schau
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md index c23ebe51338d6..ddcf75318188c 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. +<a name="3.0.18"></a> + +## [3.0.18](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress/compare/[email protected]@3.0.18) (2018-12-03) + +**Note:** Version bump only for package gatsby-source-wordpress + <a name="3.0.17"></a> ## [3.0.17](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress/compare/[email protected]@3.0.17) (2018-12-01) diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index 477dbb85d9292..a9127603beaae 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.0.17", + "version": "3.0.18", "author": "Sebastien Fichot <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues"
3f94e211b8e1e3af9669b77d745abf7455e306c5
2019-04-24 16:50:56
Janosh Riebesell
feat(docs): Adds "Adding Comments" guide (#12458)
false
Adds "Adding Comments" guide (#12458)
feat
diff --git a/docs/contributing/gatsby-style-guide.md b/docs/contributing/gatsby-style-guide.md index cb43a4c450a22..c21ae27920c43 100644 --- a/docs/contributing/gatsby-style-guide.md +++ b/docs/contributing/gatsby-style-guide.md @@ -70,7 +70,7 @@ examples: - [plugin README](/packages/gatsby-source-filesystem/) - [starter README](https://github.com/gatsbyjs/gatsby-starter-default) -Please see the [Docs templates](/contributing/how-to-contribute/docs-templates/) for guidelines on how to format the above kinds of documents. +Please see the [Docs templates](/contributing/docs-templates/) for guidelines on how to format the above kinds of documents. ## Writing process diff --git a/docs/docs/adding-comments.md b/docs/docs/adding-comments.md new file mode 100644 index 0000000000000..cb57387d05d4b --- /dev/null +++ b/docs/docs/adding-comments.md @@ -0,0 +1,89 @@ +--- +title: Adding comments +--- + +If you're using Gatsby to run a blog and you've started adding some content to it, the next thing to think about is how to increase engagement among your visitors. A great way to do that is to allow them to ask questions and express their views on what you've written. This will make your blog seem much more lively to anyone visiting it. + +There are many options out there for adding comment functionality, several of them specifically targeted at static sites. While this list is by no means exhaustive, it does serve as a good starting point to illustrate what's available: + +- [Disqus](https://disqus.com) +- [Commento](https://commento.io) +- [Facebook comments](https://www.npmjs.com/package/react-facebook) +- [Staticman](https://staticman.net) +- [JustComments](https://just-comments.com) +- [TalkYard](https://www.talkyard.io) +- [Gitalk](https://gitalk.github.io) + +In this guide, we'll show you how to implement Disqus on your blog as it has a number of nice features. + +- It is low maintenance, meaning [moderating your comments and maintaining your forum](https://help.disqus.com/moderation/moderating-101) is easy. +- It provides official [React support](https://github.com/disqus/disqus-react). +- It offers a [generous free tier](https://disqus.com/pricing). +- It [seems to be by far the most widely used service](https://www.datanyze.com/market-share/comment-systems/disqus-market-share). +- It’s easy to comment: Disqus has a large existing user base and the onboarding experience for new users is fast. You can register with your Google, Facebook or Twitter account and users can easily share the comments they write through those channels. +- The Disqus UI has a distinct but unobtrusive look that many users will recognize and trust. +- All Disqus components are lazy-loaded, meaning they won't negatively impact the load time of your posts. + +Bear in mind, however, that choosing Disqus also incurs a tradeoff. Your site is no longer entirely static but depends on an external platform to deliver your comments through embedded `iframe`s on the fly. Moreover, you should consider the privacy implications of letting a third party store your visitors' comments and potentially track their browsing behavior. You may consult the [Disqus privacy policy](https://help.disqus.com/terms-and-policies/disqus-privacy-policy), the [privacy FAQs](https://help.disqus.com/terms-and-policies/privacy-faq) (specifically the last question on GDPR compliance) and inform your users [how to edit their data sharing settings](https://help.disqus.com/terms-and-policies/how-to-edit-your-data-sharing-settings). + +If these concerns outweigh the benefits of Disqus, you may want to look into some of the other options above. We welcome pull requests to expand this guide with setup instructions for other services. + +## Implementing Disqus + +![Disqus logo](images/disqus-logo.svg) + +Here are the steps for adding Disqus comments to your own blog: + +1. [Sign-up to Disqus](https://disqus.com/profile/signup). During the process you'll have to choose a shortname for your site. This is how Disqus will identify comments coming from your site. Copy that for later. +2. Install the Disqus React package + + ```sh + npm install disqus-react + ``` + +3. Add the shortname from step 1 as something like `GATSBY_DISQUS_NAME` to your `.env` and `.env.example` files so that people forking your repo will know that they need to supply this value to get comments to work. (You need to prefix the environment variable with `GATSBY_` in order to [make it available to client-side code](https://www.gatsbyjs.org/docs/environment-variables/#client-side-javascript).) + ```:env:title=.env.example + ... + # enables Disqus comments for blog posts + GATSBY_DISQUS_NAME=insertValue + ``` + ```:env:title=.env + ... + GATSBY_DISQUS_NAME=yourSiteShortname + ``` +4. In your blog post template (usually `src/templates/post.js`) import the `DiscussionEmbed` component. + + ```js:title=src/templates/post.js + import React from "react" + import { graphql } from "gatsby" + // highlight-next-line + import { DiscussionEmbed } from "disqus-react" + ``` + + Then define your Disqus configuration object + + ```js + const disqusConfig = { + shortname: process.env.GATSBY_DISQUS_NAME, + config: { identifier: slug, title }, + } + ``` + + where `identifier` must be a string or number that uniquely identifies the post. It could be the post's slug, title or some ID. Finally, add `DiscussionEmbed` to the JSX of your post template. + + ```jsx:title=src/templates/post.js + return ( + <Global> + ... + <PageBody> + ... + {/* highlight-next-line */} + <DiscussionEmbed {...disqusConfig} /> + </PageBody> + </Global> + ) + ``` + +And you're done. You should now see the Disqus comment form appear beneath your blog post [looking like this](https://janosh.io/blog/disqus-comments#disqus_thread). Happy blogging! + +[![Disqus comments](images/disqus-comments.png)](https://janosh.io/blog/disqus-comments#disqus_thread) diff --git a/docs/docs/images/disqus-comments.png b/docs/docs/images/disqus-comments.png new file mode 100644 index 0000000000000..dab208e9a8082 Binary files /dev/null and b/docs/docs/images/disqus-comments.png differ diff --git a/docs/docs/images/disqus-logo.svg b/docs/docs/images/disqus-logo.svg new file mode 100644 index 0000000000000..71bc1de802132 --- /dev/null +++ b/docs/docs/images/disqus-logo.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="438" height="80" viewBox="0 0 438 80"> + <path fill="#229CFF" d="M30.208 1.602H.878v76.04h28.895c27.376 0 43.342-16.294 43.342-38.237v-.22c.002-21.94-15.75-37.583-42.907-37.583zm21.29 38.128c0 12.272-8.363 19.227-20.963 19.227h-8.582v-38.67h8.582c12.6 0 20.964 7.06 20.964 19.225v.218zm35.63 37.907h21.182V1.602H87.128v76.035zm70.065-47.358c-10.538-2.392-13.145-3.912-13.145-7.386v-.22c0-2.716 2.5-4.888 7.604-4.888 6.733 0 14.338 2.605 21.292 7.496l10.536-14.885C175.223 3.772 165.122.294 152.196.294c-18.25 0-29.438 10.21-29.438 24.332v.218c0 15.644 12.492 20.207 28.676 23.896 10.32 2.39 12.818 4.127 12.818 7.28v.216c0 3.258-3.042 5.213-8.69 5.213-8.798 0-17.163-3.15-24.657-9.124L119.173 66.34c9.342 8.365 22.16 12.604 35.63 12.604 18.466 0 30.742-9.233 30.742-24.768v-.217c0-14.23-10.865-19.878-28.352-23.68zm120.573 9.342v-.218c0-21.834-17.38-39.324-40.844-39.324-23.462 0-41.06 17.708-41.06 39.542v.216c0 21.834 17.38 39.324 40.845 39.324 8.69 0 16.62-2.5 23.137-6.736l8.363 7.494 10.645-11.84-7.82-6.623c4.343-6.193 6.734-13.8 6.734-21.835zm-21.398.433c0 2.607-.435 5.105-1.304 7.385l-10.32-9.342-10.644 11.95 10.537 9.017a21.627 21.627 0 0 1-7.71 1.412c-11.622 0-19.444-9.666-19.444-20.64v-.215c0-10.972 7.712-20.532 19.225-20.532 11.733 0 19.664 9.668 19.664 20.748v.216h-.004zm83.534 4.345c0 10.643-5.543 15.64-14.016 15.64-8.47 0-14.012-5.212-14.012-16.185V1.602h-21.398v42.69c0 23.79 13.578 34.763 35.195 34.763S361.3 68.3 361.3 43.75V1.602h-21.398V44.4zm68.868-14.12c-10.537-2.392-13.145-3.912-13.145-7.386v-.22c0-2.716 2.5-4.888 7.607-4.888 6.73 0 14.338 2.605 21.29 7.496L435.058 10.4C426.804 3.775 416.703.297 403.777.297c-18.25 0-29.44 10.21-29.44 24.332v.217c0 15.644 12.493 20.205 28.677 23.896 10.32 2.39 12.818 4.13 12.818 7.28v.216c0 3.257-3.043 5.214-8.69 5.214-8.8 0-17.165-3.152-24.66-9.125l-11.728 14.01c9.343 8.368 22.16 12.603 35.627 12.603 18.468 0 30.742-9.233 30.742-24.766v-.22c-.002-14.227-10.866-19.875-28.354-23.678z"/> +</svg> diff --git a/www/src/data/sidebars/doc-links.yaml b/www/src/data/sidebars/doc-links.yaml index 3ef982b63502a..36f66727e5113 100644 --- a/www/src/data/sidebars/doc-links.yaml +++ b/www/src/data/sidebars/doc-links.yaml @@ -275,6 +275,8 @@ link: /docs/adding-tags-and-categories-to-blog-posts/ - title: Adding Pagination link: /docs/adding-pagination/ + - title: Adding Comments + link: /docs/adding-comments/ - title: Creating a Sitemap link: /docs/creating-a-sitemap/ - title: Adding an RSS Feed
9eec22b4f1bb5ec0d5334ea17c82635c411f8a4a
2020-02-07 01:33:19
Kristóf Poduszló
docs(dynamic-routes): utilize `basepath` of router (#19981)
false
utilize `basepath` of router (#19981)
docs
diff --git a/docs/docs/client-only-routes-and-user-authentication.md b/docs/docs/client-only-routes-and-user-authentication.md index ca0f573a0abbd..31b838718fc36 100644 --- a/docs/docs/client-only-routes-and-user-authentication.md +++ b/docs/docs/client-only-routes-and-user-authentication.md @@ -35,11 +35,11 @@ const App = () => { return ( <Layout> // highlight-start - <Router> - <Profile path="/app/profile" /> - <Details path="/app/details" /> - <Login path="/app/login" /> - <Default path="/app" /> + <Router basepath="/app"> + <Profile path="/profile" /> + <Details path="/details" /> + <Login path="/login" /> + <Default path="/" /> </Router> // highlight-end </Layout> @@ -49,7 +49,7 @@ const App = () => { export default App ``` -With routes nested under the `<Router />` from Reach Router, it will [render the component from the route that corresponds to the `location`](https://reach.tech/router/api/Router). In the case of the `/app/profile` path, the `Profile` component will be rendered. +With routes nested under the `<Router />` from Reach Router, it will [render the component from the route that corresponds to the `location`](https://reach.tech/router/api/Router). In the case of the `/app/profile` path, the `Profile` component will be rendered, as its prefix matches the base path of `/app`, and the remaining part is identical to the child's path. ### Adjusting routes to account for authenticated users @@ -68,13 +68,13 @@ import PrivateRoute from "../components/PrivateRoute" // highlight-line const App = () => { return ( <Layout> - <Router> + <Router basepath="/app"> // highlight-start - <PrivateRoute path="/app/profile" component={Profile} /> - <PrivateRoute path="/app/details" component={Details} /> + <PrivateRoute path="/profile" component={Profile} /> + <PrivateRoute path="/details" component={Details} /> // highlight-end - <Login path="/app/login" /> - <Default path="/app" /> + <Login path="/login" /> + <Default path="/" /> </Router> </Layout> ) @@ -141,8 +141,8 @@ If you are hosting on your own server, you can opt to configure the server to ha Consider the following router and route to serve as an example: ```jsx:title=src/pages/app.js -<Router> - <Route path="/app/why-gatsby-is-awesome" /> +<Router basepath="/app"> + <Route path="/why-gatsby-is-awesome" /> </Router> ```
e0bfeefda8245f34a8d8270be039ae774cdb790a
2019-02-26 23:51:16
Jacob Blomgren
docs(www): plugin search a11y improvements (#11836)
false
plugin search a11y improvements (#11836)
docs
diff --git a/www/package.json b/www/package.json index 9d7f37e9c7719..cce827f869a9c 100644 --- a/www/package.json +++ b/www/package.json @@ -5,6 +5,7 @@ "author": "Kyle Mathews <[email protected]>", "dependencies": { "@reach/skip-nav": "^0.1.1", + "@reach/visually-hidden": "^0.1.2", "axios": "^0.18.0", "bluebird": "^3.5.1", "dotenv": "^6.0.0", diff --git a/www/src/components/plugin-searchbar-body.js b/www/src/components/plugin-searchbar-body.js index 0136ddb972674..920fabb6d3e1f 100644 --- a/www/src/components/plugin-searchbar-body.js +++ b/www/src/components/plugin-searchbar-body.js @@ -21,6 +21,9 @@ import typography, { rhythm, scale } from "../utils/typography" import { scrollbarStyles } from "../utils/styles" import { injectGlobal } from "react-emotion" import removeMD from "remove-markdown" +import VisuallyHidden from "@reach/visually-hidden" +import styled from "react-emotion" +import { SkipNavLink } from "@reach/skip-nav" // This is for the urlSync const updateAfter = 700 @@ -120,6 +123,9 @@ injectGlobal` .ais-SearchBox__submit:focus { outline: 0; } + .ais-SearchBox__submit:focus svg { + fill: ${colors.gatsby}; + } .ais-SearchBox__submit svg { width: 1rem; height: 1rem; @@ -137,7 +143,8 @@ injectGlobal` .ais-SearchBox__reset:focus { outline: 0; } - .ais-SearchBox__reset:hover svg { + .ais-SearchBox__reset:hover svg, + .ais-SearchBox__reset:focus svg { fill: ${colors.gatsby}; } .ais-SearchBox__reset svg { @@ -162,7 +169,8 @@ injectGlobal` }; font-family: ${typography.options.headerFontFamily.join(`,`)}; } - .ais-InfiniteHits__loadMore:hover { + .ais-InfiniteHits__loadMore:hover, + .ais-InfiniteHits__loadMore:focus { background-color: ${colors.gatsby}; color: #fff; } @@ -173,6 +181,30 @@ injectGlobal` ` /* stylelint-enable */ +const StyledSkipNavLink = styled(SkipNavLink)` + border: 0; + clip: rect(0 0 0 0); + height: 1px; + width: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + position: absolute; + z-index: 100; + font-size: 0.85rem; + + :focus { + padding: 0.9rem; + top: 10px; + left: 10px; + background: white; + text-decoration: none; + width: auto; + height: auto; + clip: auto; + } +` + // Search shows a list of "hits", and is a child of the PluginSearchBar component class Search extends Component { render() { @@ -231,6 +263,7 @@ class Search extends Component { }, }} /> + <StyledSkipNavLink>Skip to main content</StyledSkipNavLink> </div> </div> @@ -358,17 +391,27 @@ const Result = ({ hit, pathname, query }) => { marginBottom: rhythm(typography.options.blockMarginBottom / 2), }} > - <div + <h2 css={{ color: selected ? colors.gatsby : false, + fontSize: `inherit`, fontFamily: typography.options.headerFontFamily.join(`,`), fontWeight: `bold`, lineHeight: 1.2, + marginBottom: 0, + marginTop: 0, + letterSpacing: 0, }} > {hit.name} + </h2> + <div> + <VisuallyHidden> + {hit.downloadsLast30Days} monthly downloads + </VisuallyHidden> </div> <div + aria-hidden css={{ alignItems: `center`, color: selected ? colors.lilac : colors.gray.bright,
90e66c7fcdc7a75185bdaa336b0f9bdec9762585
2020-08-19 20:26:31
Vladimir Razuvaev
chore(gatsby): export gatsby graphql TS types (#26548)
false
export gatsby graphql TS types (#26548)
chore
diff --git a/packages/gatsby/index.d.ts b/packages/gatsby/index.d.ts index 21c90f700aee2..c8d47b1fd5d3e 100644 --- a/packages/gatsby/index.d.ts +++ b/packages/gatsby/index.d.ts @@ -817,27 +817,27 @@ export interface GatsbyGraphQLObjectType { config: ComposeObjectTypeConfig<any, any> } -interface GatsbyGraphQLInputObjectType { +export interface GatsbyGraphQLInputObjectType { kind: "INPUT_OBJECT" config: ComposeInputObjectTypeConfig } -interface GatsbyGraphQLUnionType { +export interface GatsbyGraphQLUnionType { kind: "UNION" config: ComposeUnionTypeConfig<any, any> } -interface GatsbyGraphQLInterfaceType { +export interface GatsbyGraphQLInterfaceType { kind: "INTERFACE" config: ComposeInterfaceTypeConfig<any, any> } -interface GatsbyGraphQLEnumType { +export interface GatsbyGraphQLEnumType { kind: "ENUM" config: ComposeEnumTypeConfig } -interface GatsbyGraphQLScalarType { +export interface GatsbyGraphQLScalarType { kind: "SCALAR" config: ComposeScalarTypeConfig }
2059ead7ff0bcfa0897b1606cbfa559835b97f84
2020-12-30 02:16:35
Vladimir Razuvaev
chore(release): Publish next pre-minor
false
Publish next pre-minor
chore
diff --git a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md index 9d402f89b48df..de944899e235f 100644 --- a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md +++ b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.15.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-plugin-remove-graphql-queries@2.14.0-next.0...babel-plugin-remove-graphql-queries@2.15.0-next.0) (2020-12-29) + +**Note:** Version bump only for package babel-plugin-remove-graphql-queries + # [2.14.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-plugin-remove-graphql-queries@2.13.0-next.0...babel-plugin-remove-graphql-queries@2.14.0-next.0) (2020-12-10) ### Bug Fixes diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json index 059e49ee00018..3597f262818ec 100644 --- a/packages/babel-plugin-remove-graphql-queries/package.json +++ b/packages/babel-plugin-remove-graphql-queries/package.json @@ -1,6 +1,6 @@ { "name": "babel-plugin-remove-graphql-queries", - "version": "2.14.0-next.0", + "version": "2.15.0-next.0", "author": "Jason Quense <[email protected]>", "repository": { "type": "git", @@ -11,7 +11,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/babel-preset-gatsby-package/CHANGELOG.md b/packages/babel-preset-gatsby-package/CHANGELOG.md index 84a57c7e0f047..d8500b53ed6a3 100644 --- a/packages/babel-preset-gatsby-package/CHANGELOG.md +++ b/packages/babel-preset-gatsby-package/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby-package@[email protected]) (2020-12-29) + +**Note:** Version bump only for package babel-preset-gatsby-package + # [0.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby-package@[email protected]) (2020-12-10) **Note:** Version bump only for package babel-preset-gatsby-package diff --git a/packages/babel-preset-gatsby-package/package.json b/packages/babel-preset-gatsby-package/package.json index 24de1f78e716e..994f2ab345b59 100644 --- a/packages/babel-preset-gatsby-package/package.json +++ b/packages/babel-preset-gatsby-package/package.json @@ -1,6 +1,6 @@ { "name": "babel-preset-gatsby-package", - "version": "0.10.0-next.0", + "version": "0.11.0-next.0", "author": "Philipp Spiess <[email protected]>", "repository": { "type": "git", diff --git a/packages/babel-preset-gatsby/CHANGELOG.md b/packages/babel-preset-gatsby/CHANGELOG.md index 9b9ed01f5da25..98e9610e7cb3c 100644 --- a/packages/babel-preset-gatsby/CHANGELOG.md +++ b/packages/babel-preset-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. +# [0.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.11.0-next.0) (2020-12-29) + +**Note:** Version bump only for package babel-preset-gatsby + # [0.10.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.10.0-next.1) (2020-12-29) **Note:** Version bump only for package babel-preset-gatsby diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json index d42273bb7bec0..4924a69044e22 100644 --- a/packages/babel-preset-gatsby/package.json +++ b/packages/babel-preset-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "babel-preset-gatsby", - "version": "0.10.0-next.1", + "version": "0.11.0-next.0", "author": "Philipp Spiess <[email protected]>", "repository": { "type": "git", @@ -21,8 +21,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^2.8.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^1.8.0-next.1", - "gatsby-legacy-polyfills": "^0.5.0-next.0" + "gatsby-core-utils": "^1.9.0-next.0", + "gatsby-legacy-polyfills": "^0.6.0-next.0" }, "peerDependencies": { "@babel/core": "^7.11.6", @@ -37,7 +37,7 @@ }, "devDependencies": { "@babel/cli": "^7.12.1", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "slash": "^3.0.0" }, diff --git a/packages/create-gatsby/CHANGELOG.md b/packages/create-gatsby/CHANGELOG.md index debf543ed1f88..ecd1260525e2d 100644 --- a/packages/create-gatsby/CHANGELOG.md +++ b/packages/create-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. +# [0.4.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.4.0-next.0) (2020-12-29) + +**Note:** Version bump only for package create-gatsby + # [0.3.0-next.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.3.0-next.4) (2020-12-17) **Note:** Version bump only for package create-gatsby diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json index 9de48b4a53acf..eac00113e84d8 100644 --- a/packages/create-gatsby/package.json +++ b/packages/create-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "create-gatsby", - "version": "0.3.0-next.4", + "version": "0.4.0-next.0", "main": "lib/index.js", "bin": "cli.js", "license": "MIT", @@ -27,7 +27,7 @@ "eslint": "^7.15.0", "execa": "^4.1.0", "fs-extra": "^9.0.1", - "gatsby-plugin-utils": "^0.7.0-next.1", + "gatsby-plugin-utils": "^0.8.0-next.0", "joi": "^17.2.1", "microbundle": "^0.12.4", "node-fetch": "^2.6.1", diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index a81195919c8fd..370b720dd3dd6 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.7.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.7.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-admin + # [0.6.0-next.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.6.0-next.8) (2020-12-29) **Note:** Version bump only for package gatsby-admin diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index 09eb29ea1ea11..006170ab83360 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-admin", - "version": "0.6.0-next.8", + "version": "0.7.0-next.0", "main": "index.js", "author": "Max Stoiber", "license": "MIT", @@ -20,11 +20,11 @@ "@typescript-eslint/parser": "^2.34.0", "csstype": "^2.6.13", "formik": "^2.2.5", - "gatsby": "^2.30.0-next.8", + "gatsby": "^2.31.0-next.0", "gatsby-interface": "^0.0.225", - "gatsby-plugin-typescript": "^2.10.0-next.0", + "gatsby-plugin-typescript": "^2.11.0-next.0", "gatsby-plugin-webfonts": "^1.1.3", - "gatsby-source-graphql": "^2.12.0-next.1", + "gatsby-source-graphql": "^2.13.0-next.0", "lodash-es": "^4.17.15", "ncp": "^2.0.0", "nodemon": "^2.0.6", diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index e81fcab06ee10..19ff1d7c36667 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.18.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.18.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-cli + # [2.17.0-next.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.17.0-next.5) (2020-12-29) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index bc04e31143583..2cd204a01abca 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.17.0-next.5", + "version": "2.18.0-next.0", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "cli.js" @@ -19,14 +19,14 @@ "common-tags": "^1.8.0", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^0.3.0-next.4", + "create-gatsby": "^0.4.0-next.0", "envinfo": "^7.7.3", "execa": "^3.4.0", "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^1.8.0-next.1", - "gatsby-recipes": "^0.7.0-next.2", - "gatsby-telemetry": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", + "gatsby-recipes": "^0.8.0-next.0", + "gatsby-telemetry": "^1.9.0-next.0", "hosted-git-info": "^3.0.6", "is-valid-path": "^0.1.1", "lodash": "^4.17.20", @@ -59,7 +59,7 @@ "@rollup/plugin-replace": "^2.3.3", "@types/hosted-git-info": "^3.0.1", "@types/yargs": "^15.0.8", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "ink": "^3.0.8", "ink-spinner": "^4.0.1", diff --git a/packages/gatsby-codemods/CHANGELOG.md b/packages/gatsby-codemods/CHANGELOG.md index 126f9bd975dfa..78dee20bd5693 100644 --- a/packages/gatsby-codemods/CHANGELOG.md +++ b/packages/gatsby-codemods/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-codemods + # [1.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-codemods diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json index 8157c89df7254..2c7ae3890df82 100644 --- a/packages/gatsby-codemods/package.json +++ b/packages/gatsby-codemods/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-codemods", - "version": "1.8.0-next.0", + "version": "1.9.0-next.0", "description": "A collection of codemod scripts for use with JSCodeshift that help migrate to newer versions of Gatsby.", "main": "index.js", "scripts": { @@ -36,7 +36,7 @@ }, "devDependencies": { "@babel/cli": "^7.12.1", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-core-utils/CHANGELOG.md b/packages/gatsby-core-utils/CHANGELOG.md index 1965504460dd9..2533932925fb9 100644 --- a/packages/gatsby-core-utils/CHANGELOG.md +++ b/packages/gatsby-core-utils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-core-utils + # [1.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.8.0-next.1) (2020-12-29) **Note:** Version bump only for package gatsby-core-utils diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json index 86f2a37a4ebe7..a9d0646e53e36 100644 --- a/packages/gatsby-core-utils/package.json +++ b/packages/gatsby-core-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-core-utils", - "version": "1.8.0-next.1", + "version": "1.9.0-next.0", "description": "A collection of gatsby utils used in different gatsby packages", "keywords": [ "gatsby", @@ -41,7 +41,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@types/ci-info": "2.0.0", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "typescript": "^3.9.7" }, diff --git a/packages/gatsby-cypress/CHANGELOG.md b/packages/gatsby-cypress/CHANGELOG.md index 8ae7c435f9da8..cfaadd0018bb2 100644 --- a/packages/gatsby-cypress/CHANGELOG.md +++ b/packages/gatsby-cypress/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-cypress + # [0.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.9.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-cypress diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json index 0fb002185fad3..9057b263bb182 100644 --- a/packages/gatsby-cypress/package.json +++ b/packages/gatsby-cypress/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-cypress", - "version": "0.9.0-next.0", + "version": "0.10.0-next.0", "description": "Cypress tools for Gatsby projects", "main": "index.js", "repository": { @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-design-tokens/CHANGELOG.md b/packages/gatsby-design-tokens/CHANGELOG.md index 23e3ae7d811e9..1758d18f4cc43 100644 --- a/packages/gatsby-design-tokens/CHANGELOG.md +++ b/packages/gatsby-design-tokens/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.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.6.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-design-tokens + # [2.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.5.0-next.0) (2020-12-10) **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 4cc5942ca32ed..4679316d0563f 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.5.0-next.0", + "version": "2.6.0-next.0", "description": "Gatsby Design Tokens", "main": "dist/index.js", "module": "dist/index.esm.js", diff --git a/packages/gatsby-dev-cli/CHANGELOG.md b/packages/gatsby-dev-cli/CHANGELOG.md index 50077fc1b4808..007a7d447c8db 100644 --- a/packages/gatsby-dev-cli/CHANGELOG.md +++ b/packages/gatsby-dev-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.13.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.13.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-dev-cli + # [2.12.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.0-next.0) (2020-12-10) **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 88fff6014b69a..91af868bd6844 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.12.0-next.0", + "version": "2.13.0-next.0", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby-dev": "./dist/index.js" @@ -27,7 +27,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-dev-cli#readme", diff --git a/packages/gatsby-graphiql-explorer/CHANGELOG.md b/packages/gatsby-graphiql-explorer/CHANGELOG.md index a36a969e81f23..0d3619fad52e3 100644 --- a/packages/gatsby-graphiql-explorer/CHANGELOG.md +++ b/packages/gatsby-graphiql-explorer/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-graphiql-explorer + # [0.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.9.0-next.1) (2020-12-17) **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 7fac0102fb2a7..d36e24631a792 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.9.0-next.1", + "version": "0.10.0-next.0", "description": "GraphiQL IDE with custom features for Gatsby users", "main": "index.js", "scripts": { @@ -38,7 +38,7 @@ "@babel/preset-env": "^7.12.1", "@babel/preset-react": "^7.12.5", "babel-loader": "^8.2.2", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "core-js": "^3.8.1", "cross-env": "^7.0.3", "css-loader": "^1.0.1", diff --git a/packages/gatsby-image/CHANGELOG.md b/packages/gatsby-image/CHANGELOG.md index bd81cfb0d6ccb..2dcc50440e6da 100644 --- a/packages/gatsby-image/CHANGELOG.md +++ b/packages/gatsby-image/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-image + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-image diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json index 4fa6845484f34..fe93962f5b4f8 100644 --- a/packages/gatsby-image/package.json +++ b/packages/gatsby-image/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-image", "description": "Lazy-loading React image component with optional support for the blur-up effect.", - "version": "2.9.0-next.0", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@testing-library/react": "^9.5.0", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "jest-matchmedia-mock": "^1.1.0" }, diff --git a/packages/gatsby-legacy-polyfills/CHANGELOG.md b/packages/gatsby-legacy-polyfills/CHANGELOG.md index 40dd39796f662..2db9a7f80db9d 100644 --- a/packages/gatsby-legacy-polyfills/CHANGELOG.md +++ b/packages/gatsby-legacy-polyfills/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.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.6.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-legacy-polyfills + # [0.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.5.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-legacy-polyfills diff --git a/packages/gatsby-legacy-polyfills/package.json b/packages/gatsby-legacy-polyfills/package.json index 7d7d91c8789c6..a38dd46c575b8 100644 --- a/packages/gatsby-legacy-polyfills/package.json +++ b/packages/gatsby-legacy-polyfills/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-legacy-polyfills", "description": "Polyfills for legacy browsers", - "version": "0.5.0-next.0", + "version": "0.6.0-next.0", "main": "dist/polyfills.js", "author": "Ward Peeters <[email protected]>", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-legacy-polyfills#readme", diff --git a/packages/gatsby-link/CHANGELOG.md b/packages/gatsby-link/CHANGELOG.md index b99c95056a287..3f006047180c3 100644 --- a/packages/gatsby-link/CHANGELOG.md +++ b/packages/gatsby-link/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-link + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-link diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index c6c09501f2b79..979d863a92303 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-link", "description": "An enhanced Link component for Gatsby sites with support for resource prefetching", - "version": "2.9.0-next.0", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@testing-library/react": "^9.5.0", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-page-utils/CHANGELOG.md b/packages/gatsby-page-utils/CHANGELOG.md index 053f5d9ed387a..6e9cc75c2cc11 100644 --- a/packages/gatsby-page-utils/CHANGELOG.md +++ b/packages/gatsby-page-utils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.8.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-page-utils + # [0.7.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.7.0-next.1) (2020-12-29) **Note:** Version bump only for package gatsby-page-utils diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json index 919ed8369c0dc..dc702ccb0cc36 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.7.0-next.1", + "version": "0.8.0-next.0", "description": "Gatsby library that helps creating pages", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -26,7 +26,7 @@ "bluebird": "^3.7.2", "chokidar": "^3.4.3", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", "glob": "^7.1.6", "lodash": "^4.17.20", "micromatch": "^4.0.2" @@ -35,7 +35,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@types/micromatch": "^4.0.1", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "rimraf": "^3.0.2", "typescript": "^3.9.7" diff --git a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md index e08dbe8023864..c263c451295f2 100644 --- a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md +++ b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-benchmark-reporting@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-benchmark-reporting + # [0.7.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-benchmark-reporting@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-benchmark-reporting diff --git a/packages/gatsby-plugin-benchmark-reporting/package.json b/packages/gatsby-plugin-benchmark-reporting/package.json index 9e7dbc1dd4484..760bf55b1827e 100644 --- a/packages/gatsby-plugin-benchmark-reporting/package.json +++ b/packages/gatsby-plugin-benchmark-reporting/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-benchmark-reporting", "description": "Gatsby Benchmark Reporting", - "version": "0.7.0-next.0", + "version": "0.8.0-next.0", "author": "Peter van der Zee <pvdz@github>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0" + "babel-preset-gatsby-package": "^0.11.0-next.0" }, "dependencies": { "fast-glob": "^3.2.4", diff --git a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md index 13e9d030d644d..2683e55ebe967 100644 --- a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md +++ b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-canonical-urls@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-canonical-urls + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-canonical-urls@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-canonical-urls diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json index abb971f5f7b40..f26e9519b278f 100644 --- a/packages/gatsby-plugin-canonical-urls/package.json +++ b/packages/gatsby-plugin-canonical-urls/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-canonical-urls", "description": "Add canonical links to HTML pages Gatsby generates.", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-canonical-urls#readme", diff --git a/packages/gatsby-plugin-catch-links/CHANGELOG.md b/packages/gatsby-plugin-catch-links/CHANGELOG.md index 413568837683e..fec00fa395855 100644 --- a/packages/gatsby-plugin-catch-links/CHANGELOG.md +++ b/packages/gatsby-plugin-catch-links/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-catch-links@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-catch-links + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-catch-links@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-catch-links diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json index 20e49f17f5ead..ecc487737834f 100644 --- a/packages/gatsby-plugin-catch-links/package.json +++ b/packages/gatsby-plugin-catch-links/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-catch-links", "description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links#readme", diff --git a/packages/gatsby-plugin-coffeescript/CHANGELOG.md b/packages/gatsby-plugin-coffeescript/CHANGELOG.md index 25e7a050a39f1..b210cecaf90a9 100644 --- a/packages/gatsby-plugin-coffeescript/CHANGELOG.md +++ b/packages/gatsby-plugin-coffeescript/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-coffeescript@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-coffeescript + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-coffeescript@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-coffeescript diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json index 77675b1ecb400..aa88ed259df73 100644 --- a/packages/gatsby-plugin-coffeescript/package.json +++ b/packages/gatsby-plugin-coffeescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-coffeescript", "description": "Adds CoffeeScript support for Gatsby", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-coffeescript#readme", diff --git a/packages/gatsby-plugin-create-client-paths/CHANGELOG.md b/packages/gatsby-plugin-create-client-paths/CHANGELOG.md index a691abcba92b9..7a347d1c42859 100644 --- a/packages/gatsby-plugin-create-client-paths/CHANGELOG.md +++ b/packages/gatsby-plugin-create-client-paths/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-create-client-paths@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-create-client-paths + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-create-client-paths@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-create-client-paths diff --git a/packages/gatsby-plugin-create-client-paths/package.json b/packages/gatsby-plugin-create-client-paths/package.json index 4867c76897796..df41d385fcf18 100644 --- a/packages/gatsby-plugin-create-client-paths/package.json +++ b/packages/gatsby-plugin-create-client-paths/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-create-client-paths", "description": "Gatsby-plugin for creating paths that exist only on the client", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "[email protected]", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-create-client-paths#readme", diff --git a/packages/gatsby-plugin-cxs/CHANGELOG.md b/packages/gatsby-plugin-cxs/CHANGELOG.md index c1c991d04d915..b11ce98caa6fb 100644 --- a/packages/gatsby-plugin-cxs/CHANGELOG.md +++ b/packages/gatsby-plugin-cxs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-cxs + # [2.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.1) (2020-12-17) **Note:** Version bump only for package gatsby-plugin-cxs diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json index 71247ce3e5a9c..001d7e87573ca 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": "2.8.0-next.1", + "version": "2.9.0-next.0", "author": "Chen-Tai Hou <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,10 +12,10 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "cxs": "^6.2.0", - "gatsby-plugin-utils": "^0.7.0-next.1" + "gatsby-plugin-utils": "^0.8.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme", "keywords": [ diff --git a/packages/gatsby-plugin-emotion/CHANGELOG.md b/packages/gatsby-plugin-emotion/CHANGELOG.md index afd27e7aa0abc..6e9726309f1f8 100644 --- a/packages/gatsby-plugin-emotion/CHANGELOG.md +++ b/packages/gatsby-plugin-emotion/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.3.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.3.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-emotion + # [5.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.2.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-emotion diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json index 2da0751d37517..6ef60f48edff0 100644 --- a/packages/gatsby-plugin-emotion/package.json +++ b/packages/gatsby-plugin-emotion/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-emotion", "description": "Gatsby plugin to add support for Emotion", - "version": "5.2.0-next.0", + "version": "5.3.0-next.0", "author": "Tegan Churchill <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md index 6f821f022a6b1..1e53b4e4b531f 100644 --- a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md +++ b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-facebook-analytics@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-facebook-analytics + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-facebook-analytics@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-facebook-analytics diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json index bc55cd9552e50..a071119f950cd 100644 --- a/packages/gatsby-plugin-facebook-analytics/package.json +++ b/packages/gatsby-plugin-facebook-analytics/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-facebook-analytics", "description": "Gatsby plugin to add facebook analytics onto a site", - "version": "2.9.0-next.0", + "version": "2.10.0-next.0", "author": "Yeison Daza <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics#readme", diff --git a/packages/gatsby-plugin-feed/CHANGELOG.md b/packages/gatsby-plugin-feed/CHANGELOG.md index 1444e5f5729ba..fb8f9e387204b 100644 --- a/packages/gatsby-plugin-feed/CHANGELOG.md +++ b/packages/gatsby-plugin-feed/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.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-feed + # [2.11.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.11.0-next.1) (2020-12-17) **Note:** Version bump only for package gatsby-plugin-feed diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json index f45049db50aad..6378863c84bfe 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": "2.11.0-next.1", + "version": "2.12.0-next.0", "author": "Nicholas Young <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,14 +11,14 @@ "@hapi/joi": "^15.1.1", "common-tags": "^1.8.0", "fs-extra": "^8.1.0", - "gatsby-plugin-utils": "^0.7.0-next.1", + "gatsby-plugin-utils": "^0.8.0-next.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-feed#readme", diff --git a/packages/gatsby-plugin-flow/CHANGELOG.md b/packages/gatsby-plugin-flow/CHANGELOG.md index 2e4e6e685604c..4ecdec436df34 100644 --- a/packages/gatsby-plugin-flow/CHANGELOG.md +++ b/packages/gatsby-plugin-flow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-flow + # [1.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-flow diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json index 1311eaddf202f..87165132d14b0 100644 --- a/packages/gatsby-plugin-flow/package.json +++ b/packages/gatsby-plugin-flow/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-flow", - "version": "1.8.0-next.0", + "version": "1.9.0-next.0", "description": "Provides drop-in support for Flow by adding @babel/preset-flow.", "main": "index.js", "scripts": { @@ -30,7 +30,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-plugin-fullstory/CHANGELOG.md b/packages/gatsby-plugin-fullstory/CHANGELOG.md index b9b8bf2eed18f..982fc5988f9f0 100644 --- a/packages/gatsby-plugin-fullstory/CHANGELOG.md +++ b/packages/gatsby-plugin-fullstory/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-fullstory + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-fullstory diff --git a/packages/gatsby-plugin-fullstory/package.json b/packages/gatsby-plugin-fullstory/package.json index 8864c572d85b3..9fda6fb586a48 100644 --- a/packages/gatsby-plugin-fullstory/package.json +++ b/packages/gatsby-plugin-fullstory/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-fullstory", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "description": "Plugin to add the tracking code for Fullstory.com", "main": "index.js", "scripts": { @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-glamor/CHANGELOG.md b/packages/gatsby-plugin-glamor/CHANGELOG.md index 16ca7b87fb41e..1678f1c94bbce 100644 --- a/packages/gatsby-plugin-glamor/CHANGELOG.md +++ b/packages/gatsby-plugin-glamor/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-glamor + # [2.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.1) (2020-12-17) **Note:** Version bump only for package gatsby-plugin-glamor diff --git a/packages/gatsby-plugin-glamor/package.json b/packages/gatsby-plugin-glamor/package.json index c2e4a6fd1aecc..2a6a3479f5847 100644 --- a/packages/gatsby-plugin-glamor/package.json +++ b/packages/gatsby-plugin-glamor/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-glamor", "description": "Gatsby plugin to add support for Glamor", - "version": "2.8.0-next.1", + "version": "2.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,9 +12,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^0.7.0-next.1" + "gatsby-plugin-utils": "^0.8.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor#readme", "keywords": [ diff --git a/packages/gatsby-plugin-google-analytics/CHANGELOG.md b/packages/gatsby-plugin-google-analytics/CHANGELOG.md index b0872cd7ba85f..be987e6158bf0 100644 --- a/packages/gatsby-plugin-google-analytics/CHANGELOG.md +++ b/packages/gatsby-plugin-google-analytics/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-analytics@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-google-analytics + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-analytics@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-google-analytics diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json index 5737a3362ad06..57bfa17ba0928 100644 --- a/packages/gatsby-plugin-google-analytics/package.json +++ b/packages/gatsby-plugin-google-analytics/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-analytics", "description": "Gatsby plugin to add google analytics onto a site", - "version": "2.9.0-next.0", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@testing-library/react": "^9.5.0", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-analytics#readme", diff --git a/packages/gatsby-plugin-google-gtag/CHANGELOG.md b/packages/gatsby-plugin-google-gtag/CHANGELOG.md index a713b9ac99913..f75ffb313a540 100644 --- a/packages/gatsby-plugin-google-gtag/CHANGELOG.md +++ b/packages/gatsby-plugin-google-gtag/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.7.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-gtag@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-google-gtag + # [2.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-gtag@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-google-gtag diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json index f28b18c12f2eb..971ed238617f6 100644 --- a/packages/gatsby-plugin-google-gtag/package.json +++ b/packages/gatsby-plugin-google-gtag/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-gtag", "description": "Gatsby plugin to add google gtag onto a site", - "version": "2.6.0-next.0", + "version": "2.7.0-next.0", "author": "Tyler Buchea <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-gtag#readme", diff --git a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md index 00f19fa4e184f..7b344d0a4f82b 100644 --- a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md +++ b/packages/gatsby-plugin-google-tagmanager/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-tagmanager@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-google-tagmanager + # [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-tagmanager@[email protected]) (2020-12-17) **Note:** Version bump only for package gatsby-plugin-google-tagmanager diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json index 07775271377c1..37f71f522a6c3 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": "2.9.0-next.1", + "version": "2.10.0-next.0", "author": "Thijs Koerselman <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,9 +12,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^0.7.0-next.1" + "gatsby-plugin-utils": "^0.8.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme", "keywords": [ diff --git a/packages/gatsby-plugin-graphql-config/CHANGELOG.md b/packages/gatsby-plugin-graphql-config/CHANGELOG.md index 714ea51cbcdb6..98a607cff80c8 100644 --- a/packages/gatsby-plugin-graphql-config/CHANGELOG.md +++ b/packages/gatsby-plugin-graphql-config/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-graphql-config@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-graphql-config + # [0.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-graphql-config@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-graphql-config diff --git a/packages/gatsby-plugin-graphql-config/package.json b/packages/gatsby-plugin-graphql-config/package.json index 325d9558240d5..a22df3b16320d 100644 --- a/packages/gatsby-plugin-graphql-config/package.json +++ b/packages/gatsby-plugin-graphql-config/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-graphql-config", "description": "Gatsby plugin to write out a graphql-config with develop process endpoint configured", - "version": "0.5.0-next.0", + "version": "0.6.0-next.0", "author": "Rikki Schulte <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-guess-js/CHANGELOG.md b/packages/gatsby-plugin-guess-js/CHANGELOG.md index 5bf3aa536fb94..8a93f75caad47 100644 --- a/packages/gatsby-plugin-guess-js/CHANGELOG.md +++ b/packages/gatsby-plugin-guess-js/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-guess-js + # [1.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-guess-js diff --git a/packages/gatsby-plugin-guess-js/package.json b/packages/gatsby-plugin-guess-js/package.json index 20ca9cadab958..6497d53558077 100644 --- a/packages/gatsby-plugin-guess-js/package.json +++ b/packages/gatsby-plugin-guess-js/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-guess-js", - "version": "1.8.0-next.0", + "version": "1.9.0-next.0", "description": "Gatsby plugin providing drop-in integration with Guess.js to enabling using machine learning and analytics data to power prefetching", "main": "index.js", "scripts": { @@ -34,7 +34,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-image/CHANGELOG.md b/packages/gatsby-plugin-image/CHANGELOG.md index 5efb2d17a3e0a..2c1c2053fe393 100644 --- a/packages/gatsby-plugin-image/CHANGELOG.md +++ b/packages/gatsby-plugin-image/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.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.6.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-image + # [0.5.0-next.6](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.5.0-next.6) (2020-12-29) ### Bug Fixes diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json index d852a0705ef7c..139e403e47801 100644 --- a/packages/gatsby-plugin-image/package.json +++ b/packages/gatsby-plugin-image/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-image", - "version": "0.5.0-next.6", + "version": "0.6.0-next.0", "scripts": { "build": "npm-run-all -s clean -p build:*", "build:gatsby-node": "tsc --jsx react --downlevelIteration true --skipLibCheck true --esModuleInterop true --outDir dist/ src/gatsby-node.ts src/babel-plugin-parse-static-images.ts src/resolver-utils.ts src/types.d.ts", @@ -83,11 +83,11 @@ "@babel/parser": "^7.12.5", "@babel/traverse": "^7.12.5", "babel-jsx-utils": "^1.0.1", - "babel-plugin-remove-graphql-queries": "^2.14.0-next.0", + "babel-plugin-remove-graphql-queries": "^2.15.0-next.0", "camelcase": "^5.3.1", "chokidar": "^3.4.3", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", "prop-types": "^15.7.2" }, "repository": { diff --git a/packages/gatsby-plugin-jss/CHANGELOG.md b/packages/gatsby-plugin-jss/CHANGELOG.md index 724ee99dfaae7..730f81c48613f 100644 --- a/packages/gatsby-plugin-jss/CHANGELOG.md +++ b/packages/gatsby-plugin-jss/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-jss + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-jss diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json index 56f687ce164da..f3acceddd497c 100644 --- a/packages/gatsby-plugin-jss/package.json +++ b/packages/gatsby-plugin-jss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-jss", "description": "Gatsby plugin that adds SSR support for JSS", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Vladimir Guguiev <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-jss#readme", diff --git a/packages/gatsby-plugin-layout/CHANGELOG.md b/packages/gatsby-plugin-layout/CHANGELOG.md index 4182e00311951..cdf5b3f778459 100644 --- a/packages/gatsby-plugin-layout/CHANGELOG.md +++ b/packages/gatsby-plugin-layout/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-layout + # [1.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-layout diff --git a/packages/gatsby-plugin-layout/package.json b/packages/gatsby-plugin-layout/package.json index a3c04c6f38f6e..2e11ffb8a7c22 100644 --- a/packages/gatsby-plugin-layout/package.json +++ b/packages/gatsby-plugin-layout/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-layout", - "version": "1.8.0-next.0", + "version": "1.9.0-next.0", "description": "Reimplements the behavior of layout components in gatsby@1, which was removed in version 2.", "main": "index.js", "scripts": { @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-plugin-less/CHANGELOG.md b/packages/gatsby-plugin-less/CHANGELOG.md index 77830c1de88fd..e61a1f5cf6f67 100644 --- a/packages/gatsby-plugin-less/CHANGELOG.md +++ b/packages/gatsby-plugin-less/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.6.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-less + # [4.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.5.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-less diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json index c5e32bfad46f9..2a3fbd580274e 100644 --- a/packages/gatsby-plugin-less/package.json +++ b/packages/gatsby-plugin-less/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-less", "description": "Gatsby plugin to add support for using Less", - "version": "4.5.0-next.0", + "version": "4.6.0-next.0", "author": "[email protected]", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-less#readme", diff --git a/packages/gatsby-plugin-lodash/CHANGELOG.md b/packages/gatsby-plugin-lodash/CHANGELOG.md index 744ed51494215..0465fc0f7f824 100644 --- a/packages/gatsby-plugin-lodash/CHANGELOG.md +++ b/packages/gatsby-plugin-lodash/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-lodash + # [3.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-lodash diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json index 0d3d972ed6cb6..7b39cb1d60715 100644 --- a/packages/gatsby-plugin-lodash/package.json +++ b/packages/gatsby-plugin-lodash/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-lodash", "description": "Easy modular Lodash builds. Adds the Lodash webpack & Babel plugins to your Gatsby build", - "version": "3.8.0-next.0", + "version": "3.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-lodash#readme", diff --git a/packages/gatsby-plugin-manifest/CHANGELOG.md b/packages/gatsby-plugin-manifest/CHANGELOG.md index ededd6fa168a8..ecbb11af55b4c 100644 --- a/packages/gatsby-plugin-manifest/CHANGELOG.md +++ b/packages/gatsby-plugin-manifest/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.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.11.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-manifest + # [2.10.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.2) (2020-12-29) ### Features diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json index dacace6dd5d84..177193f72117e 100644 --- a/packages/gatsby-plugin-manifest/package.json +++ b/packages/gatsby-plugin-manifest/package.json @@ -1,22 +1,22 @@ { "name": "gatsby-plugin-manifest", "description": "Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps", - "version": "2.10.0-next.2", + "version": "2.11.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "@babel/runtime": "^7.12.5", - "gatsby-core-utils": "^1.8.0-next.1", - "gatsby-plugin-utils": "^0.7.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^0.8.0-next.0", "semver": "^7.3.2", "sharp": "^0.27.0" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-manifest#readme", diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md index 000314b628a26..2e308ed76d225 100644 --- a/packages/gatsby-plugin-mdx/CHANGELOG.md +++ b/packages/gatsby-plugin-mdx/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-mdx + # [1.8.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.8.0-next.2) (2020-12-29) **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 f8b9e63809bdb..bb85de64f2364 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.8.0-next.2", + "version": "1.9.0-next.0", "description": "MDX integration for Gatsby", "main": "index.js", "license": "MIT", @@ -33,7 +33,7 @@ "escape-string-regexp": "^1.0.5", "eval": "^0.1.4", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", "gray-matter": "^4.0.2", "json5": "^2.1.3", "loader-utils": "^1.4.0", @@ -58,7 +58,7 @@ "devDependencies": { "@mdx-js/mdx": "^1.6.16", "@mdx-js/react": "^1.6.16", - "gatsby-plugin-utils": "^0.7.0-next.1", + "gatsby-plugin-utils": "^0.8.0-next.0", "jest": "^24.9.0", "js-combinatorics": "^1.4.5", "react-test-renderer": "^16.13.1" diff --git a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md index 81801da66982c..e248db300fc9b 100644 --- a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md +++ b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify-cms@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-netlify-cms + # [4.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify-cms@[email protected]) (2020-12-15) **Note:** Version bump only for package gatsby-plugin-netlify-cms diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json index 6e23230907854..8e3191653b1fb 100644 --- a/packages/gatsby-plugin-netlify-cms/package.json +++ b/packages/gatsby-plugin-netlify-cms/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-netlify-cms", "description": "A Gatsby plugin which generates the Netlify CMS single page app", - "version": "4.8.0-next.1", + "version": "4.9.0-next.0", "author": "Shawn Erquhart <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "react": "^16.12.0", "react-dom": "^16.12.0" diff --git a/packages/gatsby-plugin-netlify/CHANGELOG.md b/packages/gatsby-plugin-netlify/CHANGELOG.md index b0441dda59f9a..d99326acc9458 100644 --- a/packages/gatsby-plugin-netlify/CHANGELOG.md +++ b/packages/gatsby-plugin-netlify/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-netlify + # [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.1) (2020-12-17) **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 b34e5c2067d76..3f33b2cb7d022 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.9.0-next.1", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -22,9 +22,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^0.7.0-next.1" + "gatsby-plugin-utils": "^0.8.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify#readme", "keywords": [ diff --git a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md index 35b2f8d0b6c72..26ec52b6404a8 100644 --- a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md +++ b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-no-sourcemaps@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-no-sourcemaps + # [2.7.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-no-sourcemaps@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-no-sourcemaps diff --git a/packages/gatsby-plugin-no-sourcemaps/package.json b/packages/gatsby-plugin-no-sourcemaps/package.json index 7d337e3f28de1..6e2e4c7a9fb20 100644 --- a/packages/gatsby-plugin-no-sourcemaps/package.json +++ b/packages/gatsby-plugin-no-sourcemaps/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-no-sourcemaps", "description": "Disable sourcemaps when building JavaScript", - "version": "2.7.0-next.0", + "version": "2.8.0-next.0", "author": "Stuart Taylor <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-nprogress/CHANGELOG.md b/packages/gatsby-plugin-nprogress/CHANGELOG.md index 9b1a12ed26ff2..ce9ab2327df22 100644 --- a/packages/gatsby-plugin-nprogress/CHANGELOG.md +++ b/packages/gatsby-plugin-nprogress/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-nprogress + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-nprogress diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json index 1bc12a648688f..9647b3a7283a4 100644 --- a/packages/gatsby-plugin-nprogress/package.json +++ b/packages/gatsby-plugin-nprogress/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-nprogress", "description": "Shows page loading indicator when loading page resources is delayed", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Kyle Mathews<[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-nprogress#readme", diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md index bf38b830637ab..1320a98abc31f 100644 --- a/packages/gatsby-plugin-offline/CHANGELOG.md +++ b/packages/gatsby-plugin-offline/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-offline + # [3.8.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.8.0-next.2) (2020-12-29) **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 be51e7f229789..40268ba01bebd 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": "3.8.0-next.2", + "version": "3.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.12.5", "cheerio": "^1.0.0-rc.3", - "gatsby-core-utils": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", "glob": "^7.1.6", "idb-keyval": "^3.2.0", "lodash": "^4.17.20", @@ -18,10 +18,10 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cpx": "^1.5.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^0.7.0-next.1", + "gatsby-plugin-utils": "^0.8.0-next.0", "rewire": "^4.0.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme", diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md index c57fc13660c9c..a7b2b36d62496 100644 --- a/packages/gatsby-plugin-page-creator/CHANGELOG.md +++ b/packages/gatsby-plugin-page-creator/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-page-creator + # [2.8.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@[email protected]) (2020-12-29) **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 43c372dd5966f..8d23b31353918 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.8.0-next.2", + "version": "2.9.0-next.0", "description": "Gatsby plugin that automatically creates pages from React components in specified directories", "main": "index.js", "scripts": { @@ -28,15 +28,15 @@ "@sindresorhus/slugify": "^1.1.0", "chokidar": "^3.4.2", "fs-exists-cached": "^1.0.0", - "gatsby-page-utils": "^0.7.0-next.1", - "gatsby-telemetry": "^1.8.0-next.1", + "gatsby-page-utils": "^0.8.0-next.0", + "gatsby-telemetry": "^1.9.0-next.0", "globby": "^11.0.1", "lodash": "^4.17.20" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-postcss/CHANGELOG.md b/packages/gatsby-plugin-postcss/CHANGELOG.md index fa1cfe0e93bf1..82fd2f391865f 100644 --- a/packages/gatsby-plugin-postcss/CHANGELOG.md +++ b/packages/gatsby-plugin-postcss/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.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.6.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-postcss + # [3.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-postcss diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json index e26c67574fa70..ff138c67bf2c9 100644 --- a/packages/gatsby-plugin-postcss/package.json +++ b/packages/gatsby-plugin-postcss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-postcss", "description": "Gatsby plugin to handle PostCSS", - "version": "3.5.0-next.0", + "version": "3.6.0-next.0", "author": "Marat Dreizin <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-postcss#readme", diff --git a/packages/gatsby-plugin-preact/CHANGELOG.md b/packages/gatsby-plugin-preact/CHANGELOG.md index 9f8255d19d98c..5b327cb26c3de 100644 --- a/packages/gatsby-plugin-preact/CHANGELOG.md +++ b/packages/gatsby-plugin-preact/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.6.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-preact + # [4.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.5.0-next.1) (2020-12-17) **Note:** Version bump only for package gatsby-plugin-preact diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json index 147867005d831..2127a3d69143a 100644 --- a/packages/gatsby-plugin-preact/package.json +++ b/packages/gatsby-plugin-preact/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-preact", "description": "A Gatsby plugin which replaces React with Preact", - "version": "4.5.0-next.1", + "version": "4.6.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-preact#readme", diff --git a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md index f5e7c8fcf3bc0..3297b7b269e88 100644 --- a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md +++ b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preload-fonts@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-preload-fonts + # [1.7.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preload-fonts@[email protected]) (2020-12-29) **Note:** Version bump only for package gatsby-plugin-preload-fonts diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json index 930c4b143b9a5..ce077feac2887 100644 --- a/packages/gatsby-plugin-preload-fonts/package.json +++ b/packages/gatsby-plugin-preload-fonts/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-preload-fonts", "description": "Gatsby plugin for preloading fonts per page", - "version": "1.7.0-next.1", + "version": "1.8.0-next.0", "author": "Aaron Ross <[email protected]>", "main": "index.js", "bin": { @@ -14,7 +14,7 @@ "chalk": "^4.1.0", "date-fns": "^2.16.1", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", "graphql-request": "^1.8.2", "progress": "^2.0.3", "puppeteer": "^3.3.0" @@ -22,7 +22,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "del-cli": "^3.0.1" }, diff --git a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md index ad32dba8d0f19..3ec979d0c94cb 100644 --- a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md +++ b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-css-modules@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-react-css-modules + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-css-modules@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-react-css-modules diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json index 93e98eb5a2747..a5d794ea4cfa4 100644 --- a/packages/gatsby-plugin-react-css-modules/package.json +++ b/packages/gatsby-plugin-react-css-modules/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-react-css-modules", "description": "Gatsby plugin that transforms styleName to className using compile time CSS module resolution", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Ming Aldrich-Gan <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-css-modules#readme", diff --git a/packages/gatsby-plugin-react-helmet/CHANGELOG.md b/packages/gatsby-plugin-react-helmet/CHANGELOG.md index 1ec0205e28e0f..d00cb1cd51fad 100644 --- a/packages/gatsby-plugin-react-helmet/CHANGELOG.md +++ b/packages/gatsby-plugin-react-helmet/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-helmet@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-react-helmet + # [3.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-helmet@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-react-helmet diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json index bd27a8385cdbc..65b73489d9d45 100644 --- a/packages/gatsby-plugin-react-helmet/package.json +++ b/packages/gatsby-plugin-react-helmet/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-react-helmet", "description": "Manage document head data with react-helmet. Provides drop-in server rendering support for Gatsby.", - "version": "3.8.0-next.0", + "version": "3.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-helmet#readme", diff --git a/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md b/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md index ef5d33aa8236b..1e45be7acdf12 100644 --- a/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md +++ b/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-remove-trailing-slashes@2.8.0-next.0...gatsby-plugin-remove-trailing-slashes@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-remove-trailing-slashes + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-remove-trailing-slashes@2.7.0-next.0...gatsby-plugin-remove-trailing-slashes@2.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-remove-trailing-slashes diff --git a/packages/gatsby-plugin-remove-trailing-slashes/package.json b/packages/gatsby-plugin-remove-trailing-slashes/package.json index 09040c60bba45..ade4d6b9841af 100644 --- a/packages/gatsby-plugin-remove-trailing-slashes/package.json +++ b/packages/gatsby-plugin-remove-trailing-slashes/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-remove-trailing-slashes", "description": "Removes trailing slashes from your project's paths. For example, yoursite.com/about/ becomes yoursite.com/about", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "[email protected]", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-remove-trailing-slashes#readme", diff --git a/packages/gatsby-plugin-sass/CHANGELOG.md b/packages/gatsby-plugin-sass/CHANGELOG.md index d530d82719742..69d9747e70eee 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.1.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-sass + # [3.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.0.0-next.2) (2020-12-18) ### Bug Fixes diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index 1e21c4c1cd9df..4dd7655be6317 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": "3.0.0-next.2", + "version": "3.1.0-next.0", "author": "Daniel Farrell <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,9 +13,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^0.7.0-next.1" + "gatsby-plugin-utils": "^0.8.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass#readme", "keywords": [ diff --git a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md index 966e346565a5b..79e63f1ddd943 100644 --- a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md +++ b/packages/gatsby-plugin-schema-snapshot/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.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-schema-snapshot@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-schema-snapshot + # [1.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-schema-snapshot@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-schema-snapshot diff --git a/packages/gatsby-plugin-schema-snapshot/package.json b/packages/gatsby-plugin-schema-snapshot/package.json index 27536a39db983..73ff9a751b01d 100644 --- a/packages/gatsby-plugin-schema-snapshot/package.json +++ b/packages/gatsby-plugin-schema-snapshot/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-schema-snapshot", - "version": "1.5.0-next.0", + "version": "1.6.0-next.0", "main": "index.js", "license": "MIT", "keywords": [ diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md index f41cfdf0e4574..a9e43f437ef2f 100644 --- a/packages/gatsby-plugin-sharp/CHANGELOG.md +++ b/packages/gatsby-plugin-sharp/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.13.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.13.0-next.0) (2020-12-29) + +### Features + +- **gatsby:** enable lazy images by default ([#28743](https://github.com/gatsbyjs/gatsby/issues/28743)) ([3b40d80](https://github.com/gatsbyjs/gatsby/commit/3b40d8025356f5141625234d1781bd80985fb5a3)) + # [2.12.0-next.6](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.0-next.6) (2020-12-29) ### Features diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index ac19e95f76199..d9e11db6bd4f2 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.12.0-next.6", + "version": "2.13.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,8 +11,8 @@ "async": "^3.2.0", "bluebird": "^3.7.2", "fs-extra": "^9.0.1", - "gatsby-core-utils": "^1.8.0-next.1", - "gatsby-telemetry": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", + "gatsby-telemetry": "^1.9.0-next.0", "got": "^10.7.0", "imagemin": "^7.0.1", "imagemin-mozjpeg": "^9.0.0", @@ -31,9 +31,9 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@types/sharp": "^0.26.1", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^0.5.0-next.6" + "gatsby-plugin-image": "^0.6.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme", "keywords": [ diff --git a/packages/gatsby-plugin-sitemap/CHANGELOG.md b/packages/gatsby-plugin-sitemap/CHANGELOG.md index 159936628e6b0..9e10aa2b490c4 100644 --- a/packages/gatsby-plugin-sitemap/CHANGELOG.md +++ b/packages/gatsby-plugin-sitemap/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.11.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-sitemap + # [2.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-sitemap diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json index 2d226e057f070..1c175610d02bc 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": "2.10.0-next.0", + "version": "2.11.0-next.0", "author": "Nicholas Young &lt;[email protected]&gt;", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme", diff --git a/packages/gatsby-plugin-styled-components/CHANGELOG.md b/packages/gatsby-plugin-styled-components/CHANGELOG.md index 2f78cc6d6d62f..42ce7063d7e57 100644 --- a/packages/gatsby-plugin-styled-components/CHANGELOG.md +++ b/packages/gatsby-plugin-styled-components/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-components@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-styled-components + # [3.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-components@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-styled-components diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json index 432c64614247b..bf97691aff4ee 100644 --- a/packages/gatsby-plugin-styled-components/package.json +++ b/packages/gatsby-plugin-styled-components/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styled-components", "description": "Gatsby plugin to add support for styled components", - "version": "3.8.0-next.0", + "version": "3.9.0-next.0", "author": "Guten Ye <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-components#readme", diff --git a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md index 4c43cb07756e7..079b92d48855b 100644 --- a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md +++ b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-styled-jsx + # [3.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-styled-jsx diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json index 3d23371ef1570..153cbc9146639 100644 --- a/packages/gatsby-plugin-styled-jsx/package.json +++ b/packages/gatsby-plugin-styled-jsx/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styled-jsx", "description": "Adds SSR support for styled-jsx", - "version": "3.8.0-next.0", + "version": "3.9.0-next.0", "author": "Tim Suchanek <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-jsx#readme", diff --git a/packages/gatsby-plugin-styletron/CHANGELOG.md b/packages/gatsby-plugin-styletron/CHANGELOG.md index 07f9a8b84b50a..a50847e9ef6f3 100644 --- a/packages/gatsby-plugin-styletron/CHANGELOG.md +++ b/packages/gatsby-plugin-styletron/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.6.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-styletron + # [5.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.5.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-styletron diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json index 49761d673ffb4..0dfe2e175418e 100644 --- a/packages/gatsby-plugin-styletron/package.json +++ b/packages/gatsby-plugin-styletron/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styletron", "description": "A Gatsby plugin for styletron with built-in server-side rendering support", - "version": "5.5.0-next.0", + "version": "5.6.0-next.0", "author": "Nadiia Dmytrenko <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "styletron-engine-atomic": "^1.4.6", "styletron-react": "^5.2.7" diff --git a/packages/gatsby-plugin-stylus/CHANGELOG.md b/packages/gatsby-plugin-stylus/CHANGELOG.md index 37cfae5b88942..f22569ce8d66c 100644 --- a/packages/gatsby-plugin-stylus/CHANGELOG.md +++ b/packages/gatsby-plugin-stylus/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-stylus + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-stylus diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json index dfd8b8deff908..f46a69366d313 100644 --- a/packages/gatsby-plugin-stylus/package.json +++ b/packages/gatsby-plugin-stylus/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-stylus", "description": "Gatsby support for Stylus", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Ian Sinnott <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-stylus#readme", diff --git a/packages/gatsby-plugin-subfont/CHANGELOG.md b/packages/gatsby-plugin-subfont/CHANGELOG.md index 7d8f3f508858f..442e0571cefc6 100644 --- a/packages/gatsby-plugin-subfont/CHANGELOG.md +++ b/packages/gatsby-plugin-subfont/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-subfont + # [2.7.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.7.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-subfont diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json index 318151553ea5b..e7c6e4f2c2ade 100644 --- a/packages/gatsby-plugin-subfont/package.json +++ b/packages/gatsby-plugin-subfont/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-subfont", - "version": "2.7.0-next.0", + "version": "2.8.0-next.0", "description": "Runs the font delivery optimizing CLI tool subfont on the homepage of your site during the Gatsby build", "main": "index.js", "scripts": { @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-plugin-twitter/CHANGELOG.md b/packages/gatsby-plugin-twitter/CHANGELOG.md index 8995b9ca161ae..9d08a5bf2c02c 100644 --- a/packages/gatsby-plugin-twitter/CHANGELOG.md +++ b/packages/gatsby-plugin-twitter/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-twitter + # [2.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.1) (2020-12-17) **Note:** Version bump only for package gatsby-plugin-twitter diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json index 1211833191a82..8534163926bc0 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": "2.8.0-next.1", + "version": "2.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,9 +12,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^0.7.0-next.1" + "gatsby-plugin-utils": "^0.8.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-twitter#readme", "keywords": [ diff --git a/packages/gatsby-plugin-typescript/CHANGELOG.md b/packages/gatsby-plugin-typescript/CHANGELOG.md index 366b1ceeaace0..bcbdac25e3f72 100644 --- a/packages/gatsby-plugin-typescript/CHANGELOG.md +++ b/packages/gatsby-plugin-typescript/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typescript@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-typescript + # [2.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-typescript diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json index 5466fb171fc1a..1c2f8d7a360d6 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typescript", "description": "Adds TypeScript support to Gatsby", - "version": "2.10.0-next.0", + "version": "2.11.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,12 +16,12 @@ "@babel/plugin-proposal-optional-chaining": "^7.12.1", "@babel/preset-typescript": "^7.12.1", "@babel/runtime": "^7.12.5", - "babel-plugin-remove-graphql-queries": "^2.14.0-next.0" + "babel-plugin-remove-graphql-queries": "^2.15.0-next.0" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typescript#readme", diff --git a/packages/gatsby-plugin-typography/CHANGELOG.md b/packages/gatsby-plugin-typography/CHANGELOG.md index 60d14bc721375..78fbb40ed965f 100644 --- a/packages/gatsby-plugin-typography/CHANGELOG.md +++ b/packages/gatsby-plugin-typography/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.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typography@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-typography + # [2.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-plugin-typography diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json index 04142564ea2e6..ab434e7b7c0da 100644 --- a/packages/gatsby-plugin-typography/package.json +++ b/packages/gatsby-plugin-typography/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typography", "description": "Gatsby plugin to setup server rendering of Typography.js' CSS", - "version": "2.10.0-next.0", + "version": "2.11.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "react": "^16.12.0", "react-dom": "^16.12.0", diff --git a/packages/gatsby-plugin-utils/CHANGELOG.md b/packages/gatsby-plugin-utils/CHANGELOG.md index 4a72d85fcbc0f..b56765f4ddea1 100644 --- a/packages/gatsby-plugin-utils/CHANGELOG.md +++ b/packages/gatsby-plugin-utils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.8.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-plugin-utils + # [0.7.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.7.0-next.1) (2020-12-17) **Note:** Version bump only for package gatsby-plugin-utils diff --git a/packages/gatsby-plugin-utils/package.json b/packages/gatsby-plugin-utils/package.json index 2a06c4d4eb74b..2989b98028ee6 100644 --- a/packages/gatsby-plugin-utils/package.json +++ b/packages/gatsby-plugin-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-utils", - "version": "0.7.0-next.1", + "version": "0.8.0-next.0", "description": "Gatsby utils that help creating plugins", "main": "dist/index.js", "scripts": { @@ -26,7 +26,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "rimraf": "^3.0.2", "typescript": "^3.9.7" diff --git a/packages/gatsby-react-router-scroll/CHANGELOG.md b/packages/gatsby-react-router-scroll/CHANGELOG.md index 586ed75e4a7ef..edfef1e24d975 100644 --- a/packages/gatsby-react-router-scroll/CHANGELOG.md +++ b/packages/gatsby-react-router-scroll/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.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-react-router-scroll + # [3.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@[email protected]) (2020-12-10) ### Bug Fixes diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json index 67b0e524d4196..d2f7918402ca9 100644 --- a/packages/gatsby-react-router-scroll/package.json +++ b/packages/gatsby-react-router-scroll/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-react-router-scroll", "description": "React Router scroll management forked from https://github.com/ytase/react-router-scroll for Gatsby", - "version": "3.5.0-next.0", + "version": "3.6.0-next.0", "author": "Jimmy Jia", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "babel-plugin-dev-expression": "^0.2.2", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "history": "^4.10.1" }, diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md index 17dac655ff51a..c17454691106a 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.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.8.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-recipes + # [0.7.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.7.0-next.2) (2020-12-29) **Note:** Version bump only for package gatsby-recipes diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index 3911f82d49a18..4d65496781658 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.7.0-next.2", + "version": "0.8.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -30,8 +30,8 @@ "express": "^4.17.1", "express-graphql": "^0.9.0", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^1.8.0-next.1", - "gatsby-telemetry": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", + "gatsby-telemetry": "^1.9.0-next.0", "glob": "^7.1.6", "graphql": "^14.6.0", "graphql-compose": "^6.3.8", diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md index 71dfc7fbdb400..c1fafb532dd21 100644 --- a/packages/gatsby-remark-autolink-headers/CHANGELOG.md +++ b/packages/gatsby-remark-autolink-headers/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-autolink-headers + # [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@[email protected]) (2020-12-17) **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 e157129ebd92e..5fd8fd4808e24 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.9.0-next.1", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,9 +16,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^0.7.0-next.1" + "gatsby-plugin-utils": "^0.8.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers#readme", "keywords": [ diff --git a/packages/gatsby-remark-code-repls/CHANGELOG.md b/packages/gatsby-remark-code-repls/CHANGELOG.md index 266ed5ec7bb99..3a54fd84c865a 100644 --- a/packages/gatsby-remark-code-repls/CHANGELOG.md +++ b/packages/gatsby-remark-code-repls/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.8.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-code-repls + # [3.7.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.7.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-remark-code-repls diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json index 449cb90246cfa..5e870252707e7 100644 --- a/packages/gatsby-remark-code-repls/package.json +++ b/packages/gatsby-remark-code-repls/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-code-repls", "description": "Gatsby plugin to auto-generate links to popular REPLs like Babel and Codepen", - "version": "3.7.0-next.0", + "version": "3.8.0-next.0", "author": "Brian Vaughn <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-code-repls#readme", diff --git a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md index 8fe583f5801a1..1d666eedc470f 100644 --- a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md +++ b/packages/gatsby-remark-copy-linked-files/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-copy-linked-files@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-copy-linked-files + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-copy-linked-files@[email protected]) (2020-12-10) **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 7daa78d5a4aed..a7d5b1ac6346a 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.8.0-next.0", + "version": "2.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "remark": "^10.0.1", "remark-mdx": "^1.6.18" diff --git a/packages/gatsby-remark-custom-blocks/CHANGELOG.md b/packages/gatsby-remark-custom-blocks/CHANGELOG.md index 9b4def73ac9b8..874447c375618 100644 --- a/packages/gatsby-remark-custom-blocks/CHANGELOG.md +++ b/packages/gatsby-remark-custom-blocks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-custom-blocks@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-custom-blocks + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-custom-blocks@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-remark-custom-blocks diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json index 129245a0a73bf..a847acdfc8b50 100644 --- a/packages/gatsby-remark-custom-blocks/package.json +++ b/packages/gatsby-remark-custom-blocks/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-custom-blocks", "description": "Gatsby remark plugin for adding custom blocks in markdown", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Mohammad Asad Mohammad <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "rimraf": "^3.0.2", "unist-util-find": "^1.0.2" diff --git a/packages/gatsby-remark-embed-snippet/CHANGELOG.md b/packages/gatsby-remark-embed-snippet/CHANGELOG.md index 1ce5fdbb9c0cb..1b6b1cebeb94a 100644 --- a/packages/gatsby-remark-embed-snippet/CHANGELOG.md +++ b/packages/gatsby-remark-embed-snippet/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-embed-snippet@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-embed-snippet + # [4.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-embed-snippet@[email protected]) (2020-12-10) **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 32d1d04075c30..03c53fe123d1a 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.8.0-next.0", + "version": "4.9.0-next.0", "author": "Brian Vaughn <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-embed-snippet#readme", diff --git a/packages/gatsby-remark-graphviz/CHANGELOG.md b/packages/gatsby-remark-graphviz/CHANGELOG.md index 1143851b58dc3..b792469efb891 100644 --- a/packages/gatsby-remark-graphviz/CHANGELOG.md +++ b/packages/gatsby-remark-graphviz/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-graphviz + # [1.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.8.0-next.0) (2020-12-10) **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 bc6f272575b57..cf088f518e912 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.8.0-next.0", + "version": "1.9.0-next.0", "author": "Anthony Marcar <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "hast-util-to-html": "^4.0.1", "mdast-util-to-hast": "^3.0.4", diff --git a/packages/gatsby-remark-images-contentful/CHANGELOG.md b/packages/gatsby-remark-images-contentful/CHANGELOG.md index 2e148b58f5a3e..4bf2cc034b64b 100644 --- a/packages/gatsby-remark-images-contentful/CHANGELOG.md +++ b/packages/gatsby-remark-images-contentful/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-images-contentful + # [2.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@[email protected]) (2020-12-29) ### Features diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json index a86b6fe5e0d0a..5aabfe41490c1 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.8.0-next.1", + "version": "2.9.0-next.0", "description": "Process Images in Contentful markdown so they can use the images API.", "main": "index.js", "scripts": { @@ -28,7 +28,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md index b044856d648e1..cc81494f70db5 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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-images + # [3.9.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.2) (2020-12-29) **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 67fca805156f4..e87c2848b7aea 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.9.0-next.2", + "version": "3.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,7 +10,7 @@ "@babel/runtime": "^7.12.5", "chalk": "^4.1.0", "cheerio": "^1.0.0-rc.3", - "gatsby-core-utils": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", "is-relative-url": "^3.0.0", "lodash": "^4.17.20", "mdast-util-definitions": "^1.2.5", @@ -22,9 +22,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^0.7.0-next.1", + "gatsby-plugin-utils": "^0.8.0-next.0", "hast-util-to-html": "^6.1.0", "mdast-util-to-hast": "^6.0.2" }, diff --git a/packages/gatsby-remark-katex/CHANGELOG.md b/packages/gatsby-remark-katex/CHANGELOG.md index b56ab100ac059..dda9fed799630 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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-katex + # [3.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.8.0-next.0) (2020-12-10) **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 ba1889294c6d0..01904653697a6 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.8.0-next.0", + "version": "3.9.0-next.0", "author": "Jeffrey Xiao <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "katex": "^0.12.0" }, diff --git a/packages/gatsby-remark-prismjs/CHANGELOG.md b/packages/gatsby-remark-prismjs/CHANGELOG.md index 7af362d2a7ea6..f204afe9e3430 100644 --- a/packages/gatsby-remark-prismjs/CHANGELOG.md +++ b/packages/gatsby-remark-prismjs/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.12.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.12.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-prismjs + # [3.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.11.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-remark-prismjs diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json index c3acd9d72dddc..7550e991cc49c 100644 --- a/packages/gatsby-remark-prismjs/package.json +++ b/packages/gatsby-remark-prismjs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-prismjs", "description": "Adds syntax highlighting to code blocks at build time using PrismJS", - "version": "3.11.0-next.0", + "version": "3.12.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cheerio": "^1.0.0-rc.3", "cross-env": "^7.0.3", "prismjs": "^1.21.0", diff --git a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md index e3ccc88b0826a..473542868b5e3 100644 --- a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md +++ b/packages/gatsby-remark-responsive-iframe/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-responsive-iframe@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-responsive-iframe + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-responsive-iframe@[email protected]) (2020-12-10) **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 8b5cbcc518a98..6ed08cf3e5dcb 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.9.0-next.0", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "remark": "^10.0.1", "remark-mdx": "^1.6.21", diff --git a/packages/gatsby-remark-smartypants/CHANGELOG.md b/packages/gatsby-remark-smartypants/CHANGELOG.md index 2b9ec60d7c468..e07ad809a1db7 100644 --- a/packages/gatsby-remark-smartypants/CHANGELOG.md +++ b/packages/gatsby-remark-smartypants/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-smartypants@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-remark-smartypants + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-smartypants@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-remark-smartypants diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json index 590a310febffd..7eed146d7db8d 100644 --- a/packages/gatsby-remark-smartypants/package.json +++ b/packages/gatsby-remark-smartypants/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-smartypants", "description": "Use retext-smartypants to auto-enhance typography of markdown", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-smartypants#readme", diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index bd2d80f71a72c..7b779e4ec37cb 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.5.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-contentful + # [4.4.0-next.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.4.0-next.4) (2020-12-29) ### Performance Improvements diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index d383bb4d165a6..3295b34642ff3 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": "4.4.0-next.4", + "version": "4.5.0-next.0", "author": "Marcus Ericsson <[email protected]> (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,9 +17,9 @@ "chalk": "^4.1.0", "contentful": "^7.14.12", "fs-extra": "^9.0.1", - "gatsby-core-utils": "^1.8.0-next.1", - "gatsby-plugin-utils": "^0.7.0-next.1", - "gatsby-source-filesystem": "^2.9.0-next.2", + "gatsby-core-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^0.8.0-next.0", + "gatsby-source-filesystem": "^2.10.0-next.0", "is-online": "^8.5.1", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.20", @@ -30,7 +30,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful#readme", diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index 41ef3462e1bf4..6c3cb8ae6b582 100644 --- a/packages/gatsby-source-drupal/CHANGELOG.md +++ b/packages/gatsby-source-drupal/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.12.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.12.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-drupal + # [3.11.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.11.0-next.2) (2020-12-29) **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 b2c8e6f06a857..ef4eb4152e182 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.11.0-next.2", + "version": "3.12.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,14 +11,14 @@ "axios": "^0.21.0", "bluebird": "^3.7.2", "body-parser": "^1.19.0", - "gatsby-source-filesystem": "^2.9.0-next.2", + "gatsby-source-filesystem": "^2.10.0-next.0", "lodash": "^4.17.20", "tiny-async-pool": "^1.1.0" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal#readme", diff --git a/packages/gatsby-source-faker/CHANGELOG.md b/packages/gatsby-source-faker/CHANGELOG.md index 04bb8ea6255f3..1ffa0ebc16795 100644 --- a/packages/gatsby-source-faker/CHANGELOG.md +++ b/packages/gatsby-source-faker/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-faker + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-source-faker diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json index c28f29021a76f..a64bee54d5dc8 100644 --- a/packages/gatsby-source-faker/package.json +++ b/packages/gatsby-source-faker/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-faker", "description": "A gatsby plugin to get fake data for testing", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Pavithra Kodmad<[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-faker#readme", diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md index 264e12a2a6af1..1315da7a32aa4 100644 --- a/packages/gatsby-source-filesystem/CHANGELOG.md +++ b/packages/gatsby-source-filesystem/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-filesystem + # [2.9.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.2) (2020-12-29) **Note:** Version bump only for package gatsby-source-filesystem diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index e6b83bc5c280a..f7b95b8b91060 100644 --- a/packages/gatsby-source-filesystem/package.json +++ b/packages/gatsby-source-filesystem/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-filesystem", "description": "Gatsby source plugin for building websites from local data. Markdown, JSON, images, YAML, CSV, and dozens of other data types supported.", - "version": "2.9.0-next.2", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "chokidar": "^3.4.3", "file-type": "^16.0.0", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.4.6", @@ -24,7 +24,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem#readme", diff --git a/packages/gatsby-source-graphql/CHANGELOG.md b/packages/gatsby-source-graphql/CHANGELOG.md index adc8fb1314562..8e268f5af2878 100644 --- a/packages/gatsby-source-graphql/CHANGELOG.md +++ b/packages/gatsby-source-graphql/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.13.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.13.0-next.0) (2020-12-29) + +### Features + +- **gatsby-source-graphql:** Default Apollo Link fetch wrapper to show better API errors ([#28786](https://github.com/gatsbyjs/gatsby/issues/28786)) ([abdb8d6](https://github.com/gatsbyjs/gatsby/commit/abdb8d6b3509be39a8296861cdb7e5e61905959d)) + # [2.12.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.12.0-next.1) (2020-12-29) **Note:** Version bump only for package gatsby-source-graphql diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json index f7e4ca98a9e68..d81c74309914d 100644 --- a/packages/gatsby-source-graphql/package.json +++ b/packages/gatsby-source-graphql/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-graphql", "description": "Gatsby plugin which adds a third-party GraphQL API to Gatsby GraphQL", - "version": "2.12.0-next.1", + "version": "2.13.0-next.0", "author": "Mikhail Novikov <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -21,7 +21,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-graphql#readme", diff --git a/packages/gatsby-source-hacker-news/CHANGELOG.md b/packages/gatsby-source-hacker-news/CHANGELOG.md index 1f7264febca4f..05d25a2d06187 100644 --- a/packages/gatsby-source-hacker-news/CHANGELOG.md +++ b/packages/gatsby-source-hacker-news/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-hacker-news@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-hacker-news + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-hacker-news@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-source-hacker-news diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json index a431a02c249a9..0077f3913c0a8 100644 --- a/packages/gatsby-source-hacker-news/package.json +++ b/packages/gatsby-source-hacker-news/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-hacker-news", "description": "Gatsby source plugin for building websites using Hacker News as a data source", - "version": "2.9.0-next.0", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-hacker-news#readme", diff --git a/packages/gatsby-source-lever/CHANGELOG.md b/packages/gatsby-source-lever/CHANGELOG.md index accfb9321fc84..586c58adcae9a 100644 --- a/packages/gatsby-source-lever/CHANGELOG.md +++ b/packages/gatsby-source-lever/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-lever + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **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 50a71bae15383..67ab124b95fdb 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.8.0-next.0", + "version": "2.9.0-next.0", "author": "Sebastien Fichot <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-lever#readme", diff --git a/packages/gatsby-source-medium/CHANGELOG.md b/packages/gatsby-source-medium/CHANGELOG.md index a6e7e9e11bb9c..d11771effcf50 100644 --- a/packages/gatsby-source-medium/CHANGELOG.md +++ b/packages/gatsby-source-medium/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-medium + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-source-medium diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json index 73ba00e4dee6a..24245e1dcedf7 100644 --- a/packages/gatsby-source-medium/package.json +++ b/packages/gatsby-source-medium/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-medium", "description": "Gatsby source plugin for building websites using Medium as a data source", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "Robert Vogt <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-medium#readme", diff --git a/packages/gatsby-source-mongodb/CHANGELOG.md b/packages/gatsby-source-mongodb/CHANGELOG.md index 1e77f61908c47..a111ecfef6f89 100644 --- a/packages/gatsby-source-mongodb/CHANGELOG.md +++ b/packages/gatsby-source-mongodb/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-mongodb + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-source-mongodb diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json index a54382d5b469c..9e5c4b48488c5 100644 --- a/packages/gatsby-source-mongodb/package.json +++ b/packages/gatsby-source-mongodb/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-mongodb", "description": "Source plugin for pulling data into Gatsby from MongoDB collections", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "authors": [ "[email protected]", "[email protected]" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-mongodb#readme", diff --git a/packages/gatsby-source-npm-package-search/CHANGELOG.md b/packages/gatsby-source-npm-package-search/CHANGELOG.md index 6fac3de6c65c5..908beda752f17 100644 --- a/packages/gatsby-source-npm-package-search/CHANGELOG.md +++ b/packages/gatsby-source-npm-package-search/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-npm-package-search + # [2.8.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@[email protected]) (2020-12-17) **Note:** Version bump only for package gatsby-source-npm-package-search diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json index 905d653a84411..5700f7e4ac949 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.8.0-next.2", + "version": "2.9.0-next.0", "author": "[email protected]", "repository": { "type": "git", @@ -17,7 +17,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-source-shopify/CHANGELOG.md b/packages/gatsby-source-shopify/CHANGELOG.md index 16739ebbcf3ef..a65ff6409ea21 100644 --- a/packages/gatsby-source-shopify/CHANGELOG.md +++ b/packages/gatsby-source-shopify/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-shopify + # [3.8.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.8.0-next.2) (2020-12-29) **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 20cb9710ce109..05fb76e10b067 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.8.0-next.2", + "version": "3.9.0-next.0", "description": "Gatsby source plugin for building websites using Shopify as a data source.", "scripts": { "build": "babel src --out-dir . --ignore \"**/__tests__\"", @@ -33,10 +33,10 @@ "cross-env": "^7.0.3" }, "dependencies": { - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "chalk": "^4.1.0", "gatsby-node-helpers": "^0.3.0", - "gatsby-source-filesystem": "^2.9.0-next.2", + "gatsby-source-filesystem": "^2.10.0-next.0", "graphql-request": "^1.8.2", "lodash": "^4.17.20", "p-iteration": "^1.1.8", diff --git a/packages/gatsby-source-wikipedia/CHANGELOG.md b/packages/gatsby-source-wikipedia/CHANGELOG.md index e54859c8dd768..039a8e12727a6 100644 --- a/packages/gatsby-source-wikipedia/CHANGELOG.md +++ b/packages/gatsby-source-wikipedia/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-wikipedia + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-source-wikipedia diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json index c481baa9b3d4a..81bc07738544f 100644 --- a/packages/gatsby-source-wikipedia/package.json +++ b/packages/gatsby-source-wikipedia/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-wikipedia", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "description": "Gatsby source plugin for pulling articles from Wikipedia", "main": "index.js", "scripts": { @@ -36,7 +36,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md index d574a95c4306c..a002c1b64d7c3 100644 --- a/packages/gatsby-source-wordpress/CHANGELOG.md +++ b/packages/gatsby-source-wordpress/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-source-wordpress + # [3.9.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.2) (2020-12-29) **Note:** Version bump only for package gatsby-source-wordpress diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index 67d21c20e3d2c..bda2b87c95828 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.9.0-next.2", + "version": "3.10.0-next.0", "author": "Sebastien Fichot <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "bluebird": "^3.7.2", "deep-map": "^1.5.0", "deep-map-keys": "^1.2.0", - "gatsby-source-filesystem": "^2.9.0-next.2", + "gatsby-source-filesystem": "^2.10.0-next.0", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.20", "minimatch": "^3.0.4", @@ -24,7 +24,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress#readme", diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md index ec177c9941280..9227163db351c 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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-telemetry + # [1.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.8.0-next.1) (2020-12-29) **Note:** Version bump only for package gatsby-telemetry diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json index 5ab8923b75ce7..3b17b151e172b 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.8.0-next.1", + "version": "1.9.0-next.0", "author": "Jarmo Isotalo <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", "git-up": "^4.0.2", "is-docker": "^2.1.1", "lodash": "^4.17.20", @@ -26,7 +26,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "babel-jest": "^24.9.0", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "jest": "^24.9.0", "jest-cli": "^24.9.0", diff --git a/packages/gatsby-theme/CHANGELOG.md b/packages/gatsby-theme/CHANGELOG.md index 6ffbf283e55a2..5bd54b8878284 100644 --- a/packages/gatsby-theme/CHANGELOG.md +++ b/packages/gatsby-theme/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.7.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.7.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-theme + # [0.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.6.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-theme diff --git a/packages/gatsby-theme/package.json b/packages/gatsby-theme/package.json index c67905bdc47dd..41c771447c205 100644 --- a/packages/gatsby-theme/package.json +++ b/packages/gatsby-theme/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme", - "version": "0.6.0-next.0", + "version": "0.7.0-next.0", "main": "index.js", "bin": { "gatsby-theme": "./cli.js" diff --git a/packages/gatsby-transformer-asciidoc/CHANGELOG.md b/packages/gatsby-transformer-asciidoc/CHANGELOG.md index 80fd245317e8a..45b710a4738a8 100644 --- a/packages/gatsby-transformer-asciidoc/CHANGELOG.md +++ b/packages/gatsby-transformer-asciidoc/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-asciidoc@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-asciidoc + # [1.8.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-asciidoc@[email protected]) (2020-12-17) ### Bug Fixes diff --git a/packages/gatsby-transformer-asciidoc/package.json b/packages/gatsby-transformer-asciidoc/package.json index b9f7013ee3187..c4afe6f0de243 100644 --- a/packages/gatsby-transformer-asciidoc/package.json +++ b/packages/gatsby-transformer-asciidoc/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-asciidoc", "description": "Gatsby transformer plugin for Asciidocs using the Asciidoctor.js library", - "version": "1.8.0-next.1", + "version": "1.9.0-next.0", "author": "Daniel Oliver <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "lodash": "^4.17.20" }, diff --git a/packages/gatsby-transformer-csv/CHANGELOG.md b/packages/gatsby-transformer-csv/CHANGELOG.md index b690961184ae4..0eab902515cf6 100644 --- a/packages/gatsby-transformer-csv/CHANGELOG.md +++ b/packages/gatsby-transformer-csv/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-csv + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **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 cf50453c8a27d..fa3ed15a2913f 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.8.0-next.0", + "version": "2.9.0-next.0", "author": "Sonal Saldanha <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "json2csv": "^5.0.4" }, diff --git a/packages/gatsby-transformer-documentationjs/CHANGELOG.md b/packages/gatsby-transformer-documentationjs/CHANGELOG.md index c94e1c2597ce9..0780b26345085 100644 --- a/packages/gatsby-transformer-documentationjs/CHANGELOG.md +++ b/packages/gatsby-transformer-documentationjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-documentationjs@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-documentationjs + # [4.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-documentationjs@[email protected]) (2020-12-10) ### Bug Fixes diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json index 2aa1db0c265ca..bab002e373750 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.8.0-next.0", + "version": "4.9.0-next.0", "author": "Kyle Mathews", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-documentationjs#readme", diff --git a/packages/gatsby-transformer-excel/CHANGELOG.md b/packages/gatsby-transformer-excel/CHANGELOG.md index d8c051decf7c3..19ae2c8e70dec 100644 --- a/packages/gatsby-transformer-excel/CHANGELOG.md +++ b/packages/gatsby-transformer-excel/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-excel + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-10) **Note:** Version bump only for package gatsby-transformer-excel diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json index 58afd953a3de9..204b62fb248d8 100644 --- a/packages/gatsby-transformer-excel/package.json +++ b/packages/gatsby-transformer-excel/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-excel", "description": "Gatsby transformer plugin for Excel spreadsheets", - "version": "2.9.0-next.0", + "version": "2.10.0-next.0", "author": "SheetJS <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel#readme", diff --git a/packages/gatsby-transformer-hjson/CHANGELOG.md b/packages/gatsby-transformer-hjson/CHANGELOG.md index ba68be3241869..e45e8f0fc6bb1 100644 --- a/packages/gatsby-transformer-hjson/CHANGELOG.md +++ b/packages/gatsby-transformer-hjson/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-hjson + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-10) **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 61e977f5f39c3..b80f7bde0cff7 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.9.0-next.0", + "version": "2.10.0-next.0", "author": "Remi Barraquand <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-hjson#readme", diff --git a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md index 8790d7a4564a8..b2fc090a81767 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md +++ b/packages/gatsby-transformer-javascript-frontmatter/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@2.8.0-next.0...gatsby-transformer-javascript-frontmatter@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@2.7.0-next.0...gatsby-transformer-javascript-frontmatter@2.8.0-next.0) (2020-12-10) **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 f402606f26f18..f2903b9b42825 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.8.0-next.0", + "version": "2.9.0-next.0", "author": "Jacob Bolda <[email protected]>", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme", "dependencies": { @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md index e60ddfc520e52..c43ca8c76c9f3 100644 --- a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md +++ b/packages/gatsby-transformer-javascript-static-exports/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@2.9.0-next.0...gatsby-transformer-javascript-static-exports@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-javascript-static-exports + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@2.8.0-next.0...gatsby-transformer-javascript-static-exports@2.9.0-next.0) (2020-12-10) **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 7032dee05f232..de74bbb0ddfb1 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.9.0-next.0", + "version": "2.10.0-next.0", "author": "Jacob Bolda <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-static-exports#readme", diff --git a/packages/gatsby-transformer-json/CHANGELOG.md b/packages/gatsby-transformer-json/CHANGELOG.md index ade0e9ca48e5a..6f43f0b9d9348 100644 --- a/packages/gatsby-transformer-json/CHANGELOG.md +++ b/packages/gatsby-transformer-json/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-json + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-10) **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 cf7323ce10e19..02429c9ff2221 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.9.0-next.0", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-json#readme", diff --git a/packages/gatsby-transformer-pdf/CHANGELOG.md b/packages/gatsby-transformer-pdf/CHANGELOG.md index df684b1bc0fb4..c0a126363ca2a 100644 --- a/packages/gatsby-transformer-pdf/CHANGELOG.md +++ b/packages/gatsby-transformer-pdf/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-pdf + # [1.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.8.0-next.0) (2020-12-10) **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 478ab744e627a..a9ef064750b68 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.8.0-next.0", + "version": "1.9.0-next.0", "author": "Alex Munoz <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-pdf#readme", diff --git a/packages/gatsby-transformer-react-docgen/CHANGELOG.md b/packages/gatsby-transformer-react-docgen/CHANGELOG.md index 24ac0935bb814..52fc892353898 100644 --- a/packages/gatsby-transformer-react-docgen/CHANGELOG.md +++ b/packages/gatsby-transformer-react-docgen/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-react-docgen@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-react-docgen + # [5.7.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-react-docgen@[email protected]) (2020-12-10) **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 6e471652e9d66..e524778f14327 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.7.0-next.0", + "version": "5.8.0-next.0", "author": "Jason Quense <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,7 +17,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "lodash": "^4.17.20" }, diff --git a/packages/gatsby-transformer-remark/CHANGELOG.md b/packages/gatsby-transformer-remark/CHANGELOG.md index 21bb8126bb83c..671d1ad56d9d0 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.15.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-remark + # [2.14.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@[email protected]) (2020-12-29) **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 bcfe037f92f4b..0e1c4b1394b5a 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.14.0-next.2", + "version": "2.15.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.12.5", "bluebird": "^3.7.2", - "gatsby-core-utils": "^1.8.0-next.1", + "gatsby-core-utils": "^1.9.0-next.0", "gray-matter": "^4.0.2", "hast-util-raw": "^4.0.0", "hast-util-to-html": "^4.0.1", @@ -32,9 +32,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^0.7.0-next.1" + "gatsby-plugin-utils": "^0.8.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark#readme", "keywords": [ diff --git a/packages/gatsby-transformer-screenshot/CHANGELOG.md b/packages/gatsby-transformer-screenshot/CHANGELOG.md index d639a97156c70..6119818f86d48 100644 --- a/packages/gatsby-transformer-screenshot/CHANGELOG.md +++ b/packages/gatsby-transformer-screenshot/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-screenshot + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@[email protected]) (2020-12-10) **Note:** Version bump only for package gatsby-transformer-screenshot diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json index 499e6d4495755..0d6b215d5035b 100644 --- a/packages/gatsby-transformer-screenshot/package.json +++ b/packages/gatsby-transformer-screenshot/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-screenshot", "description": "Gatsby transformer plugin that uses AWS Lambda to take screenshots of websites", - "version": "2.8.0-next.0", + "version": "2.9.0-next.0", "author": "David Beckley <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-screenshot#readme", diff --git a/packages/gatsby-transformer-sharp/CHANGELOG.md b/packages/gatsby-transformer-sharp/CHANGELOG.md index 039cdc64f9b62..67f0508a1eaea 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.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sharp@[email protected]) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-sharp + # [2.10.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sharp@[email protected]) (2020-12-29) ### Features diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index 676158ec94f7d..33fbfcb150773 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.10.0-next.3", + "version": "2.11.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -19,7 +19,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@types/sharp": "^0.26.1", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-sharp#readme", diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md index 850f13ec5d077..b76c90830564b 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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-sqip + # [2.9.0-next.6](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.6) (2020-12-29) **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 d8a633973f374..e9547fe9ba46e 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.9.0-next.6", + "version": "2.10.0-next.0", "author": "Benedikt Rötsch <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.12.5", "fs-extra": "^8.1.0", - "gatsby-plugin-sharp": "^2.12.0-next.6", + "gatsby-plugin-sharp": "^2.13.0-next.0", "md5-file": "^5.0.0", "mini-svg-data-uri": "^1.2.3", "p-queue": "^6.6.2", @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "debug": "^3.2.6" }, diff --git a/packages/gatsby-transformer-toml/CHANGELOG.md b/packages/gatsby-transformer-toml/CHANGELOG.md index d57a1c168d66f..cf4e5f1c5f8ae 100644 --- a/packages/gatsby-transformer-toml/CHANGELOG.md +++ b/packages/gatsby-transformer-toml/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-toml + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-10) **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 1d7ed9ac8f079..0229647434486 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.9.0-next.0", + "version": "2.10.0-next.0", "author": "Ruben Harutyunyan <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-toml#readme", diff --git a/packages/gatsby-transformer-xml/CHANGELOG.md b/packages/gatsby-transformer-xml/CHANGELOG.md index fc82450e735c2..4dc73df331f05 100644 --- a/packages/gatsby-transformer-xml/CHANGELOG.md +++ b/packages/gatsby-transformer-xml/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.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-xml + # [2.8.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.8.0-next.0) (2020-12-10) **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 2e21f5ff7a1d3..c742a456c6efd 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.8.0-next.0", + "version": "2.9.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-xml#readme", diff --git a/packages/gatsby-transformer-yaml/CHANGELOG.md b/packages/gatsby-transformer-yaml/CHANGELOG.md index 5c30440dab844..18a5e0d0f61fa 100644 --- a/packages/gatsby-transformer-yaml/CHANGELOG.md +++ b/packages/gatsby-transformer-yaml/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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.10.0-next.0) (2020-12-29) + +**Note:** Version bump only for package gatsby-transformer-yaml + # [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.1) (2020-12-17) ### Bug Fixes diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json index a8a223593c148..9d54fbc79ccdd 100644 --- a/packages/gatsby-transformer-yaml/package.json +++ b/packages/gatsby-transformer-yaml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-yaml", "description": "Gatsby transformer plugin for yaml", - "version": "2.9.0-next.1", + "version": "2.10.0-next.0", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-yaml#readme", diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index e6e70338c4d68..c1ed94c04de64 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.31.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.31.0-next.0) (2020-12-29) + +### Features + +- **gatsby:** use production React for dev-ssr when CI=true ([#28728](https://github.com/gatsbyjs/gatsby/issues/28728)) ([bd6b899](https://github.com/gatsbyjs/gatsby/commit/bd6b899fdb22748c2ecc016643ed39e32d014a6b)) + # [2.30.0-next.8](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.30.0-next.8) (2020-12-29) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index b5079cc827406..64f05169f0df9 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.30.0-next.8", + "version": "2.31.0-next.0", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js" @@ -36,8 +36,8 @@ "babel-plugin-add-module-exports": "^0.3.3", "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-lodash": "3.3.4", - "babel-plugin-remove-graphql-queries": "^2.14.0-next.0", - "babel-preset-gatsby": "^0.10.0-next.1", + "babel-plugin-remove-graphql-queries": "^2.15.0-next.0", + "babel-preset-gatsby": "^0.11.0-next.0", "better-opn": "^2.0.0", "better-queue": "^3.8.10", "bluebird": "^3.7.2", @@ -77,16 +77,16 @@ "find-cache-dir": "^3.3.1", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.17.0-next.5", - "gatsby-core-utils": "^1.8.0-next.1", - "gatsby-graphiql-explorer": "^0.9.0-next.1", - "gatsby-legacy-polyfills": "^0.5.0-next.0", - "gatsby-link": "^2.9.0-next.0", - "gatsby-plugin-page-creator": "^2.8.0-next.2", - "gatsby-plugin-typescript": "^2.10.0-next.0", - "gatsby-plugin-utils": "^0.7.0-next.1", - "gatsby-react-router-scroll": "^3.5.0-next.0", - "gatsby-telemetry": "^1.8.0-next.1", + "gatsby-cli": "^2.18.0-next.0", + "gatsby-core-utils": "^1.9.0-next.0", + "gatsby-graphiql-explorer": "^0.10.0-next.0", + "gatsby-legacy-polyfills": "^0.6.0-next.0", + "gatsby-link": "^2.10.0-next.0", + "gatsby-plugin-page-creator": "^2.9.0-next.0", + "gatsby-plugin-typescript": "^2.11.0-next.0", + "gatsby-plugin-utils": "^0.8.0-next.0", + "gatsby-react-router-scroll": "^3.6.0-next.0", + "gatsby-telemetry": "^1.9.0-next.0", "glob": "^7.1.6", "got": "8.3.2", "graphql": "^14.6.0", @@ -178,7 +178,7 @@ "@types/tmp": "^0.2.0", "@types/webpack-dev-middleware": "^3.7.1", "@types/webpack-virtual-modules": "^0.1.0", - "babel-preset-gatsby-package": "^0.10.0-next.0", + "babel-preset-gatsby-package": "^0.11.0-next.0", "cross-env": "^7.0.3", "documentation": "^12.3.0", "enhanced-resolve": "^4.2.0",
e0df4cc82c4a786f8217209434d5295b292a167e
2021-04-08 20:37:13
Lennart
chore(docs): Change "whitelist" to "allow list" (#30756)
false
Change "whitelist" to "allow list" (#30756)
chore
diff --git a/docs/docs/resource-handling-and-service-workers.md b/docs/docs/resource-handling-and-service-workers.md index 34adc1dd1c6ee..9c502870836a0 100644 --- a/docs/docs/resource-handling-and-service-workers.md +++ b/docs/docs/resource-handling-and-service-workers.md @@ -27,7 +27,7 @@ It's important that this array is accurate - if a page entered the array when it When all resources for a page have been successfully prefetched, we do _one_ of the following: - Add the page's path to a temporary array of prefetched paths, if the service worker has not yet installed -- Send a message to the service worker to let it know to whitelist the page's path, if it is installed +- Send a message to the service worker to let it know to allow the page's path, if it is installed Upon initial install, we do the following: @@ -36,7 +36,7 @@ Upon initial install, we do the following: Note that in both of the above cases, all these files should have already been downloaded once by the browser, so with [proper HTTP caching setup](/docs/caching/) we don't have to download any of the files again. However, one exception to this is `<style>` elements with a `data-href` attribute (indicating that the embedded stylesheet is the same as the stylesheet at the location specified) - we currently fetch the specified file rather than caching the contents of the element. -Another current problem is that we may start fetching the resources for a page before the service worker has finished installing, but finish fetching them all after it has installed - this could cause a page's path to be whitelisted even if some of its resources haven't been cached (since Gatsby assumes the service worker was installed at the start of fetching resources, if it was installed at the end). +Another current problem is that we may start fetching the resources for a page before the service worker has finished installing, but finish fetching them all after it has installed - this could cause a page's path to be allowed even if some of its resources haven't been cached (since Gatsby assumes the service worker was installed at the start of fetching resources, if it was installed at the end). ## Gatsby Core @@ -72,8 +72,8 @@ The following are some invalid reasons why we might not have resources, i.e. thi ### Service worker update handling -The service worker updates automatically when the browser detects that the contents of the `sw.js` file have changed from the currently installed version. Upon an update, we clear all whitelisted paths to prevent old pages from loading after the update. +The service worker updates automatically when the browser detects that the contents of the `sw.js` file have changed from the currently installed version. Upon an update, we clear all allowed paths to prevent old pages from loading after the update. -Blank pages can theoretically occur if we serve the app shell when resources are unavailable - however, this _should_ never occur since we only serve the app shell with whitelisted paths (i.e. ones whose resources have been cached entirely). There may be some edge cases when this can occur, e.g. when the webpack runtime from the old site attempts to load a chunk which is unavailable on the updated site - we are currently investigating ways to prevent this, and make using service workers with Gatsby even more robust. +Blank pages can theoretically occur if we serve the app shell when resources are unavailable - however, this _should_ never occur since we only serve the app shell with allowed paths (i.e. ones whose resources have been cached entirely). There may be some edge cases when this can occur, e.g. when the webpack runtime from the old site attempts to load a chunk which is unavailable on the updated site - we are currently investigating ways to prevent this, and make using service workers with Gatsby even more robust. -We should also never get incorrect 404 pages following a site update, since we never whitelist 404 pages to serve using the offline shell, meaning that a page which was previously a 404 should always load from the server. If it's no longer a 404, then it will be cached as usual. +We should also never get incorrect 404 pages following a site update, since we never allow 404 pages to serve using the offline shell, meaning that a page which was previously a 404 should always load from the server. If it's no longer a 404, then it will be cached as usual. diff --git a/examples/simple-auth/README.md b/examples/simple-auth/README.md index fb41a9fac29f7..86a4bf3efa74e 100644 --- a/examples/simple-auth/README.md +++ b/examples/simple-auth/README.md @@ -5,7 +5,7 @@ This is a simplified demo to show how an authentication workflow is implemented The short version is: - Gatsby statically renders all unauthenticated routes as usual -- Authenticated routes are whitelisted as client-only +- Authenticated routes are allowed as client-only - Logged out users are redirected to the login page if they attempt to visit private routes - Logged in users will see their private content diff --git a/packages/gatsby-source-wordpress/src/utils/fetch-graphql.ts b/packages/gatsby-source-wordpress/src/utils/fetch-graphql.ts index 7dfc018ce67bc..a33d696b5f851 100644 --- a/packages/gatsby-source-wordpress/src/utils/fetch-graphql.ts +++ b/packages/gatsby-source-wordpress/src/utils/fetch-graphql.ts @@ -441,7 +441,7 @@ ${getLowerRequestConcurrencyOptionMessage()}`, id: CODES.RequestDenied, context: { sourceMessage: formatLogMessage( - `${e.message}\n\nThe GraphQL request was forbidden.\nIf you are using a security plugin like WordFence or a server firewall you may need to whitelist your IP address or adjust your firewall settings for your GraphQL endpoint.\n\n${errorContext}` + `${e.message}\n\nThe GraphQL request was forbidden.\nIf you are using a security plugin like WordFence or a server firewall you may need to add your IP address to the allow list or adjust your firewall settings for your GraphQL endpoint.\n\n${errorContext}` ), }, })
3a866b278ee1c86c1914df562ede911e363f5ad4
2024-10-30 01:42:48
renovate[bot]
chore(deps): update dependency gatsby-cypress to ^3.13.1 (#38837)
false
update dependency gatsby-cypress to ^3.13.1 (#38837)
chore
diff --git a/e2e-tests/adapters/package.json b/e2e-tests/adapters/package.json index 2cf02c2573642..460781a90cae3 100644 --- a/e2e-tests/adapters/package.json +++ b/e2e-tests/adapters/package.json @@ -37,7 +37,7 @@ "cypress": "^12.14.0", "dotenv": "^8.6.0", "execa": "^6.1.0", - "gatsby-cypress": "^3.13.0", + "gatsby-cypress": "^3.13.1", "netlify-cli": "^17.25.0", "npm-run-all": "^4.1.5", "start-server-and-test": "^2.0.3",
8926acda89849702727bed87004a2e3b03af50c6
2019-10-24 20:19:42
Sarah Zhang
chore(docs): Edited pronouns to use second person pronouns (#18962)
false
Edited pronouns to use second person pronouns (#18962)
chore
diff --git a/docs/docs/adding-a-list-of-markdown-blog-posts.md b/docs/docs/adding-a-list-of-markdown-blog-posts.md index 19e11aa11b5f9..ddd855671a78f 100644 --- a/docs/docs/adding-a-list-of-markdown-blog-posts.md +++ b/docs/docs/adding-a-list-of-markdown-blog-posts.md @@ -43,7 +43,7 @@ export default IndexPage ### Creating the GraphQL query -Second, you need to provide the data to your component with a GraphQL query. Let's add it, so that `index.js` looks like this: +Second, you need to provide the data to your component with a GraphQL query. Add it, so that `index.js` looks like this: ```jsx:title=src/pages/index.js import React from "react" diff --git a/docs/docs/adding-comments.md b/docs/docs/adding-comments.md index 7454ec0d2e00d..4930ac894602b 100644 --- a/docs/docs/adding-comments.md +++ b/docs/docs/adding-comments.md @@ -18,7 +18,7 @@ You can also [roll your own comment system](/blog/2019-08-27-roll-your-own-comme ## Using Disqus for comments -In this guide, we'll show you how to implement Disqus on your blog as it has a number of nice features. +In this guide, you'll learn how to implement Disqus on your blog as it has a number of nice features. - It is low maintenance, meaning [moderating your comments and maintaining your forum](https://help.disqus.com/moderation/moderating-101) less hassle. - It provides official [React support](https://github.com/disqus/disqus-react). diff --git a/docs/docs/adding-forms.md b/docs/docs/adding-forms.md index c9f723e4abf1a..673529d6128ed 100644 --- a/docs/docs/adding-forms.md +++ b/docs/docs/adding-forms.md @@ -4,7 +4,7 @@ title: Adding Forms Gatsby is built on top of React. So anything that is possible with a React form is possible in Gatsby. Additional details about how to create React forms can be found in the [React forms documentation](https://reactjs.org/docs/forms.html) (which happens to be built with Gatsby!) -Let's start with the following page. +Start with the following page. ```jsx:title=src/pages/index.js import React from "react" diff --git a/docs/docs/adding-search-with-algolia.md b/docs/docs/adding-search-with-algolia.md index 7f6a40b41d201..43d3096b16984 100644 --- a/docs/docs/adding-search-with-algolia.md +++ b/docs/docs/adding-search-with-algolia.md @@ -57,7 +57,7 @@ module.exports = { } ``` -Notice that you're loading `queries` from a file at `./src/utils/algolia.js` (you can of course put it wherever you like) and your Algolia ID and API key from `.env` so let's add those files. +Notice that you're loading `queries` from a file at `./src/utils/algolia.js` (you can of course put it wherever you like) and your Algolia ID and API key from `.env` so add those files. For this, you will need to navigate to [the 'API Keys' section of your Algolia profile](https://www.algolia.com/api-keys). If you already have an account, you will find your API keys here. If not, you will need to sign up for one and then navigate to this link. It should look something like this screenshot, only with actual numbers instead of redacted ones: @@ -161,9 +161,9 @@ If you've come this far, then the "backend" is done. You should now be able to r ## Adding a search interface to your site -Next, let's build a user-facing search interface for your site. It needs a way for the user to enter a search string, send that string to Algolia, receive matching results (_hits_ in Algolia speak) from your indices and finally display those to the user. Let's dive right in. +Next, build a user-facing search interface for your site. It needs a way for the user to enter a search string, send that string to Algolia, receive matching results (_hits_ in Algolia speak) from your indices and finally display those to the user. -You're going to assemble everything you need into a React `Search` component that you call from anywhere on your site where you want the user to be able to search. Even though design varies strongly from site to site, I'll also go through the styles implemented with [`styled-components`](https://styled-components.com) in this guide since working out the CSS transitions to have the search field slide out as the user clicks on it and the results pane to appear once Algolia returns matches took some time. +You're going to assemble everything you need into a React `Search` component that you call from anywhere on your site where you want the user to be able to search. Even though design varies strongly from site to site, you'll note the styles implemented with [`styled-components`](https://styled-components.com) in this guide since working out the CSS transitions to have the search field slide out as the user clicks on it and the results pane to appear once Algolia returns matches took some time. The `Search` components is made up of the following files: @@ -172,7 +172,7 @@ The `Search` components is made up of the following files: - **`hitComps.js`**: the components that will render matching posts/pages - **`styles.js`**: the styled components -There's quite a lot happening in these files so let's break them down one by one and piece by piece. +There's quite a lot happening in these files so break them down one by one and piece by piece. ### `index.js` @@ -259,7 +259,7 @@ import { Root, SearchBox, HitsWrapper, PoweredBy } from "./styles" import Input from "./Input" ``` -`PoweredBy` renders the string "Powered by Algolia" with a small logo and link. If you're using Algolia's generous free tier, they ask you to acknowledge them in this way below the search results. `react-instantsearch-dom` also provides a [`PoweredBy` component](https://community.algolia.com/react-instantsearch/widgets/PoweredBy.html) specifically for this purpose but I preferred to build my own. You'll get back to these styled components once you're done with `index.js`. For now, let's move on. +`PoweredBy` renders the string "Powered by Algolia" with a small logo and link. If you're using Algolia's generous free tier, they ask you to acknowledge them in this way below the search results. `react-instantsearch-dom` also provides a [`PoweredBy` component](https://community.algolia.com/react-instantsearch/widgets/PoweredBy.html) specifically for this purpose, but you can build your own. You'll get back to these styled components once you're done with `index.js`. The last thing you need for the `Search` component to work are hit components for every type of result you want to display to the user. The hit component determines how attributes of matching results (such as author, date, tags and title in the case of a blog post) are displayed to the user. @@ -365,7 +365,7 @@ export default connectSearchBox(({ refine, ...rest }) => ( The `Input` component is where the user enters the search string. It is quite short since the grunt work is done by Algolia's [`connectSearchBox`](https://community.algolia.com/react-instantsearch/connectors/connectSearchBox.html) function. -Now let's look at the styled components `SearchIcon`, `Form`, `Input` as well as the ones imported in `index.js`. +Now look at the styled components `SearchIcon`, `Form`, `Input` as well as the ones imported in `index.js`. ## `styles.js` @@ -503,7 +503,7 @@ export const PoweredBy = () => ( ) ``` -Styles will of course be different from one site to the next so I only list these components here for completeness and because they implement the dynamic behavior of the search interface, i.e. that the input field only slides out once the user clicks the `SearchIcon` (a magnifier) and that the pane displaying search (`HitsWrapper`) results only appears once Algolia's server returned matches, both of you which you might want to keep. +Styles will of course be different from one site to the next so these components are listed here for completeness and because they implement the dynamic behavior of the search interface, i.e. that the input field only slides out once the user clicks the `SearchIcon` (a magnifier) and that the pane displaying search (`HitsWrapper`) results only appears once Algolia's server returned matches, both of you which you might want to keep. Now you're almost done, two small steps remain. First you need to put together a hit component for every type of result you want to display. In this example, these are blog posts and pages. And second, you need to call your `Search` component somewhere on your site. Here are the hit components. @@ -557,7 +557,7 @@ export const PostHit = clickHandler => ({ hit }) => ( ## Usage -Now all you need to do is import `Search` somewhere. The obvious place is the `Header` component so let's add it there. +Now all you need to do is import `Search` somewhere. The obvious place is the `Header` component so add it there. ```js:title=src/components/Header/index.js import React from "react" diff --git a/docs/docs/adding-search-with-js-search.md b/docs/docs/adding-search-with-js-search.md index 122f53136994f..72b2b6c6714d4 100644 --- a/docs/docs/adding-search-with-js-search.md +++ b/docs/docs/adding-search-with-js-search.md @@ -257,7 +257,7 @@ Run `gatsby develop` and if all went well, open your browser of choice and enter ## JS-Search with a big dataset -Now let's try a different approach, this time instead of letting the component do all of the work, it's Gatsby's job to do that and pass all the data to a page defined by the path property, via [pageContext](/docs/behind-the-scenes-terminology/#pagecontext). +Now try a different approach, this time instead of letting the component do all of the work, it's Gatsby's job to do that and pass all the data to a page defined by the path property, via [pageContext](/docs/behind-the-scenes-terminology/#pagecontext). To do this, some changes are required. diff --git a/docs/docs/adding-search.md b/docs/docs/adding-search.md index 5a3cf9294a292..ae0405676dfd1 100644 --- a/docs/docs/adding-search.md +++ b/docs/docs/adding-search.md @@ -9,7 +9,7 @@ See below for a list of guides in this section, or keep reading for an overview ## Site search overview -Before we go through the steps for adding search to your Gatsby website, let's examine the components needed for adding search to a website. +Before going through the steps for adding search to your Gatsby website, examine the components needed for adding search to a website. There are three required components for adding search to your Gatsby website: diff --git a/docs/docs/audit-with-lighthouse.md b/docs/docs/audit-with-lighthouse.md index faa43988d00a3..5862650860839 100644 --- a/docs/docs/audit-with-lighthouse.md +++ b/docs/docs/audit-with-lighthouse.md @@ -30,7 +30,7 @@ Once this starts, you can now view your site at `localhost:9000`. ### Run a Lighthouse audit -Now let's run your first Lighthouse test. +Now run your first Lighthouse test. 1. Open the site in Chrome (if you didn't already do so) and then open up the Chrome DevTools. diff --git a/docs/docs/bulma.md b/docs/docs/bulma.md index 00554c74aea00..1e607afbbae24 100644 --- a/docs/docs/bulma.md +++ b/docs/docs/bulma.md @@ -37,7 +37,7 @@ $title-color: #ff0000; The last step is to import the style and use it. -Let's replace the default contents of the index.js file. +Replace the default contents of the index.js file. ```javascript:title=index.js import React from "react" diff --git a/docs/docs/centralizing-your-sites-navigation.md b/docs/docs/centralizing-your-sites-navigation.md index 2470b31e75103..4b3066d4d4937 100644 --- a/docs/docs/centralizing-your-sites-navigation.md +++ b/docs/docs/centralizing-your-sites-navigation.md @@ -86,7 +86,7 @@ When executing this query within the GraphiQL editor you see output that looks s } ``` -Perfect! You now have a way of obtaining data from the `gatsby-config.js` file. Let's continue by pulling this data into the layout using the query you just formed. +Perfect! You now have a way of obtaining data from the `gatsby-config.js` file. Continue by pulling this data into the layout using the query you just formed. ### Pulling data inside the layout component @@ -94,7 +94,7 @@ Inside your project, locate the `src/components` folder and navigate to the `lay StaticQuery is a new component introduced in Gatsby V2, which allows you to run GraphQL queries within your components, not just pages. It allows developers to collocate data with their components. -Let's extend the query within this component to include the menu links, so it looks like so: +Extend the query within this component to include the menu links, so it looks like so: ```diff:title=src/components/layout.js const Layout = ({ children }) => ( @@ -141,7 +141,7 @@ const Layout = ({ children }) => ( With the above changes to your `StaticQuery` component, the `render` property, which accepts a function that takes one argument, now has access to the menu links for use inside the function (as the argument). The last thing that is left to do is to display the site's navigation. -To do this, the header component that is already available in the project seems like it might be a good starting place to display the navigation. Let's pass the `menuLinks` object to this header component like so: +To do this, the header component that is already available in the project seems like it might be a good starting place to display the navigation. Pass the `menuLinks` object to this header component like so: ```diff:title=src/components/layout.js const Layout = ({ children }) => ( diff --git a/docs/docs/creating-a-source-plugin.md b/docs/docs/creating-a-source-plugin.md index 29c4ec871e39e..d5b601c6b3c5b 100644 --- a/docs/docs/creating-a-source-plugin.md +++ b/docs/docs/creating-a-source-plugin.md @@ -140,7 +140,7 @@ When an object node is deleted, Gatsby _does not_ delete any referenced entities #### Creating the relationship -Let's say you want to create a relationship between Posts and Authors, and let's say you want to call the field `author`. +Suppose you want to create a relationship between Posts and Authors, and you want to call the field `author`. Before you pass the Post object and Author object into `createNode` and create the respective nodes, you need to create a field called `author___NODE` on the Post object to hold the relationship to Authors. The value of this field should be the node ID of the Author. diff --git a/docs/docs/debugging-async-lifecycles.md b/docs/docs/debugging-async-lifecycles.md index df7c11b1fadb0..a36e64ee5acbc 100644 --- a/docs/docs/debugging-async-lifecycles.md +++ b/docs/docs/debugging-async-lifecycles.md @@ -4,7 +4,7 @@ title: Debugging Asynchronous Lifecycle Methods Various lifecycle methods (see: [Gatsby Node APIs](/docs/node-apis/)) within Gatsby are presumed to be asynchronous. In other words, these methods can _eventually_ resolve to a value and this value is a [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise). You wait for the `Promise` to resolve, and then mark the lifecycle method as completed when it does. -In the context of Gatsby, this means that if you are invoking asynchronous functionality (e.g. data requests, `graphql` calls, etc.) and not correctly returning the Promise an internal issue can arise where the result of those call(s) happens _after_ the lifecycle method has already been marked as completed. Let's consider an example: +In the context of Gatsby, this means that if you are invoking asynchronous functionality (e.g. data requests, `graphql` calls, etc.) and not correctly returning the Promise an internal issue can arise where the result of those call(s) happens _after_ the lifecycle method has already been marked as completed. Consider an example: ```js:title=gatsby-node.js exports.createPages = async function({ actions, graphql }) { diff --git a/docs/docs/debugging-the-build-process.md b/docs/docs/debugging-the-build-process.md index de7097233e6aa..b46aaffb2dd5d 100644 --- a/docs/docs/debugging-the-build-process.md +++ b/docs/docs/debugging-the-build-process.md @@ -10,7 +10,7 @@ In this guide you will learn how to debug some code using: - [VS Code debugger (Manual-Config)](#vs-code-debugger-manual-config) - [Chrome DevTools for Node](#chrome-devtools-for-node) -As an example let's use the following code snippet in a `gatsby-node.js` file: +As an example, use the following code snippet in a `gatsby-node.js` file: ```js:title=gatsby-node.js const { createFilePath } = require("gatsby-source-filesystem") @@ -124,13 +124,13 @@ You should see Chrome DevTools start and that code execution is paused at the st Right now you can't see your files in Sources. You need to add those using the "Add folder to workspace" button and pick the directory with the code you want to debug. If you want to debug code in your `gatsby-node.js` or your local plugins, pick your project directory. If you want debug the `gatsby` package you will have to pick the `gatsby` directory inside `node_modules`. -This example has problematic code in your local `gatsby-node.js` file, so let's add the directory containing it to Sources. You should have a directory with your code in the left pane: +This example has problematic code in your local `gatsby-node.js` file, so add the directory containing it to Sources. You should have a directory with your code in the left pane: ![Files added to Sources tab](./images/chrome-devtools-files.png) ### Using DevTools -Let's go ahead and add a breakpoint just before the place that the error is thrown. To add a breakpoint navigate to `gatsby-node.js` and left click on a line number: +Go ahead and add a breakpoint just before the place that the error is thrown. To add a breakpoint navigate to `gatsby-node.js` and left click on a line number: ![Added breakpoint](./images/chrome-devtools-new-breakpoint.png) @@ -140,7 +140,7 @@ Now you can resume code execution by clicking the "resume" icon in the DevTools To inspect variables you can hover your mouse over them or go to the `Scope` section in the right-hand pane (either collapse the "Call Stack" section or scroll through it to the bottom). -In the example `Node` is `undefined` and to figure out why, let's go backwards. `Node` is extracted from `args` so let's examine that by hovering `args`: +In the example `Node` is `undefined` and to figure out why, let's go backwards. `Node` is extracted from `args` so examine that by hovering `args`: ![Examine variable](./images/chrome-devtools-examine-var.png) diff --git a/docs/docs/emotion.md b/docs/docs/emotion.md index 1965c9afe2732..be623aa8f4927 100644 --- a/docs/docs/emotion.md +++ b/docs/docs/emotion.md @@ -30,7 +30,7 @@ module.exports = { Then in your terminal run `npm start` to start the Gatsby development server. -Now let's create a sample Emotion page at `src/pages/index.js`: +Now create a sample Emotion page at `src/pages/index.js`: ```jsx:title=src/pages/index.js import React from "react" diff --git a/docs/docs/environment-variables.md b/docs/docs/environment-variables.md index 2556489342143..5d8aa86a31636 100644 --- a/docs/docs/environment-variables.md +++ b/docs/docs/environment-variables.md @@ -7,8 +7,8 @@ title: Environment Variables You can provide environment variables to your site to customise its behavior in different environments. Environment variables can be distinguished between different types. -There are environment variables that are defined in special places intended to be used in different deployment environments. Let's call these “Project Env Vars”. -And there are true OS-level environment variables that might be used in command-line calls. Let's call these “OS Env Vars”. +There are environment variables that are defined in special places intended to be used in different deployment environments. You can call these “Project Env Vars”. +And there are true OS-level environment variables that might be used in command-line calls. You can call these “OS Env Vars”. In both cases you want to be able to access the relevant value of these variables for the environment you are in. diff --git a/docs/docs/graphql-reference.md b/docs/docs/graphql-reference.md index 8fdbf7ff2d08e..4dd8925f02880 100644 --- a/docs/docs/graphql-reference.md +++ b/docs/docs/graphql-reference.md @@ -12,7 +12,7 @@ For more information, read about [why Gatsby uses GraphQL](/docs/why-gatsby-uses ## Basic query -Let's start with the basics, pulling up the site `title` from your `gatsby-config.js`'s `siteMetaData`. Here the query is on the left and the results are on the right. +Start with the basics, pulling up the site `title` from your `gatsby-config.js`'s `siteMetaData`. Here the query is on the left and the results are on the right. <iframe title="A basic query" src="https://711808k40x.sse.codesandbox.io/___graphql?query=%7B%0A%20%20site%20%7B%0A%20%20%20%20siteMetadata%20%7B%0A%20%20%20%20%20%20title%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A&explorerIsOpen=false" width="600" height="400"></iframe> @@ -142,7 +142,7 @@ To add variables to page component queries, pass these in the `context` object [ You can also group values on the basis of a field e.g. the title, date or category and get the field value, the total number of occurrences and edges. -The query below gets us all categories (`fieldValue`) applied to a book and how many books (`totalCount`) a given category is applied to. In addition we're grabbing the `title` of books in a given category. You can see for example that there are 3 books in the `magical creatures` category. +The query below gets you all categories (`fieldValue`) applied to a book and how many books (`totalCount`) a given category is applied to. In addition you are grabbing the `title` of books in a given category. You can see for example that there are 3 books in the `magical creatures` category. <iframe title="Grouping values" src="https://711808k40x.sse.codesandbox.io/___graphql?query=%7B%0A%20%20allMarkdownRemark(filter%3A%20%7Bfrontmatter%3A%20%7Btitle%3A%20%7Bne%3A%20%22%22%7D%7D%7D)%20%7B%0A%20%20%20%20group(field%3A%20frontmatter___categories)%20%7B%0A%20%20%20%20%20%20fieldValue%0A%20%20%20%20%20%20totalCount%0A%20%20%20%20%20%20edges%20%7B%0A%20%20%20%20%20%20%20%20node%20%7B%0A%20%20%20%20%20%20%20%20%20%20frontmatter%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20title%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20nodes%20%7B%0A%20%20%20%20%20%20frontmatter%20%7B%0A%20%20%20%20%20%20%20%20title%0A%20%20%20%20%20%20%20%20categories%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A&explorerIsOpen=false" width="600" height="400"></iframe> diff --git a/docs/docs/migrating-from-v0-to-v1.md b/docs/docs/migrating-from-v0-to-v1.md index 770443886f8fa..401bf70a5590a 100644 --- a/docs/docs/migrating-from-v0-to-v1.md +++ b/docs/docs/migrating-from-v0-to-v1.md @@ -168,7 +168,7 @@ module.exports = { ### Create slugs for markdown files It's handy to store the pathname or "slug" for each markdown page with the -markdown data. This let's you query the slug from multiple places. +markdown data. This lets you query the slug from multiple places. Here's how you do that. @@ -196,7 +196,7 @@ exports.onCreateNode = ({ node, boundActionCreators, getNode }) => { } ``` -Now we can create pages for each markdown file using our slug. In the same +Now you can create pages for each markdown file using our slug. In the same `gatsby-node.js` file add: ```javascript @@ -206,7 +206,7 @@ exports.createPages = ({ graphql, boundActionCreators }) => { return new Promise((resolve, reject) => { const pages = [] const blogPost = path.resolve("src/templates/blog-post.js") - // Query for all markdown "nodes" and for the slug we previously created. + // Query for all markdown "nodes" and for the slug you previously created. resolve( graphql( ` @@ -246,12 +246,10 @@ exports.createPages = ({ graphql, boundActionCreators }) => { } ``` -So we've now generated the pathname or slug for each markdown page as well as -told Gatsby about these pages. You'll notice above that we reference a blog post -template file when creating the pages. We haven't created that yet so let's do -it. - -In your `src` directory, create a templates directory and add `blog-post.js`. +You've now generated the pathname or slug for each markdown page as well as told +Gatsby about these pages. You'll notice above that you reference a blog post +template file when creating the pages. You haven't created that template file yet, +so in your `src` directory, create a templates directory and add `blog-post.js`. This is a normal React.js component with a special Gatsby twist—a GraphQL query specifying the data needs of the component. As a start, make the component look diff --git a/docs/docs/sourcing-from-buttercms.md b/docs/docs/sourcing-from-buttercms.md index 5e8de6903c340..041972cbc8c5c 100644 --- a/docs/docs/sourcing-from-buttercms.md +++ b/docs/docs/sourcing-from-buttercms.md @@ -125,13 +125,13 @@ If you need help after reading this, contact us via email or livechat. #### Create the page structure -Create a new Page and define it's structure using our Page Builder. Let's create an example homepage. +Create a new Page and define it's structure using our Page Builder. Create an example homepage. ![image](https://buttercms.com/static/images/docs/guides/PagesNewSinglePage.png) #### Populate the content -Then populate our new page with content. In the next step, you'll call the ButterCMS API to retrieve this content from our app. +Then populate your new page with content. In the next step, you'll call the ButterCMS API to retrieve this content from your app. ![image](https://buttercms.com/static/images/docs/guides/PagesNewSinglePageContent.png) @@ -269,7 +269,7 @@ Now open up [localhost:8000/home](http://localhost:8000/home) to see the home pa ## Create multiple pages using Page Types -Let's say you want to add a set of customer case study pages to your marketing site. They all have the same structure but the content is different. Page Types are perfect for this scenario and involves three easy steps: +Suppose you want to add a set of customer case study pages to your marketing site. They all have the same structure but the content is different. Page Types are perfect for this scenario and involves three easy steps: 1. Create the Page Type structure 2. Populate the content @@ -285,13 +285,13 @@ Create a Page Type to represent your Customer Case Study pages: After saving, return to the configuration page by clicking the gear icon: ![image](https://buttercms.com/static/images/docs/guides/PagesNewPageType2.png) -Then click on Create Page Type and name it "Customer Case Study". This will allow us to reuse this field configuration across multiple customer case study pages: +Then click on Create Page Type and name it "Customer Case Study". This will allow you to reuse this field configuration across multiple customer case study pages: ![saving](https://buttercms.com/static/images/docs/guides/PagesNewPageType3.png) ## Populate the content -Then populate our new page with content. In the next step, we'll call the ButterCMS API to retrieve this content from our app. +Then populate our new page with content. In the next step, you'll call the ButterCMS API to retrieve this content from your app. ![](https://buttercms.com/static/images/docs/guides/PagesNewPageTypeCreateContent.png) @@ -490,7 +490,7 @@ export const pageQuery = graphql` export default CustomerCaseStudy ``` -Now let's programmatically create customer case study pages based on the template you defined in `src/template/customer-case-study.js` +Now programmatically create customer case study pages based on the template you defined in `src/template/customer-case-study.js` ```javascript:title=gatsby-node.js const path = require(`path`) @@ -604,7 +604,7 @@ was use by gatsby to create each case study page. ## Setup content fields -Let's suppose you want to add a CMS to a static FAQ page with a title and a list of questions with answers. Most websites have a FAQ(Frequently Asked Question) page. ButterCMS make it dead easy to create such content with Collections . Now you'll create a collection named `FAQs`having a `question` and `answer` field. +Suppose you want to add a CMS to a static FAQ page with a title and a list of questions with answers. Most websites have a FAQ(Frequently Asked Question) page. ButterCMS make it dead easy to create such content with Collections. Now you'll create a collection named `FAQs`having a `question` and `answer` field. Making your content dynamic with Butter is a two-step process: diff --git a/docs/docs/unit-testing.md b/docs/docs/unit-testing.md index ccd9aea59f31b..e204b9ba61006 100644 --- a/docs/docs/unit-testing.md +++ b/docs/docs/unit-testing.md @@ -20,7 +20,7 @@ concepts should be the same or very similar for your site._ ### 1. Installing dependencies -First you need to install Jest and some more required packages. We install babel-jest and babel-preset-gatsby to ensure that the babel preset(s) that are used match what are used internally for your Gatsby site. +First you need to install Jest and some more required packages. Install babel-jest and babel-preset-gatsby to ensure that the babel preset(s) that are used match what are used internally for your Gatsby site. ```shell npm install --save-dev jest babel-jest react-test-renderer babel-preset-gatsby identity-obj-proxy @@ -50,7 +50,7 @@ module.exports = { } ``` -Let's go over the content of this configuration file: +Go over the content of this configuration file: - The `transform` section tells Jest that all `js` or `jsx` files need to be transformed using a `jest-preprocess.js` file in the project root. Go ahead and @@ -165,7 +165,7 @@ start with a simple snapshot test to check that everything is working. First, create the test file. You can either put these in a `__tests__` directory, or put them elsewhere (usually next to the component itself), with the extension `.spec.js` or `.test.js`. The decision comes down to your own -preference. In this guide, we will use the `__tests__` folder convention. Let's create a test for our header component, so create a `header.js` file in `src/components/__tests__/`: +preference. In this guide, you will use the `__tests__` folder convention. Create a test for our header component, so create a `header.js` file in `src/components/__tests__/`: ```js:title=src/components/__tests__/header.js import React from "react" @@ -193,7 +193,7 @@ learn more about other tests that you can write. If you look inside `package.json` you will probably find that there is already a script for `test`, which just outputs an error message. Change this to use the -`jest` executable that we now have available, like so: +`jest` executable that you now have available, like so: ```json:title=package.json "scripts": { @@ -259,7 +259,7 @@ file inside a `__tests__` directory, or any file elsewhere with the extension Option `moduleFileExtensions` is needed when working with TypeScript. The only thing it is doing is telling Jest which file extensions you can import in your files without making precise the file extension. By default, -it works with `js`, `json`, `jsx`, `node` file extensions so we just need +it works with `js`, `json`, `jsx`, `node` file extensions so you just need to add `ts` and `tsx`. You can read more about it in [Jest's documentation](https://jestjs.io/docs/en/configuration.html#modulefileextensions-array-string). ## Other resources diff --git a/docs/docs/using-fragments.md b/docs/docs/using-fragments.md index 38e9f139124b3..7cebd34b95bb5 100644 --- a/docs/docs/using-fragments.md +++ b/docs/docs/using-fragments.md @@ -74,7 +74,7 @@ export const query = graphql` ` ``` -When compiling your site, Gatsby preprocesses all GraphQL queries it finds. Therefore, any file that gets included in your project can define a snippet. However, only Pages can define GraphQL queries that actually return data. This is why we can define the fragment in the component file - it doesn't actually return any data directly. +When compiling your site, Gatsby preprocesses all GraphQL queries it finds. Therefore, any file that gets included in your project can define a snippet. However, only Pages can define GraphQL queries that actually return data. This is why you can define the fragment in the component file - it doesn't actually return any data directly. ## Further reading diff --git a/docs/docs/using-gatsby-image.md b/docs/docs/using-gatsby-image.md index 2e9fbc2a32d26..e9e4adc088a2c 100644 --- a/docs/docs/using-gatsby-image.md +++ b/docs/docs/using-gatsby-image.md @@ -37,7 +37,7 @@ This isn’t ideal. Optimized images should be easy and the default. ## Solution -With Gatsby, we can make the experience of working with images way, way better. +With Gatsby, you can make the experience of working with images way, way better. `gatsby-image` is designed to work seamlessly with Gatsby’s native image processing capabilities powered by GraphQL and Sharp. To produce perfect images with minimal effort, you can: diff --git a/docs/docs/why-gatsby-uses-graphql.md b/docs/docs/why-gatsby-uses-graphql.md index 67454e99a6436..e64dd2e981fe4 100644 --- a/docs/docs/why-gatsby-uses-graphql.md +++ b/docs/docs/why-gatsby-uses-graphql.md @@ -60,7 +60,7 @@ In the simplest cases, this is all that’s required for building pages with Gat To pass data to the created pages, you’ll need to pass `context` to the `createPage` call. -In `gatsby-node.js`, we can add context like so: +In `gatsby-node.js`, you can add context like so: ```js:title=gatsby-node.js exports.createPages = ({ actions: { createPage } }) => { @@ -75,11 +75,11 @@ exports.createPages = ({ actions: { createPage } }) => { } ``` -The `context` property accepts an object, and we can pass in any data we want the page to be able to access. +The `context` property accepts an object, and you can pass in any data you want the page to be able to access. > **NOTE:** There are a few reserved names that _cannot_ be used in `context`. They are: `path`, `matchPath`, `component`, `componentChunkName`, `pluginCreator___NODE`, and `pluginCreatorId`. -When Gatsby creates pages, it includes a prop called `pageContext` and sets its value to `context`, so we can access any of the values in our component: +When Gatsby creates pages, it includes a prop called `pageContext` and sets its value to `context`, so you can access any of the values in your component: ```jsx:title=src/templates/with-context.js import React from "react"
1435671e4ae23a71dd20dbfea325025ecf8af80a
2020-01-20 13:05:47
Bryan Robinson
fix(gatsby-starter-default): Removes extraneous paddingTop (#20682)
false
Removes extraneous paddingTop (#20682)
fix
diff --git a/starters/default/src/components/layout.js b/starters/default/src/components/layout.js index 8d559875eb270..0359ea62913be 100644 --- a/starters/default/src/components/layout.js +++ b/starters/default/src/components/layout.js @@ -30,8 +30,7 @@ const Layout = ({ children }) => { style={{ margin: `0 auto`, maxWidth: 960, - padding: `0px 1.0875rem 1.45rem`, - paddingTop: 0, + padding: `0 1.0875rem 1.45rem`, }} > <main>{children}</main>
229af4f28a4147932829c1369ed43f87436c63e1
2021-08-03 15:45:48
renovate[bot]
fix(deps): update minor and patch dependencies for gatsby-source-contentful (#32608)
false
update minor and patch dependencies for gatsby-source-contentful (#32608)
fix
diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index f0e64bfa579ce..a483a7676d87e 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -15,7 +15,7 @@ "axios": "^0.21.1", "chalk": "^4.1.2", "common-tags": "^1.8.0", - "contentful": "^8.4.0", + "contentful": "^8.4.2", "fs-extra": "^9.1.0", "gatsby-core-utils": "^2.12.0-next.0", "gatsby-plugin-utils": "^1.12.0-next.0", @@ -25,7 +25,7 @@ "lodash": "^4.17.21", "node-fetch": "^2.6.1", "p-queue": "^6.6.2", - "qs": "^6.9.6", + "qs": "^6.10.1", "retry-axios": "^2.4.0" }, "devDependencies": { diff --git a/yarn.lock b/yarn.lock index 8a87a0f168444..38173ed2c1db9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8703,10 +8703,10 @@ contentful-sdk-core@^6.5.0, contentful-sdk-core@^6.7.0: fast-copy "^2.1.0" qs "^6.9.4" -contentful@^8.4.0: - version "8.4.0" - resolved "https://registry.npmjs.org/contentful/-/contentful-8.4.0.tgz#0bfa29391176e9570fbada272797c07f7b0a6c9a" - integrity sha512-VHVIZMRVMvce949uhDtvxEgHsNzcbYN1YW7Hz4vJKt37qyf42AESvSsRZAKLYgf8b8NeHn07VgV2drBacFm5Tg== +contentful@^8.4.2: + version "8.4.2" + resolved "https://registry.yarnpkg.com/contentful/-/contentful-8.4.2.tgz#e9d0088772d41edefcc91ec79db99c5e679c4b34" + integrity sha512-ddbJaJEQm58XBNjzne/lLkapEW9bWX0K3vVF16UEYyekiv2CAIaO5OwWgDD9w+VJe2wliPcDPmbtVeB9BIc/zA== dependencies: axios "^0.21.1" contentful-resolve-response "^1.3.0" @@ -22335,10 +22335,12 @@ [email protected]: resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== -qs@^6.1.0, qs@^6.4.0, qs@^6.5.1, qs@^6.5.2, qs@^6.9.4, qs@^6.9.6: - version "6.9.6" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.6.tgz#26ed3c8243a431b2924aca84cc90471f35d5a0ee" - integrity sha512-TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ== +qs@^6.1.0, qs@^6.10.1, qs@^6.4.0, qs@^6.5.1, qs@^6.5.2, qs@^6.9.4: + version "6.10.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.1.tgz#4931482fa8d647a5aab799c5271d2133b981fb6a" + integrity sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg== + dependencies: + side-channel "^1.0.4" qs@~6.5.2: version "6.5.2"
bad770ecb3a58a2646ee81619f3cc084220e457c
2020-06-30 18:26:25
Gabriel Giordano
chore(showcase): Add `gabrielgiordano.com` to the showcase (#25332)
false
Add `gabrielgiordano.com` to the showcase (#25332)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index d0272b7c8ed67..94621b5f9005e 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -11247,3 +11247,20 @@ - Marketing built_by: Laputan Software built_by_url: https://laputan.com.au +- title: Gabriel Giordano Portfolio + main_url: https://gabrielgiordano.com + url: https://gabrielgiordano.com + source_url: https://github.com/gabrielgiordan/gabrielgiordano.com + description: > + Personal website for Gabriel Giordano, a Senior Software Engineer and also an open-source contributor. + categories: + - Open Source + - Portfolio + - Web Development + - SEO + - Technology + - Programming + - Freelance + built_by: Gabriel Giordano + built_by_url: https://gabrielgiordano.com + featured: false
d64b5f1c85ca2a46dea072f6a01847d6b6d32531
2019-06-26 17:46:45
Ryan Lynn
fix(www): added og and twitter meta description to showcase (#14721)
false
added og and twitter meta description to showcase (#14721)
fix
diff --git a/www/src/components/showcase-details.js b/www/src/components/showcase-details.js index 3797ecbc415b5..7417c37b30ec1 100644 --- a/www/src/components/showcase-details.js +++ b/www/src/components/showcase-details.js @@ -285,6 +285,18 @@ const ShowcaseDetails = ({ parent, data, isModal, categories }) => ( .childImageSharp.resize.height } /> + <meta + property="og:description" + content={ + data.sitesYaml.description || data.sitesYaml.main_url + } + /> + <meta + name="twitter:description" + content={ + data.sitesYaml.description || data.sitesYaml.main_url + } + /> </Helmet> <div css={{
b13ddff0b71f26e81adeefa339dbabe740f84a78
2022-03-18 14:54:12
Ward Peeters
fix(gatsby-plugin-preact): fix preact alias (#35156)
false
fix preact alias (#35156)
fix
diff --git a/packages/gatsby-plugin-preact/src/__tests__/gatsby-node.js b/packages/gatsby-plugin-preact/src/__tests__/gatsby-node.js index 35aeee0e47010..3ab7bd41fea84 100644 --- a/packages/gatsby-plugin-preact/src/__tests__/gatsby-node.js +++ b/packages/gatsby-plugin-preact/src/__tests__/gatsby-node.js @@ -29,14 +29,10 @@ describe(`gatsby-plugin-preact`, () => { plugins: expect.arrayContaining([expect.any(PreactRefreshPlugin)]), resolve: { alias: { - react: expect.stringContaining(path.join(`preact`, `compat`)), - "react-dom": expect.stringContaining(path.join(`preact`, `compat`)), - "react-dom/server": expect.stringContaining( - path.join(`preact`, `compat`, `server`) - ), - "react/jsx-runtime": expect.stringContaining( - path.join(`preact`, `jsx-runtime`) - ), + react: `preact/compat`, + "react-dom/test-utils": `preact/test-utils`, + "react-dom": `preact/compat`, + "react/jsx-runtime": `preact/jsx-runtime`, }, }, }) @@ -100,14 +96,10 @@ describe(`gatsby-plugin-preact`, () => { plugins: [], resolve: { alias: { - react: expect.stringContaining(path.join(`preact`, `compat`)), - "react-dom": expect.stringContaining(path.join(`preact`, `compat`)), - "react-dom/server": expect.stringContaining( - path.join(`preact`, `compat`, `server`) - ), - "react/jsx-runtime": expect.stringContaining( - path.join(`preact`, `jsx-runtime`) - ), + react: `preact/compat`, + "react-dom/test-utils": `preact/test-utils`, + "react-dom": `preact/compat`, + "react/jsx-runtime": `preact/jsx-runtime`, }, }, }) diff --git a/packages/gatsby-plugin-preact/src/gatsby-node.js b/packages/gatsby-plugin-preact/src/gatsby-node.js index 9adf25bba8d97..a1698b0221746 100644 --- a/packages/gatsby-plugin-preact/src/gatsby-node.js +++ b/packages/gatsby-plugin-preact/src/gatsby-node.js @@ -59,17 +59,13 @@ export function onCreateWebpackConfig({ stage, actions, getConfig }) { actions.replaceWebpackConfig(webpackConfig) - const extension = - stage === `build-javascript` || stage === `develop` ? `.module.js` : `.js` actions.setWebpackConfig({ resolve: { alias: { - react: require.resolve(`preact/compat`).replace(`.js`, extension), - "react-dom/server": require.resolve(`preact/compat/server`), - "react-dom": require.resolve(`preact/compat`).replace(`.js`, extension), - "react/jsx-runtime": require - .resolve(`preact/jsx-runtime`) - .replace(`.js`, extension), + react: `preact/compat`, + "react-dom/test-utils": `preact/test-utils`, + "react-dom": `preact/compat`, + "react/jsx-runtime": `preact/jsx-runtime`, }, }, plugins: webpackPlugins,
70a6857aceafe4996c46e77fd58c4b2e2f586207
2020-03-03 04:27:26
Alex S
chore(showcase): add creative code daily (#21902)
false
add creative code daily (#21902)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index b5d76548eb91b..1d891c7bdb0d3 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -10038,6 +10038,19 @@ built_by: Rašid Redžić built_by_url: https://rasidre.com/ featured: false +- title: Creative code daily + main_url: https://www.bobylito.dev/ + url: https://www.bobylito.dev/ + source_url: https://github.com/bobylito/sketches + description: > + Creative code daily (CCD) is a personal project for which I build a new animation made out of code every day. + categories: + - Blog + - Programming + - Gallery + - Portfolio + built_by: Alexandre Valsamou-Stanislawski + built_by_url: https://www.noima.xyz - title: Messi vs Ronaldo description: > The biggest debate in football - but who is the best, Messi or Ronaldo? This website provides all the goals and stats to help you reach your own conclusion.
0f02ea731cde09b9bbb302d38aa2f04702cd0ec7
2020-03-26 12:40:47
Ward Peeters
feat(gatsby): enable granular chunks (#22253)
false
enable granular chunks (#22253)
feat
diff --git a/docs/docs/production-app.md b/docs/docs/production-app.md index 709a6008417b1..53aac29dd5fe9 100644 --- a/docs/docs/production-app.md +++ b/docs/docs/production-app.md @@ -21,7 +21,7 @@ The config is quite large, but here are some of the important values in the fina ```javascript { entry: { - app: ".cache/production-app" + app: `.cache/production-app` }, output: { // e.g. app-2e49587d85e03a033f58.js @@ -32,6 +32,7 @@ The config is quite large, but here are some of the important values in the fina publicPath: `/` }, target: `web`, + devtool: `source-map`, mode: `production`, node: { ___filename: true @@ -41,7 +42,37 @@ The config is quite large, but here are some of the important values in the fina // e.g. webpack-runtime-e402cdceeae5fad2aa61.js name: `webpack-runtime` }, - splitChunks: false + splitChunks: { + chunks: `all`, + cacheGroups: { + // disable Webpack's default cacheGroup + default: false, + // disable Webpack's default vendor cacheGroup + vendors: false, + // Create a framework bundle that contains React libraries + // They hardly change so we bundle them together to improve + framework: {}, + // Big modules that are over 160kb are moved to their own file to + // optimize browser parsing & execution + lib: {}, + // All libraries that are used on all pages are moved into a common chunk + commons: {}, + // When a module is used more than once we create a shared bundle to save user's bandwidth + shared: {}, + // All CSS is bundled into one stylesheet + styles: {} + }, + // Keep maximum initial requests to 25 + maxInitialRequests: 25, + // A chunk should be at least 20kb before using splitChunks + minSize: 20000 + }, + minimizers: [ + // Minify javascript using Terser (https://terser.org/) + plugins.minifyJs(), + // Minify CSS by using cssnano (https://cssnano.co/) + plugins.minifyCss(), + ] } plugins: [ // A custom webpack plugin that implements logic to write out chunk-map.json and webpack.stats.json @@ -52,6 +83,8 @@ The config is quite large, but here are some of the important values in the fina There's a lot going on here. And this is just a sample of the output that doesn't include the loaders, rules, etc. We won't go over everything here, but most of it is geared towards proper code splitting of your application. +The splitChunks section is the most complex part of the Gatsby webpack config as it configures how Gatsby generates the most optimized bundles for your website. This is referred to as Granular Chunks as Gatsby tries to make the generated JavaScript files as granular as possible by deduplicating all modules. You can read more about [SplitChunks](https://webpack.js.org/plugins/split-chunks-plugin/#optimizationsplitchunks) and [chunks](https://webpack.js.org/concepts/under-the-hood/#chunks) on the [official webpack website](https://webpack.js.org/). + Once Webpack has finished compilation, it will have produced a few key types of bundles: ##### app-[contenthash].js @@ -62,6 +95,14 @@ This bundle is produced from [production-app.js](https://github.com/gatsbyjs/gat This contains the small [webpack-runtime](https://webpack.js.org/concepts/manifest/#runtime) as a separate bundle (configured in `optimization` section). In practice, the app and webpack-runtime are always needed together. +##### framework-[contenthash].js + +The framework bundle contains the React framework. Based on user behavior, React hardly gets upgraded to a newer version. Creating a separate bundle improves users' browser cache hit rate as this bundle is likely not going to be updated often. + +##### commons-[contenthash].js + +Libraries used on every Gatsby page are bundled into the commons javascript file. By bundling these together, you can make sure your users only need to download this bundle once. + ##### component---[name]-[contenthash].js This is a separate bundle for each page. The mechanics for how these are split off from the main production app are covered in [Code Splitting](/docs/how-code-splitting-works/). @@ -89,7 +130,7 @@ To show how `production-app` works, let's imagine that you've just refreshed the */ ``` -Then, the app, webpack-runtime, component, and data json bundles are loaded via `<link>` and `<script>` (see [HTML tag generation](/docs/html-generation/#5-add-preload-link-and-script-tags)). Now, your `production-app` code starts running. +Then, the app, webpack-runtime, component, shared libraries, and data json bundles are loaded via `<link>` and `<script>` (see [HTML tag generation](/docs/html-generation/#5-add-preload-link-and-script-tags)). Now, your `production-app` code starts running. ### onClientEntry (api-runner-browser) diff --git a/packages/gatsby/src/utils/__tests__/webpack-utils.ts b/packages/gatsby/src/utils/__tests__/webpack-utils.ts index 4d3cafbec766c..eaa5925137003 100644 --- a/packages/gatsby/src/utils/__tests__/webpack-utils.ts +++ b/packages/gatsby/src/utils/__tests__/webpack-utils.ts @@ -151,7 +151,7 @@ describe(`webpack utils`, () => { it(`includes dependencies that don't use gatsby`, () => { expect( dependencies.exclude( - `/Users/sidharthachatterjee/Code/gatsby-seo-test/node_modules/react/index.js` + `/Users/sidharthachatterjee/Code/gatsby-seo-test/node_modules/awesome-lib/index.js` ) ).toEqual(false) }) diff --git a/packages/gatsby/src/utils/webpack-utils.ts b/packages/gatsby/src/utils/webpack-utils.ts index 4be4a7416ebad..f2c86dfc83160 100644 --- a/packages/gatsby/src/utils/webpack-utils.ts +++ b/packages/gatsby/src/utils/webpack-utils.ts @@ -375,8 +375,13 @@ export const createWebpackUtils = ( ) { return true } - // If dep is babel-runtime or core-js, exclude - if (/@babel(?:\/|\\{1,2})runtime|core-js/.test(modulePath)) { + // If dep is known library that doesn't need polyfilling, we don't. + // TODO this needs rework, this is buggy as hell + if ( + /node_modules[\\/](@babel[\\/]runtime|core-js|react|react-dom|scheduler|prop-types)[\\/]/.test( + modulePath + ) + ) { return true } diff --git a/packages/gatsby/src/utils/webpack.config.js b/packages/gatsby/src/utils/webpack.config.js index 79f41b36bfad0..a37c90f315bfc 100644 --- a/packages/gatsby/src/utils/webpack.config.js +++ b/packages/gatsby/src/utils/webpack.config.js @@ -1,5 +1,6 @@ require(`v8-compile-cache`) +const crypto = require(`crypto`) const fs = require(`fs-extra`) const path = require(`path`) const dotenv = require(`dotenv`) @@ -16,6 +17,8 @@ const apiRunnerNode = require(`./api-runner-node`) import { createWebpackUtils } from "./webpack-utils" import { hasLocalEslint } from "./local-eslint-config-finder" +const FRAMEWORK_BUNDLES = [`react`, `react-dom`, `scheduler`, `prop-types`] + // Four stages or modes: // 1) develop: for `gatsby develop` command, hot reload and CSS injection into page // 2) develop-html: same as develop without react-hmre in the babel config for html renderer @@ -481,6 +484,90 @@ module.exports = async ( if (stage === `build-javascript`) { const componentsCount = store.getState().components.size + const isCssModule = module => module.type === `css/mini-extract` + + const splitChunks = { + chunks: `all`, + cacheGroups: { + default: false, + vendors: false, + framework: { + chunks: `all`, + name: `framework`, + // This regex ignores nested copies of framework libraries so they're bundled with their issuer. + test: new RegExp( + `(?<!node_modules.*)[\\\\/]node_modules[\\\\/](${FRAMEWORK_BUNDLES.join( + `|` + )})[\\\\/]` + ), + priority: 40, + // Don't let webpack eliminate this chunk (prevents this chunk from becoming a part of the commons chunk) + enforce: true, + }, + // if a module is bigger than 160kb from node_modules we make a separate chunk for it + lib: { + test(module) { + return ( + !isCssModule(module) && + module.size() > 160000 && + /node_modules[/\\]/.test(module.identifier()) + ) + }, + name(module) { + const hash = crypto.createHash(`sha1`) + if (!module.libIdent) { + throw new Error( + `Encountered unknown module type: ${module.type}. Please open an issue.` + ) + } + + hash.update(module.libIdent({ context: program.directory })) + + return hash.digest(`hex`).substring(0, 8) + }, + priority: 30, + minChunks: 1, + reuseExistingChunk: true, + }, + commons: { + name: `commons`, + // if a chunk is used on all components we put it in commons + minChunks: componentsCount, + priority: 20, + }, + // If a chunk is used in at least 2 components we create a separate chunk + shared: { + test(module) { + return !isCssModule(module) + }, + name(module, chunks) { + const hash = crypto + .createHash(`sha1`) + .update(chunks.reduce((acc, chunk) => acc + chunk.name, ``)) + .digest(`hex`) + + return hash + }, + priority: 10, + minChunks: 2, + reuseExistingChunk: true, + }, + + // Bundle all css & lazy css into one stylesheet to make sure lazy components do not break + // TODO make an exception for css-modules + styles: { + test(module) { + return isCssModule(module) + }, + + name: `styles`, + priority: 40, + enforce: true, + }, + }, + maxInitialRequests: 25, + minSize: 20000, + } config.optimization = { runtimeChunk: { @@ -490,39 +577,7 @@ module.exports = async ( // TODO update to deterministic in webpack 5 (hashed is deprecated) // @see https://webpack.js.org/guides/caching/#module-identifiers moduleIds: `hashed`, - splitChunks: { - name: false, - chunks: `all`, - cacheGroups: { - default: false, - vendors: false, - commons: { - name: `commons`, - chunks: `all`, - // if a chunk is used more than half the components count, - // we can assume it's pretty global - minChunks: componentsCount > 2 ? componentsCount * 0.5 : 2, - }, - react: { - name: `commons`, - chunks: `all`, - test: /[\\/]node_modules[\\/](react|react-dom|scheduler)[\\/]/, - }, - // Only create one CSS file to avoid - // problems with code-split CSS loading in different orders - // causing inconsistent/non-determanistic styling - // See https://github.com/gatsbyjs/gatsby/issues/11072 - styles: { - name: `styles`, - // This should cover all our types of CSS. - test: /\.(css|scss|sass|less|styl)$/, - chunks: `all`, - enforce: true, - // this rule trumps all other rules because of the priority. - priority: 10, - }, - }, - }, + splitChunks, minimizer: [ // TODO: maybe this option should be noMinimize? !program.noUglify &&
0967446a866528d7b8d6bfed99e81639a47532b9
2022-10-28 12:27:14
LekoArts
chore(release): Publish next
false
Publish next
chore
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index 3345a61cb7b82..9e2ac3738ccdb 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": "5.0.0-next.7", + "version": "5.0.0-next.8", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "cli.js" diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index f160eeb370d48..8e3c7d9e8503f 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-link", "description": "An enhanced Link component for Gatsby sites with support for resource prefetching", - "version": "5.0.0-next.3", + "version": "5.0.0-next.4", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json index c78b6462ec4de..61ba3acda747d 100644 --- a/packages/gatsby-plugin-postcss/package.json +++ b/packages/gatsby-plugin-postcss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-postcss", "description": "Gatsby plugin to handle PostCSS", - "version": "6.0.0-next.1", + "version": "6.0.0-next.2", "author": "Marat Dreizin <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json index 1176d7a3a4309..4aac11308e6b5 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typescript", "description": "Adds TypeScript support to Gatsby", - "version": "5.0.0-next.3", + "version": "5.0.0-next.4", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index d305bff31f5d3..ecdc406afc483 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": "7.0.0-next.4", + "version": "7.0.0-next.5", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index 5b56c5aca37ff..396f3a230dc94 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": "6.0.0-next.4", + "version": "6.0.0-next.5", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index aeb2034060edc..56a3ab241e186 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.8", + "version": "5.0.0-next.9", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js" @@ -91,15 +91,15 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.1.0", - "gatsby-cli": "^5.0.0-next.7", + "gatsby-cli": "^5.0.0-next.8", "gatsby-core-utils": "^4.0.0-next.2", "gatsby-graphiql-explorer": "^3.0.0-next.1", "gatsby-legacy-polyfills": "^3.0.0-next.0", - "gatsby-link": "^5.0.0-next.3", + "gatsby-link": "^5.0.0-next.4", "gatsby-page-utils": "^3.0.0-next.3", "gatsby-parcel-config": "1.0.0-next.2", "gatsby-plugin-page-creator": "^5.0.0-next.4", - "gatsby-plugin-typescript": "^5.0.0-next.3", + "gatsby-plugin-typescript": "^5.0.0-next.4", "gatsby-plugin-utils": "^4.0.0-next.3", "gatsby-react-router-scroll": "^6.0.0-next.1", "gatsby-script": "^2.0.0-next.1",
e69956418e2acced62cf21e3c4dc6af173729952
2020-07-23 20:48:03
Max Stoiber
fix(gatsby-admin): small design tweaks (#25971)
false
small design tweaks (#25971)
fix
diff --git a/packages/gatsby-admin/src/pages/index.tsx b/packages/gatsby-admin/src/pages/index.tsx index b4011fc64d84c..c6f5576bc7187 100644 --- a/packages/gatsby-admin/src/pages/index.tsx +++ b/packages/gatsby-admin/src/pages/index.tsx @@ -44,7 +44,7 @@ const PluginCard: React.FC<{ return ( <Flex flexDirection="column" - gap={6} + gap={3} sx={{ backgroundColor: `ui.background`, padding: 5, borderRadius: 2 }} > <Flex justifyContent="space-between"> @@ -118,33 +118,32 @@ const Index: React.FC<{}> = () => { } return ( - <Flex gap={7} flexDirection="column" sx={{ paddingY: 7, paddingX: 6 }}> - <SectionHeading>Pages</SectionHeading> - <ul sx={{ pl: 0, listStyle: `none` }}> - {data.allGatsbyPage.nodes - .filter(page => page.path.indexOf(`/dev-404-page/`) !== 0) - .sort((a, b) => a.path.localeCompare(b.path)) - .map(page => ( - <li - key={page.path} - sx={{ - py: 1, - }} - > - {page.path} - </li> - ))} - </ul> + <Flex gap={8} flexDirection="column" sx={{ paddingY: 7, paddingX: 6 }}> + <Flex gap={6} flexDirection="column"> + <SectionHeading>Pages</SectionHeading> + <ul sx={{ pl: 0, listStyle: `none` }}> + {data.allGatsbyPage.nodes + .filter(page => page.path.indexOf(`/dev-404-page/`) !== 0) + .sort((a, b) => a.path.localeCompare(b.path)) + .map(page => ( + <li key={page.path} sx={{ p: 0 }}> + {page.path} + </li> + ))} + </ul> + </Flex> - <SectionHeading id="plugin-search-label"> - Installed Plugins - </SectionHeading> - <Grid gap={6} columns={[1, 1, 1, 2, 3]}> - {data.allGatsbyPlugin.nodes.map(plugin => ( - <PluginCard key={plugin.id} plugin={plugin} /> - ))} - </Grid> - <PluginSearchBar /> + <Flex gap={6} flexDirection="column"> + <SectionHeading id="plugin-search-label"> + Installed Plugins + </SectionHeading> + <Grid gap={6} columns={[1, 1, 1, 2, 3]}> + {data.allGatsbyPlugin.nodes.map(plugin => ( + <PluginCard key={plugin.id} plugin={plugin} /> + ))} + </Grid> + <PluginSearchBar /> + </Flex> </Flex> ) }
4dc8ab79c194fe5c56a1d2bd794ff9c8e03ad927
2020-12-15 23:06:47
Matt Kane
fix(create-gatsby): Adds a default icon so plugin-manifest works out of the box (#28635)
false
Adds a default icon so plugin-manifest works out of the box (#28635)
fix
diff --git a/packages/create-gatsby/src/__tests__/install-plugins.ts b/packages/create-gatsby/src/__tests__/install-plugins.ts index c117595a02f32..41f6ffe22339d 100644 --- a/packages/create-gatsby/src/__tests__/install-plugins.ts +++ b/packages/create-gatsby/src/__tests__/install-plugins.ts @@ -20,7 +20,7 @@ describe(`install-plugins`, () => { }) it(`reports an error explaining that gatsby is not installed`, async () => { - ;(requireResolve as any).mockImplementation(() => undefined) + ;(requireResolve as jest.Mock).mockImplementation(() => undefined) await installPlugins([], {}, `not-existing-path`, []) @@ -31,8 +31,11 @@ describe(`install-plugins`, () => { }) it(`reports an error when the gatsby cli is not installed`, async () => { - ;(requireResolve as any).mockImplementation(path => { - if (path === `gatsby-cli/lib/handlers/plugin-add`) { + ;(requireResolve as jest.Mock).mockImplementation(path => { + if ( + path === `gatsby-cli/lib/handlers/plugin-add` || + path === `gatsby-cli/lib/plugin-add` + ) { throw new Error() } return `somewhere-i-belong` @@ -42,12 +45,12 @@ describe(`install-plugins`, () => { // Test function behaviour but improves the DX, it probably worth it expect(reporter.error).toBeCalledWith( - `gatsby-cli not installed, or is too old` + `Could not find a suitable version of gatsby-cli. Please report this issue at https://www.github.com/gatsbyjs/gatsby/issues` ) }) it(`reports an error when add plugins fails somehow`, async () => { - ;(requireResolve as any).mockImplementation( + ;(requireResolve as jest.Mock).mockImplementation( () => `somewhere-virtually-existing` ) diff --git a/packages/create-gatsby/src/features.json b/packages/create-gatsby/src/features.json index 04b10e8161358..d7e5c4d99ace8 100644 --- a/packages/create-gatsby/src/features.json +++ b/packages/create-gatsby/src/features.json @@ -19,7 +19,12 @@ }, "gatsby-plugin-sitemap": { "message": "Add an automatic sitemap" }, "gatsby-plugin-offline": { "message": "Enable offline functionality" }, - "gatsby-plugin-manifest": { "message": "Generate a manifest file" }, + "gatsby-plugin-manifest": { + "message": "Generate a manifest file", + "options": { + "gatsby-plugin-manifest": { "icon": "src/images/icon.png" } + } + }, "gatsby-transformer-remark": { "message": "Add Markdown support (without MDX)", "plugins": ["gatsby-source-filesystem:pages"], diff --git a/packages/create-gatsby/src/install-plugins.ts b/packages/create-gatsby/src/install-plugins.ts index b382aff9cf71d..94e66d3f3d986 100644 --- a/packages/create-gatsby/src/install-plugins.ts +++ b/packages/create-gatsby/src/install-plugins.ts @@ -24,19 +24,39 @@ const resolveGatsbyCliPath = ( gatsbyPath: string ): string | never => { try { - const installPluginCommand = requireResolve( - `gatsby-cli/lib/handlers/plugin-add`, - { - // Try to find gatsby-cli in the site root, or in the site's gatsby dir - paths: [rootPath, path.dirname(gatsbyPath)], + let installPluginCommand + try { + installPluginCommand = requireResolve( + `gatsby-cli/lib/handlers/plugin-add`, + { + // Try to find gatsby-cli in the site root, or in the site's gatsby dir + paths: [rootPath, path.dirname(gatsbyPath)], + } + ) + } catch (e) { + // We'll error out later + } + try { + if (!installPluginCommand) { + // Older location + console.log(`looking in old place`) + installPluginCommand = requireResolve(`gatsby-cli/lib/plugin-add`, { + paths: [rootPath, path.dirname(gatsbyPath)], + }) } - ) + } catch (e) { + // We'll error out later + } - if (!installPluginCommand) throw new Error() + if (!installPluginCommand) { + throw new Error() + } return installPluginCommand } catch (e) { - throw new Error(`gatsby-cli not installed, or is too old`) + throw new Error( + `Could not find a suitable version of gatsby-cli. Please report this issue at https://www.github.com/gatsbyjs/gatsby/issues` + ) } } diff --git a/starters/gatsby-starter-minimal/src/images/icon.png b/starters/gatsby-starter-minimal/src/images/icon.png new file mode 100644 index 0000000000000..38b2fb0e467e0 Binary files /dev/null and b/starters/gatsby-starter-minimal/src/images/icon.png differ
6c81b386e8e98953642df20c4329c642ecd1e106
2019-08-10 02:23:27
renovate[bot]
fix: update dependency gatsby-plugin-sharp to ^2.2.11 (#16503)
false
update dependency gatsby-plugin-sharp to ^2.2.11 (#16503)
fix
diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index 48d9ff3142605..4f0d8d312fdd3 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -7135,9 +7135,9 @@ } }, "gatsby-plugin-sharp": { - "version": "2.2.10", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.2.10.tgz", - "integrity": "sha512-vI50vew5oYgiWIkZ7VZJ/KhW+JM8bjEvo5CXokqDtzKkrh9eyGBMEqykDyQKPXShdnPYEgo0ZKTRIiGL/u++1A==", + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.2.11.tgz", + "integrity": "sha512-LlQDd8XydRgSUb428Ucqw5rwVno4weK6o8osFu6exAaIb4O9hmhnR8bOdu5QQ+7KkLiMxAjf1c+arOEmfAaAVg==", "requires": { "@babel/runtime": "^7.0.0", "async": "^2.1.2", diff --git a/starters/blog/package.json b/starters/blog/package.json index c3fbbb9ce3276..389c6f8344bce 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -15,7 +15,7 @@ "gatsby-plugin-manifest": "^2.2.5", "gatsby-plugin-offline": "^2.2.5", "gatsby-plugin-react-helmet": "^3.1.3", - "gatsby-plugin-sharp": "^2.2.10", + "gatsby-plugin-sharp": "^2.2.11", "gatsby-plugin-typography": "^2.3.2", "gatsby-remark-copy-linked-files": "^2.1.4", "gatsby-remark-images": "^3.1.8", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index 3c62eb41f493d..8262aa3a352c6 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -7003,9 +7003,9 @@ } }, "gatsby-plugin-sharp": { - "version": "2.2.10", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.2.10.tgz", - "integrity": "sha512-vI50vew5oYgiWIkZ7VZJ/KhW+JM8bjEvo5CXokqDtzKkrh9eyGBMEqykDyQKPXShdnPYEgo0ZKTRIiGL/u++1A==", + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-2.2.11.tgz", + "integrity": "sha512-LlQDd8XydRgSUb428Ucqw5rwVno4weK6o8osFu6exAaIb4O9hmhnR8bOdu5QQ+7KkLiMxAjf1c+arOEmfAaAVg==", "requires": { "@babel/runtime": "^7.0.0", "async": "^2.1.2", diff --git a/starters/default/package.json b/starters/default/package.json index 912243fe33493..42c38bbc1bb2f 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -10,7 +10,7 @@ "gatsby-plugin-manifest": "^2.2.5", "gatsby-plugin-offline": "^2.2.5", "gatsby-plugin-react-helmet": "^3.1.3", - "gatsby-plugin-sharp": "^2.2.10", + "gatsby-plugin-sharp": "^2.2.11", "gatsby-source-filesystem": "^2.1.9", "gatsby-transformer-sharp": "^2.2.6", "prop-types": "^15.7.2", diff --git a/themes/gatsby-theme-blog/package.json b/themes/gatsby-theme-blog/package.json index da0a45e282558..2a4ce9c8e6121 100644 --- a/themes/gatsby-theme-blog/package.json +++ b/themes/gatsby-theme-blog/package.json @@ -29,7 +29,7 @@ "gatsby-plugin-feed": "^2.3.6", "gatsby-plugin-mdx": "^1.0.23", "gatsby-plugin-react-helmet": "^3.1.3", - "gatsby-plugin-sharp": "^2.2.10", + "gatsby-plugin-sharp": "^2.2.11", "gatsby-plugin-theme-ui": "^0.2.29", "gatsby-plugin-twitter": "^2.1.2", "gatsby-remark-code-titles": "^1.1.0",
b712950af10fbf31eb21f3bf6452c8761e7bb2df
2020-12-17 20:50:57
renovate[bot]
fix(deps): update minor and patch for gatsby-transformer-sharp (#28510)
false
update minor and patch for gatsby-transformer-sharp (#28510)
fix
diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index eb1bc9521b182..7f413ee0def84 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -12,7 +12,7 @@ "fs-extra": "^9.0.1", "potrace": "^2.1.8", "probe-image-size": "^5.0.0", - "semver": "^7.3.2", + "semver": "^7.3.4", "sharp": "^0.26.3" }, "devDependencies": {
94ac690f937d47f6ee501a97249e849508c00c0e
2021-09-02 03:35:28
renovate[bot]
chore(deps): update dependency autoprefixer to ^10.3.3 for gatsby-plugin-sass (#32974)
false
update dependency autoprefixer to ^10.3.3 for gatsby-plugin-sass (#32974)
chore
diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index 62b2b74fcaf10..ab81bc0410f16 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.14.8", "@babel/core": "^7.14.8", - "autoprefixer": "^10.3.1", + "autoprefixer": "^10.3.3", "babel-preset-gatsby-package": "^1.14.0-next.0", "cross-env": "^7.0.3", "gatsby-plugin-utils": "^1.14.0-next.0" diff --git a/yarn.lock b/yarn.lock index 08bd2c32b2af6..779ac77152349 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6317,14 +6317,14 @@ autolinker@~0.28.0: dependencies: gulp-header "^1.7.1" -autoprefixer@^10.1.0, autoprefixer@^10.2.4, autoprefixer@^10.3.1: - version "10.3.1" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.3.1.tgz#954214821d3aa06692406c6a0a9e9d401eafbed2" - integrity sha512-L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A== - dependencies: - browserslist "^4.16.6" - caniuse-lite "^1.0.30001243" - colorette "^1.2.2" +autoprefixer@^10.1.0, autoprefixer@^10.2.4, autoprefixer@^10.3.3: + version "10.3.3" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.3.3.tgz#4bac89c74ef98e6a40fe1c5b76c0d1c91db153ce" + integrity sha512-yRzjxfnggrP/+qVHlUuZz5FZzEbkT+Yt0/Df6ScEMnbbZBLzYB2W0KLxoQCW+THm1SpOsM1ZPcTHAwuvmibIsQ== + dependencies: + browserslist "^4.16.8" + caniuse-lite "^1.0.30001252" + colorette "^1.3.0" fraction.js "^4.1.1" normalize-range "^0.1.2" postcss-value-parser "^4.1.0" @@ -7129,16 +7129,16 @@ [email protected]: escalade "^3.0.2" node-releases "^1.1.61" -browserslist@^4.0.0, browserslist@^4.12.2, browserslist@^4.13.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.3, browserslist@^4.16.6: - version "4.16.6" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" - integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== +browserslist@^4.0.0, browserslist@^4.12.2, browserslist@^4.13.0, browserslist@^4.14.5, browserslist@^4.16.0, browserslist@^4.16.3, browserslist@^4.16.6, browserslist@^4.16.8: + version "4.16.8" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.8.tgz#cb868b0b554f137ba6e33de0ecff2eda403c4fb0" + integrity sha512-sc2m9ohR/49sWEbPj14ZSSZqp+kbi16aLao42Hmn3Z8FpjuMaq2xCA2l4zl9ITfyzvnvyE0hcg62YkIGKxgaNQ== dependencies: - caniuse-lite "^1.0.30001219" - colorette "^1.2.2" - electron-to-chromium "^1.3.723" + caniuse-lite "^1.0.30001251" + colorette "^1.3.0" + electron-to-chromium "^1.3.811" escalade "^3.1.1" - node-releases "^1.1.71" + node-releases "^1.1.75" bser@^2.0.0: version "2.0.0" @@ -7498,10 +7498,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001243: - version "1.0.30001248" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001248.tgz#26ab45e340f155ea5da2920dadb76a533cb8ebce" - integrity sha512-NwlQbJkxUFJ8nMErnGtT0QTM2TJ33xgz4KXJSMIrjXIbDVdaYueGyjOrLKRtJC+rTiWfi6j5cnZN1NBiSBJGNw== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001251, caniuse-lite@^1.0.30001252: + version "1.0.30001252" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001252.tgz#cb16e4e3dafe948fc4a9bb3307aea054b912019a" + integrity sha512-I56jhWDGMtdILQORdusxBOH+Nl/KgQSdDmpJezYddnAkVOmnoU8zwjTV9xAjMIYxr0iPreEAVylCGcmHCjfaOw== capitalize@^2.0.3: version "2.0.3" @@ -8062,10 +8062,10 @@ color@^4.0.1: color-convert "^2.0.1" color-string "^1.6.0" -colorette@^1.2.1, colorette@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" - integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== +colorette@^1.2.1, colorette@^1.2.2, colorette@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.3.0.tgz#ff45d2f0edb244069d3b772adeb04fed38d0a0af" + integrity sha512-ecORCqbSFP7Wm8Y6lyqMJjexBQqXSF7SSeaTyGGphogUjBlFP9m9o08wy86HL2uB7fMTxtOUzLMk7ogKcxMg1w== colors@^1.1.2: version "1.3.2" @@ -10235,10 +10235,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.564, electron-to-chromium@^1.3.723: - version "1.3.725" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.725.tgz#04fc83f9189169aff50f0a00c6b4090b910cba85" - integrity sha512-2BbeAESz7kc6KBzs7WVrMc1BY5waUphk4D4DX5dSQXJhsc3tP5ZFaiyuL0AB7vUKzDYpIeYwTYlEfxyjsGUrhw== +electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.811: + version "1.3.826" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.826.tgz#dbe356b1546b39d83bcd47e675a9c5f61dadaed2" + integrity sha512-bpLc4QU4B8PYmdO4MSu2ZBTMD8lAaEXRS43C09lB31BvYwuk9UxgBRXbY5OJBw7VuMGcg2MZG5FyTaP9u4PQnw== emittery@^0.7.1: version "0.7.2" @@ -18631,10 +18631,10 @@ node-pre-gyp@^0.10.0: semver "^5.3.0" tar "^4" -node-releases@^1.1.61, node-releases@^1.1.71: - version "1.1.71" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" - integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== +node-releases@^1.1.61, node-releases@^1.1.75: + version "1.1.75" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.75.tgz#6dd8c876b9897a1b8e5a02de26afa79bb54ebbfe" + integrity sha512-Qe5OUajvqrqDSy6wrWFmMwfJ0jVgwiw4T3KqmbTcZ62qW0gQkheXYhcFM1+lOVcGUoRxcEcfyvFMAnDgaF1VWw== nodemon@^2.0.7: version "2.0.7"
2ff3b09239702f3b9b027ce2acad6082aafe18da
2022-08-01 18:03:06
renovate[bot]
chore(deps): update dependency del-cli to v5 for gatsby-script (#36289)
false
update dependency del-cli to v5 for gatsby-script (#36289)
chore
diff --git a/packages/gatsby-script/package.json b/packages/gatsby-script/package.json index 8617b15f51a09..a2d826ccf76f0 100644 --- a/packages/gatsby-script/package.json +++ b/packages/gatsby-script/package.json @@ -23,7 +23,7 @@ "devDependencies": { "@testing-library/react": "^11.2.7", "cross-env": "^7.0.3", - "del-cli": "^3.0.1", + "del-cli": "^5.0.0", "microbundle": "^0.15.0", "typescript": "^4.7.4" }, diff --git a/yarn.lock b/yarn.lock index d23414bcf9476..99ce05cbd76ce 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5560,6 +5560,14 @@ aggregate-error@^3.0.0: clean-stack "^2.0.0" indent-string "^4.0.0" +aggregate-error@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-4.0.1.tgz#25091fe1573b9e0be892aeda15c7c66a545f758e" + integrity sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w== + dependencies: + clean-stack "^4.0.0" + indent-string "^5.0.0" + ajv-keywords@^3.2.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" @@ -7448,6 +7456,13 @@ clean-stack@^2.0.0: resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== +clean-stack@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-4.2.0.tgz#c464e4cde4ac789f4e0735c5d75beb49d7b30b31" + integrity sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg== + dependencies: + escape-string-regexp "5.0.0" + cli-boxes@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" @@ -8622,18 +8637,7 @@ css-select@^2.0.0: domutils "^1.7.0" nth-check "^1.0.1" -css-select@^4.1.3: - version "4.1.3" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.1.3.tgz#a70440f70317f2669118ad74ff105e65849c7067" - integrity sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA== - dependencies: - boolbase "^1.0.0" - css-what "^5.0.0" - domhandler "^4.2.0" - domutils "^2.6.0" - nth-check "^2.0.0" - -css-select@^4.2.1: +css-select@^4.1.3, css-select@^4.2.1: version "4.3.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== @@ -8690,7 +8694,7 @@ [email protected]: version "2.1.0" resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.0.tgz#9467d032c38cfaefb9f2d79501253062f87fa1bd" -css-what@^5.0.0, css-what@^5.0.1: +css-what@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/css-what/-/css-what-5.0.1.tgz#3efa820131f4669a8ac2408f9c32e7c7de9f4cad" integrity sha512-FYDTSHb/7KXsWICVsxdmiExPjCfRC4qRFBdVwv7Ax9hMnvMmEjP9RfxTEZ3qPZGmADDn2vAKSo9UcN1jKVYscg== @@ -9235,6 +9239,14 @@ del-cli@^4.0.1: del "^6.0.0" meow "^10.1.0" +del-cli@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/del-cli/-/del-cli-5.0.0.tgz#fa79fd57e888ecaaf8a468d87e8a175142a24aa9" + integrity sha512-rENFhUaYcjoMODwFhhlON+ogN7DoG+4+GFN+bsA1XeDt4w2OKQnQadFP1thHSAlK9FAtl88qgP66wOV+eFZZiQ== + dependencies: + del "^7.0.0" + meow "^10.1.3" + del@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" @@ -9274,6 +9286,20 @@ del@^6.0.0: rimraf "^3.0.2" slash "^3.0.0" +del@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/del/-/del-7.0.0.tgz#79db048bec96f83f344b46c1a66e35d9c09fe8ac" + integrity sha512-tQbV/4u5WVB8HMJr08pgw0b6nG4RGt/tj+7Numvq+zqcvUFeMaIWWOUFltiU+6go8BSO2/ogsB4EasDaj0y68Q== + dependencies: + globby "^13.1.2" + graceful-fs "^4.2.10" + is-glob "^4.0.3" + is-path-cwd "^3.0.0" + is-path-inside "^4.0.0" + p-map "^5.5.0" + rimraf "^3.0.2" + slash "^4.0.0" + delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" @@ -9679,14 +9705,7 @@ domhandler@^3.0.0: dependencies: domelementtype "^2.0.1" -domhandler@^4.0.0, domhandler@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.2.0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059" - integrity sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA== - dependencies: - domelementtype "^2.2.0" - -domhandler@^4.3.1: +domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== @@ -9717,16 +9736,7 @@ domutils@^1.5.1, domutils@^1.7.0: dom-serializer "0" domelementtype "1" -domutils@^2.0.0, domutils@^2.5.2, domutils@^2.6.0, domutils@^2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442" - integrity sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg== - dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" - -domutils@^2.8.0: +domutils@^2.0.0, domutils@^2.5.2, domutils@^2.7.0, domutils@^2.8.0: version "2.8.0" resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== @@ -10156,6 +10166,11 @@ 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]: + version "5.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8" + integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw== + 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" @@ -10888,12 +10903,7 @@ falafel@^2.1.0: isarray "0.0.1" object-keys "^1.0.6" -fast-copy@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/fast-copy/-/fast-copy-2.1.1.tgz#f5cbcf2df64215e59b8e43f0b2caabc19848083a" - integrity sha512-Qod3DdRgFZ8GUIM6ygeoZYpQ0QLW9cf/FS9KhhjlYggcSZXWAemAw8BOCO5LuYCrR3Uj3qXDVTUzOUwG8C7beQ== - -fast-copy@^2.1.3: +fast-copy@^2.1.0, fast-copy@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/fast-copy/-/fast-copy-2.1.3.tgz#bf6e05ac3cb7a9d66fbf12c51dd4440e9ddd4afb" integrity sha512-LDzYKNTHhD+XOp8wGMuCkY4eTxFZOOycmpwLBiuF3r3OjOmZnURRD8t2dUAbmKuXGbo/MGggwbSjcBdp8QT0+g== @@ -11265,12 +11275,7 @@ flush-write-stream@^1.0.0, flush-write-stream@^1.0.2: inherits "^2.0.1" readable-stream "^2.0.4" -follow-redirects@^1.10.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db" - integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA== - -follow-redirects@^1.14.9: +follow-redirects@^1.10.0, follow-redirects@^1.14.9: version "1.14.9" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7" integrity sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w== @@ -12062,6 +12067,17 @@ globby@^11.0.1, globby@^11.0.3, globby@^11.0.4, globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" +globby@^13.1.2: + version "13.1.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.2.tgz#29047105582427ab6eca4f905200667b056da515" + integrity sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ== + dependencies: + dir-glob "^3.0.1" + fast-glob "^3.2.11" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^4.0.0" + globby@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" @@ -12147,10 +12163,10 @@ got@^9.6.0: to-readable-stream "^1.0.0" url-parse-lax "^3.0.0" -graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.3, graceful-fs@^4.2.4: - version "4.2.4" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" - integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== +graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.10, graceful-fs@^4.2.2, graceful-fs@^4.2.3, graceful-fs@^4.2.4: + version "4.2.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== graphiql-code-exporter@^3.0.3: version "3.0.3" @@ -13805,6 +13821,11 @@ is-path-cwd@^2.2.0: resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== +is-path-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-3.0.0.tgz#889b41e55c8588b1eb2a96a61d05740a674521c7" + integrity sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA== + is-path-in-cwd@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" @@ -13822,6 +13843,11 @@ is-path-inside@^3.0.1, is-path-inside@^3.0.2: resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== +is-path-inside@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-4.0.0.tgz#805aeb62c47c1b12fc3fd13bfb3ed1e7430071db" + integrity sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA== + is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" @@ -16473,10 +16499,10 @@ 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== +meow@^10.1.0, meow@^10.1.3: + version "10.1.3" + resolved "https://registry.yarnpkg.com/meow/-/meow-10.1.3.tgz#21689959a7d00e8901aff30d208acb2122eb8088" + integrity sha512-0WL7RMCPPdUTE00+GxJjL4d5Dm6eUbmAzxlzywJWiRUKCW093owmZ7/q74tH9VI91vxw9KJJNxAcvdpxb2G4iA== dependencies: "@types/minimist" "^1.2.2" camelcase-keys "^7.0.0" @@ -17632,14 +17658,7 @@ nth-check@^1.0.1, nth-check@~1.0.1: dependencies: boolbase "~1.0.0" -nth-check@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" - integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== - dependencies: - boolbase "^1.0.0" - -nth-check@^2.0.1: +nth-check@^2.0.0, nth-check@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== @@ -18108,6 +18127,13 @@ p-map@^4.0.0: dependencies: aggregate-error "^3.0.0" +p-map@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-5.5.0.tgz#054ca8ca778dfa4cf3f8db6638ccb5b937266715" + integrity sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg== + dependencies: + aggregate-error "^4.0.0" + p-pipe@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-1.2.0.tgz#4b1a11399a11520a67790ee5a0c1d5881d6befe9" @@ -22522,6 +22548,11 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== +slash@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" + integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== + slice-ansi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787"
014b95ed3e521687b17f1c999b5092c97af0368a
2019-10-08 16:02:53
Derek Nguyen
fix(gatsby): In public actions, don't let actionOptions overwr… (#18302)
false
In public actions, don't let actionOptions overwr… (#18302)
fix
diff --git a/packages/gatsby/src/redux/actions/public.js b/packages/gatsby/src/redux/actions/public.js index 9189aa17fb4f9..be073af8d57f5 100644 --- a/packages/gatsby/src/redux/actions/public.js +++ b/packages/gatsby/src/redux/actions/public.js @@ -778,9 +778,9 @@ const createNode = ( // Check if the node has already been processed. if (oldNode && !hasNodeChanged(node.id, node.internal.contentDigest)) { updateNodeAction = { - type: `TOUCH_NODE`, - plugin, ...actionOptions, + plugin, + type: `TOUCH_NODE`, payload: node.id, } } else { @@ -789,9 +789,9 @@ const createNode = ( if (oldNode) { const createDeleteAction = node => { return { + ...actionOptions, type: `DELETE_NODE`, plugin, - ...actionOptions, payload: node, } } @@ -801,10 +801,10 @@ const createNode = ( } updateNodeAction = { + ...actionOptions, type: `CREATE_NODE`, plugin, oldNode, - ...actionOptions, payload: node, } } @@ -959,9 +959,9 @@ actions.createNodeField = ( node = sanitizeNode(node) return { + ...actionOptions, type: `ADD_FIELD_TO_NODE`, plugin, - ...actionOptions, payload: node, } }
334d2bc2d3a03c83882dbc55bdc168647903c9f9
2021-06-02 15:57:26
Vladimir Razuvaev
feat(gatsby): node persistence (#31371)
false
node persistence (#31371)
feat
diff --git a/.circleci/config.yml b/.circleci/config.yml index 89b4741505d1f..01f613f886ea6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,11 +58,20 @@ aliases: - /blog.+/ test_template: &test_template + parameters: + npm_rebuild: + type: boolean + default: false steps: - checkout - run: ./scripts/assert-changed-files.sh "packages/*|.circleci/*" - <<: *attach_to_bootstrap + - when: + condition: << parameters.npm_rebuild >> + steps: + - run: npm rebuild - run: yarn list react + - run: yarn why lmdb-store - run: command: node --max-old-space-size=2048 ./node_modules/.bin/jest -w 1 --ci environment: @@ -230,6 +239,14 @@ jobs: image: "14" <<: *test_template + unit_tests_node14_strict_mode: + executor: + name: node + image: "14" + environment: + GATSBY_EXPERIMENTAL_STRICT_MODE: 1 + <<: *test_template + integration_tests_gatsby_source_wordpress: machine: true steps: @@ -626,6 +643,14 @@ workflows: - lint - typecheck - bootstrap + - unit_tests_node14_strict_mode: + <<: *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_long_term_caching: diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 00b9ad93c5359..f2d081fa634ae 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -180,6 +180,7 @@ "cross-env": "^7.0.3", "documentation": "^13.1.0", "enhanced-resolve": "^4.2.0", + "lmdb-store": "^1.5.0", "react": "^16.12.0", "react-dom": "^16.12.0", "rimraf": "^3.0.2", diff --git a/packages/gatsby/src/datastore/datastore.ts b/packages/gatsby/src/datastore/datastore.ts new file mode 100644 index 0000000000000..f2bd2bc9d0d91 --- /dev/null +++ b/packages/gatsby/src/datastore/datastore.ts @@ -0,0 +1,51 @@ +import { IDataStore } from "./types" +import { emitter } from "../redux" + +let dataStore: IDataStore +let isLmdb = isLmdbStoreFlagSet() + +export function getDataStore(): IDataStore { + if (!dataStore) { + if (isLmdb) { + const { setupLmdbStore } = require(`./lmdb/lmdb-datastore`) + dataStore = setupLmdbStore() + } else { + const { setupInMemoryStore } = require(`./in-memory/in-memory-datastore`) + dataStore = setupInMemoryStore() + } + } + return dataStore +} + +export function isLmdbStore(): boolean { + return isLmdb +} + +export function detectLmdbStore(): boolean { + const flagIsSet = isLmdbStoreFlagSet() + + if (dataStore && isLmdb !== flagIsSet) { + throw new Error( + `GATSBY_EXPERIMENTAL_LMDB_STORE flag had changed after the data store was initialized.` + + `(original value: ${isLmdb ? `true` : `false`}, ` + + `new value: ${flagIsSet ? `true` : `false`})` + ) + } + isLmdb = flagIsSet + return flagIsSet +} + +function isLmdbStoreFlagSet(): boolean { + return ( + Boolean(process.env.GATSBY_EXPERIMENTAL_LMDB_STORE) && + process.env.GATSBY_EXPERIMENTAL_LMDB_STORE !== `false` && + process.env.GATSBY_EXPERIMENTAL_LMDB_STORE !== `0` + ) +} + +// It is possible that the store is not initialized yet when calling `DELETE_CACHE`. +// The code below ensures we wipe cache from the proper store +// (mostly relevant for tests) +emitter.on(`DELETE_CACHE`, () => { + getDataStore() +}) diff --git a/packages/gatsby/src/datastore/in-memory/in-memory-datastore.ts b/packages/gatsby/src/datastore/in-memory/in-memory-datastore.ts new file mode 100644 index 0000000000000..5a63839aa13bb --- /dev/null +++ b/packages/gatsby/src/datastore/in-memory/in-memory-datastore.ts @@ -0,0 +1,67 @@ +import { IDataStore } from "../types" +import { store } from "../../redux" +import { IGatsbyNode } from "../../redux/types" + +/** + * @deprecated + */ +function getNodes(): Array<IGatsbyNode> { + const nodes = store.getState().nodes + if (nodes) { + return Array.from(nodes.values()) + } else { + return [] + } +} + +/** + * @deprecated + */ +function getNodesByType(type: string): Array<IGatsbyNode> { + const nodes = store.getState().nodesByType.get(type) + if (nodes) { + return Array.from(nodes.values()) + } else { + return [] + } +} + +function getNode(id: string): IGatsbyNode | undefined { + return store.getState().nodes.get(id) +} + +function getTypes(): Array<string> { + // Note: sorting to match the output of the LMDB version (where keys are sorted by default) + return Array.from(store.getState().nodesByType.keys()).sort() +} + +function countNodes(typeName?: string): number { + if (!typeName) { + return store.getState().nodes.size + } + const nodes = store.getState().nodesByType.get(typeName) + return nodes ? nodes.size : 0 +} + +const readyPromise = Promise.resolve(undefined) + +/** + * Returns promise that resolves when the store is ready for reads + * (the in-memory store is always ready) + */ +function ready(): Promise<void> { + return readyPromise +} + +export function setupInMemoryStore(): IDataStore { + return { + getNode, + getTypes, + countNodes, + ready, + + // deprecated: + getNodes, + getNodesByType, + } +} diff --git a/packages/gatsby/src/datastore/index.ts b/packages/gatsby/src/datastore/index.ts new file mode 100644 index 0000000000000..073008f5c4b53 --- /dev/null +++ b/packages/gatsby/src/datastore/index.ts @@ -0,0 +1 @@ +export { getDataStore, isLmdbStore, detectLmdbStore } from "./datastore" diff --git a/packages/gatsby/src/datastore/lmdb/lmdb-datastore.ts b/packages/gatsby/src/datastore/lmdb/lmdb-datastore.ts new file mode 100644 index 0000000000000..9771b35ad6157 --- /dev/null +++ b/packages/gatsby/src/datastore/lmdb/lmdb-datastore.ts @@ -0,0 +1,173 @@ +import { ArrayLikeIterable, RootDatabase, open } from "lmdb-store" +// import { performance } from "perf_hooks" +import { ActionsUnion, IGatsbyNode } from "../../redux/types" +import { updateNodes } from "./updates/nodes" +import { updateNodesByType } from "./updates/nodes-by-type" +import { IDataStore, ILmdbDatabases } from "../types" +import { emitter, replaceReducer } from "../../redux" + +const rootDbFile = + process.env.NODE_ENV === `test` + ? `test-datastore-${process.env.JEST_WORKER_ID}` + : `datastore` + +let rootDb +let databases + +function getRootDb(): RootDatabase { + if (!rootDb) { + rootDb = open({ + name: `root`, + path: process.cwd() + `/.cache/data/` + rootDbFile, + sharedStructuresKey: Symbol.for(`structures`), + compression: true, + }) + } + return rootDb +} + +function getDatabases(): ILmdbDatabases { + if (!databases) { + const rootDb = getRootDb() + databases = { + nodes: rootDb.openDB({ + name: `nodes`, + cache: true, + }), + nodesByType: rootDb.openDB({ + name: `nodesByType`, + dupSort: true, + }), + } + } + return databases +} + +/** + * @deprecated + */ +function getNodes(): Array<IGatsbyNode> { + // const start = performance.now() + const result = Array.from<IGatsbyNode>(iterateNodes()) + // const timeTotal = performance.now() - start + // console.warn( + // `getNodes() is deprecated, use iterateNodes() instead; ` + + // `array length: ${result.length}; time(ms): ${timeTotal}` + // ) + return result ?? [] +} + +/** + * @deprecated + */ +function getNodesByType(type: string): Array<IGatsbyNode> { + // const start = performance.now() + const result = Array.from<IGatsbyNode>(iterateNodesByType(type)) + // const timeTotal = performance.now() - start + // console.warn( + // `getNodesByType() is deprecated, use iterateNodesByType() instead; ` + + // `array length: ${result.length}; time(ms): ${timeTotal}` + // ) + return result ?? [] +} + +function iterateNodes(): ArrayLikeIterable<IGatsbyNode> { + // Additionally fetching items by id to leverage lmdb-store cache + const nodesDb = getDatabases().nodes + return nodesDb + .getKeys({ snapshot: false }) + .map(nodeId => getNode(nodeId)!) + .filter(Boolean) +} + +function iterateNodesByType(type: string): ArrayLikeIterable<IGatsbyNode> { + const nodesByType = getDatabases().nodesByType + return nodesByType + .getValues(type) + .map(nodeId => getNode(nodeId)!) + .filter(Boolean) +} + +function getNode(id: string): IGatsbyNode | undefined { + if (!id) return undefined + const { nodes } = getDatabases() + return nodes.get(id) +} + +function getTypes(): Array<string> { + return getDatabases().nodesByType.getKeys({}).asArray +} + +function countNodes(typeName?: string): number { + if (!typeName) { + const stats = getDatabases().nodes.getStats() + // @ts-ignore + return Number(stats.entryCount || 0) + } + + const { nodesByType } = getDatabases() + let count = 0 + nodesByType.getValues(typeName).forEach(() => { + count++ + }) + return count +} + +let lastOperationPromise: Promise<any> = Promise.resolve() + +function updateDataStore(action: ActionsUnion): void { + switch (action.type) { + case `DELETE_CACHE`: { + const dbs = getDatabases() + // Force sync commit + dbs.nodes.transactionSync(() => { + dbs.nodes.clear() + dbs.nodesByType.clear() + }) + break + } + case `CREATE_NODE`: + case `ADD_FIELD_TO_NODE`: + case `ADD_CHILD_NODE_TO_PARENT_NODE`: + case `DELETE_NODE`: { + const dbs = getDatabases() + lastOperationPromise = Promise.all([ + updateNodes(dbs.nodes, action), + updateNodesByType(dbs.nodesByType, action), + ]) + } + } +} + +/** + * Resolves when all the data is synced + */ +async function ready(): Promise<void> { + await lastOperationPromise +} + +export function setupLmdbStore(): IDataStore { + const lmdbDatastore = { + getNode, + getTypes, + countNodes, + iterateNodes, + iterateNodesByType, + updateDataStore, + ready, + + // deprecated: + getNodes, + getNodesByType, + } + replaceReducer({ + nodes: (state = new Map(), _) => state, + nodesByType: (state = new Map(), _) => state, + }) + emitter.on(`*`, action => { + if (action) { + updateDataStore(action) + } + }) + return lmdbDatastore +} diff --git a/packages/gatsby/src/datastore/lmdb/updates/nodes-by-type.ts b/packages/gatsby/src/datastore/lmdb/updates/nodes-by-type.ts new file mode 100644 index 0000000000000..daaaad7374d90 --- /dev/null +++ b/packages/gatsby/src/datastore/lmdb/updates/nodes-by-type.ts @@ -0,0 +1,22 @@ +import { ActionsUnion } from "../../../redux/types" +import { ILmdbDatabases } from "../../types" + +export function updateNodesByType( + nodesByTypeDb: ILmdbDatabases["nodesByType"], + action: ActionsUnion +): Promise<boolean> | boolean { + switch (action.type) { + case `CREATE_NODE`: + case `ADD_FIELD_TO_NODE`: + case `ADD_CHILD_NODE_TO_PARENT_NODE`: { + // nodesByType db uses dupSort, so `put` will effectively append an id + return nodesByTypeDb.put(action.payload.internal.type, action.payload.id) + } + case `DELETE_NODE`: { + return action.payload + ? nodesByTypeDb.remove(action.payload.internal.type, action.payload.id) + : false + } + } + return false +} diff --git a/packages/gatsby/src/datastore/lmdb/updates/nodes.ts b/packages/gatsby/src/datastore/lmdb/updates/nodes.ts new file mode 100644 index 0000000000000..a6049b5f20c53 --- /dev/null +++ b/packages/gatsby/src/datastore/lmdb/updates/nodes.ts @@ -0,0 +1,24 @@ +import { ActionsUnion, IGatsbyNode } from "../../../redux/types" +import { Database } from "lmdb-store" + +type NodeId = string + +export function updateNodes( + nodesDb: Database<IGatsbyNode, NodeId>, + action: ActionsUnion +): Promise<boolean> | boolean { + switch (action.type) { + case `CREATE_NODE`: + case `ADD_FIELD_TO_NODE`: + case `ADD_CHILD_NODE_TO_PARENT_NODE`: { + return nodesDb.put(action.payload.id, action.payload) + } + case `DELETE_NODE`: { + if (action.payload) { + return nodesDb.remove(action.payload.id) + } + return false + } + } + return false +} diff --git a/packages/gatsby/src/datastore/types.ts b/packages/gatsby/src/datastore/types.ts new file mode 100644 index 0000000000000..90ee40433555b --- /dev/null +++ b/packages/gatsby/src/datastore/types.ts @@ -0,0 +1,22 @@ +import { Database } from "lmdb-store" +import { IGatsbyNode } from "../redux/types" + +export type NodeId = string +export type NodeType = string + +export interface ILmdbDatabases { + nodes: Database<IGatsbyNode, NodeId> + nodesByType: Database<NodeId, NodeType> +} + +export interface IDataStore { + getNode(id: string): IGatsbyNode | undefined + getTypes(): Array<string> + countNodes(typeName?: string): number + ready(): Promise<void> + + /** @deprecated */ + getNodes(): Array<IGatsbyNode> + /** @deprecated */ + getNodesByType(type: string): Array<IGatsbyNode> +} diff --git a/packages/gatsby/src/db/__tests__/nodes.js b/packages/gatsby/src/db/__tests__/nodes.js index 4c75e3e73d4f3..dc3701b6264b8 100644 --- a/packages/gatsby/src/db/__tests__/nodes.js +++ b/packages/gatsby/src/db/__tests__/nodes.js @@ -1,6 +1,7 @@ const { actions } = require(`../../redux/actions`) const { store } = require(`../../redux`) const { getNode, getNodes } = require(`../../redux/nodes`) +const { getDataStore } = require(`../../datastore`) const report = require(`gatsby-cli/lib/reporter`) jest.mock(`gatsby-cli/lib/reporter`) @@ -44,7 +45,7 @@ describe(`nodes db tests`, () => { expect(report.warn).toHaveBeenCalledWith(deprecationNotice) }) - it(`deletes previously transformed children nodes when the parent node is updated`, () => { + it(`deletes previously transformed children nodes when the parent node is updated`, async () => { store.dispatch( actions.createNode( { @@ -131,10 +132,11 @@ describe(`nodes db tests`, () => { } ) ) + await getDataStore().ready() expect(getNodes()).toHaveLength(1) }) - it(`deletes previously transformed children nodes when the parent node is deleted`, () => { + it(`deletes previously transformed children nodes when the parent node is deleted`, async () => { store.dispatch( actions.createNode( { @@ -226,6 +228,7 @@ describe(`nodes db tests`, () => { name: `tests`, }) ) + await getDataStore().ready() expect(getNodes()).toHaveLength(1) }) diff --git a/packages/gatsby/src/query/__tests__/data-tracking.js b/packages/gatsby/src/query/__tests__/data-tracking.js index ea162cbf12888..bc8a5977ec970 100644 --- a/packages/gatsby/src/query/__tests__/data-tracking.js +++ b/packages/gatsby/src/query/__tests__/data-tracking.js @@ -123,12 +123,8 @@ const getTypedNodeCreators = ({ let isFirstRun = true const setup = async ({ restart = isFirstRun, clearCache = false } = {}) => { - isFirstRun = false if (restart) { jest.resetModules() - if (clearCache) { - mockPersistedState = {} - } } else if (clearCache) { console.error(`Can't clear cache without restarting`) process.exit(1) @@ -179,6 +175,12 @@ const setup = async ({ restart = isFirstRun, clearCache = false } = {}) => { ) const apiRunner = require(`../../utils/api-runner-node`) + if (isFirstRun || clearCache) { + mockPersistedState = {} + store.dispatch({ type: `DELETE_CACHE` }) + } + isFirstRun = false + queryRunner.mockClear() store.dispatch({ diff --git a/packages/gatsby/src/query/__tests__/graphql-runner.ts b/packages/gatsby/src/query/__tests__/graphql-runner.ts index 69faa6639e83d..ff73fdaf38e09 100644 --- a/packages/gatsby/src/query/__tests__/graphql-runner.ts +++ b/packages/gatsby/src/query/__tests__/graphql-runner.ts @@ -26,6 +26,10 @@ jest.mock(`gatsby-cli/lib/reporter`, () => { } }) +beforeAll(() => { + store.dispatch({ type: `DELETE_CACHE` }) +}) + const reporter = require(`gatsby-cli/lib/reporter`) afterEach(() => { reporter.error.mockClear() diff --git a/packages/gatsby/src/redux/__tests__/index.js b/packages/gatsby/src/redux/__tests__/index.js index 21c6c4ece8aa2..05f790e50098c 100644 --- a/packages/gatsby/src/redux/__tests__/index.js +++ b/packages/gatsby/src/redux/__tests__/index.js @@ -9,6 +9,7 @@ const v8Deserialize = jest.spyOn(v8, `deserialize`) const reporterInfo = jest.spyOn(reporter, `info`).mockImplementation(jest.fn) const reporterWarn = jest.spyOn(reporter, `warn`).mockImplementation(jest.fn) +const { isLmdbStore } = require(`../../datastore`) const { saveState, store, readState } = require(`../index`) const { @@ -131,6 +132,7 @@ describe(`redux db`, () => { } beforeEach(() => { + store.getState().nodes = new Map() store.dispatch({ type: `DELETE_CACHE`, }) @@ -191,6 +193,10 @@ describe(`redux db`, () => { v8Serialize.mockRestore() v8Deserialize.mockRestore() }) + if (isLmdbStore()) { + // Nodes are stored in LMDB, those tests are irrelevant + return + } // we set limit to 1.5 * 1024 * 1024 * 1024 per shard // simulating size for page and nodes will allow us to see if we create expected amount of shards @@ -407,7 +413,8 @@ describe(`redux db`, () => { ) ) - expect(store.getState().nodes.size).toEqual(1) + // In strict mode nodes are stored in LMDB not redux state + expect(store.getState().nodes.size).toEqual(isLmdbStore() ? 0 : 1) expect(store.getState().pages.size).toEqual(0) let persistedState = readState() @@ -427,7 +434,8 @@ describe(`redux db`, () => { persistedState = readState() - expect(persistedState.nodes?.size ?? 0).toEqual(1) + // In strict mode nodes are stored in LMDB not redux state + expect(persistedState.nodes?.size ?? 0).toEqual(isLmdbStore() ? 0 : 1) expect(persistedState.pages?.size ?? 0).toEqual(0) }) @@ -458,13 +466,20 @@ describe(`redux db`, () => { persistedState = readState() expect(persistedState.nodes?.size ?? 0).toEqual(0) - // we expect state to be discarded because gatsby creates it least few nodes of it's own - // (particularly `Site` node). If there was nodes read this likely means something went wrong - // and state is not consistent - expect(persistedState.pages?.size ?? 0).toEqual(0) - - expect(reporterInfo).toBeCalledWith( - `Cache exists but contains no nodes. There should be at least some nodes available so it seems the cache was corrupted. Disregarding the cache and proceeding as if there was none.` - ) + if (isLmdbStore()) { + // In strict mode nodes are stored in LMDB not redux state + // so missing nodes are expected and we should still load pages in this case + expect(persistedState.pages?.size ?? 0).toEqual(1) + expect(reporterInfo).not.toBeCalled() + } else { + // we expect state to be discarded because gatsby creates it least few nodes of it's own + // (particularly `Site` node). If there was nodes read this likely means something went wrong + // and state is not consistent + expect(persistedState.pages?.size ?? 0).toEqual(0) + + expect(reporterInfo).toBeCalledWith( + `Cache exists but contains no nodes. There should be at least some nodes available so it seems the cache was corrupted. Disregarding the cache and proceeding as if there was none.` + ) + } }) }) diff --git a/packages/gatsby/src/redux/__tests__/run-fast-filters.js b/packages/gatsby/src/redux/__tests__/run-fast-filters.js index 8b1c150ecc2ca..cfb6047654874 100644 --- a/packages/gatsby/src/redux/__tests__/run-fast-filters.js +++ b/packages/gatsby/src/redux/__tests__/run-fast-filters.js @@ -3,6 +3,7 @@ const { applyFastFilters, } = require(`../run-fast-filters`) const { store } = require(`../index`) +const { getDataStore } = require(`../../datastore`) const { getNode } = require(`../nodes`) const { createDbQueriesFromObject } = require(`../../db/common/query`) const { actions } = require(`../actions`) @@ -128,11 +129,12 @@ const gqlType = new GraphQLObjectType({ }) describe(`fast filter tests`, () => { - beforeEach(() => { + beforeEach(async () => { store.dispatch({ type: `DELETE_CACHE` }) mockNodes().forEach(node => actions.createNode(node, { name: `test` })(store.dispatch) ) + await getDataStore().ready() }) describe(`filters by just id correctly`, () => { @@ -381,11 +383,12 @@ describe(`fast filter tests`, () => { }) describe(`applyFastFilters`, () => { - beforeAll(() => { + beforeAll(async () => { store.dispatch({ type: `DELETE_CACHE` }) mockNodes().forEach(node => actions.createNode(node, { name: `test` })(store.dispatch) ) + await getDataStore().ready() }) it(`gets stuff from cache for simple query`, () => { @@ -462,14 +465,15 @@ describe(`applyFastFilters`, () => { }) describe(`edge cases (yay)`, () => { - beforeAll(() => { + beforeAll(async () => { store.dispatch({ type: `DELETE_CACHE` }) mockNodes().forEach(node => actions.createNode(node, { name: `test` })(store.dispatch) ) + await getDataStore().ready() }) - it(`throws when node counters are messed up`, () => { + it(`throws when node counters are messed up`, async () => { const filter = { slog: { $eq: `def` }, // matches id_2 and id_4 deep: { flat: { search: { chain: { $eq: 500 } } } }, // matches id_2 @@ -502,6 +506,7 @@ describe(`edge cases (yay)`, () => { type: `CREATE_NODE`, payload: badNode, }) + await getDataStore().ready() const run = () => applyFastFilters(createDbQueriesFromObject(filter), [typeName], new Map()) diff --git a/packages/gatsby/src/redux/index.ts b/packages/gatsby/src/redux/index.ts index 0bc736e2560d3..29997a18f4927 100644 --- a/packages/gatsby/src/redux/index.ts +++ b/packages/gatsby/src/redux/index.ts @@ -3,6 +3,7 @@ import { combineReducers, createStore, Middleware, + ReducersMapObject, } from "redux" import _ from "lodash" import telemetry from "gatsby-telemetry" @@ -84,6 +85,15 @@ export const configureStore = (initialState: IGatsbyState) => export type GatsbyReduxStore = ReturnType<typeof configureStore> export const store: GatsbyReduxStore = configureStore(readState()) +/** + * Allows overloading some reducers (e.g. when setting a custom datastore) + */ +export function replaceReducer( + customReducers: Partial<ReducersMapObject<IGatsbyState>> +): void { + store.replaceReducer(combineReducers({ ...reducers, ...customReducers })) +} + // Persist state. export const saveState = (): void => { if (process.env.GATSBY_DISABLE_CACHE_PERSISTENCE) { diff --git a/packages/gatsby/src/redux/nodes.ts b/packages/gatsby/src/redux/nodes.ts index 0af81b8e5c214..f53e4f4156ef9 100644 --- a/packages/gatsby/src/redux/nodes.ts +++ b/packages/gatsby/src/redux/nodes.ts @@ -2,6 +2,7 @@ import { store } from "./" import { IGatsbyNode } from "./types" import { createPageDependency } from "./actions/add-page-dependency" import { IDbQueryElemMatch } from "../db/common/query" +import { getDataStore } from "../datastore" // Only list supported ops here. "CacheableFilterOp" export type FilterOp = // TODO: merge with DbComparator ? @@ -65,44 +66,30 @@ export type FiltersCache = Map<FilterCacheKey, IFilterCache> /** * Get all nodes from redux store. */ -export const getNodes = (): Array<IGatsbyNode> => { - const nodes = store.getState().nodes - if (nodes) { - return Array.from(nodes.values()) - } else { - return [] - } -} +export const getNodes = (): Array<IGatsbyNode> => getDataStore().getNodes() /** * Get node by id from store. */ export const getNode = (id: string): IGatsbyNode | undefined => - store.getState().nodes.get(id) + getDataStore().getNode(id) /** * Get all nodes of type from redux store. */ -export const getNodesByType = (type: string): Array<IGatsbyNode> => { - const nodes = store.getState().nodesByType.get(type) - if (nodes) { - return Array.from(nodes.values()) - } else { - return [] - } -} +export const getNodesByType = (type: string): Array<IGatsbyNode> => + getDataStore().getNodesByType(type) /** * Get all type names from redux store. */ -export const getTypes = (): Array<string> => - Array.from(store.getState().nodesByType.keys()) +export const getTypes = (): Array<string> => getDataStore().getTypes() /** * Determine if node has changed. */ export const hasNodeChanged = (id: string, digest: string): boolean => { - const node = store.getState().nodes.get(id) + const node = getDataStore().getNode(id) if (!node) { return true } else { @@ -137,11 +124,11 @@ export const saveResolvedNodes = async ( resolver: Resolver ): Promise<void> => { for (const typeName of nodeTypeNames) { - const nodes = store.getState().nodesByType.get(typeName) - if (!nodes) continue + const nodes = getDataStore().getNodesByType(typeName) + if (!nodes || !nodes.length) continue const resolvedNodes = new Map() - for (const node of nodes.values()) { + for (const node of nodes) { const resolved = await resolver(node) resolvedNodes.set(node.id, resolved) } @@ -162,16 +149,11 @@ export const getResolvedNode = ( typeName: string, id: string ): IGatsbyNode | null => { - const { nodesByType, resolvedNodesCache } = store.getState() - const nodes = nodesByType.get(typeName) + const { resolvedNodesCache } = store.getState() - if (!nodes) { - return null - } - - const node = nodes.get(id) + const node = getNode(id) - if (!node) { + if (!node || node.internal.type !== typeName) { return null } @@ -333,7 +315,7 @@ export const ensureIndexByQuery = ( } else { // Here we must first filter for the node type // This loop is expensive at scale (!) - state.nodes.forEach(node => { + getNodes().forEach(node => { if (!nodeTypeNames.includes(node.internal.type)) { return } @@ -381,7 +363,7 @@ export function ensureEmptyFilterCache( } else { // Here we must first filter for the node type // This loop is expensive at scale (!) - state.nodes.forEach(node => { + getNodes().forEach(node => { if (nodeTypeNames.includes(node.internal.type)) { if (!node.__gatsby_resolved) { const typeName = node.internal.type @@ -496,7 +478,7 @@ export const ensureIndexByElemMatch = ( }) } else { // Expensive at scale - state.nodes.forEach(node => { + getNodes().forEach(node => { if (!nodeTypeNames.includes(node.internal.type)) { return } diff --git a/packages/gatsby/src/redux/persist.ts b/packages/gatsby/src/redux/persist.ts index 00b37f3877f26..e81c9ec401987 100644 --- a/packages/gatsby/src/redux/persist.ts +++ b/packages/gatsby/src/redux/persist.ts @@ -119,6 +119,27 @@ function prepareCacheFolder( contents.pages = pagesMap if (nodesMap) { + if (nodesMap.size === 0 && process.env.GATSBY_EXPERIMENTAL_LMDB_STORE) { + // Nodes are actually stored in LMDB. + // But we need at least one node in redux state to workaround the warning above: + // "Cache exists but contains no nodes..." (when loading cache). + // Sadly, cannot rely on GATSBY_EXPERIMENTAL_LMDB_STORE env variable at cache load time + // because it is not initialized at this point (when set via flags in config) + const dummyNode: IGatsbyNode = { + id: `dummy-node-id`, + parent: ``, + children: [], + internal: { + type: `DummyNode`, + contentDigest: `dummy-node`, + counter: 0, + owner: ``, + }, + __gatsby_resolved: {}, + fields: [], + } + nodesMap.set(dummyNode.id, dummyNode) + } // Now store the nodes separately, chunk size determined by a heuristic const values: Array<[string, IGatsbyNode]> = [...nodesMap.entries()] const chunkSize = guessSafeChunkSize(values) diff --git a/packages/gatsby/src/schema/__tests__/__snapshots__/print.js.snap b/packages/gatsby/src/schema/__tests__/__snapshots__/print.js.snap index f845e82daf0f6..ddd171cef7e5a 100644 --- a/packages/gatsby/src/schema/__tests__/__snapshots__/print.js.snap +++ b/packages/gatsby/src/schema/__tests__/__snapshots__/print.js.snap @@ -134,12 +134,12 @@ type BarChild implements Node @childOf(types: [\\"Test\\"]) @dontInfer { bar: String } -type FooChild implements Node @childOf(types: [\\"Test\\"]) @dontInfer { - bar: String -} - type Test implements Node @dontInfer { foo: Int +} + +type FooChild implements Node @childOf(types: [\\"Test\\"]) @dontInfer { + bar: String }" `; @@ -315,12 +315,12 @@ type BarChild implements Node @childOf(types: [\\"Test\\"]) @dontInfer { bar: String } -type FooChild implements Node @childOf(types: [\\"Test\\"]) @dontInfer { - bar: String -} - type Test implements Node @dontInfer { foo: Int +} + +type FooChild implements Node @childOf(types: [\\"Test\\"]) @dontInfer { + bar: String }" `; @@ -495,11 +495,11 @@ type BarChild implements Node @childOf(types: [\\"Test\\"]) @dontInfer { bar: String } -type FooChild implements Node @childOf(types: [\\"Test\\"]) @dontInfer { - bar: String -} - type Test implements Node @dontInfer { foo: Int +} + +type FooChild implements Node @childOf(types: [\\"Test\\"]) @dontInfer { + bar: String }" `; diff --git a/packages/gatsby/src/schema/__tests__/node-model.js b/packages/gatsby/src/schema/__tests__/node-model.js index 817d9bd249074..5b235720422f6 100644 --- a/packages/gatsby/src/schema/__tests__/node-model.js +++ b/packages/gatsby/src/schema/__tests__/node-model.js @@ -3,6 +3,7 @@ const { actions } = require(`../../redux/actions`) const { LocalNodeModel } = require(`../node-model`) const { build } = require(`..`) const typeBuilders = require(`../types/type-builders`) +const { isLmdbStore } = require(`../../datastore`) const nodes = require(`./fixtures/node-model`) @@ -1256,6 +1257,10 @@ describe(`NodeModel`, () => { }) describe(`circular references`, () => { + if (isLmdbStore()) { + // Circular references are disallowed in the strict mode, this tests are expected to fail + return + } describe(`directly on a node`, () => { beforeEach(async () => { // This tests whether addRootNodeToInlineObject properly prevents re-traversing the same key-value pair infinitely diff --git a/packages/gatsby/src/schema/__tests__/run-query.js b/packages/gatsby/src/schema/__tests__/run-query.js index 064cdb18df8c4..239895917624b 100644 --- a/packages/gatsby/src/schema/__tests__/run-query.js +++ b/packages/gatsby/src/schema/__tests__/run-query.js @@ -1,5 +1,6 @@ const { store } = require(`../../redux`) const { actions } = require(`../../redux/actions`) +const { getDataStore } = require(`../../datastore`) const { runFastFiltersAndSort } = require(`../../redux/run-fast-filters`) const makeNodesUneven = () => [ @@ -312,15 +313,16 @@ function makeGqlType(nodes) { return { sc, type: tc.getType() } } -function resetDb(nodes) { +async function resetDb(nodes) { store.dispatch({ type: `DELETE_CACHE` }) nodes.forEach(node => actions.createNode(node, { name: `test` })(store.dispatch) ) + await getDataStore().ready() } async function runQuery(queryArgs, nodes = makeNodesUneven()) { - resetDb(nodes) + await resetDb(nodes) const { sc, type: gqlType } = makeGqlType(nodes) const args = { gqlType, diff --git a/packages/gatsby/src/schema/index.js b/packages/gatsby/src/schema/index.js index 4041a1a9b655d..672709680c7d9 100644 --- a/packages/gatsby/src/schema/index.js +++ b/packages/gatsby/src/schema/index.js @@ -3,6 +3,7 @@ const tracer = require(`opentracing`).globalTracer() const { store } = require(`../redux`) const { getNodesByType, getTypes } = require(`../redux/nodes`) +const { getDataStore } = require(`../datastore`) const { createSchemaComposer } = require(`./schema-composer`) const { buildSchema, rebuildSchemaWithSitePage } = require(`./schema`) const { builtInFieldExtensions } = require(`./extensions`) @@ -81,6 +82,7 @@ const buildInferenceMetadata = ({ types }) => const build = async ({ parentSpan, fullMetadataBuild = true }) => { const spanArgs = parentSpan ? { childOf: parentSpan } : {} const span = tracer.startSpan(`build schema`, spanArgs) + await getDataStore().ready() if (fullMetadataBuild) { // Build metadata for type inference and start updating it incrementally @@ -137,6 +139,7 @@ const rebuildWithSitePage = async ({ parentSpan }) => { `rebuild schema with SitePage context`, spanArgs ) + await getDataStore().ready() await buildInferenceMetadata({ types: [`SitePage`] }) // Disabling incremental inference for SitePage after the initial build diff --git a/packages/gatsby/src/schema/schema.js b/packages/gatsby/src/schema/schema.js index df9ecd00be4bd..c88a93a378efe 100644 --- a/packages/gatsby/src/schema/schema.js +++ b/packages/gatsby/src/schema/schema.js @@ -19,6 +19,7 @@ const { EnumTypeComposer, } = require(`graphql-compose`) const { getNode, getNodesByType } = require(`../redux/nodes`) +const { getDataStore } = require(`../datastore`) const apiRunner = require(`../utils/api-runner-node`) const report = require(`gatsby-cli/lib/reporter`) @@ -62,6 +63,8 @@ const buildSchema = async ({ inferenceMetadata, parentSpan, }) => { + // FIXME: consider removing .ready here - it is needed for various tests to pass (although probably harmless) + await getDataStore().ready() await updateSchemaComposer({ schemaComposer, types, diff --git a/packages/gatsby/src/services/create-pages.ts b/packages/gatsby/src/services/create-pages.ts index 73bc3373abcec..9c2240a2cb405 100644 --- a/packages/gatsby/src/services/create-pages.ts +++ b/packages/gatsby/src/services/create-pages.ts @@ -5,6 +5,7 @@ import { assertStore } from "../utils/assert-store" import { IGatsbyPage } from "../redux/types" import { actions } from "../redux/actions" import { deleteUntouchedPages, findChangedPages } from "../utils/changed-pages" +import { getDataStore } from "../datastore" export async function createPages({ parentSpan, @@ -57,18 +58,19 @@ export async function createPages({ activity.end() } + const dataStore = getDataStore() reporter.info( - `Total nodes: ${store.getState().nodes.size}, SitePage nodes: ${ - store.getState().nodesByType?.get(`SitePage`)?.size - } (use --verbose for breakdown)` + `Total nodes: ${dataStore.countNodes()}, ` + + `SitePage nodes: ${ + store.getState().pages.size + } (use --verbose for breakdown)` ) if (process.env.gatsby_log_level === `verbose`) { + const types = dataStore.getTypes() reporter.verbose( - `Number of node types: ${ - store.getState().nodesByType.size - }. Nodes per type: ${[...store.getState().nodesByType.entries()] - .map(([type, nodes]) => type + `: ` + nodes.size) + `Number of node types: ${types.length}. Nodes per type: ${types + .map(type => type + `: ` + dataStore.countNodes(type)) .join(`, `)}` ) } diff --git a/packages/gatsby/src/services/initialize.ts b/packages/gatsby/src/services/initialize.ts index f237fcd0f4a65..6894820e0ee53 100644 --- a/packages/gatsby/src/services/initialize.ts +++ b/packages/gatsby/src/services/initialize.ts @@ -26,6 +26,7 @@ import { internalActions } from "../redux/actions" import { IGatsbyState } from "../redux/types" import { IBuildContext } from "./types" import availableFlags from "../utils/flags" +import { detectLmdbStore } from "../datastore" interface IPluginResolution { resolve: string @@ -204,6 +205,7 @@ export async function initialize({ // enable loading indicator process.env.GATSBY_QUERY_ON_DEMAND_LOADING_INDICATOR = `true` } + detectLmdbStore() // theme gatsby configs can be functions or objects if (config) { diff --git a/packages/gatsby/src/utils/flags.ts b/packages/gatsby/src/utils/flags.ts index c73de0da5ced2..423e1fa50de90 100644 --- a/packages/gatsby/src/utils/flags.ts +++ b/packages/gatsby/src/utils/flags.ts @@ -200,6 +200,18 @@ const activeFlags: Array<IFlag> = [ } }, }, + { + name: `LMDB_STORE`, + env: `GATSBY_EXPERIMENTAL_LMDB_STORE`, + command: `all`, + telemetryId: `LmdbStore`, + experimental: true, + description: `Store nodes in a persistent embedded database (vs in-memory). Lowers peak memory usage.`, + testFitness: (): fitnessEnum => { + const [major, minor] = process.versions.node.split(`.`) + return (Number(major) === 14 && Number(minor) >= 10) || Number(major) > 14 + }, + }, ] export default activeFlags diff --git a/packages/gatsby/src/utils/source-nodes.ts b/packages/gatsby/src/utils/source-nodes.ts index bb137e396f171..28e5325508dfb 100644 --- a/packages/gatsby/src/utils/source-nodes.ts +++ b/packages/gatsby/src/utils/source-nodes.ts @@ -7,6 +7,7 @@ import { actions } from "../redux/actions" import { IGatsbyState } from "../redux/types" const { deleteNode } = actions import { Node } from "../../index" +import { getDataStore } from "../datastore" /** * Finds the name of all plugins which implement Gatsby APIs that @@ -104,6 +105,7 @@ export default async ({ webhookBody: webhookBody || {}, pluginName, }) + await getDataStore().ready() const state = store.getState() const nodes = getNodes() diff --git a/yarn.lock b/yarn.lock index b7142b22f6fc2..a27fb745d5539 100644 --- a/yarn.lock +++ b/yarn.lock @@ -17348,6 +17348,18 @@ livereload-js@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.3.0.tgz#c3ab22e8aaf5bf3505d80d098cbad67726548c9a" +lmdb-store@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/lmdb-store/-/lmdb-store-1.5.0.tgz#691a03635d9d744b2b0d6362fb926f5f781a4d81" + integrity sha512-t06D13sUqC96rQcyU8el3TohzknsPXK3Upz6lt9ObZ+L13OhL8zZBzpVoS8jDbkjneRNmu3zMw9MMz3kQmtBgQ== + dependencies: + mkdirp "^1.0.4" + nan "^2.14.2" + node-gyp-build "^4.2.3" + weak-lru-cache "^0.4.1" + optionalDependencies: + msgpackr "^1.3.2" + load-bmfont@^1.3.1, load-bmfont@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.0.tgz#75f17070b14a8c785fe7f5bee2e6fd4f98093b6b" @@ -19058,6 +19070,21 @@ [email protected], ms@^2.0.0, ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +msgpackr-extract@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/msgpackr-extract/-/msgpackr-extract-1.0.11.tgz#68dd2e5da3f45788624e44190a25730c9f455d90" + integrity sha512-qE31O3AX4zUxGcf0eIxYF1h2n6FnJHmsfiT5M/aAeGmHQmiWJCkqeIDXGD0trDFQ7/tb8KBN69LLBQpon2WQnQ== + dependencies: + nan "^2.14.2" + node-gyp-build "^4.2.3" + +msgpackr@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/msgpackr/-/msgpackr-1.3.2.tgz#820cdeb6e5dc0ec330c68f5813aab2514651651c" + integrity sha512-iZLLtOMZZXK/r9k0WjQHSqtzsGBDS5lupGKV29LPyiryNtFE0bpri6almK3HrrJJwx/9DLPLCwcLqNmckjsgQw== + optionalDependencies: + msgpackr-extract "^1.0.11" + msw@^0.25.0: version "0.25.0" resolved "https://registry.yarnpkg.com/msw/-/msw-0.25.0.tgz#a743cd2c11e7aec28b2597cb133afa8dc7044acc" @@ -19171,6 +19198,11 @@ nan@^2.10.0, nan@^2.9.2: resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== +nan@^2.14.2: + version "2.14.2" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" + integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== + nanoclone@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/nanoclone/-/nanoclone-0.2.1.tgz#dd4090f8f1a110d26bb32c49ed2f5b9235209ed4" @@ -19399,6 +19431,11 @@ node-forge@^0.10.0: resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== +node-gyp-build@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.2.3.tgz#ce6277f853835f718829efb47db20f3e4d9c4739" + integrity sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg== + node-gyp-build@~3.7.0: version "3.7.0" resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-3.7.0.tgz#daa77a4f547b9aed3e2aac779eaf151afd60ec8d" @@ -28364,6 +28401,11 @@ wcwidth@^1.0.0: dependencies: defaults "^1.0.3" +weak-lru-cache@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/weak-lru-cache/-/weak-lru-cache-0.4.1.tgz#d1a0600f00576e9cf836d069e4dc119b8234abde" + integrity sha512-NJS+edQXFd9zHuWuAWfieUDj0pAS6Qg6HX0NW548vhoU+aOSkRFZvcJC988PjVkrH/Q/p/E18bPctGoUE++Pdw== + web-namespaces@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.2.tgz#c8dc267ab639505276bae19e129dbd6ae72b22b4"
9f294ec7b99bdf49eb860f08facebe1f705760a9
2019-04-18 20:48:47
Dustin Schau
feat(blog): add blog post from allan pooley (#13428)
false
add blog post from allan pooley (#13428)
feat
diff --git a/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/base64-images.jpg b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/base64-images.jpg new file mode 100644 index 0000000000000..caa9f75d5cdaf Binary files /dev/null and b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/base64-images.jpg differ diff --git a/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/cdn.jpg b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/cdn.jpg new file mode 100644 index 0000000000000..0f918176b8051 Binary files /dev/null and b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/cdn.jpg differ diff --git a/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/littleandbig-site-performance.jpg b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/littleandbig-site-performance.jpg new file mode 100644 index 0000000000000..036621b727905 Binary files /dev/null and b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/littleandbig-site-performance.jpg differ diff --git a/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/mobile-web-pages.jpg b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/mobile-web-pages.jpg new file mode 100644 index 0000000000000..ed1e0d4dc9e14 Binary files /dev/null and b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/mobile-web-pages.jpg differ diff --git a/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/website-landscape.jpg b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/website-landscape.jpg new file mode 100644 index 0000000000000..aabc526fa6074 Binary files /dev/null and b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/images/website-landscape.jpg differ diff --git a/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/index.md b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/index.md new file mode 100644 index 0000000000000..56954506cc822 --- /dev/null +++ b/docs/blog/2019-04-19-your-website-should-be-built-with-gatsby/index.md @@ -0,0 +1,126 @@ +--- +title: Your Website Should Be Built With Gatsby +date: 2019-04-19 +author: Allan Pooley +excerpt: "Gatsby’s calling card is blazing fast websites. But let’s dive deeper to see how Gatsby also improves your SEO, lead conversion, user experience, and more." +canonicalLink: https://www.littleandbig.com.au/blog/building-with-gatsby/ +tags: + - seo + - lead conversion + - user experience +--- + +## What is Gatsby? + +Gatsby is a web development technology we think you, your friends, your family and your dog (everyone) should be excited about. From web developer to business owners, technical and non-technical alike. Gatsby is making waves on the web in orders of magnitude that WordPress might have done in its hay day. + +Building your website with Gatsby will most likely positively impact your website’s: + +- Search Engine Optimization (SEO) +- Bounce Rates, Lead Conversion and Revenue +- Developer and User Experience + +Gatsby’s calling card is blazingly fast websites. This is achieved by pre-building a web page’s content before a user hits it, as opposed to fetching content in real-time. + +A handy analogy the way Gatsby delivers websites can be found in cooking shows. As the chef is about to place the prepared food in the oven, they simultaneously pull out a tray and say ‘Here’s one I prepared earlier!’ + +If the chef was to say “stick around and pass the next 30 minutes while we wait for these potatoes to brown!”, you’d be inclined to switch channels. + +Gatsby “pre-bakes” content into your website. Instead of fetching your blog posts from WordPress, or products from Shopify in real-time as a user hits the page, it’s fetched ahead of time, built the page and distilled it down to its most optimal format. + +We’ve covered the basics, stick around as we dive into the details. + +## The Modern Web Needed Gatsby + +### The Landscape + +We’ve grown high expectations for web sites since their humble beginnings in the early 90s. Primarily, most websites are attached to diverse set data sources - a Content Management System (CMS) like WordPress or Shopify, a social feed from Instagram or Twitter, or high-resolution images hosted in a repository like Cloudinary. + +This is fantastic, the CMS allows anyone to publish content to the web without having to continually hire a web developer. Pulling content from our social feeds means that we don’t have to duplicate content, and it promotes all the different mediums through which users can engage with our brand. + +We can capture what this looks like in a simple diagram. + +![The Traditional Website Landscape](./images/website-landscape.jpg) + +You might be unfamiliar with the concept of a Content Delivery Network (CDN), in layman’s terms this is a super fast server that stores content that doesn’t have to be updated. If servers are involved, it will route traffic to the closest one. + +## The Catch + +While this functionality is fantastic, the caveat is that we expose ourselves to terrible performance pitfalls - we’re only as fast as the time it takes to fetch our slowest data source. + +Parallel to this evolution we’ve tended to access the web on smaller and smaller devices, shifting from the Desktop, then to the Laptop, and now to Mobile. Not only do we expect to view increasingly more impressive and functional with less, more compact devices, but also to access the web from anywhere: often over our mobile telecommunications network. + +![The Percentage Of Web Pages Served To Mobile](./images/mobile-web-pages.jpg) + +## Enter Gatsby + +Using Gatsby, all our content is aggregated from the various data sources our website is connected to in a single build. The build process prefetches, compresses, and optimizes the content. When users land on the page, all the content is in one place, on the edge, ready to serve to them. This translates to blazingly fast load times and pages appear to load instantaneously. + +We only need to interact with servers and databases when we want to refresh the content, or a change is made in your website’s source code. + +With Gatsby, the architecture of our website simplifies a great deal. + +![CDN Static Content](./images/cdn.jpg) + +## Let’s Talk Business Outcomes + +This is the section of the post that business owners and marketing directors have been patiently waiting for. History and architecture aside, there’s a lot of hard, tangible, measurable results Gatsby can deliver to your business. Here’s some of them. + +### Search Engine Optimisation (SEO) + +A higher organic search ranking ensures pages on your site appear closer to the top of your audience’s search results, and increases the chances of them visiting your site and engaging with your business. It plays a big part in bringing traffic to your site. + +A primary driver of SEO is the content contained on your website and the way it is presented to search engine crawlers (the automated robots that are responsible for scanning and indexing content on the web). Gatsby does an excellent job at the latter, as all content is server-rendered and can be tagged extensively with metadata. + +Also, in early 2018, Google announced that a [website’s performance would also be a factor in page ranking](https://webmasters.googleblog.com/2018/01/using-page-speed-in-mobile-search.html), which took effect in July that year. + +Recently Google has released a tool called [web.dev](https://web.dev/) to allow people to audit their site to see how well the site meets Google’s expectations for modern web practices. How well Gatsby sites score using this tool has been a bit of a proof in the pudding on this subject. This site (https://www.littleandbig.com.au/) has been built in Gatsby, you’re welcome to weigh up a site against it in comparison. + +![Little and Big Website Performance](./images/littleandbig-site-performance.jpg) + +### Bounce Rates, Lead Conversion and Revenue + +Many websites are optimized to capture leads. Alas, some less artfully than others - I’m sure you’ve experienced a website that will accost you with a painfully timed pop-up, or throw up a barrier between you and content until you have surrendered your name, email and phone number. + +There is overwhelming evidence to support the fact that your website’s load time has an impact on a visitor to your site becoming a lead. + +Every second counts. Mobile websites that take [more than 3 seconds to load have a 53% bounce rate](https://www.thinkwithgoogle.com/marketing-resources/data-measurement/mobile-page-speed-new-industry-benchmarks/) (53% of visitors to a particular website navigate away from the site after viewing only one page). In the E-Commerce domain, some estimates say you lose up to [1% in revenue for every 100ms delay](https://www.section.io/blog/page-load-time-bounce-rate/) in page load time. + +### Developer Experience and User Experience + +Simply put, Gatsby makes it very easy to make sites beautiful, snappy and satisfying for users. The performance optimizations make page transitions seem instantaneous. It also comes with out-of-the-box functionality for creating very satisfying interactive behaviours. + +Gatsby has an excellent dedicated product team, supported by a booming open-source developer community. The technology is incredible, and it’s continuing to grow, with updated revisions of the core product, and with an ecosystem of code libraries that can be plugged in for quick access to impressive functionality. + +One example of this is the ability to add offline support for your website using Service Workers. Should your users experience an interruption in their internet service, they’ll be able to access your page instead of being shown an error page. Another example is how Gatsby can be configured to lazy load images. An image is initially shown as a low fidelity preview until the full image is loaded, and then transitioned into the full fidelity version. + +![Base64 Encoded Images](./images/base64-images.jpg) + +Gatsby is a sound technological investment, it’s as future-proof as web technology comes. Let’s get Nerdy 🤓 + +- At its core, it’s built on top of React, just about the most popular modern JavaScript language / library / framework (explaining React is probably worthy of its own blog post!), which was built and is maintained by Facebook. +- Makes use of GraphQL to wrangle all your data sources. +- Only loads the critical HTML, CSS, data, and JavaScript so your site loads as fast as possible (this is called code and data splitting). +- Follows Google's [PRPL](https://developers.google.com/web/fundamentals/performance/prpl-pattern/) (Push, Render, Pre-cache, Lazy-load) architectural pattern which aims to boost your website's performance, especially on mobile devices. + +## The Limitations + +<pullquote citation="Rumpelstiltkin">All magic comes with a price</pullquote> + +In the case of Gatsby, at the moment the price of its magic is the time taken to build static versions of your web pages. In order to deploy content or source code changes to your site, the content has to be fetched, optimized, compiled and rendered into HTML. The time it takes to build your site tends to be proportional to the number of pages. + +If you’re publishing articles and content where updates are required to be frequent and instantaneous, like a media outlet that posts real-time updates for a live game of sport, Gatsby might not be the best solution for you. + +This being said, the time it takes to rebuild web pages is a constraint the Gatsby product team is aware of and is constantly improving. Incremental builds (having the smarts to only go through the whole shebang where it is required) is a focus of future improvements to the core product. + +## Conclusion + +That’s a wrap folks, thanks for reading. + +In summary, next time you’re looking to embark on the sheer adventure that is a web project, Gatsby makes for an excellent technology to arm yourself with along the way. + +Our key takeaways: + +- Gatsby is optimized for performance, it will make your site as fast as possible. As the future of the web continues to trend to live on mobile, this is more important than ever. +- Plugs into your existing Content Management System (CMS) - be it WordPress or Shopify. +- It utilizes the greatest modern web technology has to offer in a way that it is productive for your developers to worth with. diff --git a/docs/blog/author.yaml b/docs/blog/author.yaml index e32cd83fd2f0d..94d3a016b02d8 100644 --- a/docs/blog/author.yaml +++ b/docs/blog/author.yaml @@ -270,3 +270,7 @@ bio: Head of Learning at Gatsby, cyclist, animal lover, pie baker. avatar: avatars/marcy-sutton.jpg twitter: "@marcysutton" +- id: Allan Pooley + bio: Big half of Little & Big. Frontend Developer. Also makes stuff with wood. + avatar: avatars/allan-pooley.jpg + twitter: "@PooleyAllan" diff --git a/docs/blog/avatars/allan-pooley.jpg b/docs/blog/avatars/allan-pooley.jpg new file mode 100644 index 0000000000000..b055921d43554 Binary files /dev/null and b/docs/blog/avatars/allan-pooley.jpg differ
04349a042f9106a88b7a9054c0e1c4dc70469d1f
2020-11-18 03:34:56
Kyle Mathews
feat(gatsby): lazy bundle page components in dev server (#27884)
false
lazy bundle page components in dev server (#27884)
feat
diff --git a/.circleci/config.yml b/.circleci/config.yml index a9c4f595984ed..9165c3a643a16 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -117,6 +117,23 @@ aliases: - notify-status: condition: << parameters.nightly >> + e2e_tests_development_runtime_lazy_alias: + &e2e_tests_development_runtime_lazy_alias + <<: *e2e-executor + parameters: + nightly: + type: boolean + default: false + environment: + CYPRESS_PROJECT_ID: ihj5mz + CYPRESS_RECORD_KEY: 01acdce8-75bd-4280-9839-6cb215b2c84b + steps: + - e2e-test: + test_path: e2e-tests/lazy-development-runtime + skip_file_change_test: << parameters.nightly >> + - notify-status: + condition: << parameters.nightly >> + e2e_tests_gatsby-image_alias: &e2e_tests_gatsby-image_alias <<: *e2e-executor parameters: @@ -332,6 +349,13 @@ jobs: e2e_tests_development_runtime: <<: *e2e_tests_development_runtime_alias + e2e_tests_development_runtime_lazy_devjs: + <<: *e2e_tests_development_runtime_alias + environment: + GATSBY_EXPERIMENT_LAZY_DEVJS: true + CYPRESS_PROJECT_ID: ihj5mz + CYPRESS_RECORD_KEY: 01acdce8-75bd-4280-9839-6cb215b2c84b + e2e_tests_development_runtime_with_experimental_react: <<: *e2e_tests_development_runtime_alias @@ -605,6 +629,8 @@ workflows: <<: *e2e-test-workflow - e2e_tests_development_runtime: <<: *e2e-test-workflow + - e2e_tests_development_runtime_lazy_devjs: + <<: *e2e-test-workflow - e2e_tests_production_runtime: <<: *e2e-test-workflow - themes_e2e_tests_production_runtime: diff --git a/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader-lazy.js.snap b/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader-lazy.js.snap new file mode 100644 index 0000000000000..af5dac77ed9cf --- /dev/null +++ b/packages/gatsby/cache-dir/__tests__/__snapshots__/dev-loader-lazy.js.snap @@ -0,0 +1,20 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Dev loader loadPage should be successful when component can be loaded 1`] = ` +Object { + "component": Object { + "chunkName": "bar", + }, + "json": Object { + "pageContext": "something something", + }, + "page": Object { + "componentChunkName": "chunk", + "matchPath": undefined, + "path": "/mypage/", + "staticQueryHashes": Array [], + "webpackCompilationHash": "123", + }, + "staticQueryResults": Object {}, +} +`; diff --git a/packages/gatsby/cache-dir/__tests__/dev-loader-lazy.js b/packages/gatsby/cache-dir/__tests__/dev-loader-lazy.js new file mode 100644 index 0000000000000..dedcaa202dd0c --- /dev/null +++ b/packages/gatsby/cache-dir/__tests__/dev-loader-lazy.js @@ -0,0 +1,550 @@ +// This is by no means a full test file for loader.js so feel free to add more tests. +import mock from "xhr-mock" +import DevLoader from "../dev-loader" +import emitter from "../emitter" + +jest.mock(`../emitter`) +jest.mock(`../socketIo`, () => jest.fn()) + +jest.mock( + `$virtual/lazy-client-sync-requires`, + () => { + return { + lazyComponents: { + instance: { chunkName: `bar` }, + chunk: { chunkName: `bar` }, + }, + notVisitedPageComponents: { foo: true }, + } + }, + { virtual: true } +) + +describe(`Dev loader`, () => { + let originalBasePath + let originalPathPrefix + beforeEach(() => { + originalBasePath = global.__BASE_PATH__ + originalPathPrefix = global.__PATH_PREFIX__ + global.__BASE_PATH__ = `` + global.__PATH_PREFIX__ = `` + process.env = Object.assign(process.env, { + GATSBY_EXPERIMENT_LAZY_DEVJS: true, + }) + }) + + afterEach(() => { + global.__BASE_PATH__ = originalBasePath + global.__PATH_PREFIX__ = originalPathPrefix + process.env = Object.assign(process.env, { + GATSBY_EXPERIMENT_LAZY_DEVJS: false, + }) + }) + + describe(`loadPageDataJson`, () => { + let xhrCount + + /** + * @param {string} path + * @param {number} status + * @param {string|Object?} responseText + * @param {boolean?} json + */ + const mockPageData = (path, status, responseText = ``, json = false) => { + mock.get(`/page-data${path}/page-data.json`, (req, res) => { + xhrCount++ + if (json) { + res.header(`content-type`, `application/json`) + } + + return res + .status(status) + .body( + typeof responseText === `string` + ? responseText + : JSON.stringify(responseText) + ) + }) + } + + const defaultPayload = { + path: `/mypage/`, + } + + // replace the real XHR object with the mock XHR object before each test + beforeEach(() => { + xhrCount = 0 + mock.setup() + }) + + // put the real XHR object back and clear the mocks after each test + afterEach(() => { + mock.teardown() + }) + + it(`should return a pageData json on success`, async () => { + const devLoader = new DevLoader(null, []) + + mockPageData(`/mypage`, 200, defaultPayload, true) + + const expectation = { + status: `success`, + pagePath: `/mypage`, + payload: defaultPayload, + } + expect(await devLoader.loadPageDataJson(`/mypage/`)).toEqual(expectation) + expect(devLoader.pageDataDb.get(`/mypage`)).toEqual(expectation) + expect(xhrCount).toBe(1) + }) + + it(`should return a pageData json on success without contentType`, async () => { + const devLoader = new DevLoader(null, []) + + mockPageData(`/mypage`, 200, defaultPayload) + + const expectation = { + status: `success`, + pagePath: `/mypage`, + payload: defaultPayload, + } + expect(await devLoader.loadPageDataJson(`/mypage/`)).toEqual(expectation) + expect(devLoader.pageDataDb.get(`/mypage`)).toEqual(expectation) + expect(xhrCount).toBe(1) + }) + + it(`should return a pageData json with an empty compilation hash (gatsby develop)`, async () => { + const devLoader = new DevLoader(null, []) + + const payload = { ...defaultPayload, webpackCompilationHash: `` } + mockPageData(`/mypage`, 200, payload) + + const expectation = { + status: `success`, + pagePath: `/mypage`, + payload, + } + expect(await devLoader.loadPageDataJson(`/mypage/`)).toEqual(expectation) + expect(devLoader.pageDataDb.get(`/mypage`)).toEqual(expectation) + expect(xhrCount).toBe(1) + }) + + it(`should load a 404 page when page-path file is not a gatsby json`, async () => { + const devLoader = new DevLoader(null, []) + + const payload = { ...defaultPayload, path: `/404.html/` } + mockPageData(`/unknown-page`, 200, { random: `string` }, true) + mockPageData(`/404.html`, 200, payload, true) + + const expectation = { + status: `success`, + pagePath: `/404.html`, + notFound: true, + payload, + } + expect(await devLoader.loadPageDataJson(`/unknown-page/`)).toEqual( + expectation + ) + expect(devLoader.pageDataDb.get(`/unknown-page`)).toEqual(expectation) + expect(xhrCount).toBe(2) + }) + + it(`should load a 404 page when page-path file is not a json`, async () => { + const devLoader = new DevLoader(null, []) + + const payload = { ...defaultPayload, path: `/404.html/` } + mockPageData(`/unknown-page`, 200) + mockPageData(`/404.html`, 200, payload, true) + + const expectation = { + status: `success`, + pagePath: `/404.html`, + notFound: true, + payload, + } + expect(await devLoader.loadPageDataJson(`/unknown-page/`)).toEqual( + expectation + ) + expect(devLoader.pageDataDb.get(`/unknown-page`)).toEqual(expectation) + expect(xhrCount).toBe(2) + }) + + it(`should load a 404 page when path returns a 404`, async () => { + const devLoader = new DevLoader(null, []) + + const payload = { ...defaultPayload, path: `/404.html/` } + mockPageData(`/unknown-page`, 200) + mockPageData(`/404.html`, 200, payload, true) + + const expectation = { + status: `success`, + pagePath: `/404.html`, + notFound: true, + payload, + } + expect(await devLoader.loadPageDataJson(`/unknown-page/`)).toEqual( + expectation + ) + expect(devLoader.pageDataDb.get(`/unknown-page`)).toEqual(expectation) + expect(xhrCount).toBe(2) + }) + + it(`should return the dev-404-page when no 404 page can be found`, async () => { + const devLoader = new DevLoader(null, []) + + const payload = { ...defaultPayload, path: `/dev-404-page/` } + mockPageData(`/unknown-page`, 404) + mockPageData(`/404.html`, 404) + mockPageData(`/dev-404-page`, 200, payload, true) + + const expectation = { + status: `success`, + pagePath: `/dev-404-page`, + notFound: true, + payload, + } + expect(await devLoader.loadPageDataJson(`/unknown-page/`)).toEqual( + expectation + ) + + expect(devLoader.pageDataDb.get(`/unknown-page`)).toEqual({ + notFound: true, + pagePath: `/404.html`, + status: `error`, + }) + expect(xhrCount).toBe(3) + }) + + it(`should return an error when status is 500`, async () => { + const devLoader = new DevLoader(null, []) + + mockPageData(`/error-page`, 500) + + const expectation = { + status: `error`, + pagePath: `/error-page`, + } + expect(await devLoader.loadPageDataJson(`/error-page/`)).toEqual({ + status: `error`, + pagePath: `/dev-404-page`, + retries: 3, + }) + expect(devLoader.pageDataDb.get(`/error-page`)).toEqual(expectation) + expect(xhrCount).toBe(1) + }) + + it(`should retry 3 times before returning an error`, async () => { + const devLoader = new DevLoader(null, []) + + mockPageData(`/blocked-page`, 0) + + const expectation = { + status: `error`, + retries: 3, + pagePath: `/blocked-page`, + } + expect(await devLoader.loadPageDataJson(`/blocked-page/`)).toEqual({ + status: `error`, + retries: 3, + pagePath: `/dev-404-page`, + }) + expect(devLoader.pageDataDb.get(`/blocked-page`)).toEqual(expectation) + expect(xhrCount).toBe(4) + }) + + it(`should recover if we get 1 failure`, async () => { + const devLoader = new DevLoader(null, []) + const payload = { + path: `/blocked-page/`, + } + + let xhrCount = 0 + mock.get(`/page-data/blocked-page/page-data.json`, (req, res) => { + if (xhrCount++ === 0) { + return res.status(0).body(``) + } else { + res.header(`content-type`, `application/json`) + return res.status(200).body(JSON.stringify(payload)) + } + }) + + const expectation = { + status: `success`, + retries: 1, + pagePath: `/blocked-page`, + payload, + } + expect(await devLoader.loadPageDataJson(`/blocked-page/`)).toEqual( + expectation + ) + expect(devLoader.pageDataDb.get(`/blocked-page`)).toEqual(expectation) + expect(xhrCount).toBe(2) + }) + + it(`shouldn't load pageData multiple times`, async () => { + const devLoader = new DevLoader(null, []) + + mockPageData(`/mypage`, 200, defaultPayload, true) + + const expectation = await devLoader.loadPageDataJson(`/mypage/`) + expect(await devLoader.loadPageDataJson(`/mypage/`)).toBe(expectation) + expect(xhrCount).toBe(1) + }) + }) + + describe(`loadPage`, () => { + const createSyncRequires = components => { + return { + lazyComponents: components, + } + } + + let originalPathPrefix + + beforeEach(() => { + originalPathPrefix = global.__PATH_PREFIX__ + global.__PATH_PREFIX__ = `` + mock.setup() + mock.get(`/page-data/app-data.json`, (req, res) => + res + .status(200) + .header(`content-type`, `application/json`) + .body( + JSON.stringify({ + webpackCompilationHash: `123`, + }) + ) + ) + emitter.emit.mockReset() + }) + + afterEach(() => { + global.__PATH_PREFIX__ = originalPathPrefix + mock.teardown() + }) + + it(`should be successful when component can be loaded`, async () => { + const syncRequires = createSyncRequires({ + chunk: `instance`, + }) + const devLoader = new DevLoader(syncRequires, []) + const pageData = { + path: `/mypage/`, + componentChunkName: `chunk`, + result: { + pageContext: `something something`, + }, + staticQueryHashes: [], + } + devLoader.loadPageDataJson = jest.fn(() => + Promise.resolve({ + payload: pageData, + status: `success`, + }) + ) + + const expectation = await devLoader.loadPage(`/mypage/`) + expect(expectation).toMatchSnapshot() + expect(Object.keys(expectation)).toEqual([ + `component`, + `json`, + `page`, + `staticQueryResults`, + ]) + expect(devLoader.pageDb.get(`/mypage`)).toEqual( + expect.objectContaining({ + payload: expectation, + status: `success`, + }) + ) + expect(emitter.emit).toHaveBeenCalledTimes(1) + expect(emitter.emit).toHaveBeenCalledWith(`onPostLoadPageResources`, { + page: expectation, + pageResources: expectation, + }) + }) + + it(`should set not found on finalResult`, async () => { + const syncRequires = createSyncRequires({ + chunk: `instance`, + }) + const devLoader = new DevLoader(syncRequires, []) + const pageData = { + path: `/mypage/`, + componentChunkName: `chunk`, + } + devLoader.loadPageDataJson = jest.fn(() => + Promise.resolve({ + payload: pageData, + status: `success`, + notFound: true, + }) + ) + + await devLoader.loadPage(`/mypage/`) + const expectation = devLoader.pageDb.get(`/mypage`) + expect(expectation).toHaveProperty(`notFound`, true) + expect(emitter.emit).toHaveBeenCalledTimes(1) + expect(emitter.emit).toHaveBeenCalledWith(`onPostLoadPageResources`, { + page: expectation.payload, + pageResources: expectation.payload, + }) + }) + + it(`should return an error pageData contains an error`, async () => { + const syncRequires = createSyncRequires({ + chunk: `instance`, + }) + const devLoader = new DevLoader(syncRequires, []) + const pageData = { + path: `/mypage/`, + componentChunkName: `chunk`, + staticQueryHashes: [], + } + devLoader.loadPageDataJson = jest.fn(() => + Promise.resolve({ + payload: pageData, + status: `error`, + }) + ) + + expect(await devLoader.loadPage(`/mypage/`)).toEqual({ status: `error` }) + expect(devLoader.pageDb.size).toBe(0) + expect(emitter.emit).toHaveBeenCalledTimes(0) + }) + + it(`should log an error when 404 cannot be fetched`, async () => { + const devLoader = new DevLoader(null, []) + const consoleErrorSpy = jest.spyOn(console, `error`) + const defaultXHRMockErrorHandler = XMLHttpRequest.errorCallback + mock.error(() => {}) + + await devLoader.loadPage(`/404.html/`) + + expect(consoleErrorSpy).toHaveBeenCalledTimes(1) + expect(consoleErrorSpy).toHaveBeenCalledWith( + `404 page could not be found. Checkout https://www.gatsbyjs.org/docs/add-404-page/` + ) + + mock.error(defaultXHRMockErrorHandler) + consoleErrorSpy.mockRestore() + + expect(devLoader.pageDb.size).toBe(0) + expect(emitter.emit).toHaveBeenCalledTimes(0) + }) + + it(`should cache the result of loadPage`, async () => { + const syncRequires = createSyncRequires({ + chunk: `instance`, + }) + const devLoader = new DevLoader(syncRequires, []) + devLoader.loadPageDataJson = jest.fn(() => + Promise.resolve({ + payload: { + componentChunkName: `chunk`, + staticQueryHashes: [], + }, + status: `success`, + }) + ) + + const expectation = await devLoader.loadPage(`/mypage/`) + expect(await devLoader.loadPage(`/mypage/`)).toBe(expectation) + expect(devLoader.loadPageDataJson).toHaveBeenCalledTimes(1) + }) + }) + + describe(`loadPageSync`, () => { + it(`returns page resources when already fetched`, () => { + const devLoader = new DevLoader(null, []) + + devLoader.pageDb.set(`/mypage`, { payload: true }) + expect(devLoader.loadPageSync(`/mypage/`)).toBe(true) + }) + + it(`returns page resources when already fetched`, () => { + const devLoader = new DevLoader(null, []) + + expect(devLoader.loadPageSync(`/mypage/`)).toBeUndefined() + }) + }) + + describe(`prefetch`, () => { + const flushPromises = () => new Promise(resolve => setImmediate(resolve)) + + it(`shouldn't prefetch when shouldPrefetch is false`, () => { + const devLoader = new DevLoader(null, []) + devLoader.shouldPrefetch = jest.fn(() => false) + devLoader.doPrefetch = jest.fn() + devLoader.apiRunner = jest.fn() + + expect(devLoader.prefetch(`/mypath/`)).toBe(false) + expect(devLoader.shouldPrefetch).toHaveBeenCalledWith(`/mypath/`) + expect(devLoader.apiRunner).not.toHaveBeenCalled() + expect(devLoader.doPrefetch).not.toHaveBeenCalled() + }) + + it(`should trigger custom prefetch logic when core is disabled`, () => { + const devLoader = new DevLoader(null, []) + devLoader.shouldPrefetch = jest.fn(() => true) + devLoader.doPrefetch = jest.fn() + devLoader.apiRunner = jest.fn() + devLoader.prefetchDisabled = true + + expect(devLoader.prefetch(`/mypath/`)).toBe(false) + expect(devLoader.shouldPrefetch).toHaveBeenCalledWith(`/mypath/`) + expect(devLoader.apiRunner).toHaveBeenCalledWith(`onPrefetchPathname`, { + pathname: `/mypath/`, + }) + expect(devLoader.doPrefetch).not.toHaveBeenCalled() + }) + + it(`should prefetch when not yet triggered`, async () => { + jest.useFakeTimers() + const devLoader = new DevLoader(null, []) + devLoader.shouldPrefetch = jest.fn(() => true) + devLoader.apiRunner = jest.fn() + devLoader.doPrefetch = jest.fn(() => Promise.resolve({})) + + expect(devLoader.prefetch(`/mypath/`)).toBe(true) + + // wait for doPrefetchPromise + await flushPromises() + + expect(devLoader.apiRunner).toHaveBeenCalledWith(`onPrefetchPathname`, { + pathname: `/mypath/`, + }) + expect(devLoader.apiRunner).toHaveBeenNthCalledWith( + 2, + `onPostPrefetchPathname`, + { + pathname: `/mypath/`, + } + ) + }) + + it(`should only run apis once`, async () => { + const devLoader = new DevLoader(null, []) + devLoader.shouldPrefetch = jest.fn(() => true) + devLoader.apiRunner = jest.fn() + devLoader.doPrefetch = jest.fn(() => Promise.resolve({})) + + expect(devLoader.prefetch(`/mypath/`)).toBe(true) + expect(devLoader.prefetch(`/mypath/`)).toBe(true) + + // wait for doPrefetchPromise + await flushPromises() + + expect(devLoader.apiRunner).toHaveBeenCalledTimes(2) + expect(devLoader.apiRunner).toHaveBeenNthCalledWith( + 1, + `onPrefetchPathname`, + expect.anything() + ) + expect(devLoader.apiRunner).toHaveBeenNthCalledWith( + 2, + `onPostPrefetchPathname`, + expect.anything() + ) + }) + }) +}) diff --git a/packages/gatsby/cache-dir/app.js b/packages/gatsby/cache-dir/app.js index 629a3aeefbac2..9711e0d331920 100644 --- a/packages/gatsby/cache-dir/app.js +++ b/packages/gatsby/cache-dir/app.js @@ -8,18 +8,34 @@ import emitter from "./emitter" import { apiRunner, apiRunnerAsync } from "./api-runner-browser" import { setLoader, publicLoader } from "./loader" import DevLoader from "./dev-loader" -import syncRequires from "$virtual/sync-requires" // Generated during bootstrap import matchPaths from "$virtual/match-paths.json" window.___emitter = emitter -const loader = new DevLoader(syncRequires, matchPaths) +let pageComponentRequires +if (process.env.GATSBY_EXPERIMENT_LAZY_DEVJS) { + pageComponentRequires = require(`$virtual/lazy-client-sync-requires`) +} else { + pageComponentRequires = require(`$virtual/sync-requires`) +} + +const loader = new DevLoader(pageComponentRequires, matchPaths) setLoader(loader) loader.setApiRunner(apiRunner) window.___loader = publicLoader +// Do dummy dynamic import so the jsonp __webpack_require__.e is added to the commons.js +// bundle. This ensures hot reloading doesn't break when someone first adds +// a dynamic import. +// +// Without this, the runtime breaks with a +// "TypeError: __webpack_require__.e is not a function" +// error. +// eslint-disable-next-line +import("./dummy") + // Let the site/plugins run code very early. apiRunnerAsync(`onClientEntry`).then(() => { // Hook up the client to socket.io on server @@ -112,7 +128,7 @@ apiRunnerAsync(`onClientEntry`).then(() => { loader.loadPage(window.location.pathname), ]).then(() => { const preferDefault = m => (m && m.default) || m - let Root = preferDefault(require(`./root`)) + const Root = preferDefault(require(`./root`)) domReady(() => { renderer(<Root />, rootElement, () => { apiRunner(`onInitialClientRender`) diff --git a/packages/gatsby/cache-dir/dev-loader.js b/packages/gatsby/cache-dir/dev-loader.js index 5f11dcdf93975..42bc6d3754955 100644 --- a/packages/gatsby/cache-dir/dev-loader.js +++ b/packages/gatsby/cache-dir/dev-loader.js @@ -1,5 +1,6 @@ import { BaseLoader, PageResourceStatus } from "./loader" import { findPath } from "./find-path" + import getSocket from "./socketIo" import normalizePagePath from "./normalize-page-path" @@ -22,8 +23,15 @@ function mergePageEntry(cachedPage, newPageData) { class DevLoader extends BaseLoader { constructor(syncRequires, matchPaths) { - const loadComponent = chunkName => - Promise.resolve(syncRequires.components[chunkName]) + let loadComponent + if (process.env.GATSBY_EXPERIMENT_LAZY_DEVJS) { + const ensureComponentInBundle = require(`./ensure-page-component-in-bundle`) + loadComponent = chunkName => ensureComponentInBundle.default(chunkName) + } else { + loadComponent = chunkName => + Promise.resolve(syncRequires.components[chunkName]) + } + super(loadComponent, matchPaths) const socket = getSocket() @@ -40,7 +48,7 @@ class DevLoader extends BaseLoader { this.handleDirtyPageQueryMessage(msg) } }) - } else { + } else if (process.env.NODE_ENV !== `test`) { console.warn(`Could not get web socket`) } } diff --git a/packages/gatsby/cache-dir/dummy.js b/packages/gatsby/cache-dir/dummy.js new file mode 100644 index 0000000000000..8bcaa5e893b4a --- /dev/null +++ b/packages/gatsby/cache-dir/dummy.js @@ -0,0 +1,3 @@ +// Dummy file to work around a webpack hot reloading bug. +// eslint-disable-next-line +const a = 1 diff --git a/packages/gatsby/cache-dir/ensure-page-component-in-bundle.js b/packages/gatsby/cache-dir/ensure-page-component-in-bundle.js new file mode 100644 index 0000000000000..cafffbf3cb23e --- /dev/null +++ b/packages/gatsby/cache-dir/ensure-page-component-in-bundle.js @@ -0,0 +1,44 @@ +const didCallServer = new Set() + +const ensureComponentInBundle = chunkName => + new Promise((resolve, reject) => { + if (!didCallServer.has(chunkName)) { + const req = new XMLHttpRequest() + req.open(`post`, `/___client-page-visited`, true) + req.setRequestHeader(`Content-Type`, `application/json;charset=UTF-8`) + req.send(JSON.stringify({ chunkName })) + + didCallServer.add(chunkName) + } + + // Tell the server the user wants to visit this page + // to trigger it compiling the page component's code. + // + // Try for 10 seconds and then error. + let checkCount = 0 + const checkForBundle = () => { + checkCount += 1 + if (checkCount > 99) { + reject( + `Loading the page component ${chunkName} timed out after 5 seconds` + ) + } + // Check if the bundle is included and return. + if (process.env.NODE_ENV !== `test`) { + delete require.cache[ + require.resolve(`$virtual/lazy-client-sync-requires`) + ] + } + + const lazyRequires = require(`$virtual/lazy-client-sync-requires`) + if (lazyRequires.lazyComponents[chunkName]) { + resolve(lazyRequires.lazyComponents[chunkName]) + } else { + setTimeout(checkForBundle, 100) + } + } + + checkForBundle() + }) + +export default ensureComponentInBundle diff --git a/packages/gatsby/cache-dir/gatsby-browser-entry.js b/packages/gatsby/cache-dir/gatsby-browser-entry.js index 2e8ba2c6a3b1a..7a48aab4c87fd 100644 --- a/packages/gatsby/cache-dir/gatsby-browser-entry.js +++ b/packages/gatsby/cache-dir/gatsby-browser-entry.js @@ -11,16 +11,27 @@ import Link, { } from "gatsby-link" import { useScrollRestoration } from "gatsby-react-router-scroll" import PageRenderer from "./public-page-renderer" -import loader from "./loader" +import loader, { getStaticQueryResults } from "./loader" const prefetchPathname = loader.enqueue const StaticQueryContext = React.createContext({}) function StaticQueryDataRenderer({ staticQueryData, data, query, render }) { + let combinedStaticQueryData = staticQueryData + + if (process.env.GATSBY_EXPERIMENT_LAZY_DEVJS) { + // when we remove the flag, we don't need to combine them + // w/ changes @pieh made. + combinedStaticQueryData = { + ...getStaticQueryResults(), + ...staticQueryData, + } + } + const finalData = data ? data.data - : staticQueryData[query] && staticQueryData[query].data + : combinedStaticQueryData[query] && combinedStaticQueryData[query].data return ( <React.Fragment> @@ -71,15 +82,37 @@ useStaticQuery(graphql\`${query}\`); `) } - if (context?.[query]?.data) { - return context[query].data + let queryNotFound = false + if (process.env.GATSBY_EXPERIMENT_LAZY_DEVJS) { + // Merge data loaded via socket.io & xhr + // when we remove the flag, we don't need to combine them + // w/ changes @pieh made. + const staticQueryData = { + ...getStaticQueryResults(), + ...context, + } + if (staticQueryData[query]?.data) { + return staticQueryData[query].data + } else { + queryNotFound = true + } } else { + if (context[query]?.data) { + return context[query].data + } else { + queryNotFound = true + } + } + + if (queryNotFound) { throw new Error( `The result of this StaticQuery could not be fetched.\n\n` + `This is likely a bug in Gatsby and if refreshing the page does not fix it, ` + `please open an issue in https://github.com/gatsbyjs/gatsby/issues` ) } + + return null } StaticQuery.propTypes = { diff --git a/packages/gatsby/cache-dir/loader.js b/packages/gatsby/cache-dir/loader.js index 5a7d6ca771da7..2a37a88da6ded 100644 --- a/packages/gatsby/cache-dir/loader.js +++ b/packages/gatsby/cache-dir/loader.js @@ -141,6 +141,36 @@ export class BaseLoader { throw new Error(`not a valid pageData response`) } + // In development, check if the page is in the bundle yet. + if ( + process.env.NODE_ENV === `development` && + process.env.GATSBY_EXPERIMENT_LAZY_DEVJS + ) { + const ensureComponentInBundle = require(`./ensure-page-component-in-bundle`) + .default + if (process.env.NODE_ENV !== `test`) { + delete require.cache[ + require.resolve(`$virtual/lazy-client-sync-requires`) + ] + } + + const lazyRequires = require(`$virtual/lazy-client-sync-requires`) + if ( + lazyRequires.notVisitedPageComponents[ + jsonPayload.componentChunkName + ] + ) { + // Tell the server the user wants to visit this page + // to trigger it including the page component's code in the + // commons bundles. + ensureComponentInBundle(jsonPayload.componentChunkName) + + return new Promise(resolve => + setTimeout(() => resolve(this.fetchPageDataJson(loadObj)), 100) + ) + } + } + return Object.assign(loadObj, { status: PageResourceStatus.Success, payload: jsonPayload, diff --git a/packages/gatsby/cache-dir/navigation.js b/packages/gatsby/cache-dir/navigation.js index 632f7c2fc4a5b..3521b1359eef2 100644 --- a/packages/gatsby/cache-dir/navigation.js +++ b/packages/gatsby/cache-dir/navigation.js @@ -113,7 +113,6 @@ const navigate = (to, options = {}) => { }) } - console.log(`Site has changed on server. Reloading browser`) window.location = pathname } } diff --git a/packages/gatsby/src/bootstrap/__tests__/requires-writer.js b/packages/gatsby/src/bootstrap/__tests__/requires-writer.js index b82fa698dc0e6..7168c76e84cc3 100644 --- a/packages/gatsby/src/bootstrap/__tests__/requires-writer.js +++ b/packages/gatsby/src/bootstrap/__tests__/requires-writer.js @@ -30,7 +30,8 @@ describe(`requires-writer`, () => { const program = { directory: `/dir`, } - let originalDateNow = global.Date.now + const clientVisitedPages = new Set() + const originalDateNow = global.Date.now beforeEach(() => { global.Date.now = () => now @@ -61,6 +62,7 @@ describe(`requires-writer`, () => { await requiresWriter.writeAll({ pages, program, + clientVisitedPages, }) expect(spy).toBeCalledWith( @@ -108,6 +110,7 @@ describe(`requires-writer`, () => { await requiresWriter.writeAll({ pages, program, + clientVisitedPages, }) expect(matchPaths[0].path).toBe(pages.get(`/app/login/`).path) @@ -141,6 +144,7 @@ describe(`requires-writer`, () => { await requiresWriter.writeAll({ pages, program, + clientVisitedPages, }) expect(matchPaths[0].path).toBe(pages.get(`/app/clients/static`).path) @@ -165,6 +169,7 @@ describe(`requires-writer`, () => { await requiresWriter.writeAll({ pages, program, + clientVisitedPages, }) expect(matchPaths[0].path).toBe(pages.get(`/`).path) @@ -219,6 +224,7 @@ describe(`requires-writer`, () => { await requiresWriter.writeAll({ pages, program, + clientVisitedPages, }) expect(matchPaths.map(p => p.matchPath)).toMatchInlineSnapshot(` @@ -245,6 +251,7 @@ describe(`requires-writer`, () => { await requiresWriter.writeAll({ pages, program, + clientVisitedPages, }) const matchPathsForInvertedInput = matchPaths @@ -252,6 +259,7 @@ describe(`requires-writer`, () => { await requiresWriter.writeAll({ pages, program, + clientVisitedPages, }) expect(matchPathsForInvertedInput).toEqual(matchPaths) @@ -263,6 +271,7 @@ describe(`requires-writer`, () => { await requiresWriter.writeAll({ pages, program, + clientVisitedPages, }) const allMatchingPages = matchPaths diff --git a/packages/gatsby/src/bootstrap/requires-writer.ts b/packages/gatsby/src/bootstrap/requires-writer.ts index 7ca536b98abae..fe7c67241a9c9 100644 --- a/packages/gatsby/src/bootstrap/requires-writer.ts +++ b/packages/gatsby/src/bootstrap/requires-writer.ts @@ -162,11 +162,20 @@ const getMatchPaths = ( const createHash = ( matchPaths: Array<IGatsbyPageMatchPath>, - components: Array<IGatsbyPageComponent> + components: Array<IGatsbyPageComponent>, + cleanedClientVisitedPageComponents: Array<IGatsbyPageComponent>, + notVisitedPageComponents: Array<IGatsbyPageComponent> ): string => crypto .createHash(`md5`) - .update(JSON.stringify({ matchPaths, components })) + .update( + JSON.stringify({ + matchPaths, + components, + cleanedClientVisitedPageComponents, + notVisitedPageComponents, + }) + ) .digest(`hex`) // Write out pages information. @@ -176,7 +185,34 @@ export const writeAll = async (state: IGatsbyState): Promise<boolean> => { const matchPaths = getMatchPaths(pages) const components = getComponents(pages) - const newHash = createHash(matchPaths, components) + let cleanedClientVisitedPageComponents: Array<IGatsbyPageComponent> = components + let notVisitedPageComponents: Array<IGatsbyPageComponent> = components + if (process.env.GATSBY_EXPERIMENT_LAZY_DEVJS) { + const clientVisitedPageComponents = [...state.clientVisitedPages.values()] + // Remove any page components that no longer exist. + cleanedClientVisitedPageComponents = components.filter(component => + clientVisitedPageComponents.some( + pageComponentChunkName => + pageComponentChunkName === component.componentChunkName + ) + ) + + // Get list of page components that the user has _not_ visited. + notVisitedPageComponents = components.filter( + component => + // Filter out page components the user has visited. + !cleanedClientVisitedPageComponents.some( + c => c.componentChunkName === component.componentChunkName + ) + ) + } + + const newHash = createHash( + matchPaths, + components, + cleanedClientVisitedPageComponents, + notVisitedPageComponents + ) if (newHash === lastHash) { // Nothing changed. No need to rewrite files @@ -213,6 +249,35 @@ const preferDefault = m => (m && m.default) || m // file so we need a seperate one for each webpack instance. writeModule(`$virtual/ssr-sync-requires`, syncRequires) + if (process.env.GATSBY_EXPERIMENT_LAZY_DEVJS) { + // Create file with sync requires of visited page components files. + let lazyClientSyncRequires = `${hotImport} + // prefer default export if available + const preferDefault = m => (m && m.default) || m + \n\n` + lazyClientSyncRequires += `exports.lazyComponents = {\n${cleanedClientVisitedPageComponents + .map( + (c: IGatsbyPageComponent): string => + ` "${ + c.componentChunkName + }": ${hotMethod}(preferDefault(require("${joinPath(c.component)}")))` + ) + .join(`,\n`)} + }\n\n` + + // Add list of not visited components. + lazyClientSyncRequires += `exports.notVisitedPageComponents = {\n${notVisitedPageComponents + .map( + (c: IGatsbyPageComponent): string => ` "${c.componentChunkName}": true` + ) + .join(`,\n`)} + }\n\n` + + writeModule(`$virtual/lazy-client-sync-requires`, lazyClientSyncRequires) + } else { + writeModule(`$virtual/lazy-client-sync-requires`, ``) + } + // Create file with async requires of components/json files. let asyncRequires = `// prefer default export if available const preferDefault = m => (m && m.default) || m @@ -266,6 +331,17 @@ const preferDefault = m => (m && m.default) || m return true } +if (process.env.GATSBY_EXPERIMENT_LAZY_DEVJS) { + /** + * Start listening to CREATE_CLIENT_VISITED_PAGE events so we can rewrite + * files as required + */ + emitter.on(`CREATE_CLIENT_VISITED_PAGE`, (): void => { + reporter.pendingActivity({ id: `requires-writer` }) + writeAll(store.getState()) + }) +} + const debouncedWriteAll = _.debounce( async (): Promise<void> => { const activity = reporter.activityTimer(`write out requires`, { diff --git a/packages/gatsby/src/redux/actions/public.js b/packages/gatsby/src/redux/actions/public.js index 6b4e9d0bfd279..e3a4e77b43748 100644 --- a/packages/gatsby/src/redux/actions/public.js +++ b/packages/gatsby/src/redux/actions/public.js @@ -1391,4 +1391,17 @@ actions.removePageData = (id: PageDataRemove) => { } } +/** + * Record that a page was visited in the Client.. + * + * @param {Object} $0 + * @param {string} $0.id the chunkName for the page component. + */ +actions.createClientVisitedPage = (chunkName: string) => { + return { + type: `CREATE_CLIENT_VISITED_PAGE`, + payload: { componentChunkName: chunkName }, + } +} + module.exports = { actions } diff --git a/packages/gatsby/src/redux/reducers/client-visited-page.ts b/packages/gatsby/src/redux/reducers/client-visited-page.ts new file mode 100644 index 0000000000000..f7108cb777919 --- /dev/null +++ b/packages/gatsby/src/redux/reducers/client-visited-page.ts @@ -0,0 +1,29 @@ +import { + IGatsbyState, + IDeleteCacheAction, + ICreateClientVisitedPage, +} from "../types" + +// The develop server always wants these page components. +const defaults = new Set<string>() +defaults.add(`component---cache-dev-404-page-js`) +defaults.add(`component---src-pages-404-js`) + +export const clientVisitedPageReducer = ( + state: IGatsbyState["clientVisitedPages"] = new Set<string>(defaults), + action: IDeleteCacheAction | ICreateClientVisitedPage +): IGatsbyState["clientVisitedPages"] => { + switch (action.type) { + case `DELETE_CACHE`: + return new Set<string>(defaults) + + case `CREATE_CLIENT_VISITED_PAGE`: { + state.add(action.payload.componentChunkName) + + return state + } + + default: + return state + } +} diff --git a/packages/gatsby/src/redux/reducers/index.ts b/packages/gatsby/src/redux/reducers/index.ts index 218898bd67c60..8d22ed280416f 100644 --- a/packages/gatsby/src/redux/reducers/index.ts +++ b/packages/gatsby/src/redux/reducers/index.ts @@ -27,6 +27,7 @@ import { schemaCustomizationReducer } from "./schema-customization" import { inferenceMetadataReducer } from "./inference-metadata" import { staticQueriesByTemplateReducer } from "./static-queries-by-template" import { queriesReducer } from "./queries" +import { clientVisitedPageReducer } from "./client-visited-page" /** * @property exports.nodesTouched Set<string> @@ -43,6 +44,7 @@ export { configReducer as config, schemaReducer as schema, pagesReducer as pages, + clientVisitedPageReducer as clientVisitedPages, statusReducer as status, componentsReducer as components, staticQueryComponentsReducer as staticQueryComponents, diff --git a/packages/gatsby/src/redux/types.ts b/packages/gatsby/src/redux/types.ts index 95594f91cdddb..1b88ff5cef2d6 100644 --- a/packages/gatsby/src/redux/types.ts +++ b/packages/gatsby/src/redux/types.ts @@ -276,6 +276,7 @@ export interface IGatsbyState { } pageDataStats: Map<SystemPath, number> pageData: Map<Identifier, string> + clientVisitedPages: Set<string> } export interface ICachedReduxState { @@ -596,6 +597,12 @@ interface ISetSchemaComposerAction { payload: SchemaComposer<any> } +export interface ICreateClientVisitedPage { + type: `CREATE_CLIENT_VISITED_PAGE` + payload: IGatsbyPage + plugin?: IGatsbyPlugin +} + export interface ICreatePageAction { type: `CREATE_PAGE` payload: IGatsbyPage diff --git a/packages/gatsby/src/utils/page-data.ts b/packages/gatsby/src/utils/page-data.ts index 379f5e88d5ab3..9369824556925 100644 --- a/packages/gatsby/src/utils/page-data.ts +++ b/packages/gatsby/src/utils/page-data.ts @@ -80,6 +80,7 @@ export async function writePageData( `json`, `${pagePath.replace(/\//g, `_`)}.json` ) + const outputFilePath = getFilePath(publicDir, pagePath) const result = await fs.readJSON(inputFilePath) const body = { @@ -89,6 +90,7 @@ export async function writePageData( result, staticQueryHashes, } + const bodyStr = JSON.stringify(body) // transform asset size to kB (from bytes) to fit 64 bit to numbers const pageDataSize = Buffer.byteLength(bodyStr) / 1000 diff --git a/packages/gatsby/src/utils/start-server.ts b/packages/gatsby/src/utils/start-server.ts index 66f9073d95f9e..c71155388606c 100644 --- a/packages/gatsby/src/utils/start-server.ts +++ b/packages/gatsby/src/utils/start-server.ts @@ -157,6 +157,66 @@ Please do let us know how it goes (good, bad, or otherwise) at https://gatsby.de const compiler = webpack(devConfig) + if (process.env.GATSBY_EXPERIMENT_LAZY_DEVJS) { + const bodyParser = require(`body-parser`) + const { boundActionCreators } = require(`../redux/actions`) + const { createClientVisitedPage } = boundActionCreators + // Listen for the client marking a page as visited (meaning we need to + // compile its page component. + const chunkCalls = new Set() + app.post(`/___client-page-visited`, bodyParser.json(), (req, res, next) => { + if (req.body?.chunkName) { + // Ignore all but the first POST. + if (!chunkCalls.has(req.body.chunkName)) { + // Tell Gatsby there's a new page component to trigger it + // being added to the bundle. + createClientVisitedPage(req.body.chunkName) + + // Tell Gatsby to rewrite the page data for the pages + // owned by this component to update it to say that + // its page component is now part of the dev bundle. + // The pages will be rewritten after the webpack compilation + // finishes. + // + // Set a timeout to ensure the webpack compile of the new page + // component triggered above has time to go through. + setTimeout(() => { + // Find the component page for this componentChunkName. + const pages = store.getState().pages + function getByChunkName(map, searchValue): void | string { + for (const [key, value] of map.entries()) { + if (value.componentChunkName === searchValue) return key + } + + return undefined + } + const pageKey = getByChunkName(pages, req.body.chunkName) + + if (pageKey) { + const page = pages.get(pageKey) + if (page) { + store.dispatch({ + type: `ADD_PENDING_TEMPLATE_DATA_WRITE`, + payload: { + pages: [ + { + componentPath: page.component, + }, + ], + }, + }) + } + } + chunkCalls.add(req.body.chunkName) + }, 20) + } + res.send(`ok`) + } else { + next() + } + }) + } + /** * Set up the express app. **/
6641c0f24a8575d007cd73c3bffb3898fadeea4a
2019-03-19 04:41:31
Milos Lekovic
feat(showcase): add portfolio starter to the list of starters (#12645)
false
add portfolio starter to the list of starters (#12645)
feat
diff --git a/docs/starters.yml b/docs/starters.yml index 75aabeaa6e112..0ca3b804e052a 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -2066,3 +2066,12 @@ - 60 Handcrafted Components - 4 Customized Plugins - 3 Example Pages +- url: https://relaxed-bhaskara-5abd0a.netlify.com/ + repo: https://github.com/LekovicMilos/gatsby-starter-portfolio + description: Gatsby portfolio starter for creating quick portfolio + tags: + - Portfolio + - Showcase + features: + - Showcase of portfolio items + - About me page
faec9c83a9a6734ab7776529c2491321b827ec8b
2020-03-02 03:54:59
Rasid Redzic
chore(showcase): Add vaktija.eu to showcase (#21817)
false
Add vaktija.eu to showcase (#21817)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index 823fe6d975469..c27cd883995aa 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -9986,3 +9986,17 @@ - Marketing built_by: Corey Ward built_by_url: "http://www.coreyward.me/" +- title: Vaktija.eu + url: https://vaktija.eu + main_url: https://vaktija.eu + description: > + Vaktija.eu gives information about prayer times in germany. (Built with GatsbyJS. Fast in every way that matters.) + categories: + - App + - Community + - Nonprofit + - SEO + - Web Development + built_by: Rašid Redžić + built_by_url: https://rasidre.com/ + featured: false
c2ffc076c9d520db766d82bbc25f5b3d7b195a80
2019-02-06 04:34:51
Guayo Mena
fix(docs): add example for pageContext usage within a page (#11580)
false
add example for pageContext usage within a page (#11580)
fix
diff --git a/docs/docs/creating-and-modifying-pages.md b/docs/docs/creating-and-modifying-pages.md index 166379d0ddf85..9e1b3aa6a2b79 100644 --- a/docs/docs/creating-and-modifying-pages.md +++ b/docs/docs/creating-and-modifying-pages.md @@ -152,3 +152,15 @@ exports.onCreatePage = ({ page, actions }) => { }) } ``` + +On your pages and templates, you can access your context via the prop `pageContext` like this: + +```jsx +import React from "react" + +const Page = ({ pageContext }) => { + return <div>{pageContext.house}</div> +} + +export default Page +```
15335e171ba00715690b8b67937e24ffcb0d2ca3
2019-10-04 15:30:13
LOLDeveloper
chore(gatsby-cli): friendly docs for gatsby-cli new command (#17549)
false
friendly docs for gatsby-cli new command (#17549)
chore
diff --git a/docs/docs/gatsby-cli.md b/docs/docs/gatsby-cli.md index f8d780449b901..0a32d102e4a0c 100644 --- a/docs/docs/gatsby-cli.md +++ b/docs/docs/gatsby-cli.md @@ -1,14 +1,13 @@ --- title: Commands (Gatsby CLI) +tableOfContentsDepth: 2 --- -# gatsby-cli - The Gatsby command line tool (CLI) is the main entry point for getting up and running with a Gatsby application and for using functionality including like running a development server and building out your Gatsby application for deployment. _We provide similar documentation available with the gatsby-cli [README](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-cli/README.md), and our [cheat sheet](/docs/cheat-sheet/) has all the top CLI commands ready to print out._ -## How to use +## How to use gatsby-cli The Gatsby CLI (`gatsby-cli`) is packaged as an executable that can be used globally. The Gatsby CLI is available via [npm](https://www.npmjs.com/) and should be installed globally by running `npm install -g gatsby-cli` to use it locally. @@ -24,12 +23,50 @@ You can also use the `package.json` script variant of these commands, typically } ``` +## API commands + ### `new` -`gatsby new gatsby-site` +``` +gatsby new [<site-name> [<starter-url>]] +``` + +#### Arguments + +| Argument | Description | +| ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| site-name | Your Gatsby site name, which is also used to create a project directory. | +| starter-url | A Gatsby starter URL or local file path. Defaults to [gatsby-starter-default](https://github.com/gatsbyjs/gatsby-starter-default); see the [Gatsby starters](/docs/gatsby-starters/) docs for more information. | + +> Note: The `site-name` should only consist of letters and numbers. If you specify a `.`, `./` or a `<space>` in the name, `gatsby new` will throw an error. + +#### Examples + +- Create a Gatsby site named `my-awesome-site` using the default starter: + +```shell +gatsby new my-awesome-site +``` + +- Create a Gatsby site named `my-awesome-blog-site`, using [gatsby-starter-blog](https://www.gatsbyjs.org/starters/gatsbyjs/gatsby-starter-blog/): + +```shell +gatsby new my-awesome-blog-site https://github.com/gatsbyjs/gatsby-starter-blog +``` + +- If you leave out both of the arguments, the CLI will run an interactive shell asking for these inputs: + +```shell +gatsby new +? What is your project called? › my-gatsby-project +? What starter would you like to use? › - Use arrow-keys. Return to submit. +❯ gatsby-starter-default + gatsby-starter-hello-world + gatsby-starter-blog + (Use a different starter) +``` -See the [Gatsby starters docs](/docs/starters/) -for a comprehensive list of starters to get started with Gatsby. +See the [Gatsby starters docs](https://www.gatsbyjs.org/docs/gatsby-starters/) for more details. ### `develop` @@ -165,7 +202,7 @@ You can type in a command, such as one of these: When combined with the [GraphQL explorer](/docs/introducing-graphiql/), these REPL commands could be very helpful for understanding your Gatsby site's data. -See the Gatsby REPL documentation [here](/docs/gatsby-repl/). +For more information, check out the [Gatsby REPL documentation](/docs/gatsby-repl/). ### Disabling colored output diff --git a/packages/gatsby-cli/README.md b/packages/gatsby-cli/README.md index f801d57a00f9e..e9757f5450ab9 100644 --- a/packages/gatsby-cli/README.md +++ b/packages/gatsby-cli/README.md @@ -19,7 +19,7 @@ You can also use the `package.json` script variant of these commands, typically } ``` -## Commands +## CLI Commands 1. [new](#new) 2. [develop](#develop) @@ -32,10 +32,44 @@ You can also use the `package.json` script variant of these commands, typically ### `new` -`gatsby new gatsby-site` +``` +gatsby new [<site-name> [<starter-url>]] +``` + +| Argument | Description | +| ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| site-name | Your Gatsby site name, which is also used to create the project directory. | +| starter-url | A Gatsby starter URL or local file path. Defaults to [gatsby-starter-default](https://github.com/gatsbyjs/gatsby-starter-default); see the [Gatsby starters](/docs/gatsby-starters/) docs for more information. | + +> Note: The `site-name` should only consist of letters and numbers. If you specify a `.`, `./` or a `<space>` in the name, `gatsby new` will throw an error. + +#### Examples + +- Create a Gatsby site named `my-awesome-blog-site`, using [gatsby-starter-blog](https://www.gatsbyjs.org/starters/gatsbyjs/gatsby-starter-blog/): + +```bash +gatsby new my-awesome-site +``` + +- Create a Gatsby site named `my-awesome-blog-site`, using [gatsby-starter-blog](https://www.gatsbyjs.org/starters/gatsbyjs/gatsby-starter-blog/): + +```bash +gatsby new my-awesome-blog-site https://github.com/gatsbyjs/gatsby-starter-blog +``` + +- If you leave out both of the arguments, the CLI will run an interactive shell asking for these inputs: + +```bash +gatsby new +? What is your project called? › my-gatsby-project +? What starter would you like to use? › - Use arrow-keys. Return to submit. +❯ gatsby-starter-default + gatsby-starter-hello-world + gatsby-starter-blog + (Use a different starter) +``` -See the [Gatsby starters docs](https://www.gatsbyjs.org/docs/gatsby-starters/) -for more. +See the [Gatsby starters docs](https://www.gatsbyjs.org/docs/gatsby-starters/) for more details. ### `develop`
41c90973c680549f4dbffeb2d32b53b95060629c
2019-10-16 22:51:33
Tyler Barnes
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-plugin-netlify/CHANGELOG.md b/packages/gatsby-plugin-netlify/CHANGELOG.md index 7100ac8c2aec4..e8f69b694120d 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.22](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.22) (2019-10-16) + +### Bug Fixes + +- **gatsby-plugin-netlify:** cast `status` to string ([#18726](https://github.com/gatsbyjs/gatsby/issues/18726)) ([3c8623c](https://github.com/gatsbyjs/gatsby/commit/3c8623c)) + ## [2.1.21](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.21) (2019-10-14) **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 84d0abcd1f930..06e07f8d1a040 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.21", + "version": "2.1.22", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md index 837b54e0a0431..5b02129122419 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.2.32](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.32) (2019-10-16) + +**Note:** Version bump only for package gatsby-plugin-sharp + ## [2.2.31](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.31) (2019-10-14) ### Bug Fixes diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index 1754d32af6ef7..ecc5bde7c58c0 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.31", + "version": "2.2.32", "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 aca6bd8b013f6..e4cef2d07de2e 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/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.1.50](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.50) (2019-10-16) + +**Note:** Version bump only for package gatsby-source-contentful + ## [2.1.49](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.49) (2019-10-14) **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 92aa4bf411dda..02060bd29eab7 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.49", + "version": "2.1.50", "author": "Marcus Ericsson <[email protected]> (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "contentful": "^6.1.3", "deep-map": "^1.5.0", "fs-extra": "^8.1.0", - "gatsby-plugin-sharp": "^2.2.31", + "gatsby-plugin-sharp": "^2.2.32", "gatsby-source-filesystem": "^2.1.33", "is-online": "^8.2.0", "json-stringify-safe": "^5.0.1", diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md index 87415655cca4c..3825728e1cc1b 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.1.36](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.36) (2019-10-16) + +**Note:** Version bump only for package gatsby-transformer-sqip + ## [2.1.35](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.1.35) (2019-10-14) **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 90cdf0bef8734..33dcf82f8ad99 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.35", + "version": "2.1.36", "author": "Benedikt Rötsch <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,7 +10,7 @@ "@babel/runtime": "^7.6.3", "bluebird": "^3.7.0", "fs-extra": "^8.1.0", - "gatsby-plugin-sharp": "^2.2.31", + "gatsby-plugin-sharp": "^2.2.32", "md5-file": "^4.0.0", "mini-svg-data-uri": "^1.1.3", "p-queue": "^2.4.2",
c3427e2a9e4cc22eab0a53ff40eb51a74a4ae0dd
2019-04-19 00:52:57
Sidhartha Chatterjee
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-cypress/CHANGELOG.md b/packages/gatsby-cypress/CHANGELOG.md index 3032c428b5ff1..2f09c61eb20ff 100644 --- a/packages/gatsby-cypress/CHANGELOG.md +++ b/packages/gatsby-cypress/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.8](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cypress/compare/[email protected]@0.1.8) (2019-04-18) + +### Bug Fixes + +- **gatsby-cypress:** use correct links in package json ([#13458](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cypress/issues/13458)) ([f55cf46](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cypress/commit/f55cf46)), closes [#13457](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cypress/issues/13457) + ## [0.1.7](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cypress-commands/compare/[email protected]@0.1.7) (2019-03-18) **Note:** Version bump only for package gatsby-cypress diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json index fec41da44ea8f..5437e365fc729 100644 --- a/packages/gatsby-cypress/package.json +++ b/packages/gatsby-cypress/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-cypress", - "version": "0.1.7", + "version": "0.1.8", "description": "Cypress tools for Gatsby projects", "main": "index.js", "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cypress", diff --git a/packages/gatsby-plugin-netlify/CHANGELOG.md b/packages/gatsby-plugin-netlify/CHANGELOG.md index 9a419e1f3a796..caa722a3e1d00 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.0.14](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify/compare/[email protected]@2.0.14) (2019-04-18) + +### Bug Fixes + +- **gatsby-plugin-netlify:** Add Referrer-Policy to security headers ([#13452](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify/issues/13452)) ([871923a](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify/commit/871923a)) + ## [2.0.13](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify/compare/[email protected]@2.0.13) (2019-03-15) **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 cf2c2e669f1cb..df945cffad60d 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.0.13", + "version": "2.0.14", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-mongodb/CHANGELOG.md b/packages/gatsby-source-mongodb/CHANGELOG.md index 3628fba2dc0d0..1bcb401ec703e 100644 --- a/packages/gatsby-source-mongodb/CHANGELOG.md +++ b/packages/gatsby-source-mongodb/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.0.18](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-mongodb/compare/[email protected]@2.0.18) (2019-04-18) + +**Note:** Version bump only for package gatsby-source-mongodb + ## [2.0.17](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-mongodb/compare/[email protected]@2.0.17) (2019-04-08) ### Features diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json index c23b553c09820..1d138136b98a6 100644 --- a/packages/gatsby-source-mongodb/package.json +++ b/packages/gatsby-source-mongodb/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-mongodb", "description": "Source plugin for pulling data into Gatsby from MongoDB collections", - "version": "2.0.17", + "version": "2.0.18", "author": "[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 d1cb07714556c..d27e69ed2e2be 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.0.32](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.32) (2019-04-18) + +**Note:** Version bump only for package gatsby-transformer-sqip + ## [2.0.31](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.31) (2019-04-17) **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 a94772fe6c817..63476a3a98c7c 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.0.31", + "version": "2.0.32", "author": "Benedikt Rötsch <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index d7f8183c6bcbd..785ce812d2c8d 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.3.25](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.25) (2019-04-18) + +**Note:** Version bump only for package gatsby + ## [2.3.24](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.24) (2019-04-17) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 36cb9ee28615c..65d0f270042e5 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.24", + "version": "2.3.25", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js"
72d795c6919efb77bbde40e41056d26766be38f1
2021-06-07 18:11:57
Lennart
chore(gatsby): Bump `PRESERVE_WEBPACK_CACHE` flag to 20% (#31803)
false
Bump `PRESERVE_WEBPACK_CACHE` flag to 20% (#31803)
chore
diff --git a/packages/gatsby/src/utils/flags.ts b/packages/gatsby/src/utils/flags.ts index f3daad704298c..448f067b860f3 100644 --- a/packages/gatsby/src/utils/flags.ts +++ b/packages/gatsby/src/utils/flags.ts @@ -144,7 +144,13 @@ const activeFlags: Array<IFlag> = [ experimental: false, description: `Use webpack's persistent caching and don't delete webpack's cache when changing gatsby-node.js & gatsby-config.js files.`, umbrellaIssue: `https://gatsby.dev/cache-clearing-feedback`, - testFitness: (): fitnessEnum => true, + testFitness: (): fitnessEnum => { + if (sampleSiteForExperiment(`PRESERVE_WEBPACK_CACHE`, 20)) { + return `OPT_IN` + } else { + return true + } + }, }, { name: `PRESERVE_FILE_DOWNLOAD_CACHE`,
f91f4771e633cf0e566df4d7cae1279431d42bbe
2022-05-23 14:58:05
Ty Hopp
feat(gatsby-script): Duplicate script callbacks if no injected script callbacks (#35717)
false
Duplicate script callbacks if no injected script callbacks (#35717)
feat
diff --git a/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-duplicate-scripts.js b/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-duplicate-scripts.js index 3f06a3d2567ae..e587a881c3464 100644 --- a/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-duplicate-scripts.js +++ b/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-duplicate-scripts.js @@ -1,6 +1,6 @@ describe(`duplicate scripts`, () => { beforeEach(() => { - cy.visit(`/gatsby-script-duplicate-scripts/`) + cy.visit(`/gatsby-script-duplicate-scripts/`).waitForRouteChange() }) it(`should execute load callbacks of duplicate scripts`, () => { @@ -14,4 +14,25 @@ describe(`duplicate scripts`, () => { cy.get(`[data-on-error-result=duplicate-2]`).should(`have.length`, 1) cy.get(`[data-on-error-result=duplicate-3]`).should(`have.length`, 1) }) + + it(`should execute load callbacks even if the first script has no declared load callback`, () => { + cy.get(`[data-on-load-result=duplicate-first-script-no-callback]`).should( + `have.length`, + 1 + ) + cy.get(`[data-on-load-result=duplicate-first-script-no-callback-2]`).should( + `have.length`, + 1 + ) + }) + + it(`should execute error callbacks even if the first script has no declared error callback`, () => { + cy.get(`[data-on-error-result=duplicate-first-script-no-callback]`).should( + `have.length`, + 1 + ) + cy.get( + `[data-on-error-result=duplicate-first-script-no-callback-2]` + ).should(`have.length`, 1) + }) }) diff --git a/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-inline-scripts.js b/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-inline-scripts.js index c729ae2cead10..54cedb9d2ff7c 100644 --- a/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-inline-scripts.js +++ b/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-inline-scripts.js @@ -26,7 +26,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { describe(`inline scripts set via ${descriptor}`, () => { describe(`using the post-hydrate strategy`, () => { it(`should execute successfully`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord( `post-hydrate-${inlineScriptType}`, @@ -36,7 +36,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load after the framework bundle has loaded`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() // Assert framework is loaded before inline script is executed cy.getRecord( @@ -53,7 +53,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { describe(`using the idle strategy`, () => { it(`should execute successfully`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(`idle-${inlineScriptType}`, `success`, true).should( `equal`, @@ -62,7 +62,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load after other strategies`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(`idle-${inlineScriptType}`, markRecord.executeStart).then( dangerouslySetExecuteStart => { @@ -77,7 +77,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { describe(`when navigation occurs`, () => { it(`should load only once on initial page load`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`table[id=script-mark-records] tbody`) .children() @@ -112,7 +112,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load only once after anchor link navigation`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`a[id=anchor-link-back-to-index]`).click() cy.url().should(`contain`, page.navigation) cy.get(`a[href="${page.target}"][id=anchor-link]`).click() @@ -153,7 +153,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load only once after Gatsby link navigation`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`a[id=gatsby-link-back-to-index]`).click() cy.get(`a[href="${page.target}"][id=gatsby-link]`).click() @@ -172,7 +172,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load only once if the page is revisited via browser back/forward buttons after Gatsby link navigation`, () => { - cy.visit(page.navigation) + cy.visit(page.navigation).waitForRouteChange() cy.get(`a[href="${page.target}"][id=gatsby-link]`).click() cy.go(`back`) cy.go(`forward`) diff --git a/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-scripts-with-sources.js b/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-scripts-with-sources.js index b087868bd8907..71414162a02ae 100644 --- a/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-scripts-with-sources.js +++ b/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-scripts-with-sources.js @@ -9,12 +9,12 @@ const page = { describe(`scripts with sources`, () => { describe(`using the post-hydrate strategy`, () => { it(`should load successfully`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.three, `success`, true).should(`equal`, `true`) }) it(`should load after the framework bundle has loaded`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() // Assert framework is loaded before three starts loading cy.getRecord(script.three, resourceRecord.fetchStart).then( @@ -28,26 +28,26 @@ describe(`scripts with sources`, () => { }) it(`should call an on load callback once the script has loaded`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.three, resourceRecord.responseEnd).then(() => { cy.get(`[data-on-load-result=post-hydrate]`) }) }) it(`should call an on error callback if an error occurred`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`[data-on-error-result=post-hydrate]`) }) }) describe(`using the idle strategy`, () => { it(`should load successfully`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.marked, `success`, true).should(`equal`, `true`) }) it(`should load after other strategies`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.marked, resourceRecord.fetchStart).then( markedFetchStart => { @@ -60,21 +60,21 @@ describe(`scripts with sources`, () => { }) it(`should call an on load callback once the script has loaded`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.marked, resourceRecord.responseEnd).then(() => { cy.get(`[data-on-load-result=idle]`) }) }) it(`should call an on error callback if an error occurred`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`[data-on-error-result=idle]`) }) }) describe(`when navigation occurs`, () => { it(`should load only once on initial page load`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`table[id=script-resource-records] tbody`) .children() @@ -87,7 +87,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once after the page is refreshed`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.reload() cy.get(`table[id=script-resource-records] tbody`) @@ -101,7 +101,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once after anchor link navigation`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`a[id=anchor-link-back-to-index]`).click() cy.url().should(`contain`, page.navigation) cy.get(`a[href="${page.target}"][id=anchor-link]`).click() @@ -117,7 +117,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once if the page is revisited via browser back/forward buttons after anchor link navigation`, () => { - cy.visit(page.navigation) + cy.visit(page.navigation).waitForRouteChange() cy.get(`a[href="${page.target}"][id=anchor-link]`).click() cy.go(`back`) cy.go(`forward`) @@ -133,7 +133,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once after Gatsby link navigation`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`a[id=gatsby-link-back-to-index]`).click() cy.get(`a[href="${page.target}"][id=gatsby-link]`).click() @@ -148,7 +148,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once if the page is revisited via browser back/forward buttons after Gatsby link navigation`, () => { - cy.visit(page.navigation) + cy.visit(page.navigation).waitForRouteChange() cy.get(`a[href="${page.target}"][id=gatsby-link]`).click() cy.go(`back`) cy.go(`forward`) diff --git a/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-ssr-browser-apis.js b/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-ssr-browser-apis.js index 2a470190bd8f7..61a729fe76a8d 100644 --- a/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-ssr-browser-apis.js +++ b/e2e-tests/development-runtime/cypress/integration/gatsby-script/gatsby-script-ssr-browser-apis.js @@ -3,13 +3,13 @@ import { script } from "../../../gatsby-script-scripts" const page = `/gatsby-script-ssr-browser-apis/` it(`scripts load successfully when used via wrapPageElement`, () => { - cy.visit(page) + cy.visit(page).waitForRouteChange() cy.getRecord(script.three, `success`, true).should(`equal`, `true`) cy.getRecord(script.marked, `success`, true).should(`equal`, `true`) }) it(`scripts load successfully when used via wrapRootElement`, () => { - cy.visit(page) + cy.visit(page).waitForRouteChange() cy.getRecord(script.jQuery, `success`, true).should(`equal`, `true`) cy.getRecord(script.popper, `success`, true).should(`equal`, `true`) }) diff --git a/e2e-tests/development-runtime/src/pages/gatsby-script-duplicate-scripts.js b/e2e-tests/development-runtime/src/pages/gatsby-script-duplicate-scripts.js index 8cb0706f59a2d..f34c2110817f5 100644 --- a/e2e-tests/development-runtime/src/pages/gatsby-script-duplicate-scripts.js +++ b/e2e-tests/development-runtime/src/pages/gatsby-script-duplicate-scripts.js @@ -6,6 +6,12 @@ import { onLoad, onError } from "../utils/gatsby-script-callbacks" const DuplicateScripts = () => { const [onLoadScriptLoaded, setOnLoadScriptLoaded] = useState(false) const [onErrorScriptLoaded, setOnErrorScriptLoaded] = useState(false) + const [secondOnLoadScriptLoaded, setSecondOnLoadScriptLoaded] = useState( + false + ) + const [secondOnErrorScriptLoaded, setSecondOnErrorScriptLoaded] = useState( + false + ) return ( <main> @@ -54,6 +60,40 @@ const DuplicateScripts = () => { }} /> )} + + <Script src={scripts.three} /> + <Script + src={scripts.three} + onLoad={() => { + onLoad(`duplicate-first-script-no-callback`) + setSecondOnLoadScriptLoaded(true) + }} + /> + {secondOnLoadScriptLoaded && ( + <Script + src={scripts.three} + onLoad={() => { + onLoad(`duplicate-first-script-no-callback-2`) + }} + /> + )} + + <Script src="/other-non-existent-script.js" /> + <Script + src="/other-non-existent-script.js" + onError={() => { + onError(`duplicate-first-script-no-callback`) + setSecondOnErrorScriptLoaded(true) + }} + /> + {secondOnErrorScriptLoaded && ( + <Script + src="/other-non-existent-script.js" + onError={() => { + onError(`duplicate-first-script-no-callback-2`) + }} + /> + )} </main> ) } diff --git a/e2e-tests/production-runtime/cypress/integration/gatsby-script-duplicate-scripts.js b/e2e-tests/production-runtime/cypress/integration/gatsby-script-duplicate-scripts.js index 2d981e709baf4..e160e779f0f7b 100644 --- a/e2e-tests/production-runtime/cypress/integration/gatsby-script-duplicate-scripts.js +++ b/e2e-tests/production-runtime/cypress/integration/gatsby-script-duplicate-scripts.js @@ -2,7 +2,7 @@ Cypress.config(`defaultCommandTimeout`, 30000) // Since we're asserting network describe(`duplicate scripts`, () => { beforeEach(() => { - cy.visit(`/gatsby-script-duplicate-scripts/`) + cy.visit(`/gatsby-script-duplicate-scripts/`).waitForRouteChange() }) it(`should execute load callbacks of duplicate scripts`, () => { diff --git a/e2e-tests/production-runtime/cypress/integration/gatsby-script-inline-scripts.js b/e2e-tests/production-runtime/cypress/integration/gatsby-script-inline-scripts.js index d4e1840086908..a4009fc66e734 100644 --- a/e2e-tests/production-runtime/cypress/integration/gatsby-script-inline-scripts.js +++ b/e2e-tests/production-runtime/cypress/integration/gatsby-script-inline-scripts.js @@ -26,7 +26,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { describe(`inline scripts set via ${descriptor}`, () => { describe(`using the post-hydrate strategy`, () => { it(`should execute successfully`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord( `post-hydrate-${inlineScriptType}`, @@ -36,7 +36,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load after the framework bundle has loaded`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() // Assert framework is loaded before inline script is executed cy.getRecord( @@ -53,7 +53,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { describe(`using the idle strategy`, () => { it(`should execute successfully`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(`idle-${inlineScriptType}`, `success`, true).should( `equal`, @@ -62,7 +62,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load after other strategies`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(`idle-${inlineScriptType}`, markRecord.executeStart).then( dangerouslySetExecuteStart => { @@ -77,7 +77,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { describe(`when navigation occurs`, () => { it(`should load only once on initial page load`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`table[id=script-mark-records] tbody`) .children() @@ -112,7 +112,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load only once after anchor link navigation`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`a[id=anchor-link-back-to-index]`).click() cy.url().should(`contain`, page.navigation) cy.get(`a[href="${page.target}"][id=anchor-link]`).click() @@ -153,7 +153,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load only once after Gatsby link navigation`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`a[id=gatsby-link-back-to-index]`).click() cy.get(`a[href="${page.target}"][id=gatsby-link]`).click() @@ -172,7 +172,7 @@ for (const { descriptor, inlineScriptType } of typesOfInlineScripts) { }) it(`should load only once if the page is revisited via browser back/forward buttons after Gatsby link navigation`, () => { - cy.visit(page.navigation) + cy.visit(page.navigation).waitForRouteChange() cy.get(`a[href="${page.target}"][id=gatsby-link]`).click() cy.go(`back`) cy.go(`forward`) diff --git a/e2e-tests/production-runtime/cypress/integration/gatsby-script-scripts-with-sources.js b/e2e-tests/production-runtime/cypress/integration/gatsby-script-scripts-with-sources.js index bad93a3356818..c1c34ba9c68a8 100644 --- a/e2e-tests/production-runtime/cypress/integration/gatsby-script-scripts-with-sources.js +++ b/e2e-tests/production-runtime/cypress/integration/gatsby-script-scripts-with-sources.js @@ -11,12 +11,12 @@ const page = { describe(`scripts with sources`, () => { describe(`using the post-hydrate strategy`, () => { it(`should load successfully`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.three, `success`, true).should(`equal`, `true`) }) it(`should load after the framework bundle has loaded`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() // Assert framework is loaded before three starts loading cy.getRecord(script.three, resourceRecord.fetchStart).then( @@ -30,26 +30,26 @@ describe(`scripts with sources`, () => { }) it(`should call an on load callback once the script has loaded`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.three, resourceRecord.responseEnd).then(() => { cy.get(`[data-on-load-result=post-hydrate]`) }) }) it(`should call an on error callback if an error occurred`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`[data-on-error-result=post-hydrate]`) }) }) describe(`using the idle strategy`, () => { it(`should load successfully`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.marked, `success`, true).should(`equal`, `true`) }) it(`should load after other strategies`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.marked, resourceRecord.fetchStart).then( markedFetchStart => { @@ -62,21 +62,21 @@ describe(`scripts with sources`, () => { }) it(`should call an on load callback once the script has loaded`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.getRecord(script.marked, resourceRecord.responseEnd).then(() => { cy.get(`[data-on-load-result=idle]`) }) }) it(`should call an on error callback if an error occurred`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`[data-on-error-result=idle]`) }) }) describe(`when navigation occurs`, () => { it(`should load only once on initial page load`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`table[id=script-resource-records] tbody`) .children() @@ -89,7 +89,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once after the page is refreshed`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.reload() cy.get(`table[id=script-resource-records] tbody`) @@ -103,7 +103,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once after anchor link navigation`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`table[id=script-resource-records] tbody`) .children() .should(`have.length`, 5) @@ -123,7 +123,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once if the page is revisited via browser back/forward buttons after anchor link navigation`, () => { - cy.visit(page.navigation) + cy.visit(page.navigation).waitForRouteChange() cy.get(`a[href="${page.target}"][id=anchor-link]`).click() cy.go(`back`) cy.go(`forward`) @@ -139,7 +139,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once after Gatsby link navigation`, () => { - cy.visit(page.target) + cy.visit(page.target).waitForRouteChange() cy.get(`a[id=gatsby-link-back-to-index]`).click() cy.get(`a[href="${page.target}"][id=gatsby-link]`).click() @@ -154,7 +154,7 @@ describe(`scripts with sources`, () => { }) it(`should load only once if the page is revisited via browser back/forward buttons after Gatsby link navigation`, () => { - cy.visit(page.navigation) + cy.visit(page.navigation).waitForRouteChange() cy.get(`a[href="${page.target}"][id=gatsby-link]`).click() cy.go(`back`) cy.go(`forward`) diff --git a/e2e-tests/production-runtime/cypress/integration/gatsby-script-ssr-browser-apis.js b/e2e-tests/production-runtime/cypress/integration/gatsby-script-ssr-browser-apis.js index a64c0076cab87..d38b30bb8a38b 100644 --- a/e2e-tests/production-runtime/cypress/integration/gatsby-script-ssr-browser-apis.js +++ b/e2e-tests/production-runtime/cypress/integration/gatsby-script-ssr-browser-apis.js @@ -3,13 +3,13 @@ import { script } from "../../gatsby-script-scripts" const page = `/gatsby-script-ssr-browser-apis/` it(`scripts load successfully when used via wrapPageElement`, () => { - cy.visit(page) + cy.visit(page).waitForRouteChange() cy.getRecord(script.three, `success`, true).should(`equal`, `true`) cy.getRecord(script.marked, `success`, true).should(`equal`, `true`) }) it(`scripts load successfully when used via wrapRootElement`, () => { - cy.visit(page) + cy.visit(page).waitForRouteChange() cy.getRecord(script.jQuery, `success`, true).should(`equal`, `true`) cy.getRecord(script.popper, `success`, true).should(`equal`, `true`) }) diff --git a/packages/gatsby-script/src/gatsby-script.tsx b/packages/gatsby-script/src/gatsby-script.tsx index 2ac22f5ba32e4..46f8dce2e635b 100644 --- a/packages/gatsby-script/src/gatsby-script.tsx +++ b/packages/gatsby-script/src/gatsby-script.tsx @@ -45,25 +45,19 @@ export const scriptCallbackCache: Map< > = new Map() export function Script(props: ScriptProps): ReactElement | null { - const { - id, - src, - strategy = ScriptStrategy.postHydrate, - onLoad, - onError, - } = props || {} + const { id, src, strategy = ScriptStrategy.postHydrate } = props || {} const { collectScript } = useContext(PartytownContext) useEffect(() => { - let script: HTMLScriptElement | null + let details: IInjectedScriptDetails | null switch (strategy) { case ScriptStrategy.postHydrate: - script = injectScript(props) + details = injectScript(props) break case ScriptStrategy.idle: requestIdleCallback(() => { - script = injectScript(props) + details = injectScript(props) }) break case ScriptStrategy.offMainThread: @@ -75,12 +69,16 @@ export function Script(props: ScriptProps): ReactElement | null { } return (): void => { - if (onLoad) { - script?.removeEventListener(`load`, onLoad) + const { script, loadCallback, errorCallback } = details || {} + + if (loadCallback) { + script?.removeEventListener(`load`, loadCallback) } - if (onError) { - script?.removeEventListener(`error`, onError) + + if (errorCallback) { + script?.removeEventListener(`error`, errorCallback) } + script?.remove() } }, []) @@ -126,7 +124,13 @@ export function Script(props: ScriptProps): ReactElement | null { return null } -function injectScript(props: ScriptProps): HTMLScriptElement | null { +interface IInjectedScriptDetails { + script: HTMLScriptElement | null + loadCallback: (event: Event) => void + errorCallback: (event: ErrorEvent) => void +} + +function injectScript(props: ScriptProps): IInjectedScriptDetails | null { const { id, src, @@ -135,13 +139,7 @@ function injectScript(props: ScriptProps): HTMLScriptElement | null { onError, } = props || {} - const scriptKey = id || src || (scriptCache.size + 1).toString() - - /** - * If a duplicate script is already loaded/errored, we replay load/error callbacks with the original event. - * If it's not yet loaded/errored, keep track of callbacks so we can call load/error callbacks for each when the event occurs. - */ - const cachedCallbacks = scriptCallbackCache.get(scriptKey) || {} + const scriptKey = id || src const callbackNames = [`load`, `error`] @@ -150,26 +148,34 @@ function injectScript(props: ScriptProps): HTMLScriptElement | null { error: onError, } - for (const name of callbackNames) { - if (currentCallbacks?.[name]) { - const { callbacks = [] } = cachedCallbacks?.[name] || {} - callbacks.push(currentCallbacks?.[name]) - - if (cachedCallbacks?.[name]?.event) { - currentCallbacks?.[name]?.(cachedCallbacks?.[name]?.event) - } else { - scriptCallbackCache.set(scriptKey, { - [name]: { - callbacks, - }, - }) + if (scriptKey) { + /** + * If a duplicate script is already loaded/errored, we replay load/error callbacks with the original event. + * If it's not yet loaded/errored, keep track of callbacks so we can call load/error callbacks for each when the event occurs. + */ + const cachedCallbacks = scriptCallbackCache.get(scriptKey) || {} + + for (const name of callbackNames) { + if (currentCallbacks?.[name]) { + const { callbacks = [] } = cachedCallbacks?.[name] || {} + callbacks.push(currentCallbacks?.[name]) + + if (cachedCallbacks?.[name]?.event) { + currentCallbacks?.[name]?.(cachedCallbacks?.[name]?.event) + } else { + scriptCallbackCache.set(scriptKey, { + [name]: { + callbacks, + }, + }) + } } } - } - // Avoid injecting duplicate scripts into the DOM - if (scriptCache.has(scriptKey)) { - return null + // Avoid injecting duplicate scripts into the DOM + if (scriptCache.has(scriptKey)) { + return null + } } const inlineScript = resolveInlineScript(props) @@ -195,27 +201,28 @@ function injectScript(props: ScriptProps): HTMLScriptElement | null { script.src = src } - for (const name of callbackNames) { - if (currentCallbacks?.[name]) { - script.addEventListener(name, event => { - const cachedCallbacks = scriptCallbackCache.get(scriptKey) || {} + const wrappedCallbacks: Record<string, (event: Event | ErrorEvent) => void> = + {} - for (const callback of cachedCallbacks?.[name]?.callbacks || []) { - callback(event) - } - - scriptCallbackCache.set(scriptKey, { [name]: { event } }) - }) + if (scriptKey) { + // Add listeners on injected scripts so events are cached for use in de-duplicated script callbacks + for (const name of callbackNames) { + const wrappedEventCallback = (event: Event | ErrorEvent): void => + onEventCallback(event, scriptKey, name) + script.addEventListener(name, wrappedEventCallback) + wrappedCallbacks[`${name}Callback`] = wrappedEventCallback } - } - scriptCache.add(scriptKey) + scriptCache.add(scriptKey) + } document.body.appendChild(script) - scriptCache.add(scriptKey) - - return script + return { + script, + loadCallback: wrappedCallbacks.loadCallback, + errorCallback: wrappedCallbacks.errorCallback, + } } function resolveInlineScript(props: ScriptProps): string { @@ -243,3 +250,17 @@ function proxyPartytownUrl(url: string | undefined): string | undefined { } return `/__third-party-proxy?url=${encodeURIComponent(url)}` } + +function onEventCallback( + event: Event | ErrorEvent, + scriptKey: string, + eventName: string +): void { + const cachedCallbacks = scriptCallbackCache.get(scriptKey) || {} + + for (const callback of cachedCallbacks?.[eventName]?.callbacks || []) { + callback(event) + } + + scriptCallbackCache.set(scriptKey, { [eventName]: { event } }) +}
e1e55c9d1aed9ccc0c5e547cac84ff078400df2b
2022-01-20 14:27:02
Ty Hopp
chore(docs): Update FS route api client only splat description (#34546)
false
Update FS route api client only splat description (#34546)
chore
diff --git a/docs/docs/reference/routing/file-system-route-api.md b/docs/docs/reference/routing/file-system-route-api.md index 17fd62a83ed27..9b28f823e9826 100644 --- a/docs/docs/reference/routing/file-system-route-api.md +++ b/docs/docs/reference/routing/file-system-route-api.md @@ -214,12 +214,32 @@ You can use square brackets (`[ ]`) in the file path to mark any dynamic segment #### Splat routes -Gatsby also supports _splat_ (or wildcard) routes, which are routes that will match _anything_ after the splat. These are less common, but still have use cases. As an example, suppose that you are rendering images from [S3](/docs/how-to/previews-deploys-hosting/deploying-to-s3-cloudfront/) and the URL is actually the key to the asset in AWS. Here is how you might create your file: +Gatsby also supports _splat_ (or wildcard) routes, which are routes that will match _anything_ after the splat. These are less common, but still have use cases. Use three periods in square brackets (`[...]`) in a file path to mark a page as a splat route. You can also name the parameter your page receives by adding a name after the three periods (`[...myNameKey]`). -- `src/pages/image/[...awsKey].js` will generate a route like `/image/*awsKey` -- `src/pages/image/[...].js` will generate a route like `/image/*` +As an example, suppose that you are rendering images from [S3](/docs/how-to/previews-deploys-hosting/deploying-to-s3-cloudfront/) and the URL is actually the key to the asset in AWS. Here is how you might create your file: -Three periods `...` mark a page as a splat route. Optionally, you can name the splat as well, which has the benefit of naming the key of the property that your component receives. +- `src/pages/image/[...].js` will generate a route like `/image/*`. `*` is accessible in your page's received properties with the key name `*`. +- `src/pages/image/[...awsKey].js` will generate a route like `/image/*awsKey`. `*awsKey` is accessible in your page's received properties with the key name `awsKey`. + +```js:title=src/pages/image/[...].js +export default function ImagePage({ params }) { + const param = params[`*`] + + // When visiting a route like `image/hello/world`, + // the value of `param` is `hello/world`. +} +``` + +```js:title=src/pages/image/[...awsKey].js +export default function ImagePage({ params }) { + const param = params[`awsKey`] + + // When visiting a route like `image/hello/world`, + // the value of `param` is `hello/world`. +} +``` + +Splat routes may not live in the same directory as regular client only routes. ### Examples
a479d7d45312d6184040aeb23e5bc017fb022398
2021-06-07 14:17:21
renovate[bot]
fix(deps): update minor and patch for gatsby-plugin-subfont (#31703)
false
update minor and patch for gatsby-plugin-subfont (#31703)
fix
diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json index 04ee58d44e279..5f472a8545ae1 100644 --- a/packages/gatsby-plugin-subfont/package.json +++ b/packages/gatsby-plugin-subfont/package.json @@ -24,7 +24,7 @@ }, "license": "MIT", "dependencies": { - "subfont": "^5.3.0" + "subfont": "^5.4.1" }, "devDependencies": { "@babel/cli": "^7.14.3", diff --git a/yarn.lock b/yarn.lock index c5fcd11fdc96f..df53917e57b08 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5739,6 +5739,13 @@ agent-base@5: resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" integrity sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g== +agent-base@6: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + agent-base@~4.2.1: version "4.2.1" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9" @@ -6072,12 +6079,17 @@ arg@^5.0.0: resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.0.tgz#a20e2bb5710e82950a516b3f933fee5ed478be90" integrity sha512-4P8Zm2H+BRS+c/xX1LrHw0qKpEhdlZjLCgWy+d78T9vqa2Z2SiD2wMrYuWIAFy5IZUD7nnNXroRttz+0RzlrzQ== -argparse@^1.0.10, argparse@^1.0.6, argparse@^1.0.7: +argparse@^1.0.10, argparse@^1.0.7: version "1.0.10" resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" dependencies: sprintf-js "~1.0.2" +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + [email protected]: version "0.0.2" resolved "https://registry.yarnpkg.com/argv/-/argv-0.0.2.tgz#ecbd16f8949b157183711b1bda334f37840185ab" @@ -10294,6 +10306,11 @@ devcert@^1.1.3: tmp "^0.0.33" tslib "^1.10.0" [email protected]: + version "0.0.854822" + resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.854822.tgz#eac3a5260a6b3b4e729a09fdc0c77b0d322e777b" + integrity sha512-xd4D8kHQtB0KtWW0c9xBZD5LVtm9chkMOfs/3Yn01RhT/sFIsVtzTtypfKoFfWBaL+7xCYLxjOLkhwPXaX/Kcg== + dezalgo@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" @@ -12458,6 +12475,22 @@ fontkit@^1.8.0: unicode-properties "^1.0.0" unicode-trie "^0.3.0" +fontverter@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fontverter/-/fontverter-1.0.1.tgz#f48b9a3db4217ee04515c9821906263fe021c7fe" + integrity sha512-+Mt6jyy90ZXZqTq1XFb5tZfbzuiUWyPnmZ0SKRW5WM2m6k9UUTz0PKuJsidCOZnVzGxY+rBiaf2w837AHFWTXw== + dependencies: + wawoff2 "^2.0.0" + woff2sfnt-sfnt2woff "^1.0.0" + +fontverter@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fontverter/-/fontverter-2.0.0.tgz#6d9e05f963cd402d45dfcae27c83f551ba88c2c7" + integrity sha512-DFVX5hvXuhi1Jven1tbpebYTCT9XYnvx6/Z+HFUPb7ZRMCW+pj2clU9VMhoTPgWKPhAs7JJDSk3CW1jNUvKCZQ== + dependencies: + wawoff2 "^2.0.0" + woff2sfnt-sfnt2woff "^1.0.0" + for-each@^0.3.2: version "0.3.3" resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" @@ -13665,10 +13698,10 @@ hard-rejection@^2.1.0: resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== -harfbuzzjs@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/harfbuzzjs/-/harfbuzzjs-0.1.3.tgz#84fa70720d6042b653cd5ea905f4ded4a8af413e" - integrity sha512-VNucTICFDHUSVUNnFSAh9TBqbFcTb3guYUtAAOtott3C2lMjCO92/2vLdbxmGGsrGJ8XTbVLufFWxPTnHkcQsA== +harfbuzzjs@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/harfbuzzjs/-/harfbuzzjs-0.1.5.tgz#c638ab4722e8b499bb921bf446160d0f10e4a618" + integrity sha512-e5LDWQmw85dDEUlT4L/AUyi7pRPqgoGbwnbeH7CzxUU+4jOUEs22OXk3TH8dqZmwvVUFThHqM9/+YYIHYvvl5g== harmony-reflect@^1.4.6: version "1.6.1" @@ -14382,6 +14415,14 @@ https-proxy-agent@^4.0.0: agent-base "5" debug "4" +https-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" + integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== + dependencies: + agent-base "6" + debug "4" + human-signals@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" @@ -22088,10 +22129,10 @@ proxy-addr@~2.0.5: forwarded "~0.1.2" ipaddr.js "1.9.0" -proxy-from-env@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" - integrity sha1-M8UDmPcOp+uW0h97gXYwpVeRx+4= +proxy-from-env@^1.0.0, proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== prr@~1.0.1: version "1.0.1" @@ -22171,17 +22212,19 @@ pupa@^2.0.1, pupa@^2.1.1: dependencies: escape-goat "^2.0.0" -puppeteer-core@^3.1.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-3.3.0.tgz#6178a6a0f6efa261cd79e42e34ab0780d8775f0d" - integrity sha512-hynQ3r0J/lkGrKeBCqu160jrj0WhthYLIzDQPkBxLzxPokjw4elk1sn6mXAian/kfD2NRzpdh9FSykxZyL56uA== +puppeteer-core@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-8.0.0.tgz#4f56cc24675a8e993b0610a284f064a84910f4ec" + integrity sha512-kRTiGh42+4eiw9tl489p//8Zpg3LWmz0K3mOpv0qj5PsCV7jE43SLIi0E50suLh8OghXsFhJFoE98vEmXUnDew== dependencies: debug "^4.1.0" + devtools-protocol "0.0.854822" extract-zip "^2.0.0" - https-proxy-agent "^4.0.0" - mime "^2.0.3" + https-proxy-agent "^5.0.0" + node-fetch "^2.6.1" + pkg-dir "^4.2.0" progress "^2.0.1" - proxy-from-env "^1.0.0" + proxy-from-env "^1.1.0" rimraf "^3.0.2" tar-fs "^2.0.0" unbzip2-stream "^1.3.3" @@ -26216,10 +26259,10 @@ subarg@^1.0.0: dependencies: minimist "^1.1.0" -subfont@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/subfont/-/subfont-5.3.0.tgz#dce94abb98eaf7321dfceab693f1ed141ef67d8d" - integrity sha512-80Vsc0269ygHcM2yJ1H48SygOtxFDk9dd4GqTcqUdPkjUNE2/iZDjbyAas51xHgc1TfMEjq1qqohIldRdjoCXg== +subfont@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/subfont/-/subfont-5.4.1.tgz#a6bcc0edc084d32cb2b6bb2dc57b7eebea610d8f" + integrity sha512-KeWtTXHwCA980C/et8s+K+eS0aw8wsmfsLSkyoKgXqySy2aTgCI5F0U7fs+veRjjUACJfhQyRPzTZ9NGPrR5yg== dependencies: "@gustavnikolaj/async-main-wrap" "^3.0.1" assetgraph "^6.5.0" @@ -26231,20 +26274,18 @@ subfont@^5.3.0: font-snapper "^1.2.0" font-tracer "^2.0.1" fontkit "^1.8.0" + fontverter "^1.0.1" gettemporaryfilepath "^1.0.1" - harfbuzzjs "^0.1.3" lines-and-columns "^1.1.6" lodash "^4.17.15" memoizesync "^1.1.1" - p-limit "^3.0.2" postcss "^7.0.32" postcss-value-parser "^4.0.2" pretty-bytes "^5.1.0" - puppeteer-core "^3.1.0" + puppeteer-core "^8.0.0" specificity "^0.4.1" + subset-font "^1.1.0" urltools "^0.4.1" - wawoff2 "^1.0.2" - woff2sfnt-sfnt2woff "^1.0.0" yargs "^15.4.0" [email protected], subscriptions-transport-ws@^0.9.16, subscriptions-transport-ws@^0.9.18: @@ -26258,6 +26299,15 @@ [email protected], subscriptions-transport-ws@^0.9.16, subscript symbol-observable "^1.0.4" ws "^5.2.0" +subset-font@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/subset-font/-/subset-font-1.2.3.tgz#f21cd2194221d5397184b4966706055b92424845" + integrity sha512-xO3yPxlvQjLp5FdnyumHNfiPnT8RFf19EMQFwwLWWg2a8jg9/5s2Q6yeMtisOycXdVTMvYK2fAhmmIipd2XE0A== + dependencies: + fontverter "^2.0.0" + harfbuzzjs "^0.1.5" + p-limit "^3.1.0" + sudo-prompt@^8.2.0: version "8.2.5" resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-8.2.5.tgz#cc5ef3769a134bb94b24a631cc09628d4d53603e" @@ -28422,12 +28472,12 @@ watchpack@^2.0.0: 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" - integrity sha512-qxuTwf5tAP/XojrRc6cmR0hGvqgD3XUxv2fzfzURKPDfE7AeHmtRuankVxdJ4DRdSKXaE5QlyJT49yBis2vb6Q== +wawoff2@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/wawoff2/-/wawoff2-2.0.0.tgz#df0ab96b0ef0539d7277292b9ad9884599c0e61f" + integrity sha512-5gjFj+fyQO9cMrg5vYaVM7+T37xSHpqUWM/S6UCEiBx8wRmfpvuhYjPM3toB2UujpmWQt1hSPKRo/jIRE/j9Eg== dependencies: - argparse "^1.0.6" + argparse "^2.0.1" wbuf@^1.1.0, wbuf@^1.7.3: version "1.7.3"
5bc1134c7d7f346bfdab0516e1d8660407dde63d
2020-11-09 15:28:41
Vladimir Razuvaev
chore(release): Publish pre-release
false
Publish pre-release
chore
diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index 96c58fc3f88b8..29c47783e2248 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.2.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.0-next.2) (2020-11-09) + +**Note:** Version bump only for package gatsby-admin + # [0.2.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.0-next.1) (2020-11-05) **Note:** Version bump only for package gatsby-admin diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index 90579b6cb5e50..f3f092c02b096 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-admin", - "version": "0.2.0-next.1", + "version": "0.2.0-next.2", "main": "index.js", "author": "Max Stoiber", "license": "MIT", @@ -20,7 +20,7 @@ "@typescript-eslint/parser": "^2.34.0", "csstype": "^2.6.13", "formik": "^2.2.1", - "gatsby": "^2.26.0-next.1", + "gatsby": "^2.26.0-next.2", "gatsby-interface": "^0.0.225", "gatsby-plugin-typescript": "^2.6.0-next.0", "gatsby-plugin-webfonts": "^1.1.3", diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index 2cdb0d301032d..aae4b9e09f6f4 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.13.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.13.0-next.2) (2020-11-09) + +### Features + +- **gatsby-cli:** Augment plugin errors with plugin name ([#27435](https://github.com/gatsbyjs/gatsby/issues/27435)) ([700d245](https://github.com/gatsbyjs/gatsby/commit/700d2454c824dcfbf7535a40df5032e1dc208c0c)) + # [2.13.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.13.0-next.1) (2020-11-05) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index b0054d9558d03..6fb91c4043133 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.13.0-next.1", + "version": "2.13.0-next.2", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "cli.js" @@ -24,7 +24,7 @@ "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^1.4.0-next.0", - "gatsby-recipes": "^0.3.0-next.1", + "gatsby-recipes": "^0.3.0-next.2", "gatsby-telemetry": "^1.4.0-next.1", "hosted-git-info": "^3.0.6", "is-valid-path": "^0.1.1", diff --git a/packages/gatsby-plugin-sitemap/CHANGELOG.md b/packages/gatsby-plugin-sitemap/CHANGELOG.md index e6a651cd7eeef..7013299870cc1 100644 --- a/packages/gatsby-plugin-sitemap/CHANGELOG.md +++ b/packages/gatsby-plugin-sitemap/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.6.0-next.1) (2020-11-09) + +### Bug Fixes + +- **gatsby-plugin-sitemap:** fixed missing sitemapSize config entry ([#27866](https://github.com/gatsbyjs/gatsby/issues/27866)) ([f0689ff](https://github.com/gatsbyjs/gatsby/commit/f0689ffce82e8b59a02df5c338470bd31a5154f2)) + # [2.5.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.5.0) (2020-11-02) ### Features diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json index 34dab6dd0ce72..90c75bdb3e50d 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": "2.6.0-next.0", + "version": "2.6.0-next.1", "author": "Nicholas Young &lt;[email protected]&gt;", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md index 46388dbcaa065..d92253980a226 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.3.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.3.0-next.2) (2020-11-09) + +### Bug Fixes + +- **recipes:** Resolve themes relative to root ([#27836](https://github.com/gatsbyjs/gatsby/issues/27836)) ([57b8023](https://github.com/gatsbyjs/gatsby/commit/57b8023890a764d562cd8f667d03084e9a8a5560)) + # [0.3.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.3.0-next.1) (2020-11-05) ### Bug Fixes diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index 26da925b67bf2..213e62135a023 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.3.0-next.1", + "version": "0.3.0-next.2", "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 68719cd670682..b888b98a95f45 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.2.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.2.0-next.1) (2020-11-09) + +**Note:** Version bump only for package gatsby-source-contentful + ## [3.1.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.1.1) (2020-11-03) ### Bug Fixes diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index 00a557ae6043a..4f029207e3c7c 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": "3.2.0-next.0", + "version": "3.2.0-next.1", "author": "Marcus Ericsson <[email protected]> (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "fs-extra": "^9.0.1", "gatsby-core-utils": "^1.4.0-next.0", "gatsby-plugin-utils": "^0.3.0-next.0", - "gatsby-source-filesystem": "^2.5.0-next.0", + "gatsby-source-filesystem": "^2.5.0-next.1", "is-online": "^8.5.1", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.20", diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index 022cccb1be9d3..f040d42545fff 100644 --- a/packages/gatsby-source-drupal/CHANGELOG.md +++ b/packages/gatsby-source-drupal/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.7.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.7.0-next.1) (2020-11-09) + +**Note:** Version bump only for package gatsby-source-drupal + # [3.6.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.6.0) (2020-11-02) **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 f87b5fbfd5d92..bcb5d725e4d38 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.7.0-next.0", + "version": "3.7.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,7 +11,7 @@ "axios": "^0.21.0", "bluebird": "^3.7.2", "body-parser": "^1.19.0", - "gatsby-source-filesystem": "^2.5.0-next.0", + "gatsby-source-filesystem": "^2.5.0-next.1", "lodash": "^4.17.20", "tiny-async-pool": "^1.1.0" }, diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md index dcf8580012463..2ec7cb4931ef0 100644 --- a/packages/gatsby-source-filesystem/CHANGELOG.md +++ b/packages/gatsby-source-filesystem/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.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.5.0-next.1) (2020-11-09) + +### Bug Fixes + +- **gatsby-source-filesystem:** allow regex and functions for ignore option ([253b1af](https://github.com/gatsbyjs/gatsby/commit/253b1af728de1b007eb582d63286d0ce2476e41b)), closes [#27848](https://github.com/gatsbyjs/gatsby/issues/27848) + +### Features + +- **gatsby-source-filesystem:** env flag to placeholder remote assets ([#27663](https://github.com/gatsbyjs/gatsby/issues/27663)) ([2b4800a](https://github.com/gatsbyjs/gatsby/commit/2b4800af9339a227a8585feba254c3315e8fffd4)) + # [2.4.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.4.0) (2020-11-02) ### Features diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index 5451aef1fc958..6ed3003c0a6a4 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.5.0-next.0", + "version": "2.5.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-shopify/CHANGELOG.md b/packages/gatsby-source-shopify/CHANGELOG.md index da40f4c729763..0df72352dce80 100644 --- a/packages/gatsby-source-shopify/CHANGELOG.md +++ b/packages/gatsby-source-shopify/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.4.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.4.0-next.1) (2020-11-09) + +**Note:** Version bump only for package gatsby-source-shopify + # [3.3.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.3.0) (2020-11-02) **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 b568c4b2dee82..5ae4ea2448a66 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.4.0-next.0", + "version": "3.4.0-next.1", "description": "Gatsby source plugin for building websites using Shopify as a data source.", "scripts": { "build": "babel src --out-dir . --ignore \"**/__tests__\"", @@ -36,7 +36,7 @@ "babel-preset-gatsby-package": "^0.6.0-next.0", "chalk": "^4.1.0", "gatsby-node-helpers": "^0.3.0", - "gatsby-source-filesystem": "^2.5.0-next.0", + "gatsby-source-filesystem": "^2.5.0-next.1", "graphql-request": "^1.8.2", "lodash": "^4.17.20", "p-iteration": "^1.1.8", diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md index 79248b85e0e48..07c4e531868c2 100644 --- a/packages/gatsby-source-wordpress/CHANGELOG.md +++ b/packages/gatsby-source-wordpress/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.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.5.0-next.1) (2020-11-09) + +**Note:** Version bump only for package gatsby-source-wordpress + # [3.4.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.4.0) (2020-11-02) **Note:** Version bump only for package gatsby-source-wordpress diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index 525080aad3555..87b14a10e8f2c 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.5.0-next.0", + "version": "3.5.0-next.1", "author": "Sebastien Fichot <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "bluebird": "^3.7.2", "deep-map": "^1.5.0", "deep-map-keys": "^1.2.0", - "gatsby-source-filesystem": "^2.5.0-next.0", + "gatsby-source-filesystem": "^2.5.0-next.1", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.20", "minimatch": "^3.0.4", diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 5b185fecd605a..d00d7c2a20df2 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.26.0-next.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.26.0-next.2) (2020-11-09) + +### Features + +- **gatsby-cli:** Augment plugin errors with plugin name ([#27435](https://github.com/gatsbyjs/gatsby/issues/27435)) ([700d245](https://github.com/gatsbyjs/gatsby/commit/700d2454c824dcfbf7535a40df5032e1dc208c0c)) + # [2.26.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.26.0-next.1) (2020-11-05) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index e08e69d784c4c..78909351e3825 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.26.0-next.1", + "version": "2.26.0-next.2", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js" @@ -76,7 +76,7 @@ "find-cache-dir": "^3.3.1", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^2.13.0-next.1", + "gatsby-cli": "^2.13.0-next.2", "gatsby-core-utils": "^1.4.0-next.0", "gatsby-graphiql-explorer": "^0.5.0-next.0", "gatsby-legacy-polyfills": "^0.1.0-next.0",
74a1a9b51975bb83a035e694ad6abdbcdcb79a37
2021-06-28 14:12:05
LekoArts
chore(release): Publish next
false
Publish next
chore
diff --git a/packages/create-gatsby/CHANGELOG.md b/packages/create-gatsby/CHANGELOG.md index 2487680bc3c2f..d76f1f2630bc2 100644 --- a/packages/create-gatsby/CHANGELOG.md +++ b/packages/create-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. +# [1.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package create-gatsby + # [1.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2021-06-18) **Note:** Version bump only for package create-gatsby diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json index 754d93d804f03..31bf355b00b34 100644 --- a/packages/create-gatsby/package.json +++ b/packages/create-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "create-gatsby", - "version": "1.9.0-next.0", + "version": "1.9.0-next.1", "main": "lib/index.js", "bin": "cli.js", "license": "MIT", @@ -27,7 +27,7 @@ "eslint": "^7.27.0", "execa": "^4.1.0", "fs-extra": "^9.1.0", - "gatsby-plugin-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^1.9.0-next.1", "joi": "^17.4.0", "microbundle": "^0.13.1", "node-fetch": "^2.6.1", diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index 276e3a6324ced..2a5288759765d 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.19.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.19.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-admin + # [0.19.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.19.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-admin diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index 6c79d3c924875..53acd41b7b626 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-admin", - "version": "0.19.0-next.0", + "version": "0.19.0-next.1", "main": "index.js", "author": "Max Stoiber", "license": "MIT", @@ -20,7 +20,7 @@ "@typescript-eslint/parser": "^4.14.2", "csstype": "^2.6.14", "formik": "^2.2.6", - "gatsby": "^3.9.0-next.0", + "gatsby": "^3.9.0-next.1", "gatsby-interface": "^0.0.244", "gatsby-plugin-typescript": "^3.9.0-next.0", "gatsby-plugin-webfonts": "^1.1.4", diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index 5a211ef576df4..e551980c39da9 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. +# [3.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-cli + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-cli diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index 4439513b9a14c..e21bad443acc1 100644 --- a/packages/gatsby-cli/package.json +++ b/packages/gatsby-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-cli", "description": "Gatsby command-line interface for creating new sites and running Gatsby commands", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "cli.js" @@ -18,14 +18,14 @@ "common-tags": "^1.8.0", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^1.9.0-next.0", + "create-gatsby": "^1.9.0-next.1", "envinfo": "^7.7.3", "execa": "^3.4.0", "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^2.9.0-next.0", - "gatsby-recipes": "^0.20.0-next.0", - "gatsby-telemetry": "^2.9.0-next.0", + "gatsby-recipes": "^0.20.0-next.1", + "gatsby-telemetry": "^2.9.0-next.1", "hosted-git-info": "^3.0.6", "is-valid-path": "^0.1.1", "joi": "^17.4.0", diff --git a/packages/gatsby-design-tokens/CHANGELOG.md b/packages/gatsby-design-tokens/CHANGELOG.md index ccc73a0b1b796..fc8a8149e750c 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. +# [3.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +### Features + +- **gatsby-design-tokens:** palette update ([#30662](https://github.com/gatsbyjs/gatsby/issues/30662)) ([fe853ae](https://github.com/gatsbyjs/gatsby/commit/fe853ae75dc380ad0843aa7b274c2085c077db6c)) + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **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 9615d70a5e683..1ecd9f7d839eb 100644 --- a/packages/gatsby-design-tokens/package.json +++ b/packages/gatsby-design-tokens/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-design-tokens", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "description": "Gatsby Design Tokens", "main": "dist/index.js", "module": "dist/index.esm.js", diff --git a/packages/gatsby-plugin-cxs/CHANGELOG.md b/packages/gatsby-plugin-cxs/CHANGELOG.md index 071f212e85696..d36b40fe3f498 100644 --- a/packages/gatsby-plugin-cxs/CHANGELOG.md +++ b/packages/gatsby-plugin-cxs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-cxs + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-cxs diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json index 2ee45ebb47bad..5ea7cd34b7c29 100644 --- a/packages/gatsby-plugin-cxs/package.json +++ b/packages/gatsby-plugin-cxs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-cxs", "description": "Gatsby plugin to add SSR support for ctx", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Chen-Tai Hou <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", "cxs": "^6.2.0", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme", "keywords": [ diff --git a/packages/gatsby-plugin-feed/CHANGELOG.md b/packages/gatsby-plugin-feed/CHANGELOG.md index 51c5897d91695..91135998f9729 100644 --- a/packages/gatsby-plugin-feed/CHANGELOG.md +++ b/packages/gatsby-plugin-feed/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.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-feed + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-feed diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json index b65e859d7db2e..7dd5d999f2d70 100644 --- a/packages/gatsby-plugin-feed/package.json +++ b/packages/gatsby-plugin-feed/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-feed", "description": "Creates an RSS feed for your Gatsby site.", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "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.0", "fs-extra": "^9.1.0", - "gatsby-plugin-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^1.9.0-next.1", "lodash.merge": "^4.6.2", "rss": "^1.2.2" }, diff --git a/packages/gatsby-plugin-flow/CHANGELOG.md b/packages/gatsby-plugin-flow/CHANGELOG.md index 46e679a54991e..5de433e4dd6f2 100644 --- a/packages/gatsby-plugin-flow/CHANGELOG.md +++ b/packages/gatsby-plugin-flow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-flow + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-flow diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json index 317402e67e9ff..0de21f9b53d63 100644 --- a/packages/gatsby-plugin-flow/package.json +++ b/packages/gatsby-plugin-flow/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-flow", - "version": "2.9.0-next.0", + "version": "2.9.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.14.0", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.0-next.1" }, "peerDependencies": { "gatsby": "^3.0.0-next.0" diff --git a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md b/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md index e2f3f09f7b322..093b9958d4f15 100644 --- a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md +++ b/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-gatsby-cloud@[email protected]) (2021-06-28) + +### Bug Fixes + +- **gatsby-plugin-gatsby-cloud:** add gatsby-telemetry as a dependency ([#32047](https://github.com/gatsbyjs/gatsby/issues/32047)) ([4ba8c2c](https://github.com/gatsbyjs/gatsby/commit/4ba8c2cae3eb9ece767e65c549d033ecb78b2d7e)) + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-gatsby-cloud@[email protected]) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud diff --git a/packages/gatsby-plugin-gatsby-cloud/package.json b/packages/gatsby-plugin-gatsby-cloud/package.json index 3d110d08c3c80..5232d6b232497 100644 --- a/packages/gatsby-plugin-gatsby-cloud/package.json +++ b/packages/gatsby-plugin-gatsby-cloud/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-gatsby-cloud", "description": "A Gatsby plugin which optimizes working with Gatsby Cloud", - "version": "2.9.0-next.0", + "version": "2.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,7 +10,7 @@ "@babel/runtime": "^7.14.0", "date-fns": "^2.22.1", "fs-extra": "^8.1.0", - "gatsby-telemetry": "2.9.0-next.0", + "gatsby-telemetry": "^2.9.0-next.1", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.0.6" diff --git a/packages/gatsby-plugin-glamor/CHANGELOG.md b/packages/gatsby-plugin-glamor/CHANGELOG.md index bb0775271bb3f..ce81c383fd7e6 100644 --- a/packages/gatsby-plugin-glamor/CHANGELOG.md +++ b/packages/gatsby-plugin-glamor/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.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-glamor + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-glamor diff --git a/packages/gatsby-plugin-glamor/package.json b/packages/gatsby-plugin-glamor/package.json index 7241785aa2014..68af6debe8fda 100644 --- a/packages/gatsby-plugin-glamor/package.json +++ b/packages/gatsby-plugin-glamor/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-glamor", "description": "Gatsby plugin to add support for Glamor", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "@babel/core": "^7.14.0", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor#readme", "keywords": [ diff --git a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md index 83f1fd9624a43..2aebaf36cc55e 100644 --- a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md +++ b/packages/gatsby-plugin-google-tagmanager/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.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-tagmanager@[email protected]) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-google-tagmanager + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-tagmanager@[email protected]) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-google-tagmanager diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json index 03c0529af8350..f13011f9d254a 100644 --- a/packages/gatsby-plugin-google-tagmanager/package.json +++ b/packages/gatsby-plugin-google-tagmanager/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-tagmanager", "description": "Gatsby plugin to add google tagmanager onto a site", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Thijs Koerselman <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "@babel/core": "^7.14.0", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.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/CHANGELOG.md b/packages/gatsby-plugin-image/CHANGELOG.md index eeb9abd0b64f6..d67b19bd147ca 100644 --- a/packages/gatsby-plugin-image/CHANGELOG.md +++ b/packages/gatsby-plugin-image/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.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-image + # [1.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-image diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json index 6fb8373bdfc08..fa70442b70f89 100644 --- a/packages/gatsby-plugin-image/package.json +++ b/packages/gatsby-plugin-image/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-image", - "version": "1.9.0-next.0", + "version": "1.9.0-next.1", "scripts": { "build": "npm-run-all -s clean -p build:*", "build:gatsby-node": "tsc --jsx react --downlevelIteration true --skipLibCheck true --esModuleInterop true --outDir dist/ src/gatsby-node.ts src/babel-plugin-parse-static-images.ts src/resolver-utils.ts src/types.d.ts -d --declarationDir dist/src", diff --git a/packages/gatsby-plugin-manifest/CHANGELOG.md b/packages/gatsby-plugin-manifest/CHANGELOG.md index 442482fc0c132..e7a743e72fcef 100644 --- a/packages/gatsby-plugin-manifest/CHANGELOG.md +++ b/packages/gatsby-plugin-manifest/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.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-manifest + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **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 e8fcfb45bf89c..128845027b842 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": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.14.0", "gatsby-core-utils": "^2.9.0-next.0", - "gatsby-plugin-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^1.9.0-next.1", "semver": "^7.3.5", "sharp": "^0.28.1" }, diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md index d1efbd3a65bde..fb6e936e95ad0 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. +# [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.1) (2021-06-28) + +### Features + +- **gatsby-plugin-mdx:** swap sourceNodes to createSchemaCustomization ([#32021](https://github.com/gatsbyjs/gatsby/issues/32021)) ([d75b965](https://github.com/gatsbyjs/gatsby/commit/d75b965266fc3fa8e58086421dfea7c7e7ee2f86)) + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2021-06-18) **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 4972cdec5c089..791c4da8b4d89 100644 --- a/packages/gatsby-plugin-mdx/package.json +++ b/packages/gatsby-plugin-mdx/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-mdx", - "version": "2.9.0-next.0", + "version": "2.9.0-next.1", "description": "MDX integration for Gatsby", "main": "index.js", "license": "MIT", @@ -60,7 +60,7 @@ "devDependencies": { "@mdx-js/mdx": "^1.6.16", "@mdx-js/react": "^1.6.16", - "gatsby-plugin-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^1.9.0-next.1", "jest": "^24.9.0", "js-combinatorics": "^1.4.5", "react-test-renderer": "^16.13.1" diff --git a/packages/gatsby-plugin-netlify/CHANGELOG.md b/packages/gatsby-plugin-netlify/CHANGELOG.md index 75ba3585b639a..1231dd327410c 100644 --- a/packages/gatsby-plugin-netlify/CHANGELOG.md +++ b/packages/gatsby-plugin-netlify/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.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-netlify + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **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 06b53f9eaecfc..eb49ab20b88bc 100644 --- a/packages/gatsby-plugin-netlify/package.json +++ b/packages/gatsby-plugin-netlify/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-netlify", "description": "A Gatsby plugin which generates a _headers file for netlify", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -24,7 +24,7 @@ "@babel/core": "^7.14.0", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify#readme", "keywords": [ diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md index d1054a88fb1a7..a155122597a56 100644 --- a/packages/gatsby-plugin-offline/CHANGELOG.md +++ b/packages/gatsby-plugin-offline/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-offline + # [4.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.9.0-next.0) (2021-06-18) **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 65651ccf268de..79d5e8dd52556 100644 --- a/packages/gatsby-plugin-offline/package.json +++ b/packages/gatsby-plugin-offline/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-offline", "description": "Gatsby plugin which sets up a site to be able to run offline", - "version": "4.9.0-next.0", + "version": "4.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -21,7 +21,7 @@ "babel-preset-gatsby-package": "^1.9.0-next.0", "cpx": "^1.5.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^1.9.0-next.1", "rewire": "^5.0.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme", diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md index 322352fe343ad..5d53a0a7addb9 100644 --- a/packages/gatsby-plugin-page-creator/CHANGELOG.md +++ b/packages/gatsby-plugin-page-creator/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.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@[email protected]) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-page-creator + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@[email protected]) (2021-06-18) **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 af80b6a00effd..79804ce6d4bb4 100644 --- a/packages/gatsby-plugin-page-creator/package.json +++ b/packages/gatsby-plugin-page-creator/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-page-creator", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "description": "Gatsby plugin that automatically creates pages from React components in specified directories", "main": "index.js", "scripts": { @@ -30,7 +30,7 @@ "fs-exists-cached": "^1.0.0", "gatsby-core-utils": "^2.9.0-next.0", "gatsby-page-utils": "^1.9.0-next.0", - "gatsby-telemetry": "^2.9.0-next.0", + "gatsby-telemetry": "^2.9.0-next.1", "globby": "^11.0.3", "lodash": "^4.17.21" }, diff --git a/packages/gatsby-plugin-sass/CHANGELOG.md b/packages/gatsby-plugin-sass/CHANGELOG.md index 3e82e39a39738..2927c78a99e06 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. +# [4.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-sass + # [4.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.9.0-next.0) (2021-06-18) **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 b91d1bcabc273..60acd4a7a7f43 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sass", "description": "Gatsby plugin to handle SCSS/Sass files", - "version": "4.9.0-next.0", + "version": "4.9.0-next.1", "author": "Daniel Farrell <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,7 +17,7 @@ "autoprefixer": "^10.2.5", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass#readme", "keywords": [ diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md index 6bc115698aa3e..5dd8e29c5397d 100644 --- a/packages/gatsby-plugin-sharp/CHANGELOG.md +++ b/packages/gatsby-plugin-sharp/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.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +### Features + +- add unstable_onPluginInit that would execute once in all processes ([#31901](https://github.com/gatsbyjs/gatsby/issues/31901)) ([2bf8c0d](https://github.com/gatsbyjs/gatsby/commit/2bf8c0d37fd6de3fbbbe7e543275cfd6d64ec9de)) + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-sharp diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index 37fb2403f5398..a8a98ea8d1452 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sharp", "description": "Wrapper of the Sharp image manipulation library for Gatsby plugins", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,8 +13,8 @@ "filenamify": "^4.2.0", "fs-extra": "^9.1.0", "gatsby-core-utils": "^2.9.0-next.0", - "gatsby-plugin-utils": "^1.9.0-next.0", - "gatsby-telemetry": "^2.9.0-next.0", + "gatsby-plugin-utils": "^1.9.0-next.1", + "gatsby-telemetry": "^2.9.0-next.1", "got": "^10.7.0", "imagemin": "^7.0.1", "imagemin-mozjpeg": "^9.0.0", @@ -35,7 +35,7 @@ "@types/sharp": "^0.27.1", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^1.9.0-next.0" + "gatsby-plugin-image": "^1.9.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme", "keywords": [ diff --git a/packages/gatsby-plugin-sitemap/CHANGELOG.md b/packages/gatsby-plugin-sitemap/CHANGELOG.md index ec3fb1225709a..b330a917f4c76 100644 --- a/packages/gatsby-plugin-sitemap/CHANGELOG.md +++ b/packages/gatsby-plugin-sitemap/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.5.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.5.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-sitemap + # [4.5.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.5.0-next.0) (2021-06-18) ### Bug Fixes diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json index 55316a0268126..838c488ee7533 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": "4.5.0-next.0", + "version": "4.5.0-next.1", "contributors": [ "Alex Moon <[email protected]>", "Nicholas Young <[email protected]>" @@ -20,7 +20,7 @@ "@babel/core": "^7.14.0", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme", "keywords": [ diff --git a/packages/gatsby-plugin-twitter/CHANGELOG.md b/packages/gatsby-plugin-twitter/CHANGELOG.md index 1606e9f76f6ba..77447ae13f2ef 100644 --- a/packages/gatsby-plugin-twitter/CHANGELOG.md +++ b/packages/gatsby-plugin-twitter/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.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-plugin-twitter + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-twitter diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json index 9ea4e7ecc0e2c..9784c11284d07 100644 --- a/packages/gatsby-plugin-twitter/package.json +++ b/packages/gatsby-plugin-twitter/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-twitter", "description": "Loads the Twitter JavaScript for embedding tweets.", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "@babel/core": "^7.14.0", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-twitter#readme", "keywords": [ diff --git a/packages/gatsby-plugin-utils/CHANGELOG.md b/packages/gatsby-plugin-utils/CHANGELOG.md index b0a6e2c90e95b..e683cb6ed90e9 100644 --- a/packages/gatsby-plugin-utils/CHANGELOG.md +++ b/packages/gatsby-plugin-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. +# [1.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.1) (2021-06-28) + +### Features + +- add unstable_onPluginInit that would execute once in all processes ([#31901](https://github.com/gatsbyjs/gatsby/issues/31901)) ([2bf8c0d](https://github.com/gatsbyjs/gatsby/commit/2bf8c0d37fd6de3fbbbe7e543275cfd6d64ec9de)) + # [1.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-plugin-utils diff --git a/packages/gatsby-plugin-utils/package.json b/packages/gatsby-plugin-utils/package.json index 145d10308cf68..463df3024445a 100644 --- a/packages/gatsby-plugin-utils/package.json +++ b/packages/gatsby-plugin-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-utils", - "version": "1.9.0-next.0", + "version": "1.9.0-next.1", "description": "Gatsby utils that help creating plugins", "main": "dist/index.js", "scripts": { diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md index ec23795dc75aa..6072ce6d1d892 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.20.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.20.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-recipes + # [0.20.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.20.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-recipes diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index 93a111c3bb031..8458d98437898 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.20.0-next.0", + "version": "0.20.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -31,7 +31,7 @@ "express-graphql": "^0.9.0", "fs-extra": "^8.1.0", "gatsby-core-utils": "^2.9.0-next.0", - "gatsby-telemetry": "^2.9.0-next.0", + "gatsby-telemetry": "^2.9.0-next.1", "glob": "^7.1.6", "graphql": "^15.4.0", "graphql-compose": "~7.25.0", diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md index 3464ccbc9f885..f4cb469ff5032 100644 --- a/packages/gatsby-remark-autolink-headers/CHANGELOG.md +++ b/packages/gatsby-remark-autolink-headers/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.6.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@[email protected]) (2021-06-28) + +**Note:** Version bump only for package gatsby-remark-autolink-headers + # [4.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@[email protected]) (2021-06-18) **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 95cbd0814926d..148f673f2ae80 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": "4.6.0-next.0", + "version": "4.6.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "@babel/core": "^7.14.0", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.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/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md index 033669466b553..96cf633f686a2 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. +# [5.6.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.6.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-remark-images + # [5.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.6.0-next.0) (2021-06-18) **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 d5d1847425064..b3bd50bde5775 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": "5.6.0-next.0", + "version": "5.6.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -24,7 +24,7 @@ "@babel/core": "^7.14.0", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^1.9.0-next.1", "hast-util-to-html": "^7.1.2", "mdast-util-to-hast": "^10.2.0" }, diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index ad73a2d4db678..b10c8ab29bf44 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/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. +# [5.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.9.0-next.1) (2021-06-28) + +### Bug Fixes + +- **contentful:** reenable support for gif images ([#31986](https://github.com/gatsbyjs/gatsby/issues/31986)) ([a30aa0b](https://github.com/gatsbyjs/gatsby/commit/a30aa0b5c8e45e2634eb939e7533230b072eb9bd)) +- **gatsby-source-contentful:** Don't ignore errors thrown when fetching assets ([#24288](https://github.com/gatsbyjs/gatsby/issues/24288)) ([2d4a791](https://github.com/gatsbyjs/gatsby/commit/2d4a791810a7f4baaff8d047324ddbe252db952b)) + # [5.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.9.0-next.0) (2021-06-18) **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 cf93895add89a..57d07ce632622 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "5.9.0-next.0", + "version": "5.9.0-next.1", "author": "Marcus Ericsson <[email protected]> (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "contentful": "^8.1.7", "fs-extra": "^9.1.0", "gatsby-core-utils": "^2.9.0-next.0", - "gatsby-plugin-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^1.9.0-next.1", "gatsby-source-filesystem": "^3.9.0-next.0", "is-online": "^8.5.1", "json-stringify-safe": "^5.0.1", diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index 0f12ade2c3853..f73786a9d212f 100644 --- a/packages/gatsby-source-drupal/CHANGELOG.md +++ b/packages/gatsby-source-drupal/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. +# [4.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.9.0-next.1) (2021-06-28) + +### Bug Fixes + +- **gatsby-source-drupal:** Comment out http2-wrapper ([#32045](https://github.com/gatsbyjs/gatsby/issues/32045)) ([b5f93e9](https://github.com/gatsbyjs/gatsby/commit/b5f93e908c850555c2904505c84d581a11b02e85)) +- **gatsby-source-drupal:** getNext no longer returns a value ([#32125](https://github.com/gatsbyjs/gatsby/issues/32125)) ([2eb57c7](https://github.com/gatsbyjs/gatsby/commit/2eb57c7a9dfeb64c351e7154849652e235767e1b)) + +### Features + +- **gatsby-source-drupal:** Disable caching + add http/2 agent ([#32012](https://github.com/gatsbyjs/gatsby/issues/32012)) ([113e43e](https://github.com/gatsbyjs/gatsby/commit/113e43e19b1086e74c55f7092e4a66b7e9fe7c95)) + # [4.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@4.9.0-next.0) (2021-06-18) ### Features diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index 1545531a8669c..632e5e98250e5 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-drupal", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", - "version": "4.9.0-next.0", + "version": "4.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-shopify/CHANGELOG.md b/packages/gatsby-source-shopify/CHANGELOG.md index 9a319a603f892..6158474d110cf 100644 --- a/packages/gatsby-source-shopify/CHANGELOG.md +++ b/packages/gatsby-source-shopify/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.1.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.1.0-next.1) (2021-06-28) + +### Features + +- **gatsby-source-shopify:** add default sales channel when using shopify app integration ([#32010](https://github.com/gatsbyjs/gatsby/issues/32010)) ([95280a3](https://github.com/gatsbyjs/gatsby/commit/95280a38fc410838c724ed6c6e3facf5dbbaf4c1)) + # [5.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@5.1.0-next.0) (2021-06-18) **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 1e4ce5b968496..6acc8c980b25a 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-shopify", - "version": "5.1.0-next.0", + "version": "5.1.0-next.1", "description": "Gatsby source plugin for building websites using Shopify as a data source.", "scripts": { "watch": "tsc-watch --outDir .", @@ -31,7 +31,7 @@ "@types/node-fetch": "^2.5.8", "@types/sharp": "^0.28.0", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^1.9.0-next.0", + "gatsby-plugin-image": "^1.9.0-next.1", "msw": "^0.27.1", "prettier": "^2.2.1", "prettier-check": "^2.0.0", diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md index 0f47b3015b86a..9a36aa1a2f967 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. +# [2.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-telemetry + # [2.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby-telemetry diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json index df8008b38d273..50ef9cc817759 100644 --- a/packages/gatsby-telemetry/package.json +++ b/packages/gatsby-telemetry/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-telemetry", "description": "Gatsby Telemetry", - "version": "2.9.0-next.0", + "version": "2.9.0-next.1", "author": "Jarmo Isotalo <[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 952a7b81b3518..019282a2db6d8 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. +# [4.6.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@[email protected]) (2021-06-28) + +**Note:** Version bump only for package gatsby-transformer-remark + # [4.6.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@[email protected]) (2021-06-18) **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 e32b7940097ab..8a2ff63e30ac2 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": "4.6.0-next.0", + "version": "4.6.0-next.1", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -35,7 +35,7 @@ "@babel/core": "^7.14.0", "babel-preset-gatsby-package": "^1.9.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.9.0-next.0" + "gatsby-plugin-utils": "^1.9.0-next.1" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark#readme", "keywords": [ diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md index 7f6a3acb4298e..5c4f595413904 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. +# [3.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +**Note:** Version bump only for package gatsby-transformer-sqip + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **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 3237708017e6d..a3288299ba950 100644 --- a/packages/gatsby-transformer-sqip/package.json +++ b/packages/gatsby-transformer-sqip/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sqip", "description": "Generates geometric primitive version of images", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Benedikt Rötsch <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.14.0", "fs-extra": "^8.1.0", - "gatsby-plugin-sharp": "^3.9.0-next.0", + "gatsby-plugin-sharp": "^3.9.0-next.1", "md5-file": "^5.0.0", "mini-svg-data-uri": "^1.3.3", "p-queue": "^6.6.2", diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index ec10948c3beaf..2f5b03169581c 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.9.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.1) (2021-06-28) + +### Bug Fixes + +- **gatsby:** correct args type in createParentChildLink ([#32139](https://github.com/gatsbyjs/gatsby/issues/32139)) ([31828e4](https://github.com/gatsbyjs/gatsby/commit/31828e48fe1e5cd8fb2246440e3edb7d0a4ec779)) +- **gatsby:** leave `xmlns` element when optimizing SVGs ([#32123](https://github.com/gatsbyjs/gatsby/issues/32123)) ([27c01fc](https://github.com/gatsbyjs/gatsby/commit/27c01fcdb6a923986cf390a2bb5ac61b340a2865)) + +### Features + +- add unstable_onPluginInit that would execute once in all processes ([#31901](https://github.com/gatsbyjs/gatsby/issues/31901)) ([2bf8c0d](https://github.com/gatsbyjs/gatsby/commit/2bf8c0d37fd6de3fbbbe7e543275cfd6d64ec9de)) +- **gatsby:** enable webpack caching for all ([#32018](https://github.com/gatsbyjs/gatsby/issues/32018)) ([174d3f1](https://github.com/gatsbyjs/gatsby/commit/174d3f1496949a8751bd052ef365f901bbdde23b)) +- **gatsby:** PQR worker can create schema ([#31919](https://github.com/gatsbyjs/gatsby/issues/31919)) ([308eb94](https://github.com/gatsbyjs/gatsby/commit/308eb942f3264fd0c1579b553cc74d81f9219fff)) +- **gatsby:** PQR worker can run page queries ([#32017](https://github.com/gatsbyjs/gatsby/issues/32017)) ([44257b6](https://github.com/gatsbyjs/gatsby/commit/44257b636fe0cc4d4294673f9cb76f26b72f91b5)) +- **gatsby:** PQR worker can run static queries ([#32000](https://github.com/gatsbyjs/gatsby/issues/32000)) ([a6fd7b1](https://github.com/gatsbyjs/gatsby/commit/a6fd7b102480e3a9d74789e5181c8ad297641366)) + # [3.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.9.0-next.0) (2021-06-18) **Note:** Version bump only for package gatsby diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index d0431407ec135..beb18bd3955c7 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "3.9.0-next.0", + "version": "3.9.0-next.1", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js" @@ -75,16 +75,16 @@ "find-cache-dir": "^3.3.1", "fs-exists-cached": "1.0.0", "fs-extra": "^8.1.0", - "gatsby-cli": "^3.9.0-next.0", + "gatsby-cli": "^3.9.0-next.1", "gatsby-core-utils": "^2.9.0-next.0", "gatsby-graphiql-explorer": "^1.9.0-next.0", "gatsby-legacy-polyfills": "^1.9.0-next.0", "gatsby-link": "^3.9.0-next.0", - "gatsby-plugin-page-creator": "^3.9.0-next.0", + "gatsby-plugin-page-creator": "^3.9.0-next.1", "gatsby-plugin-typescript": "^3.9.0-next.0", - "gatsby-plugin-utils": "^1.9.0-next.0", + "gatsby-plugin-utils": "^1.9.0-next.1", "gatsby-react-router-scroll": "^4.9.0-next.0", - "gatsby-telemetry": "^2.9.0-next.0", + "gatsby-telemetry": "^2.9.0-next.1", "glob": "^7.1.6", "got": "8.3.2", "graphql": "^15.4.0",
96fdb6b211b08be1f2dc91e9fc5d986d1e5d4d48
2020-08-01 01:54:48
Muescha
fix(readme): gatsby-remark-images -> put code in code fences (#25854)
false
gatsby-remark-images -> put code in code fences (#25854)
fix
diff --git a/packages/gatsby-remark-images/README.md b/packages/gatsby-remark-images/README.md index 3c12f8ae4ec88..a542a91c95b50 100644 --- a/packages/gatsby-remark-images/README.md +++ b/packages/gatsby-remark-images/README.md @@ -55,19 +55,19 @@ You can reference an image using the relative path, where that path is relative | 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. | -| `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. | +| `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. If the title attribute is empty but the alt attribute is not, it will be used instead. Set this option to true to enable this behavior. You can also pass an array instead to specify which value should be used for the caption — for example, passing `['alt', 'title']` would use the alt attribute first, and then the title. When this is set to `true` it is the same as passing `['title', 'alt']`. If you just want to use the title (and omit captions for images that have alt attributes but no title), pass `['title']`. | | `markdownCaptions` | `false` | Parse the caption as markdown instead of raw text. Ignored if `showCaptions` is `false`. | | `sizeByPixelDensity` | `false` | [deprecated] Pixel density is only used in vector images, which Gatsby’s implementation of Sharp doesn’t support. This option is currently a no-op and will be removed in the next major version of Gatsby. | -| `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;` or a function returning a style string which receives the information about the image you can use to dynamically set styles based on the aspectRatio for example. | +| `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;` or a function returning a style string which receives the information about the image you can use to dynamically set styles based on the `aspectRatio` for example. | | `backgroundColor` | `white` | Set the background color of the image to match the background image of your design.<br /><br />**Note:**<br />- set this option to `transparent` for a transparent image background.<br /> - set this option to `none` to completely remove the image background. | | `quality` | `50` | The quality level of the generated files. | | `withWebp` | `false` | Additionally generate WebP versions alongside your chosen file format. They are added as a srcset with the appropriate mimetype and will be loaded in browsers that support the format. Pass `true` for default support, or an object of options to specifically override those for the WebP files. For example, pass `{ quality: 80 }` to have the WebP images be at quality level 80. | -| `tracedSVG` | `false` | Use traced SVGs for placeholder images instead of the "blur up" effect. Pass `true` for traced SVGs with the default settings (seen [here][3]), or an object of options to override the defaults. For example, pass `{ color: "#F00", turnPolicy: "TURNPOLICY_MAJORITY" }` to change the color of the trace to red and the turn policy to TURNPOLICY_MAJORITY. See [`node-potrace` parameter documentation][4] for a full listing and explanation of the available options. | +| `tracedSVG` | `false` | Use traced SVGs for placeholder images instead of the "blur up" effect. Pass `true` for traced SVGs with the default settings (seen [here][3]), or an object of options to override the defaults. For example, pass `{ color: "#F00", turnPolicy: "TURNPOLICY_MAJORITY" }` to change the color of the trace to red and the turn policy to `TURNPOLICY_MAJORITY`. See [`node-potrace` parameter documentation][4] for a full listing and explanation of the available options. | | `loading` | `lazy` | Set the browser's native lazy loading attribute. One of `lazy`, `eager` or `auto`. | | `disableBgImageOnAlpha` | `false` | Images containing transparent pixels around the edges results in images with blurry edges. As a result, these images do not work well with the "blur up" technique used in this plugin. As a workaround to disable background images with blurry edges on images containing transparent pixels, enable this setting. | | `disableBgImage` | `false` | Remove background image and its' inline style. Useful to prevent `Stylesheet too long` error on AMP. | -| `srcSetBreakpoints` | | By default gatsby generates 0.25x, 0.5x, 1x, 1.5x, 2x, and 3x sizes of thumbnails. If you want more control over which sizes are output you can use the `srcSetBreakpoints` parameter. For example, if you want images that are 200, 340, 520, and 890 wide you can add srcSetBreakpoints: [ 200, 340, 520, 890 ] as a parameter. You will also get maxWidth as a breakpoint (which is 650 by default), so you will actually get [ 200, 340, 520, 650, 890 ] as breakpoints. | +| `srcSetBreakpoints` | | By default gatsby generates 0.25x, 0.5x, 1x, 1.5x, 2x, and 3x sizes of thumbnails. If you want more control over which sizes are output you can use the `srcSetBreakpoints` parameter. For example, if you want images that are 200, 340, 520, and 890 wide you can add `srcSetBreakpoints: [ 200, 340, 520, 890 ]` as a parameter. You will also get `maxWidth` as a breakpoint (which is 650 by default), so you will actually get `[ 200, 340, 520, 650, 890 ]` as breakpoints. | ## dynamic wrapperStyle example @@ -88,7 +88,7 @@ This plugin will support the following formats: - JPEG - PNG -Since [Sharp][5] is used for image processing, this plugin will not support GIFs or SVGs. If you would like to render these file types with the image markdown syntax, use the [gatsby-remark-copy-linked-files](https://www.gatsbyjs.org/packages/gatsby-remark-copy-linked-files/) plugin. Do note with this it will load in the images, but won't use the features of [Sharp][5] such as the elastic container or the blur-up enhancements. +Since [Sharp][5] is used for image processing, this plugin will not support GIFs or SVGs. If you would like to render these file types with the image markdown syntax, use the [`gatsby-remark-copy-linked-files`](https://www.gatsbyjs.org/packages/gatsby-remark-copy-linked-files/) plugin. Do note with this it will load in the images, but won't use the features of [Sharp][5] such as the elastic container or the blur-up enhancements. [1]: https://jmperezperez.com/medium-image-progressive-loading-placeholder/ [2]: https://code.facebook.com/posts/991252547593574/the-technology-behind-preview-photos/
5cb24607e50610a4f582e0c93bfd02f42f7aab50
2020-02-11 02:19:51
Nat Alison
fix(docs): Move "Setting Up Your Local Dev Environment" under "Code Contributions" (#21322)
false
Move "Setting Up Your Local Dev Environment" under "Code Contributions" (#21322)
fix
diff --git a/www/src/data/sidebars/contributing-links.yaml b/www/src/data/sidebars/contributing-links.yaml index 9700072853c8d..7d1a26aaf3005 100644 --- a/www/src/data/sidebars/contributing-links.yaml +++ b/www/src/data/sidebars/contributing-links.yaml @@ -56,8 +56,9 @@ link: /contributing/blog-and-website-contributions/ - title: Code Contributions link: /contributing/code-contributions/ - - title: Setting Up Your Local Dev Environment - link: /contributing/setting-up-your-local-dev-environment/ + items: + - title: Setting Up Your Local Dev Environment + link: /contributing/setting-up-your-local-dev-environment/ - title: Docs and Website Components link: /contributing/docs-and-website-components/ - title: Community Contributions
482ea8d8849ee20b9c21d9911c8bdc9a801a4efa
2019-07-12 01:07:35
Michal Piechowiak
fix(gatsby): handle `/404/`, `/404`, `404/` or `404` page paths (#15615)
false
handle `/404/`, `/404`, `404/` or `404` page paths (#15615)
fix
diff --git a/docs/docs/add-404-page.md b/docs/docs/add-404-page.md index 4bee550e0fdc3..6dbff94ecdf3c 100644 --- a/docs/docs/add-404-page.md +++ b/docs/docs/add-404-page.md @@ -3,7 +3,7 @@ title: "Adding a 404 Page" --- To create a 404 page create a page whose path matches the regex -`/404*`. Most often you'll want to create a React component page at +`^\/?404\/?$` (`/404/`, `/404`, `404/` or `404`). Most often you'll want to create a React component page at `src/pages/404.js`. Gatsby ensures that your 404 page is built as `404.html` as many static hosting diff --git a/packages/gatsby/src/internal-plugins/prod-404/gatsby-node.js b/packages/gatsby/src/internal-plugins/prod-404/gatsby-node.js index e74f4f0babdac..d1ff7d6694339 100644 --- a/packages/gatsby/src/internal-plugins/prod-404/gatsby-node.js +++ b/packages/gatsby/src/internal-plugins/prod-404/gatsby-node.js @@ -3,7 +3,7 @@ exports.onCreatePage = ({ page, store, actions }) => { // Copy /404/ to /404.html as many static site hosts expect // site 404 pages to be named this. // https://www.gatsbyjs.org/docs/add-404-page/ - if (!created404 && page.path === `/404/`) { + if (!created404 && /^\/?404\/?$/.test(page.path)) { actions.createPage({ ...page, path: `/404.html`,
ff432c3b3802fa4e5e2b5e631b6905067db58417
2021-10-21 20:36:07
Marijan Barkic
chore(gatsby-source-faker): Update README (#33606)
false
Update README (#33606)
chore
diff --git a/packages/gatsby-source-faker/README.md b/packages/gatsby-source-faker/README.md index e37a3d17f8cda..b53a0584059f2 100644 --- a/packages/gatsby-source-faker/README.md +++ b/packages/gatsby-source-faker/README.md @@ -1,8 +1,8 @@ -## gatsby-source-faker +# gatsby-source-faker -This is a plugin that allows you to use [faker.js](https://github.com/marak/Faker.js/) to generate fake data for gatsby sites. This could come in handy for creating example sites, documentation, or just to experiment with Gatsby.js +This is a plugin that allows you to use [faker.js](https://github.com/marak/Faker.js/) to generate fake data for Gatsby sites. This could come in handy for creating example sites, documentation, or just to experiment with Gatsby. -### To use it +## How to use it Install `gatsby-source-faker` @@ -10,12 +10,6 @@ Install `gatsby-source-faker` npm install gatsby-source-faker ``` -or - -```shell -npm install gatsby-source-faker -``` - Add `gatsby-source-faker` to the `gatsby-config.js` as follows ```javascript
99f80008b74ba7418f9a8c60a2ebdbd70ddc5dae
2020-04-23 07:39:45
Blaine Kasten
chore(gatsby-preset-gatsby-package): Remove tsconfig.json (#23388)
false
Remove tsconfig.json (#23388)
chore
diff --git a/packages/babel-preset-gatsby-package/tsconfig.json b/packages/babel-preset-gatsby-package/tsconfig.json deleted file mode 100644 index 4082f16a5d91c..0000000000000 --- a/packages/babel-preset-gatsby-package/tsconfig.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "../../tsconfig.json" -}
0939b3405fe5fce239666b9044524d1b56af836f
2023-04-03 18:15:22
LekoArts
chore: Fix dirty lock file
false
Fix dirty lock file
chore
diff --git a/yarn.lock b/yarn.lock index 43dd48f9068a9..d98e90717d530 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10811,7 +10811,7 @@ fastparse@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" -fastq@^1.13.0, fastq@^1.15.0, fastq@^1.6.0: +fastq@^1.15.0, fastq@^1.6.0: version "1.15.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
2bd523ad05d3484a6589e0146bd8d55c4381e57e
2022-11-23 19:24:36
Josh Johnson
chore(docs): Remove tracedSVG option from docs (#37090)
false
Remove tracedSVG option from docs (#37090)
chore
diff --git a/docs/docs/conceptual/image-plugin-architecture.md b/docs/docs/conceptual/image-plugin-architecture.md index 159e436259988..80114fa595290 100644 --- a/docs/docs/conceptual/image-plugin-architecture.md +++ b/docs/docs/conceptual/image-plugin-architecture.md @@ -30,7 +30,7 @@ The plugin exports a number of other helper functions designed to help end-users ### `gatsby-plugin-sharp` -This includes the actual image processing functions from sharp and potrace. It includes the functions that generate the image data object, including calculating which srcset sizes to generate. It exports `generateImageData`, which is used by `gatsby-transformer-sharp` and `gatsby-plugin-image`. It takes a `File` node and the image processing arguments, calculates which images to generate, processes these images and returns an image data object suitable for passing to `GatsbyImage`. It also exports helper functions for third party plugins to use, such as `traceSVG`. +This includes the actual image processing functions from sharp. It includes the functions that generate the image data object, including calculating which srcset sizes to generate. It exports `generateImageData`, which is used by `gatsby-transformer-sharp` and `gatsby-plugin-image`. It takes a `File` node and the image processing arguments, calculates which images to generate, processes these images and returns an image data object suitable for passing to `GatsbyImage`. It also exports helper functions for third party plugins to use, such as `generateImageData`. ### `gatsby-transformer-sharp` @@ -62,7 +62,7 @@ The `GatsbyImage` component supports three types of layout, which define the res #### Placeholder -`GatsbyImage` supports displaying a placeholder while the main image loads. There are two kinds of placeholder that are currently supported: flat colors and images. The type of placeholder is set via the image data object, and will either be a data URI for the image, or a CSS color value. The image will either be a base64-encoded low resolution raster image (called `BLURRED` when using sharp) or a URI-encoded SVG (called `TRACED_SVG`). The raster image will by default be 20px wide, and the same aspect ratio as the main image. This will be resized to fill the full container, giving a blurred effect. The SVG image is expected to be a single-color, simplified SVG generated using [potrace](http://potrace.sourceforge.net/). While these are the defaults produced by sharp, and also used by many third-party source plugins, we do not enforce this, and it can be any URI. We strongly encourage the use of inline data URIs, as any placeholder that needs to make a network request will defeat much of the purpose of using a placeholder. The actual placeholder element is a regular `<img>` tag, even for SVGs. +`GatsbyImage` supports displaying a placeholder while the main image loads. There are two kinds of placeholder that are currently supported: flat colors and images. The type of placeholder is set via the image data object, and will either be a data URI for the image, or a CSS color value. The image will be a base64-encoded low resolution raster image (called `BLURRED` when using sharp). The raster image will by default be 20px wide, and the same aspect ratio as the main image. This will be resized to fill the full container, giving a blurred effect. While these are the defaults produced by sharp, and also used by many third-party source plugins, we do not enforce this, and it can be any URI. We strongly encourage the use of inline data URIs, as any placeholder that needs to make a network request will defeat much of the purpose of using a placeholder. The actual placeholder element is a regular `<img>` tag, even for SVGs. The alternative placeholder is a flat color. This is expected to be calculated from the dominant color of the source image. sharp supports performing this calculation, and some CMSs provide it in the image metadata. This color is applied as a background color to a placeholder `<div>` element. diff --git a/docs/docs/conceptual/using-gatsby-image.md b/docs/docs/conceptual/using-gatsby-image.md index 9a2fa05703a24..78b863fc7ef8a 100644 --- a/docs/docs/conceptual/using-gatsby-image.md +++ b/docs/docs/conceptual/using-gatsby-image.md @@ -52,7 +52,7 @@ When a browser doesn't know how big an image is going to be, either because the In addition, when an image appears, it goes from blank background to fully there from one frame to another. This can also be visually jarring. Like CSS has a `transition` prop to help position shifts feel gradual, images feel more aesthetically pleasing when they have placeholders. -Gatsby Image's will hold the spot for your image automatically when you specify `width` prop, and depending on your preference, will provide a background -- blurred, a background color, or traced SVG, while the image loads. +Gatsby Image's will hold the spot for your image automatically when you specify `width` prop, and depending on your preference, will provide a background -- blurred or a background color, while the image loads. ![Gatsby Image Gradual Transition](../images/gatsby-image-gif.gif) diff --git a/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md b/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md index 9281842cd9b38..991525ee3bf95 100644 --- a/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md +++ b/docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md @@ -212,7 +212,6 @@ module.exports = { quality: 50, breakpoints: [750, 1080, 1366, 1920], backgroundColor: `transparent`, - tracedSVGOptions: {}, blurredOptions: {}, jpgOptions: {}, pngOptions: {}, diff --git a/docs/docs/how-to/plugins-and-themes/adding-gatsby-image-support.md b/docs/docs/how-to/plugins-and-themes/adding-gatsby-image-support.md index cc82f799d1fb9..a632fece6f084 100644 --- a/docs/docs/how-to/plugins-and-themes/adding-gatsby-image-support.md +++ b/docs/docs/how-to/plugins-and-themes/adding-gatsby-image-support.md @@ -7,7 +7,7 @@ Support for these are available out of the box in `gatsby-transformer-sharp`, so ## Adding a `gatsbyImageData` GraphQL resolver -You can give your users the best experience by adding a `gatsbyImageData` resolver to your image nodes. This allows you to generate low-resolution or traced SVG images as inline data URIs to use as placeholders. You can also calculate the image's dominant color for an alternative placeholder. These are the same placeholders that are included with `gatsby-transformer-sharp`, and will give the best experience for your users. If you are able to deliver these directly from your CMS or other data source then this is ideal, but otherwise you can use helper functions included in `gatsby-plugin-sharp`. +You can give your users the best experience by adding a `gatsbyImageData` resolver to your image nodes. This allows you to generate low-resolution images as inline data URIs to use as placeholders. You can also calculate the image's dominant color for an alternative placeholder. These are the same placeholders that are included with `gatsby-transformer-sharp`, and will give the best experience for your users. If you are able to deliver these directly from your CMS or other data source then this is ideal, but otherwise you can use helper functions included in `gatsby-plugin-sharp`. There are three steps to add a basic `gatsbyImageData` resolver: @@ -72,7 +72,7 @@ const resolveGatsbyImageData = async (image, options) => { } // You could also calculate dominant color, and pass that as `backgroundColor` - // gatsby-plugin-sharp includes helpers that you can use to generate a tracedSVG or calculate + // gatsby-plugin-sharp includes helpers that you can use, such as calculating // the dominant color of a local file, if you don't want to handle it in your plugin diff --git a/docs/docs/reference/built-in-components/gatsby-image.md b/docs/docs/reference/built-in-components/gatsby-image.md index efc9c9f24ef1c..6e1a641620423 100644 --- a/docs/docs/reference/built-in-components/gatsby-image.md +++ b/docs/docs/reference/built-in-components/gatsby-image.md @@ -294,28 +294,20 @@ GraphQL includes a concept called "query fragments", which are a part of a query - `GatsbyImageSharpFixed` - `GatsbyImageSharpFixed_noBase64` -- `GatsbyImageSharpFixed_tracedSVG` - `GatsbyImageSharpFixed_withWebp` - `GatsbyImageSharpFixed_withWebp_noBase64` -- `GatsbyImageSharpFixed_withWebp_tracedSVG` #### Fluid images - `GatsbyImageSharpFluid` - `GatsbyImageSharpFluid_noBase64` -- `GatsbyImageSharpFluid_tracedSVG` - `GatsbyImageSharpFluid_withWebp` - `GatsbyImageSharpFluid_withWebp_noBase64` -- `GatsbyImageSharpFluid_withWebp_tracedSVG` #### About `noBase64` If you don't want to use the [blur-up effect](https://using-gatsby-image.gatsbyjs.org/blur-up/), choose the fragment with `noBase64` at the end. -#### About `tracedSVG` - -If you want to use the [traced placeholder SVGs](https://using-gatsby-image.gatsbyjs.org/traced-svg/), choose the fragment with `tracedSVG` at the end. - #### About `withWebp` If you want to automatically use [WebP images](https://developers.google.com/speed/webp/) when the browser supports the file format, use the `withWebp` fragments. If the browser doesn't support WebP, `gatsby-image` will fall back to the default image format. @@ -327,7 +319,7 @@ file(relativePath: { eq: "images/default.jpg" }) { childImageSharp { fluid { // highlight-next-line - ...GatsbyImageSharpFluid_tracedSVG + ...GatsbyImageSharpFluid } } } diff --git a/docs/docs/reference/built-in-components/gatsby-plugin-image.md b/docs/docs/reference/built-in-components/gatsby-plugin-image.md index a7270605815c9..2136c4a1468a1 100644 --- a/docs/docs/reference/built-in-components/gatsby-plugin-image.md +++ b/docs/docs/reference/built-in-components/gatsby-plugin-image.md @@ -232,12 +232,11 @@ For `fullWidth` images you don't specify width or height, as it resizes to fit t Gatsby image components are lazy-loaded by default, which means that if they are offscreen they are not loaded by the browser until they come into view. To ensure that the layout does not jump around, a placeholder is displayed before the image loads. You can choose one of three types of placeholder (or not use a placeholder at all): -| Placeholder | Component prop value | Resolver prop value | Description | -| -------------- | -------------------- | ------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Dominant color | `"dominantColor"` | `DOMINANT_COLOR` | The default placeholder. This calculates the dominant color of the source image and uses it as a solid background color. | -| Blurred | `"blurred"` | `BLURRED` | This generates a very low-resolution version of the source image and displays it as a blurred background. | -| Traced SVG | `"tracedSVG"` | `TRACED_SVG` | This generates a simplified, flat SVG version of the source image, which it displays as a placeholder. This works well for images with simple shapes or that include transparency. | -| None | `"none"` | `NONE` | No placeholder. You can use the background color option to set a static background if you wish. | +| Placeholder | Component prop value | Resolver prop value | Description | +| -------------- | -------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------ | +| Dominant color | `"dominantColor"` | `DOMINANT_COLOR` | The default placeholder. This calculates the dominant color of the source image and uses it as a solid background color. | +| Blurred | `"blurred"` | `BLURRED` | This generates a very low-resolution version of the source image and displays it as a blurred background. | +| None | `"none"` | `NONE` | No placeholder. You can use the background color option to set a static background if you wish. | ### `formats` @@ -275,7 +274,6 @@ The Gatsby Image plugin uses [sharp](https://sharp.pixelplumbing.com) for image | `outputPixelDensities` | For fixed images: `[1, 2]`<br />For constrained: `[0.25, 0.5, 1, 2]` | A list of image pixel densities to generate. It will never generate images larger than the source, and will always include a 1x image. The value is multiplied by the image width, to give the generated sizes. For example, a `400` px wide constrained image would generate `100`, `200`, `400` and `800` px wide images by default. Ignored for full width layout images, which use `breakpoints` instead. | | `breakpoints` | `[750, 1080, 1366, 1920]` | Output widths to generate for full width images. Default is to generate widths for common device resolutions. It will never generate an image larger than the source image. The browser will automatically choose the most appropriate. | | `blurredOptions` | None | Options for the low-resolution placeholder image. Ignored unless [`placeholder`](#placeholder) is blurred. | -| `tracedSVGOptions` | None | Options for traced placeholder SVGs. See [potrace options](https://www.npmjs.com/package/potrace#parameters). Ignored unless [`placeholder`](#placeholder) is traced SVG. | | `jpgOptions` | None | Options to pass to sharp when generating JPG images. | | `pngOptions` | None | Options to pass to sharp when generating PNG images. | | `webpOptions` | None | Options to pass to sharp when generating WebP images. | @@ -300,7 +298,6 @@ module.exports = { quality: 50, breakpoints: [750, 1080, 1366, 1920], backgroundColor: `transparent`, - tracedSVGOptions: {}, blurredOptions: {}, jpgOptions: {}, pngOptions: {}, diff --git a/docs/docs/reference/release-notes/image-migration-guide.md b/docs/docs/reference/release-notes/image-migration-guide.md index e5c544c7c0a33..afad1c9f55c09 100644 --- a/docs/docs/reference/release-notes/image-migration-guide.md +++ b/docs/docs/reference/release-notes/image-migration-guide.md @@ -110,7 +110,7 @@ Previously, images generated their own type by default, e.g. JPG, PNG, etc. You Previously, transformations like `grayscale` and quality options such as `pngQuality` were top level query arguments. This has changed. -`grayscale` now exists within the `transformOptions` argument, and `pngQuality` becomes `quality` inside `pngOptions`. The `traceSVG` object is now `tracedSVGOptions`. See the [`gatsby-plugin-image` Reference Guide](/docs/reference/built-in-components/gatsby-plugin-image) for specifics. +`grayscale` now exists within the `transformOptions` argument, and `pngQuality` becomes `quality` inside `pngOptions`. See the [`gatsby-plugin-image` Reference Guide](/docs/reference/built-in-components/gatsby-plugin-image) for specifics. ### Breaking changes diff --git a/docs/docs/reference/release-notes/migrating-from-v1-to-v2.md b/docs/docs/reference/release-notes/migrating-from-v1-to-v2.md index eab564e6fc6f1..ece51bd5cadcb 100644 --- a/docs/docs/reference/release-notes/migrating-from-v1-to-v2.md +++ b/docs/docs/reference/release-notes/migrating-from-v1-to-v2.md @@ -875,9 +875,9 @@ export const pageQuery = graphql` foo: file(relativePath: { regex: "/foo.jpg/" }) { childImageSharp { - sizes(maxWidth: 700) { -- ...GatsbyImageSharpSizes_tracedSVG +- ...GatsbyImageSharpSizes + fluid(maxWidth: 700) { -+ ...GatsbyImageSharpFluid_tracedSVG ++ ...GatsbyImageSharpFluid } } } diff --git a/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md b/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md index 92a44db1861b3..aaaa92dc3e7ae 100644 --- a/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md +++ b/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md @@ -274,9 +274,9 @@ export const pageQuery = graphql` foo: file(relativePath: { regex: "/foo.jpg/" }) { childImageSharp { - sizes(maxWidth: 700) { -- ...GatsbyImageSharpSizes_tracedSVG +- ...GatsbyImageSharpSizes + fluid(maxWidth: 700) { -+ ...GatsbyImageSharpFluid_tracedSVG ++ ...GatsbyImageSharpFluid } } } diff --git a/docs/tutorial/wordpress-image-tutorial.md b/docs/tutorial/wordpress-image-tutorial.md index 08b393760db3d..0a8dce99187b2 100644 --- a/docs/tutorial/wordpress-image-tutorial.md +++ b/docs/tutorial/wordpress-image-tutorial.md @@ -16,7 +16,7 @@ In this tutorial, you will install the several image plugins and components in o Images are one of the most beautiful and striking ways to communicate to people, and are a key part of creating an effective and positive user experience; at the same time, high quality images can load slowly and cause text boxes to jump around, both of which make it difficult for people to be patient with visiting your website. -The Gatsby Way™ of creating images describes a set of best practices that help you optimize performance and responsiveness of images so that you can get the benefits of awesome images that don't slow down your site. This [Gatsbygram site](https://gatsbygram.gatsbyjs.org/) (an Instagram feed fed through Gatsby) shows off the SVG image tracing effect. Here’s an [image processing demo site](https://image-processing.gatsbyjs.org/) exploring how to have fun with images in your Gatsby site. +The Gatsby Way™ of creating images describes a set of best practices that help you optimize performance and responsiveness of images so that you can get the benefits of awesome images that don't slow down your site. ## Installing the `gatsby-source-wordpress` plugin @@ -201,8 +201,6 @@ Here’s an example query for generating different sizes of an image: } ``` -In either case, you can add traced SVG support by adding `_tracedSVG` to the end of each fragment. _Note this won’t work in the GraphQL explorer._ - ## Rendering the images to `index.js` Here is what your `index.js` should look like with the query added: @@ -243,7 +241,7 @@ export const query = graphql` childImageSharp { # edit the maxWidth value to generate resized images fixed(width: 500, height: 500) { - ...GatsbyImageSharpFixed_withWebp_tracedSVG + ...GatsbyImageSharpFixed_withWebp } } } @@ -264,7 +262,7 @@ Your demo site should look something like this: It is useful and can be fun to purposefully slow down your browser to see image effects animate more slowly. -Open your browser console and change the network speed to something slower. In Chrome, you can click on the “network” tab, then on the drop down arrow next to the word “Online.” Then click “Slow 3G.” Now, reload your page and watch the blur-up and SVG effects in action. The network tab also shows statistics on when each image loaded and how much time it took them to load. +Open your browser console and change the network speed to something slower. In Chrome, you can click on the “network” tab, then on the drop down arrow next to the word “Online.” Then click “Slow 3G.” Now, reload your page and watch the blur-up effect in action. The network tab also shows statistics on when each image loaded and how much time it took them to load. ![Network](./images/network.png)
748f83353bc08218b3f248a5b5eaff41302800df
2019-04-02 15:02:51
Sidhartha Chatterjee
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-image/CHANGELOG.md b/packages/gatsby-image/CHANGELOG.md index 08584d7c04232..7f061fdca9f11 100644 --- a/packages/gatsby-image/CHANGELOG.md +++ b/packages/gatsby-image/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.37](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/compare/[email protected]@2.0.37) (2019-04-02) + +### Features + +- **gatsby-image:** don't fadein image when already loaded "browser-cache" ([#12468](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/issues/12468)) ([8646aa4](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/commit/8646aa4)), closes [#12254](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/issues/12254) + ## [2.0.36](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image/compare/[email protected]@2.0.36) (2019-04-01) **Note:** Version bump only for package gatsby-image diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json index 0a494e6159b62..3e98c52bdbd2d 100644 --- a/packages/gatsby-image/package.json +++ b/packages/gatsby-image/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-image", "description": "Lazy-loading React image component with optional support for the blur-up effect.", - "version": "2.0.36", + "version": "2.0.37", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index ba67967dbd151..0f9cd87cd963a 100644 --- a/packages/gatsby-source-drupal/CHANGELOG.md +++ b/packages/gatsby-source-drupal/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.0.33](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal/compare/[email protected]@3.0.33) (2019-04-02) + +**Note:** Version bump only for package gatsby-source-drupal + ## [3.0.32](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal/compare/[email protected]@3.0.32) (2019-03-22) **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 3b8ccec7dabd8..8ac4151c877c0 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.0.32", + "version": "3.0.33", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-source-medium/CHANGELOG.md b/packages/gatsby-source-medium/CHANGELOG.md index 8df4e614f461d..4d5f7b0ed8290 100644 --- a/packages/gatsby-source-medium/CHANGELOG.md +++ b/packages/gatsby-source-medium/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.7](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-medium/compare/[email protected]@2.0.7) (2019-04-02) + +**Note:** Version bump only for package gatsby-source-medium + ## [2.0.6](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-medium/compare/[email protected]@2.0.6) (2019-03-15) **Note:** Version bump only for package gatsby-source-medium diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json index cc7a570c4f1c5..94e5c7616d45b 100644 --- a/packages/gatsby-source-medium/package.json +++ b/packages/gatsby-source-medium/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-medium", "description": "Gatsby source plugin for building websites using Medium as a data source", - "version": "2.0.6", + "version": "2.0.7", "author": "Robert Vogt <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-transformer-toml/CHANGELOG.md b/packages/gatsby-transformer-toml/CHANGELOG.md index ece1bac86a83e..0a7b4065060a3 100644 --- a/packages/gatsby-transformer-toml/CHANGELOG.md +++ b/packages/gatsby-transformer-toml/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.1.8](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-toml/compare/[email protected]@2.1.8) (2019-04-02) + +**Note:** Version bump only for package gatsby-transformer-toml + ## [2.1.7](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-toml/compare/[email protected]@2.1.7) (2019-03-11) **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 de1d67f38ec57..95013f9aa6089 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.1.7", + "version": "2.1.8", "author": "Ruben Harutyunyan <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index bf211f5e03a74..8e7fa0e51819e 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.3.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.5) (2019-04-02) + +### Bug Fixes + +- **gatsby:** Only use one redux namespace for plugins ([#12263](https://github.com/gatsbyjs/gatsby/issues/12263)) ([bba69e9](https://github.com/gatsbyjs/gatsby/commit/bba69e9)) + +### Features + +- **gatsby-cli:** Detect if something is already running on a port when running gatsby serve ([#12989](https://github.com/gatsbyjs/gatsby/issues/12989)) ([e587e57](https://github.com/gatsbyjs/gatsby/commit/e587e57)) + ## [2.3.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.4) (2019-03-28) ### Features diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 7c7a188bd7831..6d8749bdb02b1 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.4", + "version": "2.3.5", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js"
4842417a536ed2435cdc98fb9ca75c171aaba8f7
2022-11-14 15:01:04
one-ness
chore(docs): Add IE 11 note to v2 to v3 migration guide (#37022)
false
Add IE 11 note to v2 to v3 migration guide (#37022)
chore
diff --git a/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md b/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md index 1e5125f572040..92a44db1861b3 100644 --- a/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md +++ b/docs/docs/reference/release-notes/migrating-from-v2-to-v3.md @@ -938,3 +938,74 @@ Gatsby will continue to work. Please track the [upstream issue](https://github.c Workspaces and their hoisting of dependencies can cause you troubles if you incrementally want to update a package. For example, if you use `gatsby-plugin-emotion` in multiple packages but only update its version in one, you might end up with multiple versions inside your project. Run `yarn why package-name` (in this example `yarn why gatsby-plugin-emotion`) to check if different versions are installed. We recommend updating all dependencies at once and re-checking it with `yarn why package-name`. You should only see one version found now. + +### Legacy Browser (IE 11 Polyfill) + +If you plan on targeting IE 11, you might run into an error like this: + +```shell +SCRIPT438: Object doesn't support property or method 'setPrototypeOf' +``` + +To fix this, first create a polyfill for `Object.setPrototypeOf()` in a file called `setPrototypeOf.js` at the root of the site: + +```js:title=setPrototypeOf.js +const setPrototypeOf = (function(Object, magic) { + 'use strict'; + var set; + function checkArgs(O, proto) { + // React calls Object.setPrototypeOf with function type, exit + if (typeof O === 'function') { return; } + if (typeof O !== 'object' || O === null) { + throw new TypeError('can not set prototype on a non-object'); + } + } + function setPrototypeOf(O, proto) { + checkArgs(O, proto); + set.call(O, proto); + return O; + } + try { + // this works already in Firefox and Safari + set = Object.getOwnPropertyDescriptor(Object.prototype, magic).set; + set.call({}, null); + } catch (o_O) { + set = function(proto) { + this[magic] = proto; + }; + setPrototypeOf.polyfill = setPrototypeOf( + setPrototypeOf({}, null), + Object.prototype + ) instanceof Object; + } + return setPrototypeOf; +}(Object, '__proto__')) + +export { setPrototypeOf } +``` + +Then create a file called `polyfills.js`, where you can add multiple polyfills (custom or imported): + +```js:title=polyfills.js +import { setPrototypeOf } from "./setPrototypeOf" + +// Polyfills +Object.setPrototypeOf = setPrototypeOf +``` + +Then inject them into webpack using the `onCreateWebpackConfig` API in `gatsy-node.js` during stage `build-javascript`: + +```js:title=gatsby-node.js +exports.onCreateWebpackConfig = ({ actions, stage, getConfig }) => { + if (stage === "build-javascript") { + const config = getConfig(); + const app = typeof config.entry.app === 'string' + ? [config.entry.app] + : config.entry.app; + config.entry.app = ['./polyfills', ...app]; + actions.replaceWebpackConfig(config); + } +} +``` + +IE11 browser will now use this polyfill for `Object.setPrototypeOf()`.
272d22f890021e87a33bd37e4eaf08f196047011
2019-07-29 12:04:49
stefanprobst
feat(gatsby-transformer-sharp): ImageSharp as child of File type(#16109)
false
ImageSharp as child of File type(#16109)
feat
diff --git a/packages/gatsby-transformer-sharp/src/gatsby-node.js b/packages/gatsby-transformer-sharp/src/gatsby-node.js index 9935c7302edd9..73c6f339c82bb 100644 --- a/packages/gatsby-transformer-sharp/src/gatsby-node.js +++ b/packages/gatsby-transformer-sharp/src/gatsby-node.js @@ -24,7 +24,7 @@ exports.sourceNodes = ({ actions }) => { if (createTypes) { createTypes(` - type ImageSharp implements Node @infer { + type ImageSharp implements Node @infer @childOf(types: ["File"]) { id: ID! } `)
5035fd95a2644db588ebc4713d5076a4c37088b3
2020-04-23 03:19:53
Pedro Filipe
docs: Create gitlab-continuous-integration.md (#23367)
false
Create gitlab-continuous-integration.md (#23367)
docs
diff --git a/docs/docs/recipes/gitlab-continuous-integration.md b/docs/docs/recipes/gitlab-continuous-integration.md new file mode 100644 index 0000000000000..eb3ae7967219f --- /dev/null +++ b/docs/docs/recipes/gitlab-continuous-integration.md @@ -0,0 +1,60 @@ +--- +title: "Recipes: Continuous Integration on Gitlab" +tableOfContentsDepth: 1 +--- + +Continuous Integration works by pushing small code chunks to your application’s code base hosted in a Git repository, and, to every push, run a pipeline of scripts to build, test, and validate the code changes before merging them into the main branch. +This recipe helps you set up CI/CD on Gitlab and automate your production build!. + +### Prerequisites + +- Make sure you have the [Gatsby CLI](/docs/gatsby-cli) installed +- A [Gitlab](https://gitlab.com/) account + +### Directions + +1. Create a gatsby site + +```shell +gatsby new {your-project-name} +``` + +2. Change directory and start a development server + +```shell +cd {your-project-name} +yarn develop +``` + +3. Stop your development server (`Ctrl + C` on your command line in most cases) + +4. Create a `.gitlab-ci.yml` with the following content: + +``` + image: node:latest + + stages: + - build + + cache: + paths: + - node_modules/ + + install_dependencies: + stage: build + script: + - npm install + artifacts: + paths: + - node_modules/ +``` + +3. `git push <you-remote-gitlab-repo>` +4. Check out your pipeline under the CI/CD option. + +### Additional resources + +- See how you can develop this simple file into something more real world [Gitlab CI/CD Docs](https://docs.gitlab.com/ee/ci/README.html) +- Check this especially to learn how to make your newly build available for a next job - [Gitlab Job Artifacts Docs](https://docs.gitlab.com/ee/ci/pipelines/job_artifacts.html) + +- [Getting started with GitLab CI/CD](https://gitlab.com/help/ci/quick_start/README)
6fce3618c9a842df44a590c10be5c5ae57985b86
2019-03-28 14:47:49
Jonathan Conway
docs: Replace npm run develop with gatsby develop (#12456)
false
Replace npm run develop with gatsby develop (#12456)
docs
diff --git a/docs/docs/sourcing-from-netlify-cms.md b/docs/docs/sourcing-from-netlify-cms.md index 38cad957e7d1e..547b0d3f6d540 100644 --- a/docs/docs/sourcing-from-netlify-cms.md +++ b/docs/docs/sourcing-from-netlify-cms.md @@ -77,11 +77,11 @@ collections: - { name: body, label: Body, widget: markdown } ``` -Then in your terminal run `npm run develop` to start the Gatsby development server. Once the server -is running, it will print the address to open for viewing. It's typically `localhost:8000`. Open that -in a browser and you should see the text "Hello World" in the top left corner. Now navigate to -`/admin/` - so if your site is at `localhost:8000`, go to `localhost:8000/admin/`. **The trailing -slash is required!** +Then in your terminal run `gatsby develop` to start the +Gatsby development server. Once the server is running, it will print the address to open for +viewing. It's typically `localhost:8000`. Open that in a browser and you should see the text +"Hello World" in the top left corner. Now navigate to `/admin/` - so if your site is at +`localhost:8000`, go to `localhost:8000/admin/`. **The trailing slash is required!** You should now be viewing your Netlify CMS instance. You defined a "blog" collection in the configuration above, so you can create new blogs, but Netlify CMS will only store them in memory -
1a8bbd7196141631369099ee413c2a2632d40bf0
2020-03-24 19:51:12
Benjamin Lannon
chore(showcase): Remove sites from showcase (#22541)
false
Remove sites from showcase (#22541)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index 1653d4d548e35..01a641d963a13 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -425,19 +425,6 @@ categories: - Education - Entertainment -- title: William Owen UK Portfolio / Blog - main_url: http://william-owen.co.uk/ - url: http://william-owen.co.uk/ - featured: false - description: >- - Over 20 years experience delivering customer-facing websites, internet-based - solutions and creative visual design for a wide range of companies and - organisations. - categories: - - Portfolio - - Blog - built_by: William Owen - built_by_url: https://twitter.com/twilowen - title: A4 纸网 main_url: http://www.a4z.cn/ url: http://www.a4z.cn/price @@ -738,17 +725,6 @@ categories: - Open Source - Government -- title: Pravdomil - main_url: https://pravdomil.com/ - url: https://pravdomil.com/ - source_url: https://github.com/pravdomil/pravdomil.com - featured: false - description: >- - I’ve been working both as a product designer and frontend developer for over - 5 years now. I particularly enjoy working with companies that try to meet - broad and unique user needs. - categories: - - Portfolio - title: Preston Richey Portfolio / Blog main_url: https://prestonrichey.com/ url: https://prestonrichey.com/ @@ -960,14 +936,6 @@ - Portfolio - Web Development - Blog -- title: yerevancoder - main_url: https://yerevancoder.com/ - url: https://forum.yerevancoder.com/categories - source_url: https://github.com/yerevancoder/yerevancoder.github.io - featured: false - categories: - - Blog - - Web Development - title: Ease main_url: https://www.ease.com/ url: https://www.ease.com/ @@ -1440,14 +1408,6 @@ categories: - Healthcare featured: false -- title: Hubba - description: | - Buy wholesale products from thousands of independent, verified Brands. - main_url: https://join.hubba.com/ - url: https://join.hubba.com/ - categories: - - eCommerce - featured: false - title: HyperPlay description: | In Asean's 1st Ever LOL Esports X Music Festival @@ -1849,18 +1809,6 @@ built_by: Mahipat Jadav built_by_url: https://mojaave.com/ featured: false -- title: Insights - main_url: https://justaskusers.com/ - url: https://justaskusers.com/ - description: > - Insights helps user experience (UX) researchers conduct their research and - make sense of the findings. - categories: - - User Experience - - Design - built_by: Just Ask Users - built_by_url: https://justaskusers.com/ - featured: false - title: Mintfort main_url: https://mintfort.com/ url: https://mintfort.com/ @@ -4224,21 +4172,6 @@ built_by: Patrik Szewczyk built_by_url: https://linkedin.com/in/thepatriczek/ featured: false -- title: Patrik Arvidsson's portfolio - url: https://www.patrikarvidsson.com - main_url: https://www.patrikarvidsson.com - source_url: https://github.com/patrikarvidsson/portfolio-gatsby-contentful - description: > - Personal portfolio site of Swedish interaction designer Patrik Arvidsson. Built with Gatsby, Tailwind CSS, Emotion JS and Contentful. - categories: - - Blog - - Design - - Portfolio - - Web Development - - Technology - built_by: Patrik Arvidsson - built_by_url: https://www.patrikarvidsson.com - featured: false - title: Jacob Cofman's Blog description: > Personal blog / portfolio about Jacob Cofman. @@ -6166,7 +6099,6 @@ - title: Daniel Spajic url: https://danieljs.tech/ main_url: https://danieljs.tech/ - source_url: https://github.com/dspacejs/portfolio description: > Passionate front-end developer with a deep, yet diverse skillset. categories: @@ -6645,16 +6577,6 @@ - Nonprofit built_by: Jacob Herper built_by_url: https://herper.io -- title: deepThreads - main_url: https://deepthreads.com - url: https://deepthreads.com/ - description: > - deepThreads is a shiny new website built with Gatsby v2. We make art using deep learning along with print on demand providers to create some cool stuff! - categories: - - eCommerce - built_by: Kyle Kitlinski - built_by_url: https://github.com/k-kit - featured: false - title: Mill3 Studio main_url: https://mill3.studio/en/ url: https://mill3.studio/en/
bdd723e7e93fd525ea47da0d11ebb63c6edc5a35
2020-10-01 14:44:09
LekoArts
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-plugin-postcss/CHANGELOG.md b/packages/gatsby-plugin-postcss/CHANGELOG.md index fac88f705e925..275682a43d081 100644 --- a/packages/gatsby-plugin-postcss/CHANGELOG.md +++ b/packages/gatsby-plugin-postcss/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.0.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.0.0) (2020-10-01) + +**Note:** Version bump only for package gatsby-plugin-postcss + ## [2.3.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.3.13) (2020-09-28) ### Bug Fixes diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json index 42e36ce4ead6c..40b87d4554464 100644 --- a/packages/gatsby-plugin-postcss/package.json +++ b/packages/gatsby-plugin-postcss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-postcss", "description": "Gatsby plugin to handle PostCSS", - "version": "2.3.13", + "version": "3.0.0", "author": "Marat Dreizin <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues"
61d8feccc96533c5efd776d6b260c96bc0ef61c3
2020-03-19 17:55:09
Sankarsan Kampa
docs(sites): add a site to showcase (#22397)
false
add a site to showcase (#22397)
docs
diff --git a/docs/sites.yml b/docs/sites.yml index 6b1b402086828..ff75d3523f587 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -10077,3 +10077,14 @@ built_by: Kelvin DeCosta built_by_url: https://github.com/kelvindecosta featured: false +- title: Coronavirus (COVID-19) Tracker + url: https://coronavirus.traction.one/ + main_url: https://coronavirus.traction.one/ + description: > + This application shows the near real-time status based on data from JHU CSSE. + categories: + - Data + - Directory + built_by: Sankarsan Kampa + built_by_url: https://traction.one + featured: false
fd40de0e9652501cc0de949ae09296d0d2adcefe
2020-03-02 12:58:14
Max Dietrich
chore(starters): Update description for gis-netzwerk (#21881)
false
Update description for gis-netzwerk (#21881)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index c27cd883995aa..540135bb0f8af 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -9307,7 +9307,7 @@ url: https://www.gis-netzwerk.com/ main_url: https://www.gis-netzwerk.com/ description: > - Geoinformatik, GIS, Web-Development. + Multilingual (i18n) Blog with different URLs for categories, tags and posts depending on the language. categories: - Blog - Data
c9a65e166086a8f6351641e0c64df6f6064e0898
2020-03-31 01:38:10
Masoud
chore(starters): add gatsby-starter-canada-pandemic (#22663)
false
add gatsby-starter-canada-pandemic (#22663)
chore
diff --git a/docs/starters.yml b/docs/starters.yml index 61e30e2a292c5..1b1d6c8cba7f1 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -5775,3 +5775,18 @@ - Storybook with tested components included - Uses Tachyons for styling - Easy to create new posts +- url: https://gatsby-starter-canada-pandemic.netlify.com/ + repo: https://github.com/masoudkarimif/gatsby-starter-canada-pandemic + description: A Gatsby starter template for covering pandemics in Canada + tags: + - AWS + - Onepage + - Styling:Milligram + features: + - Interactive SVG map using D3 + - Responsive design + - Styled 404 page + - Google Analytics support + - Includes React Helmet + - Clean minimalist design + - Completely customizable using only gatsby-config.js file
b49f74b46e63007b3889f10df49ad2b0e0a93590
2020-05-20 18:12:07
Michael
fix(gatsby-source-contentful): Use https instead of http when downloading assets (#24227)
false
Use https instead of http when downloading assets (#24227)
fix
diff --git a/packages/gatsby-source-contentful/src/download-contentful-assets.js b/packages/gatsby-source-contentful/src/download-contentful-assets.js index 3623b82197473..f087cec6f8f17 100644 --- a/packages/gatsby-source-contentful/src/download-contentful-assets.js +++ b/packages/gatsby-source-contentful/src/download-contentful-assets.js @@ -56,7 +56,7 @@ const downloadContentfulAssets = async gatsbyFunctions => { ) return Promise.resolve() } - const url = `http://${node.file.url.slice(2)}` + const url = `https://${node.file.url.slice(2)}` // Avoid downloading the asset again if it's been cached // Note: Contentful Assets do not provide useful metadata
073846b6714d668a2e0b36a5ff0c1575d8493bc7
2019-08-10 15:13:09
Imed Adel
docs(gatsby-link): Add documentation for getProps (#16511)
false
Add documentation for getProps (#16511)
docs
diff --git a/docs/docs/gatsby-link.md b/docs/docs/gatsby-link.md index ec49edaa56ea3..da276fe3a49cb 100644 --- a/docs/docs/gatsby-link.md +++ b/docs/docs/gatsby-link.md @@ -80,6 +80,17 @@ const SiteNavigation = () => ( ) ``` +### Use `getProps` for advanced link styling + +Gatsby's `<Link>` component comes with a `getProps` prop, which can be useful for advanced styling. It passes you an object with the following properties: + +- `isCurrent` — true if the `location.pathname` is exactly the same as the `<Link>` component's `to` prop +- `isPartiallyCurrent` — true if the `location.pathname` starts with the `<Link>` component's `to` prop +- `href` — the value of the `to` prop +- `location` — the page's `location` object + +You can read more about it on [`@reach/router`'s documentation](https://reach.tech/router/api/Link). + ### Show active styles for partially matched and parent links By default the `activeStyle` and `activeClassName` props will only be set on a `<Link>` component if the current URL matches its `to` prop _exactly_. Sometimes, we may want to style a `<Link>` as active even if it partially matches the current URL. For example:
7c38997090f550d2b2cd902128f87fc5b19a631b
2021-01-28 01:15:13
Kyle Mathews
fix(gatsby): queue fs writes so event loop not overwhelmed on large sites (#29219)
false
queue fs writes so event loop not overwhelmed on large sites (#29219)
fix
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index e0eb5fd108852..249bbfbb140ea 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -72,6 +72,7 @@ "execa": "^4.0.3", "express": "^4.17.1", "express-graphql": "^0.9.0", + "fastq": "^1.10.0", "fastest-levenshtein": "^1.0.12", "file-loader": "^1.1.11", "find-cache-dir": "^3.3.1", diff --git a/packages/gatsby/src/utils/page-data.ts b/packages/gatsby/src/utils/page-data.ts index da151ef9bd995..0a3a1c6bd068a 100644 --- a/packages/gatsby/src/utils/page-data.ts +++ b/packages/gatsby/src/utils/page-data.ts @@ -1,6 +1,7 @@ import { walkStream as fsWalkStream, Entry } from "@nodelib/fs.walk" import fs from "fs-extra" import reporter from "gatsby-cli/lib/reporter" +import fastq from "fastq" import path from "path" import { IGatsbyPage } from "../redux/types" import { websocketManager } from "./websocket-manager" @@ -134,7 +135,7 @@ export async function flush(): Promise<void> { const pagesToWrite = pagePaths.values() - for (const pagePath of pagesToWrite) { + const flushQueue = fastq(async (pagePath, cb) => { const page = pages.get(pagePath) // It's a gloomy day in Bombay, let me tell you a short story... @@ -162,7 +163,7 @@ export async function flush(): Promise<void> { if (hasFlag(query.dirty, FLAG_DIRTY_NEW_PAGE)) { // query results are not written yet - continue + return cb(null, true) } } @@ -184,12 +185,25 @@ export async function flush(): Promise<void> { }) } } + store.dispatch({ type: `CLEAR_PENDING_PAGE_DATA_WRITE`, payload: { page: pagePath, }, }) + + return cb(null, true) + }, 25) + + for (const pagePath of pagesToWrite) { + flushQueue.push(pagePath, () => {}) + } + + if (!flushQueue.idle()) { + await new Promise(resolve => { + flushQueue.drain = resolve + }) } isFlushing = false diff --git a/yarn.lock b/yarn.lock index 4ca787f5e7ffa..1a6d943090843 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10927,6 +10927,13 @@ fastparse@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" +fastq@^1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.10.0.tgz#74dbefccade964932cdf500473ef302719c652bb" + integrity sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA== + dependencies: + reusify "^1.0.4" + fastq@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.6.0.tgz#4ec8a38f4ac25f21492673adb7eae9cfef47d1c2" @@ -22258,7 +22265,7 @@ retry@^0.10.0: version "0.10.1" resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" -reusify@^1.0.0: +reusify@^1.0.0, reusify@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
9b2a8041003cfa91441d21097bb3d8c8e36eda0c
2020-06-11 02:50:23
Antoine Caron
feat(recipes): add github pages deployement with travis (#23669)
false
add github pages deployement with travis (#23669)
feat
diff --git a/packages/gatsby-recipes/recipes/travis-deploy-github-pages.mdx b/packages/gatsby-recipes/recipes/travis-deploy-github-pages.mdx new file mode 100644 index 0000000000000..6a4409f8168d4 --- /dev/null +++ b/packages/gatsby-recipes/recipes/travis-deploy-github-pages.mdx @@ -0,0 +1,28 @@ +# Deploy to Github Pages with travis-ci + +Github Pages is a solution to host static websites directly in your Github repository by pushing site files to `gh-pages` branch. + +--- + +Define the basic travis-ci configuration to build and push your site's built files to the `gh-pages` branch on each new commit on master. + +<File + path=".travis.yml" + content="https://gist.githubusercontent.com/Slashgear/a52090c90e672e129d1bf8957785d34f/raw/13625589c0c29e636d121d17852a8de470953d35/.travis-ci.yml" +/> + +--- + +Generate a Github token on [this page](https://github.com/settings/tokens/new). + +--- + +Toggle on your repository in [your travis-ci configuration page](https://travis-ci.org/account/repositories). + +--- + +Open the Travis CI settings for this repository and add the secret _Environment variable_ **GITHUB_TOKEN** with your previously generated token. + +--- + +You are good to go, your next commit pushed on master branch with trigger deployment of your site. diff --git a/packages/gatsby-recipes/src/cli.js b/packages/gatsby-recipes/src/cli.js index 3f89ccc3b0c39..da1e9afb7ecfc 100644 --- a/packages/gatsby-recipes/src/cli.js +++ b/packages/gatsby-recipes/src/cli.js @@ -139,6 +139,10 @@ const RecipesList = ({ setRecipe }) => { label: `Add React Helmet`, value: `gatsby-plugin-react-helmet.mdx`, }, + { + label: `Add Github Pages deployment with Travis`, + value: `travis-deploy-github-pages.mdx`, + }, { label: `Add Headless WordPress integration`, value: `wordpress.mdx`,
c985fa8774261b031c285e28708e2c31e23eeaf3
2021-07-23 15:39:27
LekoArts
chore(release): Publish next
false
Publish next
chore
diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index 33debcea3df31..0b2fd22350156 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.21.0-next.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.21.0-next.4) (2021-07-23) + +**Note:** Version bump only for package gatsby-admin + # [0.21.0-next.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.21.0-next.3) (2021-07-23) **Note:** Version bump only for package gatsby-admin diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index ae12def811281..3a9b71fdabb41 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-admin", - "version": "0.21.0-next.3", + "version": "0.21.0-next.4", "main": "index.js", "author": "Max Stoiber", "license": "MIT", @@ -29,7 +29,7 @@ "@typescript-eslint/parser": "^4.28.1", "csstype": "^2.6.14", "formik": "^2.2.6", - "gatsby": "^3.11.0-next.3", + "gatsby": "^3.11.0-next.4", "gatsby-interface": "^0.0.244", "gatsby-plugin-typescript": "^3.11.0-next.0", "gatsby-plugin-webfonts": "^1.1.4", diff --git a/packages/gatsby-worker/CHANGELOG.md b/packages/gatsby-worker/CHANGELOG.md index 4eb2549f0cc6e..12bda7edddc58 100644 --- a/packages/gatsby-worker/CHANGELOG.md +++ b/packages/gatsby-worker/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0-next.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.0-next.1) (2021-07-23) + +### Bug Fixes + +- **gatsby:** merge data deps state instead of replaying actions ([#32440](https://github.com/gatsbyjs/gatsby/issues/32440)) ([fd1d8cc](https://github.com/gatsbyjs/gatsby/commit/fd1d8ccc8dd27c316d24f91475a24702d228910c)) + # [0.2.0-next.0](https://github.com/gatsbyjs/gatsby/compare/[email protected]@0.2.0-next.0) (2021-07-15) **Note:** Version bump only for package gatsby-worker diff --git a/packages/gatsby-worker/package.json b/packages/gatsby-worker/package.json index 533e60bb321c8..8fb557030ac51 100644 --- a/packages/gatsby-worker/package.json +++ b/packages/gatsby-worker/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-worker", "description": "Utility to create worker pools", - "version": "0.2.0-next.0", + "version": "0.2.0-next.1", "author": "Michal Piechowiak<[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index e310885bd2a8d..0ebe844cc2e44 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. +# [3.11.0-next.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.11.0-next.4) (2021-07-23) + +### Bug Fixes + +- **gatsby:** merge data deps state instead of replaying actions ([#32440](https://github.com/gatsbyjs/gatsby/issues/32440)) ([fd1d8cc](https://github.com/gatsbyjs/gatsby/commit/fd1d8ccc8dd27c316d24f91475a24702d228910c)) + # [3.11.0-next.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@3.11.0-next.3) (2021-07-23) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index b25d40076cb8a..eb32838df4ec1 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "3.11.0-next.3", + "version": "3.11.0-next.4", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./cli.js" @@ -85,7 +85,7 @@ "gatsby-plugin-utils": "^1.11.0-next.0", "gatsby-react-router-scroll": "^4.11.0-next.0", "gatsby-telemetry": "^2.11.0-next.0", - "gatsby-worker": "^0.2.0-next.0", + "gatsby-worker": "^0.2.0-next.1", "glob": "^7.1.6", "got": "8.3.2", "graphql": "^15.4.0",
7fc06d8e1d653eace947054c7cf39ea6e67591c0
2018-08-09 15:23:51
Mike Allanson
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index d22c5f617d53a..f0b890c21f7d2 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.88"></a> + +# [2.0.0-beta.88](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-beta.88) (2018-08-09) + +**Note:** Version bump only for package gatsby + <a name="2.0.0-beta.87"></a> # [2.0.0-beta.87](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-beta.87) (2018-08-08) diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 06a6dd3835f32..00c05d8c34fbc 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.87", + "version": "2.0.0-beta.88", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js"
7cbb3ab1f4865279970f4f3c91ce16c0f3ed30ce
2018-11-10 17:39:27
Lennart
fix(www): Change Plone starter entry (#9855)
false
Change Plone starter entry (#9855)
fix
diff --git a/docs/starters.yml b/docs/starters.yml index a436bae66574a..2996f7b717f7a 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -1165,7 +1165,7 @@ - Plone - Headless CMS - SEO - - Progressive Web App + - PWA features: - Creates 1-1 copy of source Plone site - Auto generated navigation and breadcrumbs
f6aedcd9ebdfbeb8938eeb1d6ca4a49623235143
2018-07-28 22:59:31
Kyle Mathews
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-transformer-screenshot/CHANGELOG.md b/packages/gatsby-transformer-screenshot/CHANGELOG.md index 029c192b1ae57..a6db603fc464c 100644 --- a/packages/gatsby-transformer-screenshot/CHANGELOG.md +++ b/packages/gatsby-transformer-screenshot/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.7"></a> + +# [2.0.0-beta.7](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-screenshot/compare/gatsby-transformer-screenshot@[email protected]) (2018-07-28) + +**Note:** Version bump only for package gatsby-transformer-screenshot + <a name="2.0.0-beta.6"></a> # [2.0.0-beta.6](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-screenshot/compare/gatsby-transformer-screenshot@[email protected]) (2018-07-28) diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json index 377e7197d7dbe..0aa88fdc51f02 100644 --- a/packages/gatsby-transformer-screenshot/package.json +++ b/packages/gatsby-transformer-screenshot/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-screenshot", "description": "Gatsby transformer plugin that uses AWS Lambda to take screenshots of websites", - "version": "2.0.0-beta.6", + "version": "2.0.0-beta.7", "author": "David Beckley <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues"
6959c6dfbe345a87c70197ba17fb8b4c7ee20952
2019-07-15 15:57:37
stefanprobst
feat(gatsby-transformer-remark): Allow remark subplugins to modify graphql types owned by parent plugin #15688
false
Allow remark subplugins to modify graphql types owned by parent plugin #15688
feat
diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index a2fe0a50bddd0..d259cec34304d 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -43,7 +43,7 @@ ], "license": "MIT", "peerDependencies": { - "gatsby": "^2.0.88" + "gatsby": "^2.12.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-transformer-remark/src/__tests__/extend-node.js b/packages/gatsby-transformer-remark/src/__tests__/extend-node.js index 179273e52699c..09f15b1bd1e64 100644 --- a/packages/gatsby-transformer-remark/src/__tests__/extend-node.js +++ b/packages/gatsby-transformer-remark/src/__tests__/extend-node.js @@ -1,6 +1,7 @@ const { graphql } = require(`gatsby/graphql`) const { onCreateNode } = require(`../gatsby-node`) const extendNodeType = require(`../extend-node-type`) +const { typeDefs } = require(`../create-schema-customization`) const { createContentDigest } = require(`gatsby/utils`) // given a set of nodes and a query, return the result of the query @@ -39,6 +40,7 @@ async function queryResult( const typeName = `MarkdownRemark` const sc = createSchemaComposer() const tc = sc.createObjectTC(typeName) + sc.addTypeDefs(typeDefs) addInferredFields({ schemaComposer: sc, typeComposer: tc, @@ -53,11 +55,11 @@ async function queryResult( const result = await graphql( schema, `query { - listNode { - ${fragment} - } - } - ` + listNode { + ${fragment} + } + } + ` ) return result } diff --git a/packages/gatsby-transformer-remark/src/create-schema-customization.js b/packages/gatsby-transformer-remark/src/create-schema-customization.js new file mode 100644 index 0000000000000..282d8ee301200 --- /dev/null +++ b/packages/gatsby-transformer-remark/src/create-schema-customization.js @@ -0,0 +1,48 @@ +const typeDefs = ` + type MarkdownHeading { + value: String + depth: Int + } + + enum MarkdownHeadingLevels { + h1 + h2 + h3 + h4 + h5 + h6 + } + + enum MarkdownExcerptFormats { + PLAIN + HTML + MARKDOWN + } + + type MarkdownWordCount { + paragraphs: Int + sentences: Int + words: Int + } +` + +module.exports = (nodeApiArgs, pluginOptions = {}) => { + const { plugins = [] } = pluginOptions + + nodeApiArgs.actions.createTypes(typeDefs) + + // This allows subplugins to use Node APIs bound to `gatsby-transformer-remark` + // to customize the GraphQL schema. This makes it possible for subplugins to + // modify types owned by `gatsby-transformer-remark`. + plugins.forEach(plugin => { + const resolvedPlugin = require(plugin.resolve) + if (typeof resolvedPlugin.createSchemaCustomization === `function`) { + resolvedPlugin.createSchemaCustomization( + nodeApiArgs, + plugin.pluginOptions + ) + } + }) +} + +module.exports.typeDefs = typeDefs diff --git a/packages/gatsby-transformer-remark/src/extend-node-type.js b/packages/gatsby-transformer-remark/src/extend-node-type.js index a69fa20d28e0b..d5e6a21d8d13c 100644 --- a/packages/gatsby-transformer-remark/src/extend-node-type.js +++ b/packages/gatsby-transformer-remark/src/extend-node-type.js @@ -1,12 +1,3 @@ -const { - GraphQLObjectType, - GraphQLList, - GraphQLString, - GraphQLInt, - GraphQLEnumType, - GraphQLJSON, - GraphQLBoolean, -} = require(`gatsby/graphql`) const Remark = require(`remark`) const select = require(`unist-util-select`) const sanitizeHTML = require(`sanitize-html`) @@ -91,6 +82,11 @@ const SpaceMarkdownNodeTypesSet = new Set([ `break`, ]) +const headingLevels = [...Array(6).keys()].reduce((acc, i) => { + acc[`h${i}`] = i + return acc +}, {}) + module.exports = ( { type, @@ -217,36 +213,6 @@ module.exports = ( }) } - // source => parse (can order parsing for dependencies) => typegen - // - // source plugins identify nodes, provide id, initial parse, know - // when nodes are created/removed/deleted - // get passed cached DataTree and return list of clean and dirty nodes. - // Also get passed `dirtyNodes` function which they can call with an array - // of node ids which will then get re-parsed and the inferred schema - // recreated (if inferring schema gets too expensive, can also - // cache the schema until a query fails at which point recreate the - // schema). - // - // parse plugins take data from source nodes and extend it, never mutate - // it. Freeze all nodes once done so typegen plugins can't change it - // this lets us save off the DataTree at that point as well as create - // indexes. - // - // typegen plugins identify further types of data that should be lazily - // computed due to their expense, or are hard to infer graphql type - // (markdown ast), or are need user input in order to derive e.g. - // markdown headers or date fields. - // - // wrap all resolve functions to (a) auto-memoize and (b) cache to disk any - // resolve function that takes longer than ~10ms (do research on this - // e.g. how long reading/writing to cache takes), and (c) track which - // queries are based on which source nodes. Also if connection of what - // which are always rerun if their underlying nodes change.. - // - // every node type in DataTree gets a schema type automatically. - // typegen plugins just modify the auto-generated types to add derived fields - // as well as computationally expensive fields. if (process.env.NODE_ENV !== `production` || !fileNodes) { fileNodes = getNodesByType(`File`) } @@ -510,14 +476,14 @@ module.exports = ( markdownNode, { format, pruneLength, truncate, excerptSeparator } ) { - if (format === `html`) { + if (format === `HTML`) { return getExcerptHtml( markdownNode, pruneLength, truncate, excerptSeparator ) - } else if (format === `markdown`) { + } else if (format === `MARKDOWN`) { return getExcerptMarkdown( markdownNode, pruneLength, @@ -533,69 +499,15 @@ module.exports = ( ) } - const HeadingType = new GraphQLObjectType({ - name: `MarkdownHeading`, - fields: { - value: { - type: GraphQLString, - resolve(heading) { - return heading.value - }, - }, - depth: { - type: GraphQLInt, - resolve(heading) { - return heading.depth - }, - }, - }, - }) - - const HeadingLevels = new GraphQLEnumType({ - name: `HeadingLevels`, - values: { - h1: { value: 1 }, - h2: { value: 2 }, - h3: { value: 3 }, - h4: { value: 4 }, - h5: { value: 5 }, - h6: { value: 6 }, - }, - }) - - const ExcerptFormats = new GraphQLEnumType({ - name: `ExcerptFormats`, - values: { - PLAIN: { value: `plain` }, - HTML: { value: `html` }, - MARKDOWN: { value: `markdown` }, - }, - }) - - const WordCountType = new GraphQLObjectType({ - name: `wordCount`, - fields: { - paragraphs: { - type: GraphQLInt, - }, - sentences: { - type: GraphQLInt, - }, - words: { - type: GraphQLInt, - }, - }, - }) - return resolve({ html: { - type: GraphQLString, + type: `String`, resolve(markdownNode) { return getHTML(markdownNode) }, }, htmlAst: { - type: GraphQLJSON, + type: `JSON`, resolve(markdownNode) { return getHTMLAst(markdownNode).then(ast => { const strippedAst = stripPosition(_.clone(ast), true) @@ -604,19 +516,19 @@ module.exports = ( }, }, excerpt: { - type: GraphQLString, + type: `String`, args: { pruneLength: { - type: GraphQLInt, + type: `Int`, defaultValue: 140, }, truncate: { - type: GraphQLBoolean, + type: `Boolean`, defaultValue: false, }, format: { - type: ExcerptFormats, - defaultValue: `plain`, + type: `MarkdownExcerptFormats`, + defaultValue: `PLAIN`, }, }, resolve(markdownNode, { format, pruneLength, truncate }) { @@ -629,14 +541,14 @@ module.exports = ( }, }, excerptAst: { - type: GraphQLJSON, + type: `JSON`, args: { pruneLength: { - type: GraphQLInt, + type: `Int`, defaultValue: 140, }, truncate: { - type: GraphQLBoolean, + type: `Boolean`, defaultValue: false, }, }, @@ -652,23 +564,22 @@ module.exports = ( }, }, headings: { - type: new GraphQLList(HeadingType), + type: [`MarkdownHeading`], args: { - depth: { - type: HeadingLevels, - }, + depth: `MarkdownHeadingLevels`, }, resolve(markdownNode, { depth }) { return getHeadings(markdownNode).then(headings => { - if (typeof depth === `number`) { - headings = headings.filter(heading => heading.depth === depth) + const level = depth && headingLevels[depth] + if (typeof level === `number`) { + headings = headings.filter(heading => heading.depth === level) } return headings }) }, }, timeToRead: { - type: GraphQLInt, + type: `Int`, resolve(markdownNode) { return getHTML(markdownNode).then(html => { let timeToRead = 0 @@ -684,18 +595,14 @@ module.exports = ( }, }, tableOfContents: { - type: GraphQLString, + type: `String`, args: { pathToSlugField: { - type: GraphQLString, + type: `String`, defaultValue: `fields.slug`, }, - maxDepth: { - type: GraphQLInt, - }, - heading: { - type: GraphQLString, - }, + maxDepth: `Int`, + heading: `String`, }, resolve(markdownNode, args) { return getTableOfContents(markdownNode, args) @@ -703,7 +610,7 @@ module.exports = ( }, // TODO add support for non-latin languages https://github.com/wooorm/remark/issues/251#issuecomment-296731071 wordCount: { - type: WordCountType, + type: `MarkdownWordCount`, resolve(markdownNode) { let counts = {} diff --git a/packages/gatsby-transformer-remark/src/gatsby-node.js b/packages/gatsby-transformer-remark/src/gatsby-node.js index cff451370d735..c2df9b4368981 100644 --- a/packages/gatsby-transformer-remark/src/gatsby-node.js +++ b/packages/gatsby-transformer-remark/src/gatsby-node.js @@ -1,2 +1,3 @@ +exports.createSchemaCustomization = require(`./create-schema-customization`) exports.onCreateNode = require(`./on-node-create`) exports.setFieldsOnGraphQLNodeType = require(`./extend-node-type`)
e48f1736b3d63a6268af90d6253765ba735b445d
2017-07-26 22:27:01
Aaron Lampros
docs: add grommet starter (#1626)
false
add grommet starter (#1626)
docs
diff --git a/docs/docs/gatsby-starters.md b/docs/docs/gatsby-starters.md index f0990a9e75f95..0cefe83f52b19 100644 --- a/docs/docs/gatsby-starters.md +++ b/docs/docs/gatsby-starters.md @@ -71,7 +71,7 @@ Community: * Blog post listing with previews for each blog post * Navigation between posts with a previous/next post button * Tags and tag navigation - + * [gatsby-advanced-starter](https://github.com/Vagr9K/gatsby-advanced-starter) [(demo)](https://vagr9k.github.io/gatsby-advanced-starter/) Features: @@ -99,4 +99,10 @@ Community: * glitch serves assets over CDN, API unclear * virtual server container provides [**128MB** for app](https://glitch.com/faq#restrictions) (512MB for assets) * server can't install certain gatsby plugins (`sharp`-based; out of mem?) - + +* [gatsby-starter-grommet](https://github.com/alampros/gatsby-starter-grommet) [(demo)](https://alampros.github.io/gatsby-starter-grommet/) + + Features: + * Barebones configuration for using the [Grommet](https://grommet.github.io/) design system + * Uses SASS (with CSS modules support) +
30397f3625328f666ddeb05affae5ca134ef4f86
2020-04-07 14:54:33
Mikhail Novikov
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md index c65fee889e0d3..cfeac2c83dd6f 100644 --- a/packages/gatsby-plugin-mdx/CHANGELOG.md +++ b/packages/gatsby-plugin-mdx/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.1.5](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.5) (2020-04-07) + +**Note:** Version bump only for package gatsby-plugin-mdx + ## [1.1.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.1.4) (2020-03-30) **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 1507840fabddb..719e3dc1f572c 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.1.4", + "version": "1.1.5", "description": "MDX integration for Gatsby", "main": "index.js", "license": "MIT", diff --git a/packages/gatsby-plugin-twitter/CHANGELOG.md b/packages/gatsby-plugin-twitter/CHANGELOG.md index 77be9f42196cc..5b2d713b71a01 100644 --- a/packages/gatsby-plugin-twitter/CHANGELOG.md +++ b/packages/gatsby-plugin-twitter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.2](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.2) (2020-04-07) + +**Note:** Version bump only for package gatsby-plugin-twitter + ## [2.2.1](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.2.1) (2020-03-23) **Note:** Version bump only for package gatsby-plugin-twitter diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json index ef0dcea8bec8a..ab8b56a7c76b4 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": "2.2.1", + "version": "2.2.2", "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 4b91215666005..c7c61a98e69e9 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.14](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.14) (2020-04-07) + +**Note:** Version bump only for package gatsby-theme-blog-core + ## [1.3.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.3.13) (2020-04-04) **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 662fd8fd6fdf4..780bb66e38e44 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.13", + "version": "1.3.14", "main": "index.js", "author": "christopherbiscardi <[email protected]> (@chrisbiscardi)", "license": "MIT", @@ -19,7 +19,7 @@ "dependencies": { "@mdx-js/mdx": "^1.5.7", "gatsby-core-utils": "^1.1.1", - "gatsby-plugin-mdx": "^1.1.4", + "gatsby-plugin-mdx": "^1.1.5", "gatsby-plugin-sharp": "^2.5.4", "gatsby-remark-copy-linked-files": "^2.2.1", "gatsby-remark-images": "^3.2.2", @@ -30,7 +30,7 @@ }, "devDependencies": { "@mdx-js/react": "^1.5.7", - "gatsby": "^2.20.12", + "gatsby": "^2.20.13", "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 31f73cb2c1835..013364cf9f3e7 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.14](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.4.14) (2020-04-07) + +**Note:** Version bump only for package gatsby-theme-blog + ## [1.4.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.4.13) (2020-04-04) **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 841875cabdb5a..af2f377fcace6 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.13", + "version": "1.4.14", "description": "A Gatsby theme for miscellaneous blogging with a dark/light mode", "main": "index.js", "keywords": [ @@ -28,8 +28,8 @@ "gatsby-plugin-feed": "^2.4.1", "gatsby-plugin-react-helmet": "^3.2.1", "gatsby-plugin-theme-ui": "^0.2.53", - "gatsby-plugin-twitter": "^2.2.1", - "gatsby-theme-blog-core": "^1.3.13", + "gatsby-plugin-twitter": "^2.2.2", + "gatsby-theme-blog-core": "^1.3.14", "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.12", + "gatsby": "^2.20.13", "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 f87cd588a59bd..b66b85e7491d0 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.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.13) (2020-04-07) + +**Note:** Version bump only for package gatsby-theme-notes + ## [1.2.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@1.2.12) (2020-04-03) **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 2269d7dfcfcc2..cc676fa4ef586 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.12", + "version": "1.2.13", "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.12", + "gatsby": "^2.20.13", "react": "^16.12.0", "react-dom": "^16.12.0" }, @@ -39,7 +39,7 @@ "gatsby-core-utils": "^1.1.1", "gatsby-plugin-compile-es6-packages": "^2.1.0", "gatsby-plugin-emotion": "^4.2.1", - "gatsby-plugin-mdx": "^1.1.4", + "gatsby-plugin-mdx": "^1.1.5", "gatsby-plugin-meta-redirect": "^1.1.1", "gatsby-plugin-og-image": "0.0.1", "gatsby-plugin-redirects": "^1.0.0", diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index d3d338e85a20d..9c321f38edd86 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.13](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.20.13) (2020-04-07) + +**Note:** Version bump only for package gatsby + ## [2.20.12](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.20.12) (2020-04-03) ### Bug Fixes diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 3251952b30731..c607c508b354e 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.12", + "version": "2.20.13", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js"
8ea9a52fb6a7069c47824aac1306f61d66a70221
2019-01-09 01:57:17
Dustin Schau
fix(gatsby-transformer-remark): correctly pass cache to sub plugins (#10892)
false
correctly pass cache to sub plugins (#10892)
fix
diff --git a/e2e-tests/development-runtime/content/2018-12-14-hello-world.md b/e2e-tests/development-runtime/content/2018-12-14-hello-world.md index 7598fd3256790..bdedb261138b7 100644 --- a/e2e-tests/development-runtime/content/2018-12-14-hello-world.md +++ b/e2e-tests/development-runtime/content/2018-12-14-hello-world.md @@ -6,3 +6,5 @@ date: 2018-12-14 This is a truly meaningful blog post <h2 data-testid="sub-title">%SUB_TITLE%</h2> + +<h2 data-testid="gatsby-remark-subcache-value">%SUBCACHE_VALUE%</h2> diff --git a/e2e-tests/development-runtime/cypress/integration/functionality/sub-plugin-caching.js b/e2e-tests/development-runtime/cypress/integration/functionality/sub-plugin-caching.js new file mode 100644 index 0000000000000..f45df00a8a5f3 --- /dev/null +++ b/e2e-tests/development-runtime/cypress/integration/functionality/sub-plugin-caching.js @@ -0,0 +1,16 @@ +/* + * This e2e test validates that the cache structure + * is unique per plugin (even sub-plugins) + * and can interact between Gatsby lifecycles and a plugin + */ +describe(`sub-plugin caching`, () => { + beforeEach(() => { + cy.visit(`/2018-12-14-hello-world/`).waitForAPI(`onRouteUpdate`) + }) + + it(`has access to custom sub-plugin cache`, () => { + cy.getTestElement(`gatsby-remark-subcache-value`) + .invoke(`text`) + .should(`eq`, `Hello World`) + }) +}) diff --git a/e2e-tests/development-runtime/gatsby-config.js b/e2e-tests/development-runtime/gatsby-config.js index e229721485cea..07d6209963039 100644 --- a/e2e-tests/development-runtime/gatsby-config.js +++ b/e2e-tests/development-runtime/gatsby-config.js @@ -24,7 +24,7 @@ module.exports = { { resolve: `gatsby-transformer-remark`, options: { - plugins: [], + plugins: [`gatsby-remark-subcache`], }, }, `gatsby-plugin-sharp`, diff --git a/e2e-tests/development-runtime/package.json b/e2e-tests/development-runtime/package.json index f3dc3285df795..c2a65599ab1f8 100644 --- a/e2e-tests/development-runtime/package.json +++ b/e2e-tests/development-runtime/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "author": "Dustin Schau <[email protected]>", "dependencies": { - "gatsby": "^2.0.71", + "gatsby": "^2.0.88", "gatsby-image": "^2.0.20", "gatsby-plugin-manifest": "^2.0.9", "gatsby-plugin-offline": "^2.0.20", @@ -29,7 +29,7 @@ "serve": "gatsby serve", "start": "npm run develop", "format": "prettier --write \"src/**/*.js\"", - "test": "npm run start-server-and-test || npm run reset", + "test": "npm run start-server-and-test || (npm run reset && exit 1)", "posttest": "npm run reset", "reset": "node scripts/reset.js", "update": "node scripts/update.js", diff --git a/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/constants.js b/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/constants.js new file mode 100644 index 0000000000000..426ce562fdafa --- /dev/null +++ b/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/constants.js @@ -0,0 +1 @@ +exports.id = `gatsby-remark-subcache-value` diff --git a/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/gatsby-node.js b/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/gatsby-node.js new file mode 100644 index 0000000000000..0c7d3f4524705 --- /dev/null +++ b/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/gatsby-node.js @@ -0,0 +1,5 @@ +const { id } = require(`./constants`) + +exports.onPreBootstrap = async ({ cache }) => { + await cache.set(id, `Hello World`) +} diff --git a/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/index.js b/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/index.js new file mode 100644 index 0000000000000..57a1f51e598e9 --- /dev/null +++ b/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/index.js @@ -0,0 +1,11 @@ +const visit = require(`unist-util-visit`) +const { id } = require(`./constants`) + +module.exports = function remarkPlugin({ cache, markdownAST }) { + visit(markdownAST, `html`, async node => { + if (node.value.match(id)) { + const value = await cache.get(id) + node.value = node.value.replace(/%SUBCACHE_VALUE%/, value) + } + }) +} diff --git a/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/package.json b/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/package.json new file mode 100644 index 0000000000000..58b61fbeea21a --- /dev/null +++ b/e2e-tests/development-runtime/plugins/gatsby-remark-subcache/package.json @@ -0,0 +1,3 @@ +{ + "name": "gatsby-remark-subcache" +} diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index 82118e15fcbac..bff71cea1590b 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -42,13 +42,12 @@ ], "license": "MIT", "peerDependencies": { - "gatsby": "^2.0.33" + "gatsby": "^2.0.88" }, "repository": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark", "scripts": { "build": "babel src --out-dir . --ignore **/__tests__", "prepare": "cross-env NODE_ENV=production npm run build", "watch": "babel -w src --out-dir . --ignore **/__tests__" - }, - "gitHead": "5bd5aebe066b9875354a81a4b9ed98722731c465" + } } diff --git a/packages/gatsby-transformer-remark/src/extend-node-type.js b/packages/gatsby-transformer-remark/src/extend-node-type.js index c6cf553f7b61f..c4054ba1722aa 100644 --- a/packages/gatsby-transformer-remark/src/extend-node-type.js +++ b/packages/gatsby-transformer-remark/src/extend-node-type.js @@ -58,6 +58,14 @@ const tableOfContentsCacheKey = node => const withPathPrefix = (url, pathPrefix) => (pathPrefix + url).replace(/\/\//, `/`) +// TODO: remove this check with next major release +const safeGetCache = ({ getCache, cache }) => id => { + if (!getCache) { + return cache + } + return getCache(id) +} + /** * Map that keeps track of generation of AST to not generate it multiple * times in parallel. @@ -67,7 +75,16 @@ const withPathPrefix = (url, pathPrefix) => const ASTPromiseMap = new Map() module.exports = ( - { type, store, pathPrefix, getNode, getNodesByType, cache, reporter }, + { + type, + pathPrefix, + getNode, + getNodesByType, + cache, + getCache: possibleGetCache, + reporter, + ...rest + }, pluginOptions ) => { if (type.name !== `MarkdownRemark`) { @@ -76,6 +93,8 @@ module.exports = ( pluginsCacheStr = pluginOptions.plugins.map(p => p.name).join(``) pathPrefixCacheStr = pathPrefix || `` + const getCache = safeGetCache({ cache, getCache: possibleGetCache }) + return new Promise((resolve, reject) => { // Setup Remark. const { @@ -150,7 +169,9 @@ module.exports = ( files: fileNodes, getNode, reporter, - cache, + cache: getCache(plugin.name), + getCache, + ...rest, }, plugin.pluginOptions ) @@ -218,7 +239,9 @@ module.exports = ( files: fileNodes, pathPrefix, reporter, - cache, + cache: getCache(plugin.name), + getCache, + ...rest, }, plugin.pluginOptions ) diff --git a/packages/gatsby-transformer-remark/src/on-node-create.js b/packages/gatsby-transformer-remark/src/on-node-create.js index 102557ca1f8e8..5b492e29f3c85 100644 --- a/packages/gatsby-transformer-remark/src/on-node-create.js +++ b/packages/gatsby-transformer-remark/src/on-node-create.js @@ -3,7 +3,7 @@ const crypto = require(`crypto`) const _ = require(`lodash`) module.exports = async function onCreateNode( - { node, getNode, loadNodeContent, actions, createNodeId, reporter }, + { node, loadNodeContent, actions, createNodeId, reporter }, pluginOptions ) { const { createNode, createParentChildLink } = actions
5a7eb7dc3eac2c659a72311b17fcd7c0e46896cc
2021-03-22 18:15:53
renovate[bot]
chore(deps): update minor and patch for gatsby-remark-katex (#30247)
false
update minor and patch for gatsby-remark-katex (#30247)
chore
diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json index 9500ba433b28c..c96bb5d90468b 100644 --- a/packages/gatsby-remark-katex/package.json +++ b/packages/gatsby-remark-katex/package.json @@ -16,7 +16,7 @@ "@babel/core": "^7.12.3", "babel-preset-gatsby-package": "^1.2.0-next.0", "cross-env": "^7.0.3", - "katex": "^0.12.0" + "katex": "^0.13.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-katex#readme", "keywords": [ diff --git a/yarn.lock b/yarn.lock index c0dbcfb47b178..f1e066d3dd96d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7925,10 +7925,10 @@ commander@^4.0.1, commander@^4.1.1: resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== -commander@^6.1.0, commander@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.0.tgz#b990bfb8ac030aedc6d11bc04d1488ffef56db75" - integrity sha512-zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q== +commander@^6.0.0, commander@^6.1.0, commander@^6.2.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" + integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== commander@~2.14.1: version "2.14.1" @@ -15784,12 +15784,12 @@ jws@^3.2.2: jwa "^1.4.1" safe-buffer "^5.0.1" -katex@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/katex/-/katex-0.12.0.tgz#2fb1c665dbd2b043edcf8a1f5c555f46beaa0cb9" - integrity sha512-y+8btoc/CK70XqcHqjxiGWBOeIL8upbS0peTPXTvgrh21n1RiWWcIpSWM+4uXq+IAgNh9YYQWdc7LVDPDAEEAg== +katex@^0.13.0: + version "0.13.0" + resolved "https://registry.yarnpkg.com/katex/-/katex-0.13.0.tgz#62900e56c1ad8fdf7da23399e50d7a7b690b39ab" + integrity sha512-6cHbzbegYgS9vvVGuH8UA+o97X+ZshtboSqJJCdq7trBYzuD75JNwr7Ef606xkUjecPPhFnyB+afx1dVafielg== dependencies: - commander "^2.19.0" + commander "^6.0.0" kebab-hash@^0.1.2: version "0.1.2"
308eb942f3264fd0c1579b553cc74d81f9219fff
2021-06-18 14:18:47
Lennart
feat(gatsby): PQR worker can create schema (#31919)
false
PQR worker can create schema (#31919)
feat
diff --git a/packages/gatsby/src/bootstrap/load-config-and-plugins.ts b/packages/gatsby/src/bootstrap/load-config-and-plugins.ts index fdde6d52010fc..f59929b103556 100644 --- a/packages/gatsby/src/bootstrap/load-config-and-plugins.ts +++ b/packages/gatsby/src/bootstrap/load-config-and-plugins.ts @@ -17,7 +17,7 @@ export async function loadConfigAndPlugins({ processFlags = false, }: { siteDirectory: string - processFlags: boolean + processFlags?: boolean }): Promise<{ config: any flattenedPlugins: Array<IFlattenedPlugin> diff --git a/packages/gatsby/src/utils/source-nodes.ts b/packages/gatsby/src/utils/source-nodes.ts index e2c8f727d68c4..3ec189a4cfe24 100644 --- a/packages/gatsby/src/utils/source-nodes.ts +++ b/packages/gatsby/src/utils/source-nodes.ts @@ -93,8 +93,8 @@ export default async ({ }: { webhookBody: unknown pluginName?: string - parentSpan: Span - deferNodeMutation: boolean + parentSpan?: Span + deferNodeMutation?: boolean }): Promise<void> => { await apiRunner(`sourceNodes`, { traceId: `initial-sourceNodes`, diff --git a/packages/gatsby/src/utils/worker/__tests__/fixtures/sample-site/plugins/gatsby-plugin-test/gatsby-node.js b/packages/gatsby/src/utils/worker/__tests__/fixtures/sample-site/plugins/gatsby-plugin-test/gatsby-node.js index 17afb89019645..772179fc0b980 100644 --- a/packages/gatsby/src/utils/worker/__tests__/fixtures/sample-site/plugins/gatsby-plugin-test/gatsby-node.js +++ b/packages/gatsby/src/utils/worker/__tests__/fixtures/sample-site/plugins/gatsby-plugin-test/gatsby-node.js @@ -1,3 +1,77 @@ -exports.createSchemaCustomization = (_, pluginOptions) => { +exports.createSchemaCustomization = ({ actions }, pluginOptions) => { global.test = pluginOptions.fn() -} \ No newline at end of file + + const { createTypes } = actions + + createTypes(` + type NodeTypeTwo implements Node { + thisIsANumber: Int + string: String + arrayOfStrings: [String] + } + + type NodeTypeOne implements Node { + overriddenString: Int + } + `) +} + +exports.createResolvers = ({ createResolvers }) => { + const resolvers = { + NodeTypeOne: { + resolverField: { + type: "String", + resolve() { + return `Custom String` + } + } + } + } + + createResolvers(resolvers) +} + +exports.setFieldsOnGraphQLNodeType = ({ type }) => { + if (type.name === `NodeTypeOne`) { + return { + fieldsOnGraphQL: { + type: `String`, + resolve: () => { + return `Another Custom String` + } + } + } + } + + return {} +} + +exports.sourceNodes = ({ actions, createNodeId, createContentDigest }) => { + const { createNode } = actions + + const testData = { + number: 123, + string: 'Hello World', + overriddenString: '1', + arrayOfStrings: [`Foo`, `Bar`], + object: { + foo: 'bar', + bar: 'baz' + } + } + + const nodeMeta = { + id: createNodeId(`node-type-one-${testData.number}`), + parent: null, + children: [], + internal: { + type: `NodeTypeOne`, + content: JSON.stringify(testData), + contentDigest: createContentDigest(testData) + } + } + + const node = Object.assign({}, testData, nodeMeta) + + createNode(node) +} diff --git a/packages/gatsby/src/utils/worker/__tests__/schema.ts b/packages/gatsby/src/utils/worker/__tests__/schema.ts new file mode 100644 index 0000000000000..08e9ebb743627 --- /dev/null +++ b/packages/gatsby/src/utils/worker/__tests__/schema.ts @@ -0,0 +1,165 @@ +import * as path from "path" +import fs from "fs-extra" +import { DocumentNode } from "graphql" +import { build } from "../../../schema" +import sourceNodesAndRemoveStaleNodes from "../../source-nodes" +import { saveStateForWorkers, store } from "../../../redux" +import { loadConfigAndPlugins } from "../../../bootstrap/load-config-and-plugins" +import { + createTestWorker, + describeWhenLMDB, + GatsbyTestWorkerPool, +} from "./test-helpers" +import { getDataStore } from "../../../datastore" +import { CombinedState } from "redux" +import { IGatsbyState } from "../../../redux/types" +import type { watch as ChokidarWatchType } from "chokidar" + +let worker: GatsbyTestWorkerPool | undefined + +// when we load config and run sourceNodes on "main process" we start file watchers +// because of default `gatsby-plugin-page-creator` which would prevent test process from +// exiting gracefully without forcing exit +// to prevent that we keep track of created watchers and close them after all tests are done +const mockWatchersToClose = new Set<ReturnType<typeof ChokidarWatchType>>() +jest.mock(`chokidar`, () => { + const chokidar = jest.requireActual(`chokidar`) + const originalChokidarWatch = chokidar.watch + + chokidar.watch = ( + ...args: Parameters<typeof ChokidarWatchType> + ): ReturnType<typeof ChokidarWatchType> => { + const watcher = originalChokidarWatch.call(chokidar, ...args) + mockWatchersToClose.add(watcher) + return watcher + } + + return chokidar +}) + +describeWhenLMDB(`worker (schema)`, () => { + let stateFromWorker: CombinedState<IGatsbyState> + + beforeAll(async () => { + store.dispatch({ type: `DELETE_CACHE` }) + const fileDir = path.join(process.cwd(), `.cache/redux`) + await fs.emptyDir(fileDir) + + worker = createTestWorker() + + const siteDirectory = path.join(__dirname, `fixtures`, `sample-site`) + await loadConfigAndPlugins({ siteDirectory }) + await worker.loadConfigAndPlugins({ siteDirectory }) + await sourceNodesAndRemoveStaleNodes({ webhookBody: {} }) + await getDataStore().ready() + + await build({ parentSpan: {} }) + + saveStateForWorkers([`inferenceMetadata`]) + await worker.buildSchema() + + stateFromWorker = await worker.getState() + }) + + afterAll(() => { + if (worker) { + worker.end() + worker = undefined + } + for (const watcher of mockWatchersToClose) { + watcher.close() + } + }) + + it(`should have functioning createSchemaCustomization`, async () => { + const typeDefinitions = (stateFromWorker.schemaCustomization.types[0] as { + typeOrTypeDef: DocumentNode + }).typeOrTypeDef.definitions + + expect(typeDefinitions).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + fields: expect.arrayContaining([ + expect.objectContaining({ + name: expect.objectContaining({ + value: `thisIsANumber`, + }), + type: expect.objectContaining({ + name: expect.objectContaining({ + value: `Int`, + }), + }), + }), + ]), + }), + expect.objectContaining({ + fields: expect.arrayContaining([ + expect.objectContaining({ + name: expect.objectContaining({ + value: `overriddenString`, + }), + type: expect.objectContaining({ + name: expect.objectContaining({ + value: `Int`, + }), + }), + }), + ]), + }), + ]) + ) + }) + + it(`should have NodeTypeOne & NodeTypeTwo in schema`, async () => { + expect(stateFromWorker.schema[`_typeMap`]).toEqual( + expect.objectContaining({ + NodeTypeOne: `NodeTypeOne`, + NodeTypeTwo: `NodeTypeTwo`, + }) + ) + }) + + it(`should have inferenceMetadata`, async () => { + expect(stateFromWorker.inferenceMetadata).toEqual( + expect.objectContaining({ + typeMap: expect.objectContaining({ + NodeTypeOne: expect.anything(), + }), + }) + ) + }) + + it(`should have resolverField from createResolvers`, async () => { + // @ts-ignore - it exists + const { data } = await worker?.getRunQueryResult(` + { + one: nodeTypeOne { + number + } + two: nodeTypeTwo { + thisIsANumber + } + three: nodeTypeOne { + resolverField + } + } + `) + + expect(data.one.number).toBe(123) + expect(data.two).toBe(null) + expect(data.three.resolverField).toBe(`Custom String`) + }) + + it(`should have fieldsOnGraphQL from setFieldsOnGraphQLNodeType`, async () => { + // @ts-ignore - it exists + const { data } = await worker?.getRunQueryResult(` + { + four: nodeTypeOne { + fieldsOnGraphQL + } + } + `) + + expect(data.four.fieldsOnGraphQL).toBe(`Another Custom String`) + }) +}) diff --git a/packages/gatsby/src/utils/worker/__tests__/test-helpers/child-for-tests.ts b/packages/gatsby/src/utils/worker/__tests__/test-helpers/child-for-tests.ts index c95b466bd1f5a..6ae03f0195076 100644 --- a/packages/gatsby/src/utils/worker/__tests__/test-helpers/child-for-tests.ts +++ b/packages/gatsby/src/utils/worker/__tests__/test-helpers/child-for-tests.ts @@ -1,13 +1,17 @@ +import { CombinedState } from "redux" +import { ExecutionResult, graphql, GraphQLSchema } from "graphql" import { getNode } from "../../../../datastore" import { store } from "../../../../redux" import { IGatsbyPage, IGatsbyPageComponent, + IGatsbyState, IGatsbyStaticQueryComponents, } from "../../../../redux/types" import { ITypeMetadata } from "../../../../schema/infer/inference-metadata" import reporter from "gatsby-cli/lib/reporter" import apiRunner from "../../../api-runner-node" +import withResolverContext from "../../../../schema/context" // re-export all usual methods from production worker export * from "../../child" @@ -53,3 +57,33 @@ export async function runAPI(apiName: string): Promise<any> { export function getAPIRunResult(): string | undefined { return (global as any).test } + +export function getState(): CombinedState<IGatsbyState> { + return store.getState() +} + +const runQuery = ( + schema: GraphQLSchema, + schemaComposer, + query: string +): Promise<ExecutionResult> => + graphql( + schema, + query, + undefined, + withResolverContext({ + schema, + schemaComposer, + context: {}, + customContext: {}, + }) + ) + +// test: schema +export async function getRunQueryResult( + query: string +): Promise<ExecutionResult> { + const state = store.getState() + + return await runQuery(state.schema, state.schemaCustomization.composer, query) +} diff --git a/packages/gatsby/src/utils/worker/__tests__/test-helpers/jest-helpers.ts b/packages/gatsby/src/utils/worker/__tests__/test-helpers/jest-helpers.ts index 74e63b5989533..168e59ddfbccb 100644 --- a/packages/gatsby/src/utils/worker/__tests__/test-helpers/jest-helpers.ts +++ b/packages/gatsby/src/utils/worker/__tests__/test-helpers/jest-helpers.ts @@ -5,3 +5,7 @@ jest.setTimeout(35000) export const itWhenLMDB = process.env.GATSBY_EXPERIMENTAL_LMDB_STORE ? it : it.skip + +export const describeWhenLMDB = process.env.GATSBY_EXPERIMENTAL_LMDB_STORE + ? describe + : describe.skip diff --git a/packages/gatsby/src/utils/worker/child/index.ts b/packages/gatsby/src/utils/worker/child/index.ts index dad77d8652356..960674b50f01a 100644 --- a/packages/gatsby/src/utils/worker/child/index.ts +++ b/packages/gatsby/src/utils/worker/child/index.ts @@ -1,4 +1,4 @@ // Note: this doesn't check for conflicts between module exports export { renderHTMLProd, renderHTMLDev } from "./render-html" -export { setQueries, setInferenceMetadata } from "./schema" +export { setQueries, setInferenceMetadata, buildSchema } from "./schema" export { loadConfigAndPlugins } from "./load-config-and-plugins" diff --git a/packages/gatsby/src/utils/worker/child/schema.ts b/packages/gatsby/src/utils/worker/child/schema.ts index 79a882e10f1e4..8f360706c6ebc 100644 --- a/packages/gatsby/src/utils/worker/child/schema.ts +++ b/packages/gatsby/src/utils/worker/child/schema.ts @@ -1,8 +1,28 @@ +import apiRunnerNode from "../../api-runner-node" +import { store } from "../../../redux" +import { build } from "../../../schema" import { setState } from "./state" export function setInferenceMetadata(): void { setState([`inferenceMetadata`]) } + export function setQueries(): void { setState([`components`, `staticQueryComponents`]) } + +export async function buildSchema(): Promise<void> { + const workerStore = store.getState() + + if (!workerStore?.config?.plugins) { + throw Error( + `Config loading didn't finish before attempting to build schema in worker` + ) + } + + setInferenceMetadata() + + await apiRunnerNode(`createSchemaCustomization`) + + await build({ fullMetadataBuild: false, parentSpan: {} }) +} diff --git a/packages/gatsby/src/utils/worker/child/state.ts b/packages/gatsby/src/utils/worker/child/state.ts index 606dcfb63b9be..1e813aba8fd02 100644 --- a/packages/gatsby/src/utils/worker/child/state.ts +++ b/packages/gatsby/src/utils/worker/child/state.ts @@ -1,7 +1,7 @@ -// Calls loadStateInWorker(slices) and mutates the redux store with the results import { GatsbyStateKeys } from "../../../redux/types" import { loadStateInWorker, store } from "../../../redux" +// Calls loadStateInWorker(slices) and mutates the redux store with the results export function setState(slices: Array<GatsbyStateKeys>): void { const res = loadStateInWorker(slices)
9c45441da456b41f010a86b0ba5fa7e1a81fa5bf
2018-09-05 18:18:26
Jason Quense
fix: babel options (#7865)
false
babel options (#7865)
fix
diff --git a/packages/gatsby/src/redux/__tests__/__snapshots__/babelrc.js.snap b/packages/gatsby/src/redux/__tests__/__snapshots__/babelrc.js.snap index a9379e61bc4ea..689ce4a6375c2 100644 --- a/packages/gatsby/src/redux/__tests__/__snapshots__/babelrc.js.snap +++ b/packages/gatsby/src/redux/__tests__/__snapshots__/babelrc.js.snap @@ -5,7 +5,6 @@ Object { "stages": Object { "build-html": Object { "options": Object { - "babelrc": false, "cacheDirectory": true, "sourceType": "unambiguous", }, @@ -19,7 +18,6 @@ Object { }, "build-javascript": Object { "options": Object { - "babelrc": false, "cacheDirectory": true, "sourceType": "unambiguous", }, @@ -33,7 +31,6 @@ Object { }, "develop": Object { "options": Object { - "babelrc": false, "cacheDirectory": true, "sourceType": "unambiguous", }, @@ -47,7 +44,6 @@ Object { }, "develop-html": Object { "options": Object { - "babelrc": false, "cacheDirectory": true, "sourceType": "unambiguous", }, @@ -68,7 +64,6 @@ Object { "stages": Object { "build-html": Object { "options": Object { - "babelrc": false, "cacheDirectory": true, "sourceType": "unambiguous", }, @@ -82,7 +77,6 @@ Object { }, "build-javascript": Object { "options": Object { - "babelrc": false, "cacheDirectory": true, "sourceType": "unambiguous", }, @@ -96,7 +90,6 @@ Object { }, "develop": Object { "options": Object { - "babelrc": false, "cacheDirectory": true, "sourceType": "unambiguous", }, @@ -110,7 +103,6 @@ Object { }, "develop-html": Object { "options": Object { - "babelrc": false, "cacheDirectory": true, "sourceType": "unambiguous", }, diff --git a/packages/gatsby/src/redux/reducers/babelrc.js b/packages/gatsby/src/redux/reducers/babelrc.js index 4d28522c22ae2..2f83cf1714976 100644 --- a/packages/gatsby/src/redux/reducers/babelrc.js +++ b/packages/gatsby/src/redux/reducers/babelrc.js @@ -8,7 +8,6 @@ module.exports = ( presets: [], options: { cacheDirectory: true, - babelrc: false, sourceType: `unambiguous`, }, }, @@ -17,7 +16,6 @@ module.exports = ( presets: [], options: { cacheDirectory: true, - babelrc: false, sourceType: `unambiguous`, }, }, @@ -26,7 +24,6 @@ module.exports = ( presets: [], options: { cacheDirectory: true, - babelrc: false, sourceType: `unambiguous`, }, }, @@ -35,7 +32,6 @@ module.exports = ( presets: [], options: { cacheDirectory: true, - babelrc: false, sourceType: `unambiguous`, }, },
b055ddeaec3c83dfcedbc7c327840bd6af033843
2018-10-14 22:45:03
Filip Havrlent
fix(gatsby-source-wikipedia): add axios as depedency (#9088)
false
add axios as depedency (#9088)
fix
diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json index d8cf125e9efa6..15823ff066fb3 100644 --- a/packages/gatsby-source-wikipedia/package.json +++ b/packages/gatsby-source-wikipedia/package.json @@ -28,7 +28,8 @@ }, "license": "MIT", "dependencies": { - "@babel/runtime": "^7.0.0" + "@babel/runtime": "^7.0.0", + "axios": "^0.18.0" }, "devDependencies": { "@babel/cli": "^7.0.0",
34182da7c5b0feb3e0d99fee08a76750eb5f2f2d
2022-05-30 08:34:34
GatsbyJS Bot
chore(changelogs): update changelogs (#35763)
false
update changelogs (#35763)
chore
diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index c234e71deb59d..282cc9da84fab 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.15.1](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby) (2022-05-25) + +#### Bug Fixes + +- correctly auto-load preview plugin [#35745](https://github.com/gatsbyjs/gatsby/issues/35745) [#35746](https://github.com/gatsbyjs/gatsby/issues/35746) ([884c554](https://github.com/gatsbyjs/gatsby/commit/884c5545b5030846d9b8fb414b2e20bab2ceb437)) + ## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/[email protected]/packages/gatsby) (2022-05-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.15)
a9af95b3e0218dd5e10052df859fae7d03eb6417
2022-01-26 20:17:55
renovate[bot]
fix(deps): update starters and examples - gatsby (#34575)
false
update starters and examples - gatsby (#34575)
fix
diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index 0352744b8fd31..514c807767d6c 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -33,19 +33,19 @@ "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==" }, "@babel/core": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", - "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "version": "7.16.12", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.12.tgz", + "integrity": "sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg==", "requires": { "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", + "@babel/generator": "^7.16.8", "@babel/helper-compilation-targets": "^7.16.7", "@babel/helper-module-transforms": "^7.16.7", "@babel/helpers": "^7.16.7", - "@babel/parser": "^7.16.7", + "@babel/parser": "^7.16.12", "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7", + "@babel/traverse": "^7.16.10", + "@babel/types": "^7.16.8", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -144,9 +144,9 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz", - "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.10.tgz", + "integrity": "sha512-wDeej0pu3WN/ffTxMNCPW5UCiOav8IcLRxSIyp/9+IF2xJUM9h/OYjg0IJLHaL6F8oU8kqMz9nc1vryXhMsgXg==", "requires": { "@babel/helper-annotate-as-pure": "^7.16.7", "@babel/helper-environment-visitor": "^7.16.7", @@ -360,9 +360,9 @@ } }, "@babel/highlight": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz", - "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "requires": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -382,9 +382,9 @@ } }, "@babel/parser": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz", - "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==" + "version": "7.16.12", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.12.tgz", + "integrity": "sha512-VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.16.7", @@ -519,11 +519,11 @@ } }, "@babel/plugin-proposal-private-methods": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz", - "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", + "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", "requires": { - "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.10", "@babel/helper-plugin-utils": "^7.16.7" } }, @@ -937,9 +937,9 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.8.tgz", - "integrity": "sha512-6Kg2XHPFnIarNweZxmzbgYnnWsXxkx9WQUVk2sksBRL80lBC1RAQV3wQagWxdCHiYHqPN+oenwNIuttlYgIbQQ==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.10.tgz", + "integrity": "sha512-9nwTiqETv2G7xI4RvXHNfpGdr8pAA+Q/YtN3yLK7OoK7n9OibVm/xymJ838a9A6E/IciOLPj82lZk0fW6O4O7w==", "requires": { "@babel/helper-module-imports": "^7.16.7", "@babel/helper-plugin-utils": "^7.16.7", @@ -1025,9 +1025,9 @@ } }, "@babel/preset-env": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.8.tgz", - "integrity": "sha512-9rNKgVCdwHb3z1IlbMyft6yIXIeP3xz6vWvGaLHrJThuEIqWfHb0DNBH9VuTgnDfdbUDhkmkvMZS/YMCtP7Elg==", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz", + "integrity": "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==", "requires": { "@babel/compat-data": "^7.16.8", "@babel/helper-compilation-targets": "^7.16.7", @@ -1047,7 +1047,7 @@ "@babel/plugin-proposal-object-rest-spread": "^7.16.7", "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", "@babel/plugin-proposal-optional-chaining": "^7.16.7", - "@babel/plugin-proposal-private-methods": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.11", "@babel/plugin-proposal-private-property-in-object": "^7.16.7", "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", "@babel/plugin-syntax-async-generators": "^7.8.4", @@ -1175,9 +1175,9 @@ } }, "@babel/traverse": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz", - "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.10.tgz", + "integrity": "sha512-yzuaYXoRJBGMlBhsMJoUW7G1UmSb/eXr/JHYM/MsOJgavJibLwASijW7oXBdw3NQ6T0bW7Ty5P/VarOs9cHmqw==", "requires": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.8", @@ -1185,7 +1185,7 @@ "@babel/helper-function-name": "^7.16.7", "@babel/helper-hoist-variables": "^7.16.7", "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.8", + "@babel/parser": "^7.16.10", "@babel/types": "^7.16.8", "debug": "^4.1.0", "globals": "^11.1.0" @@ -1286,16 +1286,6 @@ "html-entities": "^2.1.0", "querystring": "^0.2.0", "strip-ansi": "^6.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } } }, "@graphql-tools/batch-execute": { @@ -2024,9 +2014,9 @@ "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" }, "@sindresorhus/is": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.3.0.tgz", - "integrity": "sha512-wwOvh0eO3PiTEivGJWiZ+b946SlMSb4pe+y+Ur/4S87cwo09pYi+FWHHnbrM3W9W7cBYKDqQXcrFYjYUCOJUEQ==" + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.4.0.tgz", + "integrity": "sha512-QppPM/8l3Mawvh4rn9CNEYIU9bxpXUCRMaX9yUpvBk1nMKusLKpfXGDEKExKaPhLzcn3lzil7pR6rnJ11HgeRQ==" }, "@sindresorhus/slugify": { "version": "1.1.2", @@ -2235,9 +2225,9 @@ } }, "@types/node": { - "version": "17.0.9", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.9.tgz", - "integrity": "sha512-5dNBXu/FOER+EXnyah7rn8xlNrfMOQb/qXnw4NQgLkCygKBKhdmF/CA5oXVOKZLBEahw8s2WP9LxIcN/oDDRgQ==" + "version": "17.0.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.12.tgz", + "integrity": "sha512-4YpbAsnJXWYK/fpTVFlMIcUIho2AYCi4wg5aNPrG1ng7fn/1/RZfCIpRCiBX+12RVa34RluilnvCqD+g3KiSiA==" }, "@types/node-fetch": { "version": "2.5.12", @@ -2320,6 +2310,15 @@ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" }, + "@types/sharp": { + "version": "0.29.5", + "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.29.5.tgz", + "integrity": "sha512-3TC+S3H5RwnJmLYMHrcdfNjz/CaApKmujjY9b6PU/pE6n0qfooi99YqXGWoW8frU9EWYj/XTI35Pzxa+ThAZ5Q==", + "optional": true, + "requires": { + "@types/node": "*" + } + }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -2657,11 +2656,6 @@ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" - }, "anser": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/anser/-/anser-2.1.0.tgz", @@ -2746,11 +2740,6 @@ "readable-stream": "^2.0.6" }, "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, "readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", @@ -3053,12 +3042,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.5.2.tgz", - "integrity": "sha512-N/z2vrRBtbPpkzQwgO6vL1GgLvRCxjUwcXPCduMO32xIDlcCeAOAuBUpMSEs7rDyE6YTBhu8FhskeBJl49N0iQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.6.0.tgz", + "integrity": "sha512-QMbjJhHOkVHBfFDfAXQp1MFSzLWOJdPMe7Dk3+AF8L+dlLcf2Z7zbIrlRoRPEROyoW4CCPzLDi0Vam5leR/+gw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.5.2" + "gatsby-core-utils": "^3.6.0" } }, "babel-plugin-syntax-object-rest-spread": { @@ -3081,9 +3070,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-gatsby": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.5.2.tgz", - "integrity": "sha512-PETwDgkCaBlD4+wrGteYF58IELz4/P4Rsh0Y36bVHYXXqMeJqh8w0mfnSa2fW/Wqcc8DZmNm32erQT1Bj9XFGQ==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.6.0.tgz", + "integrity": "sha512-ATl4c7LGySIZhBcYV9pL2vp8VTj6jtduG4b00dWgFb+v/Op1FXMUJ70KSRDUVE6fccFdw2abJlbuOgZgwCQFPA==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -3098,8 +3087,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^2.8.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.5.2", - "gatsby-legacy-polyfills": "^2.5.0" + "gatsby-core-utils": "^3.6.0", + "gatsby-legacy-polyfills": "^2.6.0" } }, "babel-runtime": { @@ -3355,6 +3344,11 @@ "readable-stream": "1.1.x" }, "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", @@ -3486,9 +3480,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001300", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001300.tgz", - "integrity": "sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA==" + "version": "1.0.30001302", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001302.tgz", + "integrity": "sha512-YYTMO+tfwvgUN+1ZnRViE53Ma1S/oETg+J2lISsqi/ZTNThj3ZYBOKP2rHwJc37oCsPqAzJ3w2puZHn0xlLPPw==" }, "ccount": { "version": "1.1.0", @@ -3599,9 +3593,9 @@ } }, "chokidar": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", - "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "requires": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -3750,14 +3744,6 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "wrap-ansi": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", @@ -3976,11 +3962,6 @@ "typedarray": "^0.0.6" }, "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, "readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", @@ -4137,9 +4118,9 @@ } }, "create-gatsby": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.5.1.tgz", - "integrity": "sha512-pI5zvUAtHPREzKQpYU4HcpnT/Q9F+pgY99xs8HT49ZphG7qy+g02Ec/7jCNHDxlre7u+7a6TXmDF9FYr4T7BYw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.6.0.tgz", + "integrity": "sha512-ijyTd1mo7LAasyfNAE9ulmR/eSimUyvDJFmwZOExGG2jep+A43J5X8t0Ukso5BSeilMLZJGTniac33jaNoF5sw==", "requires": { "@babel/runtime": "^7.15.4" } @@ -4333,55 +4314,55 @@ "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=" }, "cssnano": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.15.tgz", - "integrity": "sha512-ppZsS7oPpi2sfiyV5+i+NbB/3GtQ+ab2Vs1azrZaXWujUSN4o+WdTxlCZIMcT9yLW3VO/5yX3vpyDaQ1nIn8CQ==", + "version": "5.0.16", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.16.tgz", + "integrity": "sha512-ryhRI9/B9VFCwPbb1z60LLK5/ldoExi7nwdnJzpkLZkm2/r7j2X3jfY+ZvDVJhC/0fPZlrAguYdHNFg0iglPKQ==", "requires": { - "cssnano-preset-default": "^5.1.10", + "cssnano-preset-default": "^5.1.11", "lilconfig": "^2.0.3", "yaml": "^1.10.2" } }, "cssnano-preset-default": { - "version": "5.1.10", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.10.tgz", - "integrity": "sha512-BcpSzUVygHMOnp9uG5rfPzTOCb0GAHQkqtUQx8j1oMNF9A1Q8hziOOhiM4bdICpmrBIU85BE64RD5XGYsVQZNA==", + "version": "5.1.11", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.11.tgz", + "integrity": "sha512-ETet5hqHxmzQq2ynXMOQofKuLm7VOjMiOB7E2zdtm/hSeCKlD9fabzIUV4GoPcRyJRHi+4kGf0vsfGYbQ4nmPw==", "requires": { "css-declaration-sorter": "^6.0.3", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-calc": "^8.2.0", - "postcss-colormin": "^5.2.3", - "postcss-convert-values": "^5.0.2", - "postcss-discard-comments": "^5.0.1", - "postcss-discard-duplicates": "^5.0.1", - "postcss-discard-empty": "^5.0.1", - "postcss-discard-overridden": "^5.0.2", - "postcss-merge-longhand": "^5.0.4", - "postcss-merge-rules": "^5.0.4", - "postcss-minify-font-values": "^5.0.2", - "postcss-minify-gradients": "^5.0.4", - "postcss-minify-params": "^5.0.3", - "postcss-minify-selectors": "^5.1.1", - "postcss-normalize-charset": "^5.0.1", + "postcss-colormin": "^5.2.4", + "postcss-convert-values": "^5.0.3", + "postcss-discard-comments": "^5.0.2", + "postcss-discard-duplicates": "^5.0.2", + "postcss-discard-empty": "^5.0.2", + "postcss-discard-overridden": "^5.0.3", + "postcss-merge-longhand": "^5.0.5", + "postcss-merge-rules": "^5.0.5", + "postcss-minify-font-values": "^5.0.3", + "postcss-minify-gradients": "^5.0.5", + "postcss-minify-params": "^5.0.4", + "postcss-minify-selectors": "^5.1.2", + "postcss-normalize-charset": "^5.0.2", "postcss-normalize-display-values": "^5.0.2", - "postcss-normalize-positions": "^5.0.2", - "postcss-normalize-repeat-style": "^5.0.2", - "postcss-normalize-string": "^5.0.2", + "postcss-normalize-positions": "^5.0.3", + "postcss-normalize-repeat-style": "^5.0.3", + "postcss-normalize-string": "^5.0.3", "postcss-normalize-timing-functions": "^5.0.2", - "postcss-normalize-unicode": "^5.0.2", + "postcss-normalize-unicode": "^5.0.3", "postcss-normalize-url": "^5.0.4", - "postcss-normalize-whitespace": "^5.0.2", - "postcss-ordered-values": "^5.0.3", + "postcss-normalize-whitespace": "^5.0.3", + "postcss-ordered-values": "^5.0.4", "postcss-reduce-initial": "^5.0.2", - "postcss-reduce-transforms": "^5.0.2", + "postcss-reduce-transforms": "^5.0.3", "postcss-svgo": "^5.0.3", - "postcss-unique-selectors": "^5.0.2" + "postcss-unique-selectors": "^5.0.3" } }, "cssnano-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.0.0.tgz", - "integrity": "sha512-Pzs7/BZ6OgT+tXXuF12DKR8SmSbzUeVYCtMBbS8lI0uAm3mrYmkyqCXXPsQESI6kmLfEVBppbdVY/el3hg3nAA==" + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.0.1.tgz", + "integrity": "sha512-VNCHL364lh++/ono+S3j9NlUK+d97KNkxI77NlqZU2W3xd2/qmyN61dsa47pTpb55zuU4G4lI7qFjAXZJH1OAQ==" }, "csso": { "version": "4.2.0", @@ -4669,6 +4650,11 @@ "streamsearch": "0.1.2" }, "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", @@ -4783,9 +4769,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.4.48", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.48.tgz", - "integrity": "sha512-RT3SEmpv7XUA+tKXrZGudAWLDpa7f8qmhjcLaM6OD/ERxjQ/zAojT8/Vvo0BSzbArkElFZ1WyZ9FuwAYbkdBNA==" + "version": "1.4.53", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.53.tgz", + "integrity": "sha512-rFveSKQczlcav+H3zkKqykU6ANseFwXwkl855jOIap5/0gnEcuIhv2ecz6aoTrXavF6I/CEBeRnBnkB51k06ew==" }, "emoji-regex": { "version": "8.0.0", @@ -5157,14 +5143,6 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -6293,9 +6271,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.5.4.tgz", - "integrity": "sha512-uXyYl9nq52xdvP/9lwWFp7eGtjFFgdAjG2xNBvpgNgd1AtH/4kU76khm1mmpXea98mnJrcwKmsSZkIbQO9YWCg==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.6.0.tgz", + "integrity": "sha512-02NsTyfPQlB/JCilJri0gxvTr7WNcjZWnNUhHQatH0CJ6Sj3meSArEMNuA2thBS/CSIq/30kEOC2HDvWEWPfSA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6321,8 +6299,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": "^4.5.2", - "babel-preset-gatsby": "^2.5.2", + "babel-plugin-remove-graphql-queries": "^4.6.0", + "babel-preset-gatsby": "^2.6.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -6364,17 +6342,18 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.0.0", - "gatsby-cli": "^4.5.2", - "gatsby-core-utils": "^3.5.2", - "gatsby-graphiql-explorer": "^2.5.0", - "gatsby-legacy-polyfills": "^2.5.0", - "gatsby-link": "^4.5.0", - "gatsby-plugin-page-creator": "^4.5.2", - "gatsby-plugin-typescript": "^4.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-react-router-scroll": "^5.5.0", - "gatsby-telemetry": "^3.5.2", - "gatsby-worker": "^1.5.0", + "gatsby-cli": "^4.6.0", + "gatsby-core-utils": "^3.6.0", + "gatsby-graphiql-explorer": "^2.6.0", + "gatsby-legacy-polyfills": "^2.6.0", + "gatsby-link": "^4.6.0", + "gatsby-plugin-page-creator": "^4.6.0", + "gatsby-plugin-typescript": "^4.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-react-router-scroll": "^5.6.0", + "gatsby-sharp": "^0.0.1", + "gatsby-telemetry": "^3.6.0", + "gatsby-worker": "^1.6.0", "glob": "^7.2.0", "got": "^11.8.2", "graphql": "^15.7.2", @@ -6430,7 +6409,7 @@ "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", - "strip-ansi": "^5.2.0", + "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", "terser-webpack-plugin": "^5.2.4", "tmp": "^0.2.1", @@ -6449,9 +6428,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.5.2.tgz", - "integrity": "sha512-AAltHfDTqOq4RL0oBgsmZb+IIDiV1zMdEzCgYIeEqWtc7nesKwHs4myYqhQV8wmXwyWKKWuXuTAqSoxuQT+X5w==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.6.0.tgz", + "integrity": "sha512-3YRilKW+aG1iSPUHj4pB7xSwVv1GX2Zjzae/2FOWaOaNRA0vKtQmwax4eks/kpfM+a2n05HH5K8ov6oLxo3YQw==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6468,13 +6447,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.5.1", + "create-gatsby": "^2.6.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-telemetry": "^3.6.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -6491,7 +6470,7 @@ "signal-exit": "^3.0.6", "source-map": "0.7.3", "stack-trace": "^0.0.10", - "strip-ansi": "^5.2.0", + "strip-ansi": "^6.0.1", "update-notifier": "^5.1.0", "uuid": "3.4.0", "yargs": "^15.4.1", @@ -6509,9 +6488,9 @@ } }, "gatsby-core-utils": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.5.2.tgz", - "integrity": "sha512-sY7BD6VlbWwrV892x9/yJPtXYaGC/GLyhabd9j2xP6zsIOW0XBHXZ4jJ+xEPaRn3CJxYgBd8KdCyoc4h1ZEFzg==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.6.0.tgz", + "integrity": "sha512-xmjtOWQfLinNbgBiDRT1KpEfDZm0Z0u6+hsf8EH8Ps5UCIhKinGrdtK+QH+RzPGCV1PUg/E/pnLVqQLCvD+tmA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -6527,17 +6506,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.5.0.tgz", - "integrity": "sha512-uCZTQshqYuBBYwU66VtWwsbXSmw9axBbg3r20qsyuE9uvECUUkKycdLoMpRPKMuWqBPZbAudgbzl22AqNDBNaw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.6.0.tgz", + "integrity": "sha512-9YSAci8AXsaknCHdGwKJ3hkjSmcUd2+0CCn1IdTh2xcfVCTRW8Q19jgcJjY/8SYfw9kZJVZVx5jdYdD2AsIowQ==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.5.0.tgz", - "integrity": "sha512-AtHkcpa7S9E9aAOn0ca9eP3fVh5VVE5s8iD+LMx3zzZGcxZBdh6z7FVx8qWxsQXCO33Be4U/r49EFLc3koti+A==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.6.0.tgz", + "integrity": "sha512-SbZ9s1bUKJo/ED41MMZx16Oh2DaRBuzQ20WRub995RqqthIGXA5oEv/64hNgBWjkuYZdqu+XtACr6Rscd6QXKw==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -6560,9 +6539,9 @@ } }, "gatsby-link": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.5.0.tgz", - "integrity": "sha512-3u9/VRc5JEQ4SwklNjdIPiEH3mNEYJacqE/rtnLLhG5SQ1V/a3rNh5dBEASiUia1g19AHRLnkVz/LAnR/jcpkA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.6.0.tgz", + "integrity": "sha512-GbZJDppV/70m0lT3PIh2m0TLDKq5kAAk5Ao/XU9ucATdDRlE4WruwceHOg7imLmRRrK0xxYGEEyANVrqcH3+LQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.9", @@ -6570,53 +6549,54 @@ } }, "gatsby-page-utils": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.5.2.tgz", - "integrity": "sha512-Og/OFrnSKkHGkhF0lP8bOhuC/Z0b16lT8309pWoCyI7/PLsQ59ptJ06rGWA2NxW1dLFSXu+hmiJXg/bldibzDg==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.6.0.tgz", + "integrity": "sha512-rckIEZU64wITIYdY+RsbC1klLQI1izMoGD+qMMQF196+FPlMNOmoUWrCOes8LgxNChoRjSBOjRaBsR+M4Piahg==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.2", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "glob": "^7.2.0", "lodash": "^4.17.21", "micromatch": "^4.0.4" } }, "gatsby-plugin-feed": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-4.5.0.tgz", - "integrity": "sha512-pjHat1VyKe3oEZp7qfFPz4G8fgM9MxKVI0wN5O3XkrgveQKs6m/kvfsK8S1cKKM7ik6nDv668L+fCsdwpiRiFg==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-feed/-/gatsby-plugin-feed-4.6.0.tgz", + "integrity": "sha512-PErrulbNs0XUCx20w0mWG0ghk3W9Mp3BCnGK2hsQXTrPvA9Zik06aKrPEublgbIUiiTd8O2atRjuhDwgmgKBsQ==", "requires": { "@babel/runtime": "^7.15.4", "@hapi/joi": "^15.1.1", "common-tags": "^1.8.2", "fs-extra": "^10.0.0", - "gatsby-plugin-utils": "^2.5.0", + "gatsby-plugin-utils": "^3.0.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" } }, "gatsby-plugin-gatsby-cloud": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.5.2.tgz", - "integrity": "sha512-aloSM+XVuideA7ZIAO1pOBb8pC+QYq873MMDWGPZt1O61ZbtfgEkigzuSbGZqcmrPnJT37n/iia6Q/PC0/YEkA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.6.0.tgz", + "integrity": "sha512-BjuteMeNLry23WM0hvFYjbbyWNGFda3oCMraanO0ApiyTiUPC1W2tVytA34TJTubj0wDsudDxvVTMNS0tVOrMQ==", "requires": { "@babel/runtime": "^7.15.4", "date-fns": "^2.28.0", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-telemetry": "^3.6.0", + "js-cookie": "^3.0.1", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.0.6" } }, "gatsby-plugin-google-analytics": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-4.5.0.tgz", - "integrity": "sha512-UWyem88KRjvE4yYcUGNESPuacqprZEtaI2NS+CF+kEes/Taf+nSQF+OVJG3Z0FwKNDxJ/QcFZqowbcXvZJAn+Q==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-4.6.0.tgz", + "integrity": "sha512-HjWfYDwCKHs3k5RMvrlrTzJmEtyEnT573npiEOezBvy4MSHUhWRb7phNeHGFKcE7+lDwDfUXxrZrb8L8T6GvKw==", "requires": { "@babel/runtime": "^7.15.4", "minimatch": "3.0.4", @@ -6624,21 +6604,21 @@ } }, "gatsby-plugin-image": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.5.2.tgz", - "integrity": "sha512-cytI8FNjMoTf/MraMZS9TL0mdDsN7Sh3hYL9GZeLIOTC8n8LE6wK49rDHDrQeq5S6ojk3iEPCgcxWrzQvnbxWQ==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.6.0.tgz", + "integrity": "sha512-rWbIdkcopB02YIhR3UidoYhe2SDOFTpxzJSABq5TcLZ38FD8kth8QavvOO0h1ap9tWjaUNIjCvKRu2M3NvuC1g==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.5.2", + "babel-plugin-remove-graphql-queries": "^4.6.0", "camelcase": "^5.3.1", "chokidar": "^3.5.2", "common-tags": "^1.8.2", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.7.2" }, @@ -6651,25 +6631,25 @@ } }, "gatsby-plugin-manifest": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.5.2.tgz", - "integrity": "sha512-Stvhbz7A9BZ88HJSz+H4abZ18zxNMsv/vPkV8iAStDl55B2dY9IyWW9n5I3mL6GlPvy1mdVbTqwNG2lgMYLSEA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.6.0.tgz", + "integrity": "sha512-/ySmcnGYmTv4exBQSvPVBDoMVHY9TEdiYnP/NmRTOwRA7VaW525qyc+Nf6lTmlD6AONX2nrbQ3U9F/JxCTL+uw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.5.2", - "gatsby-plugin-utils": "^2.5.0", + "gatsby-core-utils": "^3.6.0", + "gatsby-plugin-utils": "^3.0.0", "semver": "^7.3.5", "sharp": "^0.29.3" } }, "gatsby-plugin-offline": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.5.2.tgz", - "integrity": "sha512-Z2NTRTOxo02SXMKhJt6YgFZ0gtIUfpBk5aaXn4/vTcL+RqUsj1QtSlWYOPYJJ4Lauj1bMkN1tFwfGelZVAdtdQ==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.6.0.tgz", + "integrity": "sha512-3ir3P9B6dZGotw4ISe/F3KBZ2zwZtOSQmtOBH6A+KtSlfh4Epyf1VDawiZzBv7QOpbrrjVyL8rs109cIBxlJbA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "glob": "^7.2.0", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -6677,44 +6657,45 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.5.2.tgz", - "integrity": "sha512-mXJ2W/BfFeb0rSH+N4J2vpzY/qD6fEj0tSBqAlHocZkpsW+2jrjVCcyI2oGZr2unDekcUA2sZY+3Terxi5L5+g==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.6.0.tgz", + "integrity": "sha512-AXDD2A+HaSHJuTa6HznCn5ItnVNHfayRixqJusOpiscBsYty/JwXM/6Fj8CoQvRTwVt2EYwgw9QgjBl76kOoiA==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.2", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-page-utils": "^2.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-page-utils": "^2.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-telemetry": "^3.6.0", "globby": "^11.0.4", "lodash": "^4.17.21" } }, "gatsby-plugin-react-helmet": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.5.0.tgz", - "integrity": "sha512-1GJQS9+2lIkZrxXNfvFmNf5imJfVWWcxJBU2DfPlm9uByp5CZRDrGGXuth1ThTllrCmC4DBkrqIUQLAG36B9kw==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.6.0.tgz", + "integrity": "sha512-EdJv0w569Bdaxq46sFX2UExsb1COdTGCXcjg53a31nhFmWo42PBuTBUhGKcsbdmomCaipl9j39NsHjj3opioBQ==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-plugin-sharp": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.5.2.tgz", - "integrity": "sha512-XPJ5M+vUvcl/B779oPBTjT9cLjFNTzOvO6o2rtHDPJIsv7JOLpEixkOHWO8agsW+9gNvV9v20OpgZgmCZcS5ng==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.6.0.tgz", + "integrity": "sha512-7n8BQYz+p0PhpVe4Z4Q4WNUaBTjAqOk1/1g6gNhKEzLA2zYmytLsINd+fTg4nb7Rqd2crpteFUOK1iZJAzjfXg==", "requires": { "@babel/runtime": "^7.15.4", "async": "^3.2.2", "bluebird": "^3.7.2", + "debug": "^4.3.1", "filenamify": "^4.3.0", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-telemetry": "^3.6.0", "got": "^11.8.3", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.3", @@ -6767,6 +6748,14 @@ "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" }, + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "requires": { + "ms": "2.1.2" + } + }, "dom-serializer": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", @@ -6843,9 +6832,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.5.2.tgz", - "integrity": "sha512-Qeb2xpch5GUoeGc/Sx+zckvGFZQw4QnbWIHO4ExzH2VGJx9dy4YjTI0nvervgjew3hJKzq2Db8jSeJ3NXFSZUQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.6.0.tgz", + "integrity": "sha512-1LipVvvBT871P48izX7gk83xc2VSx6J6ruDLBnc57CqAPmNlDa3rRO2bEUNd9Zwk+uOUNi+kl1tKxYwW5G1eSg==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -6853,30 +6842,31 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.5.2" + "babel-plugin-remove-graphql-queries": "^4.6.0" } }, "gatsby-plugin-utils": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-2.5.0.tgz", - "integrity": "sha512-B/JpKTQJQNRVo3b3rRbOgHKV3/i3V5fYLPOGvBU6qHxBtQ9I5YYwXrsLJYX5vl4bEtLtrkiQG9zQyvSSXzJ9Sw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.0.0.tgz", + "integrity": "sha512-hZj64WQbs/KgAWez3oWMwlmhewUinXDJJdhj491vOWX2WVlH79m8JpAoklgrm9xaoIdhfbNkhQoMKPkRZKJpJQ==", "requires": { "@babel/runtime": "^7.15.4", "joi": "^17.4.2" } }, "gatsby-react-router-scroll": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.5.0.tgz", - "integrity": "sha512-fW+oBJDD1NNBUuxtD/aR4dJwhyi89HOfZ+u9yffP5V30z5HnF8hB6YNCo6QDhw39gDlsB9v2HIgRIt5rxZ0y9g==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.6.0.tgz", + "integrity": "sha512-n8wO0xeRxvBkJXrH2DAuLKCiHQRgFn/9Ytqb3Uz19fWd5q+jpOlD/qjorkeWl2cqo8oNb83ku8D6dF3qr8OT5g==", "requires": { - "@babel/runtime": "^7.15.4" + "@babel/runtime": "^7.15.4", + "prop-types": "^15.7.2" } }, "gatsby-remark-copy-linked-files": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-copy-linked-files/-/gatsby-remark-copy-linked-files-5.5.0.tgz", - "integrity": "sha512-RrntAHQErYpuk3lETieMKykIkaOFOSAbbjQGJq/3XKPqjyG2WatzdKRMTnw9cixH/u+DWpw59Z2bZMDpD6ncxg==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-copy-linked-files/-/gatsby-remark-copy-linked-files-5.6.0.tgz", + "integrity": "sha512-/gsuAK7KNj9Zuc0ADo6m5rhxemRcPulHKNEr/7VSH521/mZwp6FxK6Co0ngxfL6Z5I4ha65IBCcAFgdPksQQeA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", @@ -6889,14 +6879,14 @@ } }, "gatsby-remark-images": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-6.5.2.tgz", - "integrity": "sha512-E6Cf9Vz1jo7pVS7CAao3cV4xSS9IRehxmzZjIo+rKpqQk7r2PeFrzvPbLltuhkiDJG6oupn+Njk6u/r530+97A==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-images/-/gatsby-remark-images-6.6.0.tgz", + "integrity": "sha512-GZTq2fQnTDLOA7O+eoWi8iztLLuoRHFHiu3YTb6ahKZbbKtCM8JumiEOS3m/mZ64GJGjPSA1PCYdeliQiNq3WQ==", "requires": { "@babel/runtime": "^7.15.4", "chalk": "^4.1.2", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", @@ -6907,9 +6897,9 @@ } }, "gatsby-remark-prismjs": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-6.5.0.tgz", - "integrity": "sha512-48UtIOiLWF37OHE6B2zTHflrJ5vcGLMHVaTXs0OwPc5eXyvGXe2BdWQrmvOWW+DQ0rd7HeUvlBxjnHohTjVP9Q==", + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-prismjs/-/gatsby-remark-prismjs-6.6.0.tgz", + "integrity": "sha512-GJuf+iMIavVgzO3XEIGXS+jz5l8znw2JI8gGgqlpBXewlTvWlfH12TqMSxApsq0gbrcUXQuakbk48bnwtS7+2A==", "requires": { "@babel/runtime": "^7.15.4", "parse-numeric-range": "^1.2.0", @@ -6917,9 +6907,9 @@ } }, "gatsby-remark-responsive-iframe": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-5.5.0.tgz", - "integrity": "sha512-iyBUy1lpSpPUuS9KnugGmHlhnkS8wk2c6jTNFhPAZvsBGj9+RDjc5m9JK2MErfzhBQBLoDR1geUmGpqjzT6AaA==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-responsive-iframe/-/gatsby-remark-responsive-iframe-5.6.0.tgz", + "integrity": "sha512-X23+p5SYgND4LoINxHwgHJUOphz5ie+a3L0nHKe6cdnfXkkhWbs2ZuQlGfMhLZscrtm6P0XL5xFAdRRiTxC5/g==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", @@ -6929,9 +6919,9 @@ } }, "gatsby-remark-smartypants": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/gatsby-remark-smartypants/-/gatsby-remark-smartypants-5.5.0.tgz", - "integrity": "sha512-moM1kEa5dZb1Q6MrHe+6qLOvnd5uP1pcjoZvODFJg33Y95IAitwCiXtGrlGMRh+WlgORNLyhW+Uv7Yfe6h0FgA==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-remark-smartypants/-/gatsby-remark-smartypants-5.6.0.tgz", + "integrity": "sha512-qGRLXqmLAk8B2tMo7IPywJRR/IqqyhNd3dHyOb84c4Rlxgw436LNX2aaVO0wc26OcW99/ZKbbfSMEXqyqiQcHw==", "requires": { "@babel/runtime": "^7.15.4", "retext": "^7.0.1", @@ -6939,17 +6929,27 @@ "unist-util-visit": "^2.0.3" } }, + "gatsby-sharp": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.0.1.tgz", + "integrity": "sha512-m6NyS1/Y97kA8JY75SHqB0ZcReIk9OTDmUMi/kLK7yVXtwfGh7pgX3UW930ydUB3tooZMB9ojAmmpmmrV8lE+g==", + "optional": true, + "requires": { + "@types/sharp": "^0.29.5", + "sharp": "^0.29.3" + } + }, "gatsby-source-filesystem": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.5.2.tgz", - "integrity": "sha512-q3S7ffE3EdxIr3kpqN9UyDOJeHePuc6VLqodibbeEFO/l+DVrmvLSDTQlo2n6MUQtEsQ+UWyitcX2+WydpCGBg==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.6.0.tgz", + "integrity": "sha512-Ve6VfFJ4moTX7n8uDTGF7K07HdjWkWW7c9Bn1etcS2QcFRRMj/lxQ/2EFpgVM20jtZ60IG1vqnAzDabqz7UxXQ==", "requires": { "@babel/runtime": "^7.15.4", "chokidar": "^3.5.2", "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -7079,9 +7079,9 @@ } }, "gatsby-telemetry": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.5.2.tgz", - "integrity": "sha512-nL33+AxawRqEjuvHAbyyxoDMZ5GXNMEMzCk5WQu7J/lA6od6cUmXpZMcr4AxwnNFJLfmYKlwalN7cuz5nBL6lw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.6.0.tgz", + "integrity": "sha512-mxofrnVUtcjh+CD9QcAQloR5WskKUfBCXzGLCH4/haE5SbWKpKstLBR06ZnNI01VHc5Do0+W+n16NvNe4G8zGQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -7091,7 +7091,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7169,12 +7169,12 @@ } }, "gatsby-transformer-remark": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-5.5.2.tgz", - "integrity": "sha512-KXROm0IbQJUu107HKwD/vthc1XVVnLZvujHdGMo4/9fcOU3JT+Zlv4lGHHmKYZ/5bVdZWb5qd9uJe6kCnWfIpw==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-remark/-/gatsby-transformer-remark-5.6.0.tgz", + "integrity": "sha512-+h3DEpY4sfenpcNYbir5eFt73lx5JEcWsEl5RZbsqvQ/1MT5lt4+aRWsJk8yP0F81ah7uS4dRJuruG2sxjpeYA==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "gray-matter": "^4.0.3", "hast-util-raw": "^6.0.2", "hast-util-to-html": "^7.1.3", @@ -7218,9 +7218,9 @@ } }, "gatsby-transformer-sharp": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.5.0.tgz", - "integrity": "sha512-q4bbDsb9TrzCMoV+O9qVfC+vew0N8x5jSGkfpxh8oHbu3d2JAToD5BisGh3hCVojoUCkVMszjDnJZ5TXiyJumQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.6.0.tgz", + "integrity": "sha512-hf1GohwPhjKg1tRFI3GfJS3SxVoXI+j7MqwPsWetzRvaFy+3kecmU/azklnTfT7/2LexfDxtso9/lCHgFl5fIQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", @@ -7233,9 +7233,9 @@ } }, "gatsby-worker": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.5.0.tgz", - "integrity": "sha512-syzm89Jd/xL6PnF0lW/fu4Aqjkbf3dYuJRwABoHVZ2cralshSFvzY3SR4BhC3tXFlkOrF+UgYM3Ek4tv7TDjkw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.6.0.tgz", + "integrity": "sha512-UuyRZmHiAI9HnjYeLjG+/5K4ugeGSzftF/hFRBjkvcABCc0GktOm2038FtUpXxpX9MbCiYd6pO3Kij5U7FLQBg==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -7986,14 +7986,6 @@ "type-fest": "^0.21.3" } }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", @@ -8408,9 +8400,9 @@ "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" }, "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isexe": { "version": "2.0.0", @@ -8486,6 +8478,11 @@ "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.3.tgz", "integrity": "sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q==" }, + "js-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz", + "integrity": "sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==" + }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -9544,9 +9541,9 @@ } }, "node-addon-api": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.2.0.tgz", - "integrity": "sha512-eazsqzwG2lskuzBqCGPi7Ac2UgOoMz8JVOXVhTvvPDYhthvNpefx8jWD8Np7Gv+2Sz0FlPWZk0nJV0z598Wn8Q==" + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, "node-fetch": { "version": "2.6.7", @@ -10368,9 +10365,9 @@ } }, "postcss-colormin": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.3.tgz", - "integrity": "sha512-dra4xoAjub2wha6RUXAgadHEn2lGxbj8drhFcIGLOMn914Eu7DkPUurugDXgstwttCYkJtZ/+PkWRWdp3UHRIA==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.4.tgz", + "integrity": "sha512-rYlC5015aNqVQt/B6Cy156g7sH5tRUJGmT9xeagYthtKehetbKx7jHxhyLpulP4bs4vbp8u/B2rac0J7S7qPQg==", "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", @@ -10379,32 +10376,32 @@ } }, "postcss-convert-values": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz", - "integrity": "sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.3.tgz", + "integrity": "sha512-fVkjHm2T0PSMqXUCIhHNWVGjhB9mHEWX2GboVs7j3iCgr6FpIl9c/IdXy0PHWZSQ9LFTRgmj98amxJE6KOnlsA==", "requires": { - "postcss-value-parser": "^4.1.0" + "postcss-value-parser": "^4.2.0" } }, "postcss-discard-comments": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz", - "integrity": "sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.2.tgz", + "integrity": "sha512-6VQ3pYTsJHEsN2Bic88Aa7J/Brn4Bv8j/rqaFQZkH+pcVkKYwxCIvoMQkykEW7fBjmofdTnQgcivt5CCBJhtrg==" }, "postcss-discard-duplicates": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz", - "integrity": "sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.2.tgz", + "integrity": "sha512-LKY81YjUjc78p6rbXIsnppsaFo8XzCoMZkXVILJU//sK0DgPkPSpuq/cZvHss3EtdKvWNYgWzQL+wiJFtEET4g==" }, "postcss-discard-empty": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz", - "integrity": "sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.2.tgz", + "integrity": "sha512-SxBsbTjlsKUvZLL+dMrdWauuNZU8TBq5IOL/DHa6jBUSXFEwmDqeXRfTIK/FQpPTa8MJMxEHjSV3UbiuyLARPQ==" }, "postcss-discard-overridden": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.2.tgz", - "integrity": "sha512-+56BLP6NSSUuWUXjRgAQuho1p5xs/hU5Sw7+xt9S3JSg+7R6+WMGnJW7Hre/6tTuZ2xiXMB42ObkiZJ2hy/Pew==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.3.tgz", + "integrity": "sha512-yRTXknIZA4k8Yo4FiF1xbsLj/VBxfXEWxJNIrtIy6HC9KQ4xJxcPtoaaskh6QptCGrrcGnhKsTsENTRPZOBu4g==" }, "postcss-flexbugs-fixes": { "version": "5.0.2", @@ -10436,60 +10433,58 @@ } }, "postcss-merge-longhand": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz", - "integrity": "sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.5.tgz", + "integrity": "sha512-R2BCPJJ/U2oh1uTWEYn9CcJ7MMcQ1iIbj9wfr2s/zHu5om5MP/ewKdaunpfJqR1WYzqCsgnXuRoVXPAzxdqy8g==", "requires": { - "postcss-value-parser": "^4.1.0", - "stylehacks": "^5.0.1" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.0.2" } }, "postcss-merge-rules": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.4.tgz", - "integrity": "sha512-yOj7bW3NxlQxaERBB0lEY1sH5y+RzevjbdH4DBJurjKERNpknRByFNdNe+V72i5pIZL12woM9uGdS5xbSB+kDQ==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.5.tgz", + "integrity": "sha512-3Oa26/Pb9VOFVksJjFG45SNoe4nhGvJ2Uc6TlRimqF8uhfOCEhVCaJ3rvEat5UFOn2UZqTY5Da8dFgCh3Iq0Ug==", "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-selector-parser": "^6.0.5" } }, "postcss-minify-font-values": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.2.tgz", - "integrity": "sha512-R6MJZryq28Cw0AmnyhXrM7naqJZZLoa1paBltIzh2wM7yb4D45TLur+eubTQ4jCmZU9SGeZdWsc5KcSoqTMeTg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.3.tgz", + "integrity": "sha512-bC45rVzEwsLhv/cL1eCjoo2OOjbSk9I7HKFBYnBvtyuIZlf7uMipMATXtA0Fc3jwPo3wuPIW1jRJWKzflMh1sA==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-minify-gradients": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.4.tgz", - "integrity": "sha512-RVwZA7NC4R4J76u8X0Q0j+J7ItKUWAeBUJ8oEEZWmtv3Xoh19uNJaJwzNpsydQjk6PkuhRrK+YwwMf+c+68EYg==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.5.tgz", + "integrity": "sha512-/YjvXs8PepsoiZAIpjstOO4IHKwFAqYNqbA1yVdqklM84tbUUneh6omJxGlRlF3mi6K5Pa067Mg6IwqEnYC8Zg==", "requires": { "colord": "^2.9.1", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-params": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.3.tgz", - "integrity": "sha512-NY92FUikE+wralaiVexFd5gwb7oJTIDhgTNeIw89i1Ymsgt4RWiPXfz3bg7hDy4NL6gepcThJwOYNtZO/eNi7Q==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.4.tgz", + "integrity": "sha512-Z0vjod9lRZEmEPfEmA2sCfjbfEEFKefMD3RDIQSUfXK4LpCyWkX1CniUgyNvnjJFLDPSxtgKzozhHhPHKoeGkg==", "requires": { - "alphanum-sort": "^1.0.2", "browserslist": "^4.16.6", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.1.tgz", - "integrity": "sha512-TOzqOPXt91O2luJInaVPiivh90a2SIK5Nf1Ea7yEIM/5w+XA5BGrZGUSW8aEx9pJ/oNj7ZJBhjvigSiBV+bC1Q==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.2.tgz", + "integrity": "sha512-gpn1nJDMCf3g32y/7kl+jsdamhiYT+/zmEt57RoT9GmzlixBNRPohI7k8UIHelLABhdLf3MSZhtM33xuH5eQOQ==", "requires": { - "alphanum-sort": "^1.0.2", "postcss-selector-parser": "^6.0.5" } }, @@ -10525,9 +10520,9 @@ } }, "postcss-normalize-charset": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz", - "integrity": "sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.2.tgz", + "integrity": "sha512-fEMhYXzO8My+gC009qDc/3bgnFP8Fv1Ic8uw4ec4YTlhIOw63tGPk1YFd7fk9bZUf1DAbkhiL/QPWs9JLqdF2g==" }, "postcss-normalize-display-values": { "version": "5.0.2", @@ -10538,25 +10533,25 @@ } }, "postcss-normalize-positions": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.2.tgz", - "integrity": "sha512-tqghWFVDp2btqFg1gYob1etPNxXLNh3uVeWgZE2AQGh6b2F8AK2Gj36v5Vhyh+APwIzNjmt6jwZ9pTBP+/OM8g==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.3.tgz", + "integrity": "sha512-U+rmhjrNBvIGYqr/1tD4wXPFFMKUbXsYXvlUCzLi0tOCUS6LoeEAnmVXXJY/MEB/1CKZZwBSs2tmzGawcygVBA==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-repeat-style": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.2.tgz", - "integrity": "sha512-/rIZn8X9bBzC7KvY4iKUhXUGW3MmbXwfPF23jC9wT9xTi7kAvgj8sEgwxjixBmoL6MVa4WOgxNz2hAR6wTK8tw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.3.tgz", + "integrity": "sha512-uk1+xYx0AMbA3nLSNhbDrqbf/rx+Iuq5tVad2VNyaxxJzx79oGieJ6D9F6AfOL2GtiIbP7vTYlpYHtG+ERFXTg==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-string": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.2.tgz", - "integrity": "sha512-zaI1yzwL+a/FkIzUWMQoH25YwCYxi917J4pYm1nRXtdgiCdnlTkx5eRzqWEC64HtRa06WCJ9TIutpb6GmW4gFw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.3.tgz", + "integrity": "sha512-Mf2V4JbIDboNGQhW6xW0YREDiYXoX3WrD3EjKkjvnpAJ6W4qqjLnK/c9aioyVFaWWHVdP5zVRw/9DI5S3oLDFw==", "requires": { "postcss-value-parser": "^4.2.0" } @@ -10570,9 +10565,9 @@ } }, "postcss-normalize-unicode": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.2.tgz", - "integrity": "sha512-3y/V+vjZ19HNcTizeqwrbZSUsE69ZMRHfiiyLAJb7C7hJtYmM4Gsbajy7gKagu97E8q5rlS9k8FhojA8cpGhWw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.3.tgz", + "integrity": "sha512-uNC7BmS/7h6to2UWa4RFH8sOTzu2O9dVWPE/F9Vm9GdhONiD/c1kNaCLbmsFHlKWcEx7alNUChQ+jH/QAlqsQw==", "requires": { "browserslist": "^4.16.6", "postcss-value-parser": "^4.2.0" @@ -10588,19 +10583,19 @@ } }, "postcss-normalize-whitespace": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.2.tgz", - "integrity": "sha512-CXBx+9fVlzSgbk0IXA/dcZn9lXixnQRndnsPC5ht3HxlQ1bVh77KQDL1GffJx1LTzzfae8ftMulsjYmO2yegxA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.3.tgz", + "integrity": "sha512-333JWRnX655fSoUbufJ10HJop3c8mrpKkCCUnEmgz/Cb/QEtW+/TMZwDAUt4lnwqP6tCCk0x0b58jqvDgiQm/A==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-ordered-values": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.3.tgz", - "integrity": "sha512-T9pDS+P9bWeFvqivXd5ACzQmrCmHjv3ZP+djn8E1UZY7iK79pFSm7i3WbKw2VSmFmdbMm8sQ12OPcNpzBo3Z2w==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.4.tgz", + "integrity": "sha512-taKtGDZtyYUMVYkg+MuJeBUiTF6cGHZmo/qcW7ibvW79UlyKuSHbo6dpCIiqI+j9oJsXWzP+ovIxoyLDOeQFdw==", "requires": { - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, @@ -10614,17 +10609,17 @@ } }, "postcss-reduce-transforms": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.2.tgz", - "integrity": "sha512-25HeDeFsgiPSUx69jJXZn8I06tMxLQJJNF5h7i9gsUg8iP4KOOJ8EX8fj3seeoLt3SLU2YDD6UPnDYVGUO7DEA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.3.tgz", + "integrity": "sha512-yDnTUab5i7auHiNwdcL1f+pBnqQFf+7eC4cbC7D8Lc1FkvNZhtpkdad+9U4wDdFb84haupMf0rA/Zc5LcTe/3A==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-selector-parser": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz", - "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==", + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", + "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -10640,11 +10635,10 @@ } }, "postcss-unique-selectors": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.2.tgz", - "integrity": "sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.3.tgz", + "integrity": "sha512-V5tX2hadSSn+miVCluuK1IDGy+7jAXSOfRZ2DQ+s/4uQZb/orDYBjH0CHgFrXsRw78p4QTuEFA9kI6C956UnHQ==", "requires": { - "alphanum-sort": "^1.0.2", "postcss-selector-parser": "^6.0.5" } }, @@ -11463,11 +11457,11 @@ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" }, "resolve": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", - "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "requires": { - "is-core-module": "^2.8.0", + "is-core-module": "^2.8.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } @@ -11924,9 +11918,9 @@ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" }, "simple-get": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.0.tgz", - "integrity": "sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", "requires": { "decompress-response": "^6.0.0", "once": "^1.3.1", @@ -12372,16 +12366,6 @@ "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } } }, "string.prototype.matchall": { @@ -12460,18 +12444,11 @@ } }, "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "requires": { - "ansi-regex": "^4.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - } + "ansi-regex": "^5.0.1" } }, "strip-bom": { @@ -12565,11 +12542,11 @@ } }, "stylehacks": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz", - "integrity": "sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.2.tgz", + "integrity": "sha512-114zeJdOpTrbQYRD4OU5UWJ99LKUaqCPJTU1HQ/n3q3BwmllFN8kHENaLnOeqVq6AhXrWfxHNZTl33iJ4oy3cQ==", "requires": { - "browserslist": "^4.16.0", + "browserslist": "^4.16.6", "postcss-selector-parser": "^6.0.4" } }, @@ -12658,14 +12635,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } } } }, @@ -13032,12 +13001,19 @@ "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" }, "underscore.string": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz", - "integrity": "sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.6.tgz", + "integrity": "sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==", "requires": { - "sprintf-js": "^1.0.3", + "sprintf-js": "^1.1.1", "util-deprecate": "^1.0.2" + }, + "dependencies": { + "sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==" + } } }, "unherit": { @@ -13250,11 +13226,6 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" } } }, @@ -13458,9 +13429,9 @@ "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" }, "webpack": { - "version": "5.66.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.66.0.tgz", - "integrity": "sha512-NJNtGT7IKpGzdW7Iwpn/09OXz9inIkeIQ/ibY6B+MdV1x6+uReqz/5z1L89ezWnpPDWpXF0TY5PCYKQdWVn8Vg==", + "version": "5.67.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.67.0.tgz", + "integrity": "sha512-LjFbfMh89xBDpUMgA1W9Ur6Rn/gnr2Cq1jjHFPo4v6a79/ypznSYbAyPgGhwsxBtMIaEmDD1oJoA7BEYw/Fbrw==", "requires": { "@types/eslint-scope": "^3.7.0", "@types/estree": "^0.0.50", @@ -13485,7 +13456,7 @@ "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", "watchpack": "^2.3.1", - "webpack-sources": "^3.2.2" + "webpack-sources": "^3.2.3" }, "dependencies": { "acorn": { @@ -13516,9 +13487,9 @@ } }, "webpack-assets-manifest": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/webpack-assets-manifest/-/webpack-assets-manifest-5.0.6.tgz", - "integrity": "sha512-CW94ylPHurZTmxnYajSFA8763Cv/QFIKNgBwqBLaIOnBjH1EbDUAf8Eq1/i+o8qaKyKXJ3aX7r4/jtpXD88ldg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/webpack-assets-manifest/-/webpack-assets-manifest-5.1.0.tgz", + "integrity": "sha512-kPuTMEjBrqZQVJ5M6yXNBCEdFbQQn7p+loNXt8NOeDFaAbsNFWqqwR0YL1mfG5LbwhK5FLXWXpuK3GuIIZ46rg==", "requires": { "chalk": "^4.0", "deepmerge": "^4.0", @@ -13871,14 +13842,6 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } } } }, @@ -13965,9 +13928,9 @@ } }, "xstate": { - "version": "4.27.0", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.27.0.tgz", - "integrity": "sha512-ohOwDM9tViC/zSSmY9261CHblDPqiaAk5vyjVbi69uJv9fGWMzlm0VDQwM2OvC61GKfXVBeuWSMkL7LPUsTpfA==" + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.28.1.tgz", + "integrity": "sha512-0xvaegeZNeHJAJvpjznyNr91qB1xy1PqeYMDyknh5S23TBPQJUHS81hk8W3UcvnB9uNs0YmOU2daoqb3WegzYQ==" }, "xtend": { "version": "4.0.2", @@ -14067,6 +14030,11 @@ "strip-ansi": "^5.2.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -14076,6 +14044,14 @@ "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } } } }, diff --git a/starters/blog/package.json b/starters/blog/package.json index 228da29812572..288aec285551f 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -8,23 +8,23 @@ "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { - "gatsby": "^4.5.4", - "gatsby-plugin-feed": "^4.5.0", - "gatsby-plugin-gatsby-cloud": "^4.5.2", - "gatsby-plugin-google-analytics": "^4.5.0", - "gatsby-plugin-image": "^2.5.2", - "gatsby-plugin-manifest": "^4.5.2", - "gatsby-plugin-offline": "^5.5.2", - "gatsby-plugin-react-helmet": "^5.5.0", - "gatsby-plugin-sharp": "^4.5.2", - "gatsby-remark-copy-linked-files": "^5.5.0", - "gatsby-remark-images": "^6.5.2", - "gatsby-remark-prismjs": "^6.5.0", - "gatsby-remark-responsive-iframe": "^5.5.0", - "gatsby-remark-smartypants": "^5.5.0", - "gatsby-source-filesystem": "^4.5.2", - "gatsby-transformer-remark": "^5.5.2", - "gatsby-transformer-sharp": "^4.5.0", + "gatsby": "^4.6.0", + "gatsby-plugin-feed": "^4.6.0", + "gatsby-plugin-gatsby-cloud": "^4.6.0", + "gatsby-plugin-google-analytics": "^4.6.0", + "gatsby-plugin-image": "^2.6.0", + "gatsby-plugin-manifest": "^4.6.0", + "gatsby-plugin-offline": "^5.6.0", + "gatsby-plugin-react-helmet": "^5.6.0", + "gatsby-plugin-sharp": "^4.6.0", + "gatsby-remark-copy-linked-files": "^5.6.0", + "gatsby-remark-images": "^6.6.0", + "gatsby-remark-prismjs": "^6.6.0", + "gatsby-remark-responsive-iframe": "^5.6.0", + "gatsby-remark-smartypants": "^5.6.0", + "gatsby-source-filesystem": "^4.6.0", + "gatsby-transformer-remark": "^5.6.0", + "gatsby-transformer-sharp": "^4.6.0", "prismjs": "^1.25.0", "react": "^17.0.1", "react-dom": "^17.0.1", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index d81dded1d0232..c8811166dc671 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -33,19 +33,19 @@ "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==" }, "@babel/core": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", - "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "version": "7.16.12", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.12.tgz", + "integrity": "sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg==", "requires": { "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", + "@babel/generator": "^7.16.8", "@babel/helper-compilation-targets": "^7.16.7", "@babel/helper-module-transforms": "^7.16.7", "@babel/helpers": "^7.16.7", - "@babel/parser": "^7.16.7", + "@babel/parser": "^7.16.12", "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7", + "@babel/traverse": "^7.16.10", + "@babel/types": "^7.16.8", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -144,9 +144,9 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz", - "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.10.tgz", + "integrity": "sha512-wDeej0pu3WN/ffTxMNCPW5UCiOav8IcLRxSIyp/9+IF2xJUM9h/OYjg0IJLHaL6F8oU8kqMz9nc1vryXhMsgXg==", "requires": { "@babel/helper-annotate-as-pure": "^7.16.7", "@babel/helper-environment-visitor": "^7.16.7", @@ -360,9 +360,9 @@ } }, "@babel/highlight": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz", - "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "requires": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -382,9 +382,9 @@ } }, "@babel/parser": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz", - "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==" + "version": "7.16.12", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.12.tgz", + "integrity": "sha512-VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.16.7", @@ -519,11 +519,11 @@ } }, "@babel/plugin-proposal-private-methods": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz", - "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", + "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", "requires": { - "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.10", "@babel/helper-plugin-utils": "^7.16.7" } }, @@ -937,9 +937,9 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.8.tgz", - "integrity": "sha512-6Kg2XHPFnIarNweZxmzbgYnnWsXxkx9WQUVk2sksBRL80lBC1RAQV3wQagWxdCHiYHqPN+oenwNIuttlYgIbQQ==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.10.tgz", + "integrity": "sha512-9nwTiqETv2G7xI4RvXHNfpGdr8pAA+Q/YtN3yLK7OoK7n9OibVm/xymJ838a9A6E/IciOLPj82lZk0fW6O4O7w==", "requires": { "@babel/helper-module-imports": "^7.16.7", "@babel/helper-plugin-utils": "^7.16.7", @@ -1025,9 +1025,9 @@ } }, "@babel/preset-env": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.8.tgz", - "integrity": "sha512-9rNKgVCdwHb3z1IlbMyft6yIXIeP3xz6vWvGaLHrJThuEIqWfHb0DNBH9VuTgnDfdbUDhkmkvMZS/YMCtP7Elg==", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz", + "integrity": "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==", "requires": { "@babel/compat-data": "^7.16.8", "@babel/helper-compilation-targets": "^7.16.7", @@ -1047,7 +1047,7 @@ "@babel/plugin-proposal-object-rest-spread": "^7.16.7", "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", "@babel/plugin-proposal-optional-chaining": "^7.16.7", - "@babel/plugin-proposal-private-methods": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.11", "@babel/plugin-proposal-private-property-in-object": "^7.16.7", "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", "@babel/plugin-syntax-async-generators": "^7.8.4", @@ -1175,9 +1175,9 @@ } }, "@babel/traverse": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz", - "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.10.tgz", + "integrity": "sha512-yzuaYXoRJBGMlBhsMJoUW7G1UmSb/eXr/JHYM/MsOJgavJibLwASijW7oXBdw3NQ6T0bW7Ty5P/VarOs9cHmqw==", "requires": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.8", @@ -1185,7 +1185,7 @@ "@babel/helper-function-name": "^7.16.7", "@babel/helper-hoist-variables": "^7.16.7", "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.8", + "@babel/parser": "^7.16.10", "@babel/types": "^7.16.8", "debug": "^4.1.0", "globals": "^11.1.0" @@ -1286,16 +1286,6 @@ "html-entities": "^2.1.0", "querystring": "^0.2.0", "strip-ansi": "^6.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } } }, "@graphql-tools/batch-execute": { @@ -2024,9 +2014,9 @@ "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" }, "@sindresorhus/is": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.3.0.tgz", - "integrity": "sha512-wwOvh0eO3PiTEivGJWiZ+b946SlMSb4pe+y+Ur/4S87cwo09pYi+FWHHnbrM3W9W7cBYKDqQXcrFYjYUCOJUEQ==" + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.4.0.tgz", + "integrity": "sha512-QppPM/8l3Mawvh4rn9CNEYIU9bxpXUCRMaX9yUpvBk1nMKusLKpfXGDEKExKaPhLzcn3lzil7pR6rnJ11HgeRQ==" }, "@sindresorhus/slugify": { "version": "1.1.2", @@ -2219,9 +2209,9 @@ } }, "@types/node": { - "version": "17.0.9", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.9.tgz", - "integrity": "sha512-5dNBXu/FOER+EXnyah7rn8xlNrfMOQb/qXnw4NQgLkCygKBKhdmF/CA5oXVOKZLBEahw8s2WP9LxIcN/oDDRgQ==" + "version": "17.0.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.12.tgz", + "integrity": "sha512-4YpbAsnJXWYK/fpTVFlMIcUIho2AYCi4wg5aNPrG1ng7fn/1/RZfCIpRCiBX+12RVa34RluilnvCqD+g3KiSiA==" }, "@types/node-fetch": { "version": "2.5.12", @@ -2299,6 +2289,15 @@ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" }, + "@types/sharp": { + "version": "0.29.5", + "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.29.5.tgz", + "integrity": "sha512-3TC+S3H5RwnJmLYMHrcdfNjz/CaApKmujjY9b6PU/pE6n0qfooi99YqXGWoW8frU9EWYj/XTI35Pzxa+ThAZ5Q==", + "optional": true, + "requires": { + "@types/node": "*" + } + }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -2631,11 +2630,6 @@ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" - }, "anser": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/anser/-/anser-2.1.0.tgz", @@ -2720,11 +2714,6 @@ "readable-stream": "^2.0.6" }, "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, "readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", @@ -3022,12 +3011,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.5.2.tgz", - "integrity": "sha512-N/z2vrRBtbPpkzQwgO6vL1GgLvRCxjUwcXPCduMO32xIDlcCeAOAuBUpMSEs7rDyE6YTBhu8FhskeBJl49N0iQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.6.0.tgz", + "integrity": "sha512-QMbjJhHOkVHBfFDfAXQp1MFSzLWOJdPMe7Dk3+AF8L+dlLcf2Z7zbIrlRoRPEROyoW4CCPzLDi0Vam5leR/+gw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.5.2" + "gatsby-core-utils": "^3.6.0" } }, "babel-plugin-syntax-object-rest-spread": { @@ -3050,9 +3039,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-gatsby": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.5.2.tgz", - "integrity": "sha512-PETwDgkCaBlD4+wrGteYF58IELz4/P4Rsh0Y36bVHYXXqMeJqh8w0mfnSa2fW/Wqcc8DZmNm32erQT1Bj9XFGQ==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.6.0.tgz", + "integrity": "sha512-ATl4c7LGySIZhBcYV9pL2vp8VTj6jtduG4b00dWgFb+v/Op1FXMUJ70KSRDUVE6fccFdw2abJlbuOgZgwCQFPA==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -3067,8 +3056,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^2.8.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.5.2", - "gatsby-legacy-polyfills": "^2.5.0" + "gatsby-core-utils": "^3.6.0", + "gatsby-legacy-polyfills": "^2.6.0" } }, "babel-runtime": { @@ -3319,6 +3308,11 @@ "readable-stream": "1.1.x" }, "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", @@ -3450,9 +3444,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001300", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001300.tgz", - "integrity": "sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA==" + "version": "1.0.30001302", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001302.tgz", + "integrity": "sha512-YYTMO+tfwvgUN+1ZnRViE53Ma1S/oETg+J2lISsqi/ZTNThj3ZYBOKP2rHwJc37oCsPqAzJ3w2puZHn0xlLPPw==" }, "chalk": { "version": "4.1.2", @@ -3538,9 +3532,9 @@ } }, "chokidar": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", - "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "requires": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -3689,14 +3683,6 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "wrap-ansi": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", @@ -3910,11 +3896,6 @@ "typedarray": "^0.0.6" }, "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, "readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", @@ -4071,9 +4052,9 @@ } }, "create-gatsby": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.5.1.tgz", - "integrity": "sha512-pI5zvUAtHPREzKQpYU4HcpnT/Q9F+pgY99xs8HT49ZphG7qy+g02Ec/7jCNHDxlre7u+7a6TXmDF9FYr4T7BYw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.6.0.tgz", + "integrity": "sha512-ijyTd1mo7LAasyfNAE9ulmR/eSimUyvDJFmwZOExGG2jep+A43J5X8t0Ukso5BSeilMLZJGTniac33jaNoF5sw==", "requires": { "@babel/runtime": "^7.15.4" } @@ -4262,55 +4243,55 @@ "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=" }, "cssnano": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.15.tgz", - "integrity": "sha512-ppZsS7oPpi2sfiyV5+i+NbB/3GtQ+ab2Vs1azrZaXWujUSN4o+WdTxlCZIMcT9yLW3VO/5yX3vpyDaQ1nIn8CQ==", + "version": "5.0.16", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.16.tgz", + "integrity": "sha512-ryhRI9/B9VFCwPbb1z60LLK5/ldoExi7nwdnJzpkLZkm2/r7j2X3jfY+ZvDVJhC/0fPZlrAguYdHNFg0iglPKQ==", "requires": { - "cssnano-preset-default": "^5.1.10", + "cssnano-preset-default": "^5.1.11", "lilconfig": "^2.0.3", "yaml": "^1.10.2" } }, "cssnano-preset-default": { - "version": "5.1.10", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.10.tgz", - "integrity": "sha512-BcpSzUVygHMOnp9uG5rfPzTOCb0GAHQkqtUQx8j1oMNF9A1Q8hziOOhiM4bdICpmrBIU85BE64RD5XGYsVQZNA==", + "version": "5.1.11", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.11.tgz", + "integrity": "sha512-ETet5hqHxmzQq2ynXMOQofKuLm7VOjMiOB7E2zdtm/hSeCKlD9fabzIUV4GoPcRyJRHi+4kGf0vsfGYbQ4nmPw==", "requires": { "css-declaration-sorter": "^6.0.3", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-calc": "^8.2.0", - "postcss-colormin": "^5.2.3", - "postcss-convert-values": "^5.0.2", - "postcss-discard-comments": "^5.0.1", - "postcss-discard-duplicates": "^5.0.1", - "postcss-discard-empty": "^5.0.1", - "postcss-discard-overridden": "^5.0.2", - "postcss-merge-longhand": "^5.0.4", - "postcss-merge-rules": "^5.0.4", - "postcss-minify-font-values": "^5.0.2", - "postcss-minify-gradients": "^5.0.4", - "postcss-minify-params": "^5.0.3", - "postcss-minify-selectors": "^5.1.1", - "postcss-normalize-charset": "^5.0.1", + "postcss-colormin": "^5.2.4", + "postcss-convert-values": "^5.0.3", + "postcss-discard-comments": "^5.0.2", + "postcss-discard-duplicates": "^5.0.2", + "postcss-discard-empty": "^5.0.2", + "postcss-discard-overridden": "^5.0.3", + "postcss-merge-longhand": "^5.0.5", + "postcss-merge-rules": "^5.0.5", + "postcss-minify-font-values": "^5.0.3", + "postcss-minify-gradients": "^5.0.5", + "postcss-minify-params": "^5.0.4", + "postcss-minify-selectors": "^5.1.2", + "postcss-normalize-charset": "^5.0.2", "postcss-normalize-display-values": "^5.0.2", - "postcss-normalize-positions": "^5.0.2", - "postcss-normalize-repeat-style": "^5.0.2", - "postcss-normalize-string": "^5.0.2", + "postcss-normalize-positions": "^5.0.3", + "postcss-normalize-repeat-style": "^5.0.3", + "postcss-normalize-string": "^5.0.3", "postcss-normalize-timing-functions": "^5.0.2", - "postcss-normalize-unicode": "^5.0.2", + "postcss-normalize-unicode": "^5.0.3", "postcss-normalize-url": "^5.0.4", - "postcss-normalize-whitespace": "^5.0.2", - "postcss-ordered-values": "^5.0.3", + "postcss-normalize-whitespace": "^5.0.3", + "postcss-ordered-values": "^5.0.4", "postcss-reduce-initial": "^5.0.2", - "postcss-reduce-transforms": "^5.0.2", + "postcss-reduce-transforms": "^5.0.3", "postcss-svgo": "^5.0.3", - "postcss-unique-selectors": "^5.0.2" + "postcss-unique-selectors": "^5.0.3" } }, "cssnano-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.0.0.tgz", - "integrity": "sha512-Pzs7/BZ6OgT+tXXuF12DKR8SmSbzUeVYCtMBbS8lI0uAm3mrYmkyqCXXPsQESI6kmLfEVBppbdVY/el3hg3nAA==" + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.0.1.tgz", + "integrity": "sha512-VNCHL364lh++/ono+S3j9NlUK+d97KNkxI77NlqZU2W3xd2/qmyN61dsa47pTpb55zuU4G4lI7qFjAXZJH1OAQ==" }, "csso": { "version": "4.2.0", @@ -4598,6 +4579,11 @@ "streamsearch": "0.1.2" }, "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", @@ -4712,9 +4698,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.4.48", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.48.tgz", - "integrity": "sha512-RT3SEmpv7XUA+tKXrZGudAWLDpa7f8qmhjcLaM6OD/ERxjQ/zAojT8/Vvo0BSzbArkElFZ1WyZ9FuwAYbkdBNA==" + "version": "1.4.53", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.53.tgz", + "integrity": "sha512-rFveSKQczlcav+H3zkKqykU6ANseFwXwkl855jOIap5/0gnEcuIhv2ecz6aoTrXavF6I/CEBeRnBnkB51k06ew==" }, "emoji-regex": { "version": "8.0.0", @@ -5086,14 +5072,6 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -6217,9 +6195,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.5.4.tgz", - "integrity": "sha512-uXyYl9nq52xdvP/9lwWFp7eGtjFFgdAjG2xNBvpgNgd1AtH/4kU76khm1mmpXea98mnJrcwKmsSZkIbQO9YWCg==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.6.0.tgz", + "integrity": "sha512-02NsTyfPQlB/JCilJri0gxvTr7WNcjZWnNUhHQatH0CJ6Sj3meSArEMNuA2thBS/CSIq/30kEOC2HDvWEWPfSA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6245,8 +6223,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": "^4.5.2", - "babel-preset-gatsby": "^2.5.2", + "babel-plugin-remove-graphql-queries": "^4.6.0", + "babel-preset-gatsby": "^2.6.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -6288,17 +6266,18 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.0.0", - "gatsby-cli": "^4.5.2", - "gatsby-core-utils": "^3.5.2", - "gatsby-graphiql-explorer": "^2.5.0", - "gatsby-legacy-polyfills": "^2.5.0", - "gatsby-link": "^4.5.0", - "gatsby-plugin-page-creator": "^4.5.2", - "gatsby-plugin-typescript": "^4.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-react-router-scroll": "^5.5.0", - "gatsby-telemetry": "^3.5.2", - "gatsby-worker": "^1.5.0", + "gatsby-cli": "^4.6.0", + "gatsby-core-utils": "^3.6.0", + "gatsby-graphiql-explorer": "^2.6.0", + "gatsby-legacy-polyfills": "^2.6.0", + "gatsby-link": "^4.6.0", + "gatsby-plugin-page-creator": "^4.6.0", + "gatsby-plugin-typescript": "^4.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-react-router-scroll": "^5.6.0", + "gatsby-sharp": "^0.0.1", + "gatsby-telemetry": "^3.6.0", + "gatsby-worker": "^1.6.0", "glob": "^7.2.0", "got": "^11.8.2", "graphql": "^15.7.2", @@ -6354,7 +6333,7 @@ "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", - "strip-ansi": "^5.2.0", + "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", "terser-webpack-plugin": "^5.2.4", "tmp": "^0.2.1", @@ -6373,9 +6352,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.5.2.tgz", - "integrity": "sha512-AAltHfDTqOq4RL0oBgsmZb+IIDiV1zMdEzCgYIeEqWtc7nesKwHs4myYqhQV8wmXwyWKKWuXuTAqSoxuQT+X5w==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.6.0.tgz", + "integrity": "sha512-3YRilKW+aG1iSPUHj4pB7xSwVv1GX2Zjzae/2FOWaOaNRA0vKtQmwax4eks/kpfM+a2n05HH5K8ov6oLxo3YQw==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -6392,13 +6371,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.5.1", + "create-gatsby": "^2.6.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-telemetry": "^3.6.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -6415,7 +6394,7 @@ "signal-exit": "^3.0.6", "source-map": "0.7.3", "stack-trace": "^0.0.10", - "strip-ansi": "^5.2.0", + "strip-ansi": "^6.0.1", "update-notifier": "^5.1.0", "uuid": "3.4.0", "yargs": "^15.4.1", @@ -6433,9 +6412,9 @@ } }, "gatsby-core-utils": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.5.2.tgz", - "integrity": "sha512-sY7BD6VlbWwrV892x9/yJPtXYaGC/GLyhabd9j2xP6zsIOW0XBHXZ4jJ+xEPaRn3CJxYgBd8KdCyoc4h1ZEFzg==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.6.0.tgz", + "integrity": "sha512-xmjtOWQfLinNbgBiDRT1KpEfDZm0Z0u6+hsf8EH8Ps5UCIhKinGrdtK+QH+RzPGCV1PUg/E/pnLVqQLCvD+tmA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -6451,17 +6430,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.5.0.tgz", - "integrity": "sha512-uCZTQshqYuBBYwU66VtWwsbXSmw9axBbg3r20qsyuE9uvECUUkKycdLoMpRPKMuWqBPZbAudgbzl22AqNDBNaw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.6.0.tgz", + "integrity": "sha512-9YSAci8AXsaknCHdGwKJ3hkjSmcUd2+0CCn1IdTh2xcfVCTRW8Q19jgcJjY/8SYfw9kZJVZVx5jdYdD2AsIowQ==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.5.0.tgz", - "integrity": "sha512-AtHkcpa7S9E9aAOn0ca9eP3fVh5VVE5s8iD+LMx3zzZGcxZBdh6z7FVx8qWxsQXCO33Be4U/r49EFLc3koti+A==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.6.0.tgz", + "integrity": "sha512-SbZ9s1bUKJo/ED41MMZx16Oh2DaRBuzQ20WRub995RqqthIGXA5oEv/64hNgBWjkuYZdqu+XtACr6Rscd6QXKw==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -6484,9 +6463,9 @@ } }, "gatsby-link": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.5.0.tgz", - "integrity": "sha512-3u9/VRc5JEQ4SwklNjdIPiEH3mNEYJacqE/rtnLLhG5SQ1V/a3rNh5dBEASiUia1g19AHRLnkVz/LAnR/jcpkA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.6.0.tgz", + "integrity": "sha512-GbZJDppV/70m0lT3PIh2m0TLDKq5kAAk5Ao/XU9ucATdDRlE4WruwceHOg7imLmRRrK0xxYGEEyANVrqcH3+LQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.9", @@ -6494,51 +6473,52 @@ } }, "gatsby-page-utils": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.5.2.tgz", - "integrity": "sha512-Og/OFrnSKkHGkhF0lP8bOhuC/Z0b16lT8309pWoCyI7/PLsQ59ptJ06rGWA2NxW1dLFSXu+hmiJXg/bldibzDg==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.6.0.tgz", + "integrity": "sha512-rckIEZU64wITIYdY+RsbC1klLQI1izMoGD+qMMQF196+FPlMNOmoUWrCOes8LgxNChoRjSBOjRaBsR+M4Piahg==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.2", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "glob": "^7.2.0", "lodash": "^4.17.21", "micromatch": "^4.0.4" } }, "gatsby-plugin-gatsby-cloud": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.5.2.tgz", - "integrity": "sha512-aloSM+XVuideA7ZIAO1pOBb8pC+QYq873MMDWGPZt1O61ZbtfgEkigzuSbGZqcmrPnJT37n/iia6Q/PC0/YEkA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-gatsby-cloud/-/gatsby-plugin-gatsby-cloud-4.6.0.tgz", + "integrity": "sha512-BjuteMeNLry23WM0hvFYjbbyWNGFda3oCMraanO0ApiyTiUPC1W2tVytA34TJTubj0wDsudDxvVTMNS0tVOrMQ==", "requires": { "@babel/runtime": "^7.15.4", "date-fns": "^2.28.0", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-telemetry": "^3.6.0", + "js-cookie": "^3.0.1", "kebab-hash": "^0.1.2", "lodash": "^4.17.21", "webpack-assets-manifest": "^5.0.6" } }, "gatsby-plugin-image": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.5.2.tgz", - "integrity": "sha512-cytI8FNjMoTf/MraMZS9TL0mdDsN7Sh3hYL9GZeLIOTC8n8LE6wK49rDHDrQeq5S6ojk3iEPCgcxWrzQvnbxWQ==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-image/-/gatsby-plugin-image-2.6.0.tgz", + "integrity": "sha512-rWbIdkcopB02YIhR3UidoYhe2SDOFTpxzJSABq5TcLZ38FD8kth8QavvOO0h1ap9tWjaUNIjCvKRu2M3NvuC1g==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/parser": "^7.15.5", "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^4.5.2", + "babel-plugin-remove-graphql-queries": "^4.6.0", "camelcase": "^5.3.1", "chokidar": "^3.5.2", "common-tags": "^1.8.2", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.7.2" }, @@ -6551,25 +6531,25 @@ } }, "gatsby-plugin-manifest": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.5.2.tgz", - "integrity": "sha512-Stvhbz7A9BZ88HJSz+H4abZ18zxNMsv/vPkV8iAStDl55B2dY9IyWW9n5I3mL6GlPvy1mdVbTqwNG2lgMYLSEA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-4.6.0.tgz", + "integrity": "sha512-/ySmcnGYmTv4exBQSvPVBDoMVHY9TEdiYnP/NmRTOwRA7VaW525qyc+Nf6lTmlD6AONX2nrbQ3U9F/JxCTL+uw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.5.2", - "gatsby-plugin-utils": "^2.5.0", + "gatsby-core-utils": "^3.6.0", + "gatsby-plugin-utils": "^3.0.0", "semver": "^7.3.5", "sharp": "^0.29.3" } }, "gatsby-plugin-offline": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.5.2.tgz", - "integrity": "sha512-Z2NTRTOxo02SXMKhJt6YgFZ0gtIUfpBk5aaXn4/vTcL+RqUsj1QtSlWYOPYJJ4Lauj1bMkN1tFwfGelZVAdtdQ==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-offline/-/gatsby-plugin-offline-5.6.0.tgz", + "integrity": "sha512-3ir3P9B6dZGotw4ISe/F3KBZ2zwZtOSQmtOBH6A+KtSlfh4Epyf1VDawiZzBv7QOpbrrjVyL8rs109cIBxlJbA==", "requires": { "@babel/runtime": "^7.15.4", "cheerio": "^1.0.0-rc.10", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "glob": "^7.2.0", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -6577,44 +6557,45 @@ } }, "gatsby-plugin-page-creator": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.5.2.tgz", - "integrity": "sha512-mXJ2W/BfFeb0rSH+N4J2vpzY/qD6fEj0tSBqAlHocZkpsW+2jrjVCcyI2oGZr2unDekcUA2sZY+3Terxi5L5+g==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.6.0.tgz", + "integrity": "sha512-AXDD2A+HaSHJuTa6HznCn5ItnVNHfayRixqJusOpiscBsYty/JwXM/6Fj8CoQvRTwVt2EYwgw9QgjBl76kOoiA==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.2", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-page-utils": "^2.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-page-utils": "^2.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-telemetry": "^3.6.0", "globby": "^11.0.4", "lodash": "^4.17.21" } }, "gatsby-plugin-react-helmet": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.5.0.tgz", - "integrity": "sha512-1GJQS9+2lIkZrxXNfvFmNf5imJfVWWcxJBU2DfPlm9uByp5CZRDrGGXuth1ThTllrCmC4DBkrqIUQLAG36B9kw==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-react-helmet/-/gatsby-plugin-react-helmet-5.6.0.tgz", + "integrity": "sha512-EdJv0w569Bdaxq46sFX2UExsb1COdTGCXcjg53a31nhFmWo42PBuTBUhGKcsbdmomCaipl9j39NsHjj3opioBQ==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-plugin-sharp": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.5.2.tgz", - "integrity": "sha512-XPJ5M+vUvcl/B779oPBTjT9cLjFNTzOvO6o2rtHDPJIsv7JOLpEixkOHWO8agsW+9gNvV9v20OpgZgmCZcS5ng==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-sharp/-/gatsby-plugin-sharp-4.6.0.tgz", + "integrity": "sha512-7n8BQYz+p0PhpVe4Z4Q4WNUaBTjAqOk1/1g6gNhKEzLA2zYmytLsINd+fTg4nb7Rqd2crpteFUOK1iZJAzjfXg==", "requires": { "@babel/runtime": "^7.15.4", "async": "^3.2.2", "bluebird": "^3.7.2", + "debug": "^4.3.1", "filenamify": "^4.3.0", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-telemetry": "^3.6.0", "got": "^11.8.3", "lodash": "^4.17.21", "mini-svg-data-uri": "^1.4.3", @@ -6667,6 +6648,14 @@ "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" }, + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "requires": { + "ms": "2.1.2" + } + }, "dom-serializer": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", @@ -6743,9 +6732,9 @@ } }, "gatsby-plugin-typescript": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.5.2.tgz", - "integrity": "sha512-Qeb2xpch5GUoeGc/Sx+zckvGFZQw4QnbWIHO4ExzH2VGJx9dy4YjTI0nvervgjew3hJKzq2Db8jSeJ3NXFSZUQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.6.0.tgz", + "integrity": "sha512-1LipVvvBT871P48izX7gk83xc2VSx6J6ruDLBnc57CqAPmNlDa3rRO2bEUNd9Zwk+uOUNi+kl1tKxYwW5G1eSg==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -6753,37 +6742,48 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.5.2" + "babel-plugin-remove-graphql-queries": "^4.6.0" } }, "gatsby-plugin-utils": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-2.5.0.tgz", - "integrity": "sha512-B/JpKTQJQNRVo3b3rRbOgHKV3/i3V5fYLPOGvBU6qHxBtQ9I5YYwXrsLJYX5vl4bEtLtrkiQG9zQyvSSXzJ9Sw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.0.0.tgz", + "integrity": "sha512-hZj64WQbs/KgAWez3oWMwlmhewUinXDJJdhj491vOWX2WVlH79m8JpAoklgrm9xaoIdhfbNkhQoMKPkRZKJpJQ==", "requires": { "@babel/runtime": "^7.15.4", "joi": "^17.4.2" } }, "gatsby-react-router-scroll": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.5.0.tgz", - "integrity": "sha512-fW+oBJDD1NNBUuxtD/aR4dJwhyi89HOfZ+u9yffP5V30z5HnF8hB6YNCo6QDhw39gDlsB9v2HIgRIt5rxZ0y9g==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.6.0.tgz", + "integrity": "sha512-n8wO0xeRxvBkJXrH2DAuLKCiHQRgFn/9Ytqb3Uz19fWd5q+jpOlD/qjorkeWl2cqo8oNb83ku8D6dF3qr8OT5g==", "requires": { - "@babel/runtime": "^7.15.4" + "@babel/runtime": "^7.15.4", + "prop-types": "^15.7.2" + } + }, + "gatsby-sharp": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.0.1.tgz", + "integrity": "sha512-m6NyS1/Y97kA8JY75SHqB0ZcReIk9OTDmUMi/kLK7yVXtwfGh7pgX3UW930ydUB3tooZMB9ojAmmpmmrV8lE+g==", + "optional": true, + "requires": { + "@types/sharp": "^0.29.5", + "sharp": "^0.29.3" } }, "gatsby-source-filesystem": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.5.2.tgz", - "integrity": "sha512-q3S7ffE3EdxIr3kpqN9UyDOJeHePuc6VLqodibbeEFO/l+DVrmvLSDTQlo2n6MUQtEsQ+UWyitcX2+WydpCGBg==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-source-filesystem/-/gatsby-source-filesystem-4.6.0.tgz", + "integrity": "sha512-Ve6VfFJ4moTX7n8uDTGF7K07HdjWkWW7c9Bn1etcS2QcFRRMj/lxQ/2EFpgVM20jtZ60IG1vqnAzDabqz7UxXQ==", "requires": { "@babel/runtime": "^7.15.4", "chokidar": "^3.5.2", "fastq": "^1.13.0", "file-type": "^16.5.3", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.5.2", @@ -6913,9 +6913,9 @@ } }, "gatsby-telemetry": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.5.2.tgz", - "integrity": "sha512-nL33+AxawRqEjuvHAbyyxoDMZ5GXNMEMzCk5WQu7J/lA6od6cUmXpZMcr4AxwnNFJLfmYKlwalN7cuz5nBL6lw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.6.0.tgz", + "integrity": "sha512-mxofrnVUtcjh+CD9QcAQloR5WskKUfBCXzGLCH4/haE5SbWKpKstLBR06ZnNI01VHc5Do0+W+n16NvNe4G8zGQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -6925,7 +6925,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -7003,9 +7003,9 @@ } }, "gatsby-transformer-sharp": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.5.0.tgz", - "integrity": "sha512-q4bbDsb9TrzCMoV+O9qVfC+vew0N8x5jSGkfpxh8oHbu3d2JAToD5BisGh3hCVojoUCkVMszjDnJZ5TXiyJumQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-transformer-sharp/-/gatsby-transformer-sharp-4.6.0.tgz", + "integrity": "sha512-hf1GohwPhjKg1tRFI3GfJS3SxVoXI+j7MqwPsWetzRvaFy+3kecmU/azklnTfT7/2LexfDxtso9/lCHgFl5fIQ==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", @@ -7018,9 +7018,9 @@ } }, "gatsby-worker": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.5.0.tgz", - "integrity": "sha512-syzm89Jd/xL6PnF0lW/fu4Aqjkbf3dYuJRwABoHVZ2cralshSFvzY3SR4BhC3tXFlkOrF+UgYM3Ek4tv7TDjkw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.6.0.tgz", + "integrity": "sha512-UuyRZmHiAI9HnjYeLjG+/5K4ugeGSzftF/hFRBjkvcABCc0GktOm2038FtUpXxpX9MbCiYd6pO3Kij5U7FLQBg==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" @@ -7644,14 +7644,6 @@ "type-fest": "^0.21.3" } }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", @@ -8037,9 +8029,9 @@ "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" }, "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isexe": { "version": "2.0.0", @@ -8115,6 +8107,11 @@ "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.3.tgz", "integrity": "sha512-ru1HWKek8octvUHFHvE5ZzQ1yAsJmIvRdGWvSoKV52XKyuyYA437QWDttXT8eZXDSbuMpHlLzPDZUPd6idIz+Q==" }, + "js-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz", + "integrity": "sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==" + }, "js-tokens": { "version": "4.0.0", "resolved": false, @@ -8922,9 +8919,9 @@ } }, "node-addon-api": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.2.0.tgz", - "integrity": "sha512-eazsqzwG2lskuzBqCGPi7Ac2UgOoMz8JVOXVhTvvPDYhthvNpefx8jWD8Np7Gv+2Sz0FlPWZk0nJV0z598Wn8Q==" + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==" }, "node-fetch": { "version": "2.6.7", @@ -9692,9 +9689,9 @@ } }, "postcss-colormin": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.3.tgz", - "integrity": "sha512-dra4xoAjub2wha6RUXAgadHEn2lGxbj8drhFcIGLOMn914Eu7DkPUurugDXgstwttCYkJtZ/+PkWRWdp3UHRIA==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.4.tgz", + "integrity": "sha512-rYlC5015aNqVQt/B6Cy156g7sH5tRUJGmT9xeagYthtKehetbKx7jHxhyLpulP4bs4vbp8u/B2rac0J7S7qPQg==", "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", @@ -9703,32 +9700,32 @@ } }, "postcss-convert-values": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz", - "integrity": "sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.3.tgz", + "integrity": "sha512-fVkjHm2T0PSMqXUCIhHNWVGjhB9mHEWX2GboVs7j3iCgr6FpIl9c/IdXy0PHWZSQ9LFTRgmj98amxJE6KOnlsA==", "requires": { - "postcss-value-parser": "^4.1.0" + "postcss-value-parser": "^4.2.0" } }, "postcss-discard-comments": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz", - "integrity": "sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.2.tgz", + "integrity": "sha512-6VQ3pYTsJHEsN2Bic88Aa7J/Brn4Bv8j/rqaFQZkH+pcVkKYwxCIvoMQkykEW7fBjmofdTnQgcivt5CCBJhtrg==" }, "postcss-discard-duplicates": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz", - "integrity": "sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.2.tgz", + "integrity": "sha512-LKY81YjUjc78p6rbXIsnppsaFo8XzCoMZkXVILJU//sK0DgPkPSpuq/cZvHss3EtdKvWNYgWzQL+wiJFtEET4g==" }, "postcss-discard-empty": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz", - "integrity": "sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.2.tgz", + "integrity": "sha512-SxBsbTjlsKUvZLL+dMrdWauuNZU8TBq5IOL/DHa6jBUSXFEwmDqeXRfTIK/FQpPTa8MJMxEHjSV3UbiuyLARPQ==" }, "postcss-discard-overridden": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.2.tgz", - "integrity": "sha512-+56BLP6NSSUuWUXjRgAQuho1p5xs/hU5Sw7+xt9S3JSg+7R6+WMGnJW7Hre/6tTuZ2xiXMB42ObkiZJ2hy/Pew==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.3.tgz", + "integrity": "sha512-yRTXknIZA4k8Yo4FiF1xbsLj/VBxfXEWxJNIrtIy6HC9KQ4xJxcPtoaaskh6QptCGrrcGnhKsTsENTRPZOBu4g==" }, "postcss-flexbugs-fixes": { "version": "5.0.2", @@ -9760,60 +9757,58 @@ } }, "postcss-merge-longhand": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz", - "integrity": "sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.5.tgz", + "integrity": "sha512-R2BCPJJ/U2oh1uTWEYn9CcJ7MMcQ1iIbj9wfr2s/zHu5om5MP/ewKdaunpfJqR1WYzqCsgnXuRoVXPAzxdqy8g==", "requires": { - "postcss-value-parser": "^4.1.0", - "stylehacks": "^5.0.1" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.0.2" } }, "postcss-merge-rules": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.4.tgz", - "integrity": "sha512-yOj7bW3NxlQxaERBB0lEY1sH5y+RzevjbdH4DBJurjKERNpknRByFNdNe+V72i5pIZL12woM9uGdS5xbSB+kDQ==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.5.tgz", + "integrity": "sha512-3Oa26/Pb9VOFVksJjFG45SNoe4nhGvJ2Uc6TlRimqF8uhfOCEhVCaJ3rvEat5UFOn2UZqTY5Da8dFgCh3Iq0Ug==", "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-selector-parser": "^6.0.5" } }, "postcss-minify-font-values": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.2.tgz", - "integrity": "sha512-R6MJZryq28Cw0AmnyhXrM7naqJZZLoa1paBltIzh2wM7yb4D45TLur+eubTQ4jCmZU9SGeZdWsc5KcSoqTMeTg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.3.tgz", + "integrity": "sha512-bC45rVzEwsLhv/cL1eCjoo2OOjbSk9I7HKFBYnBvtyuIZlf7uMipMATXtA0Fc3jwPo3wuPIW1jRJWKzflMh1sA==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-minify-gradients": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.4.tgz", - "integrity": "sha512-RVwZA7NC4R4J76u8X0Q0j+J7ItKUWAeBUJ8oEEZWmtv3Xoh19uNJaJwzNpsydQjk6PkuhRrK+YwwMf+c+68EYg==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.5.tgz", + "integrity": "sha512-/YjvXs8PepsoiZAIpjstOO4IHKwFAqYNqbA1yVdqklM84tbUUneh6omJxGlRlF3mi6K5Pa067Mg6IwqEnYC8Zg==", "requires": { "colord": "^2.9.1", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-params": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.3.tgz", - "integrity": "sha512-NY92FUikE+wralaiVexFd5gwb7oJTIDhgTNeIw89i1Ymsgt4RWiPXfz3bg7hDy4NL6gepcThJwOYNtZO/eNi7Q==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.4.tgz", + "integrity": "sha512-Z0vjod9lRZEmEPfEmA2sCfjbfEEFKefMD3RDIQSUfXK4LpCyWkX1CniUgyNvnjJFLDPSxtgKzozhHhPHKoeGkg==", "requires": { - "alphanum-sort": "^1.0.2", "browserslist": "^4.16.6", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.1.tgz", - "integrity": "sha512-TOzqOPXt91O2luJInaVPiivh90a2SIK5Nf1Ea7yEIM/5w+XA5BGrZGUSW8aEx9pJ/oNj7ZJBhjvigSiBV+bC1Q==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.2.tgz", + "integrity": "sha512-gpn1nJDMCf3g32y/7kl+jsdamhiYT+/zmEt57RoT9GmzlixBNRPohI7k8UIHelLABhdLf3MSZhtM33xuH5eQOQ==", "requires": { - "alphanum-sort": "^1.0.2", "postcss-selector-parser": "^6.0.5" } }, @@ -9849,9 +9844,9 @@ } }, "postcss-normalize-charset": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz", - "integrity": "sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.2.tgz", + "integrity": "sha512-fEMhYXzO8My+gC009qDc/3bgnFP8Fv1Ic8uw4ec4YTlhIOw63tGPk1YFd7fk9bZUf1DAbkhiL/QPWs9JLqdF2g==" }, "postcss-normalize-display-values": { "version": "5.0.2", @@ -9862,25 +9857,25 @@ } }, "postcss-normalize-positions": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.2.tgz", - "integrity": "sha512-tqghWFVDp2btqFg1gYob1etPNxXLNh3uVeWgZE2AQGh6b2F8AK2Gj36v5Vhyh+APwIzNjmt6jwZ9pTBP+/OM8g==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.3.tgz", + "integrity": "sha512-U+rmhjrNBvIGYqr/1tD4wXPFFMKUbXsYXvlUCzLi0tOCUS6LoeEAnmVXXJY/MEB/1CKZZwBSs2tmzGawcygVBA==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-repeat-style": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.2.tgz", - "integrity": "sha512-/rIZn8X9bBzC7KvY4iKUhXUGW3MmbXwfPF23jC9wT9xTi7kAvgj8sEgwxjixBmoL6MVa4WOgxNz2hAR6wTK8tw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.3.tgz", + "integrity": "sha512-uk1+xYx0AMbA3nLSNhbDrqbf/rx+Iuq5tVad2VNyaxxJzx79oGieJ6D9F6AfOL2GtiIbP7vTYlpYHtG+ERFXTg==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-string": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.2.tgz", - "integrity": "sha512-zaI1yzwL+a/FkIzUWMQoH25YwCYxi917J4pYm1nRXtdgiCdnlTkx5eRzqWEC64HtRa06WCJ9TIutpb6GmW4gFw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.3.tgz", + "integrity": "sha512-Mf2V4JbIDboNGQhW6xW0YREDiYXoX3WrD3EjKkjvnpAJ6W4qqjLnK/c9aioyVFaWWHVdP5zVRw/9DI5S3oLDFw==", "requires": { "postcss-value-parser": "^4.2.0" } @@ -9894,9 +9889,9 @@ } }, "postcss-normalize-unicode": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.2.tgz", - "integrity": "sha512-3y/V+vjZ19HNcTizeqwrbZSUsE69ZMRHfiiyLAJb7C7hJtYmM4Gsbajy7gKagu97E8q5rlS9k8FhojA8cpGhWw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.3.tgz", + "integrity": "sha512-uNC7BmS/7h6to2UWa4RFH8sOTzu2O9dVWPE/F9Vm9GdhONiD/c1kNaCLbmsFHlKWcEx7alNUChQ+jH/QAlqsQw==", "requires": { "browserslist": "^4.16.6", "postcss-value-parser": "^4.2.0" @@ -9912,19 +9907,19 @@ } }, "postcss-normalize-whitespace": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.2.tgz", - "integrity": "sha512-CXBx+9fVlzSgbk0IXA/dcZn9lXixnQRndnsPC5ht3HxlQ1bVh77KQDL1GffJx1LTzzfae8ftMulsjYmO2yegxA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.3.tgz", + "integrity": "sha512-333JWRnX655fSoUbufJ10HJop3c8mrpKkCCUnEmgz/Cb/QEtW+/TMZwDAUt4lnwqP6tCCk0x0b58jqvDgiQm/A==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-ordered-values": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.3.tgz", - "integrity": "sha512-T9pDS+P9bWeFvqivXd5ACzQmrCmHjv3ZP+djn8E1UZY7iK79pFSm7i3WbKw2VSmFmdbMm8sQ12OPcNpzBo3Z2w==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.4.tgz", + "integrity": "sha512-taKtGDZtyYUMVYkg+MuJeBUiTF6cGHZmo/qcW7ibvW79UlyKuSHbo6dpCIiqI+j9oJsXWzP+ovIxoyLDOeQFdw==", "requires": { - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, @@ -9938,17 +9933,17 @@ } }, "postcss-reduce-transforms": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.2.tgz", - "integrity": "sha512-25HeDeFsgiPSUx69jJXZn8I06tMxLQJJNF5h7i9gsUg8iP4KOOJ8EX8fj3seeoLt3SLU2YDD6UPnDYVGUO7DEA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.3.tgz", + "integrity": "sha512-yDnTUab5i7auHiNwdcL1f+pBnqQFf+7eC4cbC7D8Lc1FkvNZhtpkdad+9U4wDdFb84haupMf0rA/Zc5LcTe/3A==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-selector-parser": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz", - "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==", + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", + "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -9964,11 +9959,10 @@ } }, "postcss-unique-selectors": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.2.tgz", - "integrity": "sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.3.tgz", + "integrity": "sha512-V5tX2hadSSn+miVCluuK1IDGy+7jAXSOfRZ2DQ+s/4uQZb/orDYBjH0CHgFrXsRw78p4QTuEFA9kI6C956UnHQ==", "requires": { - "alphanum-sort": "^1.0.2", "postcss-selector-parser": "^6.0.5" } }, @@ -10702,11 +10696,11 @@ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" }, "resolve": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", - "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "requires": { - "is-core-module": "^2.8.0", + "is-core-module": "^2.8.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } @@ -11024,9 +11018,9 @@ "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" }, "simple-get": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.0.tgz", - "integrity": "sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", "requires": { "decompress-response": "^6.0.0", "once": "^1.3.1", @@ -11467,16 +11461,6 @@ "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } } }, "string.prototype.matchall": { @@ -11545,18 +11529,11 @@ } }, "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "requires": { - "ansi-regex": "^4.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - } + "ansi-regex": "^5.0.1" } }, "strip-bom": { @@ -11637,11 +11614,11 @@ } }, "stylehacks": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz", - "integrity": "sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.2.tgz", + "integrity": "sha512-114zeJdOpTrbQYRD4OU5UWJ99LKUaqCPJTU1HQ/n3q3BwmllFN8kHENaLnOeqVq6AhXrWfxHNZTl33iJ4oy3cQ==", "requires": { - "browserslist": "^4.16.0", + "browserslist": "^4.16.6", "postcss-selector-parser": "^6.0.4" } }, @@ -11730,14 +11707,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } } } }, @@ -12197,11 +12166,6 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" } } }, @@ -12363,9 +12327,9 @@ "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" }, "webpack": { - "version": "5.66.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.66.0.tgz", - "integrity": "sha512-NJNtGT7IKpGzdW7Iwpn/09OXz9inIkeIQ/ibY6B+MdV1x6+uReqz/5z1L89ezWnpPDWpXF0TY5PCYKQdWVn8Vg==", + "version": "5.67.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.67.0.tgz", + "integrity": "sha512-LjFbfMh89xBDpUMgA1W9Ur6Rn/gnr2Cq1jjHFPo4v6a79/ypznSYbAyPgGhwsxBtMIaEmDD1oJoA7BEYw/Fbrw==", "requires": { "@types/eslint-scope": "^3.7.0", "@types/estree": "^0.0.50", @@ -12390,7 +12354,7 @@ "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", "watchpack": "^2.3.1", - "webpack-sources": "^3.2.2" + "webpack-sources": "^3.2.3" }, "dependencies": { "acorn": { @@ -12421,9 +12385,9 @@ } }, "webpack-assets-manifest": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/webpack-assets-manifest/-/webpack-assets-manifest-5.0.6.tgz", - "integrity": "sha512-CW94ylPHurZTmxnYajSFA8763Cv/QFIKNgBwqBLaIOnBjH1EbDUAf8Eq1/i+o8qaKyKXJ3aX7r4/jtpXD88ldg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/webpack-assets-manifest/-/webpack-assets-manifest-5.1.0.tgz", + "integrity": "sha512-kPuTMEjBrqZQVJ5M6yXNBCEdFbQQn7p+loNXt8NOeDFaAbsNFWqqwR0YL1mfG5LbwhK5FLXWXpuK3GuIIZ46rg==", "requires": { "chalk": "^4.0", "deepmerge": "^4.0", @@ -12776,14 +12740,6 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } } } }, @@ -12865,9 +12821,9 @@ } }, "xstate": { - "version": "4.27.0", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.27.0.tgz", - "integrity": "sha512-ohOwDM9tViC/zSSmY9261CHblDPqiaAk5vyjVbi69uJv9fGWMzlm0VDQwM2OvC61GKfXVBeuWSMkL7LPUsTpfA==" + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.28.1.tgz", + "integrity": "sha512-0xvaegeZNeHJAJvpjznyNr91qB1xy1PqeYMDyknh5S23TBPQJUHS81hk8W3UcvnB9uNs0YmOU2daoqb3WegzYQ==" }, "xtend": { "version": "4.0.2", @@ -12967,6 +12923,11 @@ "strip-ansi": "^5.2.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -12976,6 +12937,14 @@ "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } } } } diff --git a/starters/default/package.json b/starters/default/package.json index 320c3b1b7f521..af0d1826a719a 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,15 +5,15 @@ "version": "0.1.0", "author": "Kyle Mathews <[email protected]>", "dependencies": { - "gatsby": "^4.5.4", - "gatsby-plugin-gatsby-cloud": "^4.5.2", - "gatsby-plugin-image": "^2.5.2", - "gatsby-plugin-manifest": "^4.5.2", - "gatsby-plugin-offline": "^5.5.2", - "gatsby-plugin-react-helmet": "^5.5.0", - "gatsby-plugin-sharp": "^4.5.2", - "gatsby-source-filesystem": "^4.5.2", - "gatsby-transformer-sharp": "^4.5.0", + "gatsby": "^4.6.0", + "gatsby-plugin-gatsby-cloud": "^4.6.0", + "gatsby-plugin-image": "^2.6.0", + "gatsby-plugin-manifest": "^4.6.0", + "gatsby-plugin-offline": "^5.6.0", + "gatsby-plugin-react-helmet": "^5.6.0", + "gatsby-plugin-sharp": "^4.6.0", + "gatsby-source-filesystem": "^4.6.0", + "gatsby-transformer-sharp": "^4.6.0", "prop-types": "^15.8.0", "react": "^17.0.1", "react-dom": "^17.0.1", diff --git a/starters/gatsby-starter-minimal/package-lock.json b/starters/gatsby-starter-minimal/package-lock.json index f04328522e0b9..0d693118defd5 100644 --- a/starters/gatsby-starter-minimal/package-lock.json +++ b/starters/gatsby-starter-minimal/package-lock.json @@ -33,19 +33,19 @@ "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==" }, "@babel/core": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", - "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "version": "7.16.12", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.12.tgz", + "integrity": "sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg==", "requires": { "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", + "@babel/generator": "^7.16.8", "@babel/helper-compilation-targets": "^7.16.7", "@babel/helper-module-transforms": "^7.16.7", "@babel/helpers": "^7.16.7", - "@babel/parser": "^7.16.7", + "@babel/parser": "^7.16.12", "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7", + "@babel/traverse": "^7.16.10", + "@babel/types": "^7.16.8", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -144,9 +144,9 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz", - "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.10.tgz", + "integrity": "sha512-wDeej0pu3WN/ffTxMNCPW5UCiOav8IcLRxSIyp/9+IF2xJUM9h/OYjg0IJLHaL6F8oU8kqMz9nc1vryXhMsgXg==", "requires": { "@babel/helper-annotate-as-pure": "^7.16.7", "@babel/helper-environment-visitor": "^7.16.7", @@ -360,9 +360,9 @@ } }, "@babel/highlight": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz", - "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "requires": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -382,9 +382,9 @@ } }, "@babel/parser": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz", - "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==" + "version": "7.16.12", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.12.tgz", + "integrity": "sha512-VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.16.7", @@ -519,11 +519,11 @@ } }, "@babel/plugin-proposal-private-methods": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz", - "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", + "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", "requires": { - "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.10", "@babel/helper-plugin-utils": "^7.16.7" } }, @@ -937,9 +937,9 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.8.tgz", - "integrity": "sha512-6Kg2XHPFnIarNweZxmzbgYnnWsXxkx9WQUVk2sksBRL80lBC1RAQV3wQagWxdCHiYHqPN+oenwNIuttlYgIbQQ==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.10.tgz", + "integrity": "sha512-9nwTiqETv2G7xI4RvXHNfpGdr8pAA+Q/YtN3yLK7OoK7n9OibVm/xymJ838a9A6E/IciOLPj82lZk0fW6O4O7w==", "requires": { "@babel/helper-module-imports": "^7.16.7", "@babel/helper-plugin-utils": "^7.16.7", @@ -1025,9 +1025,9 @@ } }, "@babel/preset-env": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.8.tgz", - "integrity": "sha512-9rNKgVCdwHb3z1IlbMyft6yIXIeP3xz6vWvGaLHrJThuEIqWfHb0DNBH9VuTgnDfdbUDhkmkvMZS/YMCtP7Elg==", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz", + "integrity": "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==", "requires": { "@babel/compat-data": "^7.16.8", "@babel/helper-compilation-targets": "^7.16.7", @@ -1047,7 +1047,7 @@ "@babel/plugin-proposal-object-rest-spread": "^7.16.7", "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", "@babel/plugin-proposal-optional-chaining": "^7.16.7", - "@babel/plugin-proposal-private-methods": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.11", "@babel/plugin-proposal-private-property-in-object": "^7.16.7", "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", "@babel/plugin-syntax-async-generators": "^7.8.4", @@ -1175,9 +1175,9 @@ } }, "@babel/traverse": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz", - "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.10.tgz", + "integrity": "sha512-yzuaYXoRJBGMlBhsMJoUW7G1UmSb/eXr/JHYM/MsOJgavJibLwASijW7oXBdw3NQ6T0bW7Ty5P/VarOs9cHmqw==", "requires": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.8", @@ -1185,7 +1185,7 @@ "@babel/helper-function-name": "^7.16.7", "@babel/helper-hoist-variables": "^7.16.7", "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.8", + "@babel/parser": "^7.16.10", "@babel/types": "^7.16.8", "debug": "^4.1.0", "globals": "^11.1.0" @@ -1286,16 +1286,6 @@ "html-entities": "^2.1.0", "querystring": "^0.2.0", "strip-ansi": "^6.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } } }, "@graphql-tools/batch-execute": { @@ -1660,9 +1650,9 @@ "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" }, "@sindresorhus/is": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.3.0.tgz", - "integrity": "sha512-wwOvh0eO3PiTEivGJWiZ+b946SlMSb4pe+y+Ur/4S87cwo09pYi+FWHHnbrM3W9W7cBYKDqQXcrFYjYUCOJUEQ==" + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.4.0.tgz", + "integrity": "sha512-QppPM/8l3Mawvh4rn9CNEYIU9bxpXUCRMaX9yUpvBk1nMKusLKpfXGDEKExKaPhLzcn3lzil7pR6rnJ11HgeRQ==" }, "@sindresorhus/slugify": { "version": "1.1.2", @@ -1855,9 +1845,9 @@ } }, "@types/node": { - "version": "17.0.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.10.tgz", - "integrity": "sha512-S/3xB4KzyFxYGCppyDt68yzBU9ysL88lSdIah4D6cptdcltc4NCPCAMc0+PCpg/lLIyC7IPvj2Z52OJWeIUkog==" + "version": "17.0.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.12.tgz", + "integrity": "sha512-4YpbAsnJXWYK/fpTVFlMIcUIho2AYCi4wg5aNPrG1ng7fn/1/RZfCIpRCiBX+12RVa34RluilnvCqD+g3KiSiA==" }, "@types/node-fetch": { "version": "2.5.12", @@ -1930,6 +1920,15 @@ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" }, + "@types/sharp": { + "version": "0.29.5", + "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.29.5.tgz", + "integrity": "sha512-3TC+S3H5RwnJmLYMHrcdfNjz/CaApKmujjY9b6PU/pE6n0qfooi99YqXGWoW8frU9EWYj/XTI35Pzxa+ThAZ5Q==", + "optional": true, + "requires": { + "@types/node": "*" + } + }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -2262,11 +2261,6 @@ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" - }, "anser": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/anser/-/anser-2.1.0.tgz", @@ -2327,11 +2321,53 @@ "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", "integrity": "sha1-GTxfCoZUGkxm+6Hi3DhYM2LqXo8=" }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "optional": true + }, "arch": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" }, + "are-we-there-yet": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", + "optional": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", @@ -2592,12 +2628,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.5.2.tgz", - "integrity": "sha512-N/z2vrRBtbPpkzQwgO6vL1GgLvRCxjUwcXPCduMO32xIDlcCeAOAuBUpMSEs7rDyE6YTBhu8FhskeBJl49N0iQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.6.0.tgz", + "integrity": "sha512-QMbjJhHOkVHBfFDfAXQp1MFSzLWOJdPMe7Dk3+AF8L+dlLcf2Z7zbIrlRoRPEROyoW4CCPzLDi0Vam5leR/+gw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.5.2" + "gatsby-core-utils": "^3.6.0" } }, "babel-plugin-transform-react-remove-prop-types": { @@ -2606,9 +2642,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-gatsby": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.5.2.tgz", - "integrity": "sha512-PETwDgkCaBlD4+wrGteYF58IELz4/P4Rsh0Y36bVHYXXqMeJqh8w0mfnSa2fW/Wqcc8DZmNm32erQT1Bj9XFGQ==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.6.0.tgz", + "integrity": "sha512-ATl4c7LGySIZhBcYV9pL2vp8VTj6jtduG4b00dWgFb+v/Op1FXMUJ70KSRDUVE6fccFdw2abJlbuOgZgwCQFPA==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -2623,8 +2659,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^2.8.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.5.2", - "gatsby-legacy-polyfills": "^2.5.0" + "gatsby-core-utils": "^3.6.0", + "gatsby-legacy-polyfills": "^2.6.0" } }, "backo2": { @@ -2839,6 +2875,11 @@ "readable-stream": "1.1.x" }, "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", @@ -2970,9 +3011,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001300", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001300.tgz", - "integrity": "sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA==" + "version": "1.0.30001302", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001302.tgz", + "integrity": "sha512-YYTMO+tfwvgUN+1ZnRViE53Ma1S/oETg+J2lISsqi/ZTNThj3ZYBOKP2rHwJc37oCsPqAzJ3w2puZHn0xlLPPw==" }, "chalk": { "version": "4.1.2", @@ -3039,6 +3080,12 @@ "readdirp": "~3.6.0" } }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "optional": true + }, "chrome-trace-event": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", @@ -3171,14 +3218,6 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "wrap-ansi": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", @@ -3209,6 +3248,12 @@ "mimic-response": "^1.0.0" } }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "optional": true + }, "collection-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", @@ -3218,6 +3263,33 @@ "object-visit": "^1.0.0" } }, + "color": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.0.tgz", + "integrity": "sha512-hHTcrbvEnGjC7WBMk6ibQWFVDgEFTVmjrz2Q5HlU6ltwxv0JJN2Z8I7uRbWeQLF04dikxs8zgyZkazRJvSMtyQ==", + "optional": true, + "requires": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "optional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "optional": true + } + } + }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", @@ -3231,6 +3303,16 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, + "color-string": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz", + "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", + "optional": true, + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, "colord": { "version": "2.9.2", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", @@ -3332,11 +3414,6 @@ "typedarray": "^0.0.6" }, "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, "readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", @@ -3379,6 +3456,12 @@ "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "optional": true + }, "content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", @@ -3488,9 +3571,9 @@ } }, "create-gatsby": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.5.1.tgz", - "integrity": "sha512-pI5zvUAtHPREzKQpYU4HcpnT/Q9F+pgY99xs8HT49ZphG7qy+g02Ec/7jCNHDxlre7u+7a6TXmDF9FYr4T7BYw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.6.0.tgz", + "integrity": "sha512-ijyTd1mo7LAasyfNAE9ulmR/eSimUyvDJFmwZOExGG2jep+A43J5X8t0Ukso5BSeilMLZJGTniac33jaNoF5sw==", "requires": { "@babel/runtime": "^7.15.4" } @@ -3674,55 +3757,55 @@ "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=" }, "cssnano": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.15.tgz", - "integrity": "sha512-ppZsS7oPpi2sfiyV5+i+NbB/3GtQ+ab2Vs1azrZaXWujUSN4o+WdTxlCZIMcT9yLW3VO/5yX3vpyDaQ1nIn8CQ==", + "version": "5.0.16", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.16.tgz", + "integrity": "sha512-ryhRI9/B9VFCwPbb1z60LLK5/ldoExi7nwdnJzpkLZkm2/r7j2X3jfY+ZvDVJhC/0fPZlrAguYdHNFg0iglPKQ==", "requires": { - "cssnano-preset-default": "^5.1.10", + "cssnano-preset-default": "^5.1.11", "lilconfig": "^2.0.3", "yaml": "^1.10.2" } }, "cssnano-preset-default": { - "version": "5.1.10", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.10.tgz", - "integrity": "sha512-BcpSzUVygHMOnp9uG5rfPzTOCb0GAHQkqtUQx8j1oMNF9A1Q8hziOOhiM4bdICpmrBIU85BE64RD5XGYsVQZNA==", + "version": "5.1.11", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.11.tgz", + "integrity": "sha512-ETet5hqHxmzQq2ynXMOQofKuLm7VOjMiOB7E2zdtm/hSeCKlD9fabzIUV4GoPcRyJRHi+4kGf0vsfGYbQ4nmPw==", "requires": { "css-declaration-sorter": "^6.0.3", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-calc": "^8.2.0", - "postcss-colormin": "^5.2.3", - "postcss-convert-values": "^5.0.2", - "postcss-discard-comments": "^5.0.1", - "postcss-discard-duplicates": "^5.0.1", - "postcss-discard-empty": "^5.0.1", - "postcss-discard-overridden": "^5.0.2", - "postcss-merge-longhand": "^5.0.4", - "postcss-merge-rules": "^5.0.4", - "postcss-minify-font-values": "^5.0.2", - "postcss-minify-gradients": "^5.0.4", - "postcss-minify-params": "^5.0.3", - "postcss-minify-selectors": "^5.1.1", - "postcss-normalize-charset": "^5.0.1", + "postcss-colormin": "^5.2.4", + "postcss-convert-values": "^5.0.3", + "postcss-discard-comments": "^5.0.2", + "postcss-discard-duplicates": "^5.0.2", + "postcss-discard-empty": "^5.0.2", + "postcss-discard-overridden": "^5.0.3", + "postcss-merge-longhand": "^5.0.5", + "postcss-merge-rules": "^5.0.5", + "postcss-minify-font-values": "^5.0.3", + "postcss-minify-gradients": "^5.0.5", + "postcss-minify-params": "^5.0.4", + "postcss-minify-selectors": "^5.1.2", + "postcss-normalize-charset": "^5.0.2", "postcss-normalize-display-values": "^5.0.2", - "postcss-normalize-positions": "^5.0.2", - "postcss-normalize-repeat-style": "^5.0.2", - "postcss-normalize-string": "^5.0.2", + "postcss-normalize-positions": "^5.0.3", + "postcss-normalize-repeat-style": "^5.0.3", + "postcss-normalize-string": "^5.0.3", "postcss-normalize-timing-functions": "^5.0.2", - "postcss-normalize-unicode": "^5.0.2", + "postcss-normalize-unicode": "^5.0.3", "postcss-normalize-url": "^5.0.4", - "postcss-normalize-whitespace": "^5.0.2", - "postcss-ordered-values": "^5.0.3", + "postcss-normalize-whitespace": "^5.0.3", + "postcss-ordered-values": "^5.0.4", "postcss-reduce-initial": "^5.0.2", - "postcss-reduce-transforms": "^5.0.2", + "postcss-reduce-transforms": "^5.0.3", "postcss-svgo": "^5.0.3", - "postcss-unique-selectors": "^5.0.2" + "postcss-unique-selectors": "^5.0.3" } }, "cssnano-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.0.0.tgz", - "integrity": "sha512-Pzs7/BZ6OgT+tXXuF12DKR8SmSbzUeVYCtMBbS8lI0uAm3mrYmkyqCXXPsQESI6kmLfEVBppbdVY/el3hg3nAA==" + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.0.1.tgz", + "integrity": "sha512-VNCHL364lh++/ono+S3j9NlUK+d97KNkxI77NlqZU2W3xd2/qmyN61dsa47pTpb55zuU4G4lI7qFjAXZJH1OAQ==" }, "csso": { "version": "4.2.0", @@ -3896,6 +3979,12 @@ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "optional": true + }, "depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", @@ -3906,6 +3995,12 @@ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", + "optional": true + }, "detect-port": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz", @@ -4000,6 +4095,11 @@ "streamsearch": "0.1.2" }, "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", @@ -4109,9 +4209,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.4.48", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.48.tgz", - "integrity": "sha512-RT3SEmpv7XUA+tKXrZGudAWLDpa7f8qmhjcLaM6OD/ERxjQ/zAojT8/Vvo0BSzbArkElFZ1WyZ9FuwAYbkdBNA==" + "version": "1.4.53", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.53.tgz", + "integrity": "sha512-rFveSKQczlcav+H3zkKqykU6ANseFwXwkl855jOIap5/0gnEcuIhv2ecz6aoTrXavF6I/CEBeRnBnkB51k06ew==" }, "emoji-regex": { "version": "8.0.0", @@ -4483,14 +4583,6 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -4986,6 +5078,12 @@ } } }, + "expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "optional": true + }, "express": { "version": "4.17.2", "resolved": "https://registry.npmjs.org/express/-/express-4.17.2.tgz", @@ -5542,6 +5640,12 @@ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "optional": true + }, "fs-exists-cached": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz", @@ -5584,9 +5688,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.5.4.tgz", - "integrity": "sha512-uXyYl9nq52xdvP/9lwWFp7eGtjFFgdAjG2xNBvpgNgd1AtH/4kU76khm1mmpXea98mnJrcwKmsSZkIbQO9YWCg==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.6.0.tgz", + "integrity": "sha512-02NsTyfPQlB/JCilJri0gxvTr7WNcjZWnNUhHQatH0CJ6Sj3meSArEMNuA2thBS/CSIq/30kEOC2HDvWEWPfSA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -5612,8 +5716,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": "^4.5.2", - "babel-preset-gatsby": "^2.5.2", + "babel-plugin-remove-graphql-queries": "^4.6.0", + "babel-preset-gatsby": "^2.6.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -5655,17 +5759,18 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.0.0", - "gatsby-cli": "^4.5.2", - "gatsby-core-utils": "^3.5.2", - "gatsby-graphiql-explorer": "^2.5.0", - "gatsby-legacy-polyfills": "^2.5.0", - "gatsby-link": "^4.5.0", - "gatsby-plugin-page-creator": "^4.5.2", - "gatsby-plugin-typescript": "^4.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-react-router-scroll": "^5.5.0", - "gatsby-telemetry": "^3.5.2", - "gatsby-worker": "^1.5.0", + "gatsby-cli": "^4.6.0", + "gatsby-core-utils": "^3.6.0", + "gatsby-graphiql-explorer": "^2.6.0", + "gatsby-legacy-polyfills": "^2.6.0", + "gatsby-link": "^4.6.0", + "gatsby-plugin-page-creator": "^4.6.0", + "gatsby-plugin-typescript": "^4.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-react-router-scroll": "^5.6.0", + "gatsby-sharp": "^0.0.1", + "gatsby-telemetry": "^3.6.0", + "gatsby-worker": "^1.6.0", "glob": "^7.2.0", "got": "^11.8.2", "graphql": "^15.7.2", @@ -5721,7 +5826,7 @@ "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", - "strip-ansi": "^5.2.0", + "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", "terser-webpack-plugin": "^5.2.4", "tmp": "^0.2.1", @@ -5740,9 +5845,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.5.2.tgz", - "integrity": "sha512-AAltHfDTqOq4RL0oBgsmZb+IIDiV1zMdEzCgYIeEqWtc7nesKwHs4myYqhQV8wmXwyWKKWuXuTAqSoxuQT+X5w==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.6.0.tgz", + "integrity": "sha512-3YRilKW+aG1iSPUHj4pB7xSwVv1GX2Zjzae/2FOWaOaNRA0vKtQmwax4eks/kpfM+a2n05HH5K8ov6oLxo3YQw==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -5759,13 +5864,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.5.1", + "create-gatsby": "^2.6.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-telemetry": "^3.6.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -5782,7 +5887,7 @@ "signal-exit": "^3.0.6", "source-map": "0.7.3", "stack-trace": "^0.0.10", - "strip-ansi": "^5.2.0", + "strip-ansi": "^6.0.1", "update-notifier": "^5.1.0", "uuid": "3.4.0", "yargs": "^15.4.1", @@ -5800,9 +5905,9 @@ } }, "gatsby-core-utils": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.5.2.tgz", - "integrity": "sha512-sY7BD6VlbWwrV892x9/yJPtXYaGC/GLyhabd9j2xP6zsIOW0XBHXZ4jJ+xEPaRn3CJxYgBd8KdCyoc4h1ZEFzg==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.6.0.tgz", + "integrity": "sha512-xmjtOWQfLinNbgBiDRT1KpEfDZm0Z0u6+hsf8EH8Ps5UCIhKinGrdtK+QH+RzPGCV1PUg/E/pnLVqQLCvD+tmA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5818,17 +5923,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.5.0.tgz", - "integrity": "sha512-uCZTQshqYuBBYwU66VtWwsbXSmw9axBbg3r20qsyuE9uvECUUkKycdLoMpRPKMuWqBPZbAudgbzl22AqNDBNaw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.6.0.tgz", + "integrity": "sha512-9YSAci8AXsaknCHdGwKJ3hkjSmcUd2+0CCn1IdTh2xcfVCTRW8Q19jgcJjY/8SYfw9kZJVZVx5jdYdD2AsIowQ==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.5.0.tgz", - "integrity": "sha512-AtHkcpa7S9E9aAOn0ca9eP3fVh5VVE5s8iD+LMx3zzZGcxZBdh6z7FVx8qWxsQXCO33Be4U/r49EFLc3koti+A==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.6.0.tgz", + "integrity": "sha512-SbZ9s1bUKJo/ED41MMZx16Oh2DaRBuzQ20WRub995RqqthIGXA5oEv/64hNgBWjkuYZdqu+XtACr6Rscd6QXKw==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -5851,9 +5956,9 @@ } }, "gatsby-link": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.5.0.tgz", - "integrity": "sha512-3u9/VRc5JEQ4SwklNjdIPiEH3mNEYJacqE/rtnLLhG5SQ1V/a3rNh5dBEASiUia1g19AHRLnkVz/LAnR/jcpkA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.6.0.tgz", + "integrity": "sha512-GbZJDppV/70m0lT3PIh2m0TLDKq5kAAk5Ao/XU9ucATdDRlE4WruwceHOg7imLmRRrK0xxYGEEyANVrqcH3+LQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.9", @@ -5861,42 +5966,42 @@ } }, "gatsby-page-utils": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.5.2.tgz", - "integrity": "sha512-Og/OFrnSKkHGkhF0lP8bOhuC/Z0b16lT8309pWoCyI7/PLsQ59ptJ06rGWA2NxW1dLFSXu+hmiJXg/bldibzDg==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.6.0.tgz", + "integrity": "sha512-rckIEZU64wITIYdY+RsbC1klLQI1izMoGD+qMMQF196+FPlMNOmoUWrCOes8LgxNChoRjSBOjRaBsR+M4Piahg==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.2", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "glob": "^7.2.0", "lodash": "^4.17.21", "micromatch": "^4.0.4" } }, "gatsby-plugin-page-creator": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.5.2.tgz", - "integrity": "sha512-mXJ2W/BfFeb0rSH+N4J2vpzY/qD6fEj0tSBqAlHocZkpsW+2jrjVCcyI2oGZr2unDekcUA2sZY+3Terxi5L5+g==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.6.0.tgz", + "integrity": "sha512-AXDD2A+HaSHJuTa6HznCn5ItnVNHfayRixqJusOpiscBsYty/JwXM/6Fj8CoQvRTwVt2EYwgw9QgjBl76kOoiA==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.2", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-page-utils": "^2.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-page-utils": "^2.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-telemetry": "^3.6.0", "globby": "^11.0.4", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.5.2.tgz", - "integrity": "sha512-Qeb2xpch5GUoeGc/Sx+zckvGFZQw4QnbWIHO4ExzH2VGJx9dy4YjTI0nvervgjew3hJKzq2Db8jSeJ3NXFSZUQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.6.0.tgz", + "integrity": "sha512-1LipVvvBT871P48izX7gk83xc2VSx6J6ruDLBnc57CqAPmNlDa3rRO2bEUNd9Zwk+uOUNi+kl1tKxYwW5G1eSg==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5904,30 +6009,41 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.5.2" + "babel-plugin-remove-graphql-queries": "^4.6.0" } }, "gatsby-plugin-utils": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-2.5.0.tgz", - "integrity": "sha512-B/JpKTQJQNRVo3b3rRbOgHKV3/i3V5fYLPOGvBU6qHxBtQ9I5YYwXrsLJYX5vl4bEtLtrkiQG9zQyvSSXzJ9Sw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.0.0.tgz", + "integrity": "sha512-hZj64WQbs/KgAWez3oWMwlmhewUinXDJJdhj491vOWX2WVlH79m8JpAoklgrm9xaoIdhfbNkhQoMKPkRZKJpJQ==", "requires": { "@babel/runtime": "^7.15.4", "joi": "^17.4.2" } }, "gatsby-react-router-scroll": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.5.0.tgz", - "integrity": "sha512-fW+oBJDD1NNBUuxtD/aR4dJwhyi89HOfZ+u9yffP5V30z5HnF8hB6YNCo6QDhw39gDlsB9v2HIgRIt5rxZ0y9g==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.6.0.tgz", + "integrity": "sha512-n8wO0xeRxvBkJXrH2DAuLKCiHQRgFn/9Ytqb3Uz19fWd5q+jpOlD/qjorkeWl2cqo8oNb83ku8D6dF3qr8OT5g==", "requires": { - "@babel/runtime": "^7.15.4" + "@babel/runtime": "^7.15.4", + "prop-types": "^15.7.2" + } + }, + "gatsby-sharp": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.0.1.tgz", + "integrity": "sha512-m6NyS1/Y97kA8JY75SHqB0ZcReIk9OTDmUMi/kLK7yVXtwfGh7pgX3UW930ydUB3tooZMB9ojAmmpmmrV8lE+g==", + "optional": true, + "requires": { + "@types/sharp": "^0.29.5", + "sharp": "^0.29.3" } }, "gatsby-telemetry": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.5.2.tgz", - "integrity": "sha512-nL33+AxawRqEjuvHAbyyxoDMZ5GXNMEMzCk5WQu7J/lA6od6cUmXpZMcr4AxwnNFJLfmYKlwalN7cuz5nBL6lw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.6.0.tgz", + "integrity": "sha512-mxofrnVUtcjh+CD9QcAQloR5WskKUfBCXzGLCH4/haE5SbWKpKstLBR06ZnNI01VHc5Do0+W+n16NvNe4G8zGQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -5937,7 +6053,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -6015,14 +6131,67 @@ } }, "gatsby-worker": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.5.0.tgz", - "integrity": "sha512-syzm89Jd/xL6PnF0lW/fu4Aqjkbf3dYuJRwABoHVZ2cralshSFvzY3SR4BhC3tXFlkOrF+UgYM3Ek4tv7TDjkw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.6.0.tgz", + "integrity": "sha512-UuyRZmHiAI9HnjYeLjG+/5K4ugeGSzftF/hFRBjkvcABCc0GktOm2038FtUpXxpX9MbCiYd6pO3Kij5U7FLQBg==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" } }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "optional": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "optional": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "optional": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "optional": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -6079,6 +6248,12 @@ "parse-url": "^6.0.0" } }, + "github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=", + "optional": true + }, "glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", @@ -6296,6 +6471,12 @@ "has-symbols": "^1.0.2" } }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "optional": true + }, "has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", @@ -6550,14 +6731,6 @@ "type-fest": "^0.21.3" } }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", @@ -6933,9 +7106,9 @@ "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" }, "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isexe": { "version": "2.0.0", @@ -7564,6 +7737,12 @@ "minimist": "^1.2.5" } }, + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "optional": true + }, "moment": { "version": "2.29.1", "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", @@ -7640,6 +7819,12 @@ "to-regex": "^3.0.1" } }, + "napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", + "optional": true + }, "native-url": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", @@ -7689,6 +7874,21 @@ } } }, + "node-abi": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.5.0.tgz", + "integrity": "sha512-LtHvNIBgOy5mO8mPEUtkCW/YCRWYEKshIvqhe1GHHyXEHEB5mgICyYnAcl4qan3uFeRROErKGzatFHPf6kDxWw==", + "optional": true, + "requires": { + "semver": "^7.3.5" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==", + "optional": true + }, "node-fetch": { "version": "2.6.7", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", @@ -7742,6 +7942,18 @@ } } }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "optional": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, "nth-check": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", @@ -7781,6 +7993,12 @@ } } }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "optional": true + }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -8359,9 +8577,9 @@ } }, "postcss-colormin": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.3.tgz", - "integrity": "sha512-dra4xoAjub2wha6RUXAgadHEn2lGxbj8drhFcIGLOMn914Eu7DkPUurugDXgstwttCYkJtZ/+PkWRWdp3UHRIA==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.4.tgz", + "integrity": "sha512-rYlC5015aNqVQt/B6Cy156g7sH5tRUJGmT9xeagYthtKehetbKx7jHxhyLpulP4bs4vbp8u/B2rac0J7S7qPQg==", "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", @@ -8370,32 +8588,32 @@ } }, "postcss-convert-values": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz", - "integrity": "sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.3.tgz", + "integrity": "sha512-fVkjHm2T0PSMqXUCIhHNWVGjhB9mHEWX2GboVs7j3iCgr6FpIl9c/IdXy0PHWZSQ9LFTRgmj98amxJE6KOnlsA==", "requires": { - "postcss-value-parser": "^4.1.0" + "postcss-value-parser": "^4.2.0" } }, "postcss-discard-comments": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz", - "integrity": "sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.2.tgz", + "integrity": "sha512-6VQ3pYTsJHEsN2Bic88Aa7J/Brn4Bv8j/rqaFQZkH+pcVkKYwxCIvoMQkykEW7fBjmofdTnQgcivt5CCBJhtrg==" }, "postcss-discard-duplicates": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz", - "integrity": "sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.2.tgz", + "integrity": "sha512-LKY81YjUjc78p6rbXIsnppsaFo8XzCoMZkXVILJU//sK0DgPkPSpuq/cZvHss3EtdKvWNYgWzQL+wiJFtEET4g==" }, "postcss-discard-empty": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz", - "integrity": "sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.2.tgz", + "integrity": "sha512-SxBsbTjlsKUvZLL+dMrdWauuNZU8TBq5IOL/DHa6jBUSXFEwmDqeXRfTIK/FQpPTa8MJMxEHjSV3UbiuyLARPQ==" }, "postcss-discard-overridden": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.2.tgz", - "integrity": "sha512-+56BLP6NSSUuWUXjRgAQuho1p5xs/hU5Sw7+xt9S3JSg+7R6+WMGnJW7Hre/6tTuZ2xiXMB42ObkiZJ2hy/Pew==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.3.tgz", + "integrity": "sha512-yRTXknIZA4k8Yo4FiF1xbsLj/VBxfXEWxJNIrtIy6HC9KQ4xJxcPtoaaskh6QptCGrrcGnhKsTsENTRPZOBu4g==" }, "postcss-flexbugs-fixes": { "version": "5.0.2", @@ -8427,60 +8645,58 @@ } }, "postcss-merge-longhand": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz", - "integrity": "sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.5.tgz", + "integrity": "sha512-R2BCPJJ/U2oh1uTWEYn9CcJ7MMcQ1iIbj9wfr2s/zHu5om5MP/ewKdaunpfJqR1WYzqCsgnXuRoVXPAzxdqy8g==", "requires": { - "postcss-value-parser": "^4.1.0", - "stylehacks": "^5.0.1" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.0.2" } }, "postcss-merge-rules": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.4.tgz", - "integrity": "sha512-yOj7bW3NxlQxaERBB0lEY1sH5y+RzevjbdH4DBJurjKERNpknRByFNdNe+V72i5pIZL12woM9uGdS5xbSB+kDQ==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.5.tgz", + "integrity": "sha512-3Oa26/Pb9VOFVksJjFG45SNoe4nhGvJ2Uc6TlRimqF8uhfOCEhVCaJ3rvEat5UFOn2UZqTY5Da8dFgCh3Iq0Ug==", "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-selector-parser": "^6.0.5" } }, "postcss-minify-font-values": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.2.tgz", - "integrity": "sha512-R6MJZryq28Cw0AmnyhXrM7naqJZZLoa1paBltIzh2wM7yb4D45TLur+eubTQ4jCmZU9SGeZdWsc5KcSoqTMeTg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.3.tgz", + "integrity": "sha512-bC45rVzEwsLhv/cL1eCjoo2OOjbSk9I7HKFBYnBvtyuIZlf7uMipMATXtA0Fc3jwPo3wuPIW1jRJWKzflMh1sA==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-minify-gradients": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.4.tgz", - "integrity": "sha512-RVwZA7NC4R4J76u8X0Q0j+J7ItKUWAeBUJ8oEEZWmtv3Xoh19uNJaJwzNpsydQjk6PkuhRrK+YwwMf+c+68EYg==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.5.tgz", + "integrity": "sha512-/YjvXs8PepsoiZAIpjstOO4IHKwFAqYNqbA1yVdqklM84tbUUneh6omJxGlRlF3mi6K5Pa067Mg6IwqEnYC8Zg==", "requires": { "colord": "^2.9.1", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-params": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.3.tgz", - "integrity": "sha512-NY92FUikE+wralaiVexFd5gwb7oJTIDhgTNeIw89i1Ymsgt4RWiPXfz3bg7hDy4NL6gepcThJwOYNtZO/eNi7Q==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.4.tgz", + "integrity": "sha512-Z0vjod9lRZEmEPfEmA2sCfjbfEEFKefMD3RDIQSUfXK4LpCyWkX1CniUgyNvnjJFLDPSxtgKzozhHhPHKoeGkg==", "requires": { - "alphanum-sort": "^1.0.2", "browserslist": "^4.16.6", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.1.tgz", - "integrity": "sha512-TOzqOPXt91O2luJInaVPiivh90a2SIK5Nf1Ea7yEIM/5w+XA5BGrZGUSW8aEx9pJ/oNj7ZJBhjvigSiBV+bC1Q==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.2.tgz", + "integrity": "sha512-gpn1nJDMCf3g32y/7kl+jsdamhiYT+/zmEt57RoT9GmzlixBNRPohI7k8UIHelLABhdLf3MSZhtM33xuH5eQOQ==", "requires": { - "alphanum-sort": "^1.0.2", "postcss-selector-parser": "^6.0.5" } }, @@ -8516,9 +8732,9 @@ } }, "postcss-normalize-charset": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz", - "integrity": "sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.2.tgz", + "integrity": "sha512-fEMhYXzO8My+gC009qDc/3bgnFP8Fv1Ic8uw4ec4YTlhIOw63tGPk1YFd7fk9bZUf1DAbkhiL/QPWs9JLqdF2g==" }, "postcss-normalize-display-values": { "version": "5.0.2", @@ -8529,25 +8745,25 @@ } }, "postcss-normalize-positions": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.2.tgz", - "integrity": "sha512-tqghWFVDp2btqFg1gYob1etPNxXLNh3uVeWgZE2AQGh6b2F8AK2Gj36v5Vhyh+APwIzNjmt6jwZ9pTBP+/OM8g==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.3.tgz", + "integrity": "sha512-U+rmhjrNBvIGYqr/1tD4wXPFFMKUbXsYXvlUCzLi0tOCUS6LoeEAnmVXXJY/MEB/1CKZZwBSs2tmzGawcygVBA==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-repeat-style": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.2.tgz", - "integrity": "sha512-/rIZn8X9bBzC7KvY4iKUhXUGW3MmbXwfPF23jC9wT9xTi7kAvgj8sEgwxjixBmoL6MVa4WOgxNz2hAR6wTK8tw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.3.tgz", + "integrity": "sha512-uk1+xYx0AMbA3nLSNhbDrqbf/rx+Iuq5tVad2VNyaxxJzx79oGieJ6D9F6AfOL2GtiIbP7vTYlpYHtG+ERFXTg==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-string": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.2.tgz", - "integrity": "sha512-zaI1yzwL+a/FkIzUWMQoH25YwCYxi917J4pYm1nRXtdgiCdnlTkx5eRzqWEC64HtRa06WCJ9TIutpb6GmW4gFw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.3.tgz", + "integrity": "sha512-Mf2V4JbIDboNGQhW6xW0YREDiYXoX3WrD3EjKkjvnpAJ6W4qqjLnK/c9aioyVFaWWHVdP5zVRw/9DI5S3oLDFw==", "requires": { "postcss-value-parser": "^4.2.0" } @@ -8561,9 +8777,9 @@ } }, "postcss-normalize-unicode": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.2.tgz", - "integrity": "sha512-3y/V+vjZ19HNcTizeqwrbZSUsE69ZMRHfiiyLAJb7C7hJtYmM4Gsbajy7gKagu97E8q5rlS9k8FhojA8cpGhWw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.3.tgz", + "integrity": "sha512-uNC7BmS/7h6to2UWa4RFH8sOTzu2O9dVWPE/F9Vm9GdhONiD/c1kNaCLbmsFHlKWcEx7alNUChQ+jH/QAlqsQw==", "requires": { "browserslist": "^4.16.6", "postcss-value-parser": "^4.2.0" @@ -8579,19 +8795,19 @@ } }, "postcss-normalize-whitespace": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.2.tgz", - "integrity": "sha512-CXBx+9fVlzSgbk0IXA/dcZn9lXixnQRndnsPC5ht3HxlQ1bVh77KQDL1GffJx1LTzzfae8ftMulsjYmO2yegxA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.3.tgz", + "integrity": "sha512-333JWRnX655fSoUbufJ10HJop3c8mrpKkCCUnEmgz/Cb/QEtW+/TMZwDAUt4lnwqP6tCCk0x0b58jqvDgiQm/A==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-ordered-values": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.3.tgz", - "integrity": "sha512-T9pDS+P9bWeFvqivXd5ACzQmrCmHjv3ZP+djn8E1UZY7iK79pFSm7i3WbKw2VSmFmdbMm8sQ12OPcNpzBo3Z2w==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.4.tgz", + "integrity": "sha512-taKtGDZtyYUMVYkg+MuJeBUiTF6cGHZmo/qcW7ibvW79UlyKuSHbo6dpCIiqI+j9oJsXWzP+ovIxoyLDOeQFdw==", "requires": { - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, @@ -8605,17 +8821,17 @@ } }, "postcss-reduce-transforms": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.2.tgz", - "integrity": "sha512-25HeDeFsgiPSUx69jJXZn8I06tMxLQJJNF5h7i9gsUg8iP4KOOJ8EX8fj3seeoLt3SLU2YDD6UPnDYVGUO7DEA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.3.tgz", + "integrity": "sha512-yDnTUab5i7auHiNwdcL1f+pBnqQFf+7eC4cbC7D8Lc1FkvNZhtpkdad+9U4wDdFb84haupMf0rA/Zc5LcTe/3A==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-selector-parser": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz", - "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==", + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", + "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -8631,11 +8847,10 @@ } }, "postcss-unique-selectors": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.2.tgz", - "integrity": "sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.3.tgz", + "integrity": "sha512-V5tX2hadSSn+miVCluuK1IDGy+7jAXSOfRZ2DQ+s/4uQZb/orDYBjH0CHgFrXsRw78p4QTuEFA9kI6C956UnHQ==", "requires": { - "alphanum-sort": "^1.0.2", "postcss-selector-parser": "^6.0.5" } }, @@ -8644,6 +8859,27 @@ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, + "prebuild-install": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.0.0.tgz", + "integrity": "sha512-IvSenf33K7JcgddNz2D5w521EgO+4aMMjFt73Uk9FRzQ7P+QZPKrp7qPsDydsSwjGt3T5xRNnM1bj1zMTD5fTA==", + "optional": true, + "requires": { + "detect-libc": "^1.0.3", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "npmlog": "^4.0.1", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + } + }, "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -9289,11 +9525,11 @@ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" }, "resolve": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", - "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "requires": { - "is-core-module": "^2.8.0", + "is-core-module": "^2.8.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } @@ -9552,6 +9788,22 @@ "resolved": "https://registry.npmjs.org/shallow-compare/-/shallow-compare-1.2.2.tgz", "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, + "sharp": { + "version": "0.29.3", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.29.3.tgz", + "integrity": "sha512-fKWUuOw77E4nhpyzCCJR1ayrttHoFHBT2U/kR/qEMRhvPEcluG4BKj324+SCO1e84+knXHwhJ1HHJGnUt4ElGA==", + "optional": true, + "requires": { + "color": "^4.0.1", + "detect-libc": "^1.0.3", + "node-addon-api": "^4.2.0", + "prebuild-install": "^7.0.0", + "semver": "^7.3.5", + "simple-get": "^4.0.0", + "tar-fs": "^2.1.1", + "tunnel-agent": "^0.6.0" + } + }, "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", @@ -9585,6 +9837,40 @@ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" }, + "simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "optional": true + }, + "simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "optional": true, + "requires": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "optional": true, + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "optional": true + } + } + }, "sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -9981,16 +10267,6 @@ "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } } }, "string.prototype.matchall": { @@ -10042,18 +10318,11 @@ } }, "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "requires": { - "ansi-regex": "^4.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - } + "ansi-regex": "^5.0.1" } }, "strip-bom": { @@ -10117,11 +10386,11 @@ } }, "stylehacks": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz", - "integrity": "sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.2.tgz", + "integrity": "sha512-114zeJdOpTrbQYRD4OU5UWJ99LKUaqCPJTU1HQ/n3q3BwmllFN8kHENaLnOeqVq6AhXrWfxHNZTl33iJ4oy3cQ==", "requires": { - "browserslist": "^4.16.0", + "browserslist": "^4.16.6", "postcss-selector-parser": "^6.0.4" } }, @@ -10210,14 +10479,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } } } }, @@ -10226,6 +10487,31 @@ "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" }, + "tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "optional": true, + "requires": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "optional": true, + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + } + }, "term-size": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", @@ -10458,6 +10744,15 @@ "tslib": "^1.8.1" } }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "optional": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, "type": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", @@ -10623,11 +10918,6 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" } } }, @@ -10770,9 +11060,9 @@ "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" }, "webpack": { - "version": "5.66.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.66.0.tgz", - "integrity": "sha512-NJNtGT7IKpGzdW7Iwpn/09OXz9inIkeIQ/ibY6B+MdV1x6+uReqz/5z1L89ezWnpPDWpXF0TY5PCYKQdWVn8Vg==", + "version": "5.67.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.67.0.tgz", + "integrity": "sha512-LjFbfMh89xBDpUMgA1W9Ur6Rn/gnr2Cq1jjHFPo4v6a79/ypznSYbAyPgGhwsxBtMIaEmDD1oJoA7BEYw/Fbrw==", "requires": { "@types/eslint-scope": "^3.7.0", "@types/estree": "^0.0.50", @@ -10797,7 +11087,7 @@ "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", "watchpack": "^2.3.1", - "webpack-sources": "^3.2.2" + "webpack-sources": "^3.2.3" }, "dependencies": { "acorn": { @@ -10924,6 +11214,15 @@ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" }, + "wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "optional": true, + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, "widest-line": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", @@ -10980,14 +11279,6 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } } } }, @@ -11039,9 +11330,9 @@ } }, "xstate": { - "version": "4.28.0", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.28.0.tgz", - "integrity": "sha512-qavuFNzejRZVR75Pmbc7zOuUvVOWoABn6sucHr9M5oWjP3LeJ8A5T9lYfADiaY0o9E6q1T63f6JIhCBgt4XTdw==" + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.28.1.tgz", + "integrity": "sha512-0xvaegeZNeHJAJvpjznyNr91qB1xy1PqeYMDyknh5S23TBPQJUHS81hk8W3UcvnB9uNs0YmOU2daoqb3WegzYQ==" }, "xtend": { "version": "4.0.2", @@ -11141,6 +11432,11 @@ "strip-ansi": "^5.2.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -11150,6 +11446,14 @@ "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } } } } diff --git a/starters/gatsby-starter-minimal/package.json b/starters/gatsby-starter-minimal/package.json index cc743a4f67939..2031ab672e55a 100644 --- a/starters/gatsby-starter-minimal/package.json +++ b/starters/gatsby-starter-minimal/package.json @@ -16,7 +16,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^4.5.4", + "gatsby": "^4.6.0", "react": "^17.0.1", "react-dom": "^17.0.1" } diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index 86c08ce10ae70..7307f3ce9e526 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -33,19 +33,19 @@ "integrity": "sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==" }, "@babel/core": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", - "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", + "version": "7.16.12", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.12.tgz", + "integrity": "sha512-dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg==", "requires": { "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", + "@babel/generator": "^7.16.8", "@babel/helper-compilation-targets": "^7.16.7", "@babel/helper-module-transforms": "^7.16.7", "@babel/helpers": "^7.16.7", - "@babel/parser": "^7.16.7", + "@babel/parser": "^7.16.12", "@babel/template": "^7.16.7", - "@babel/traverse": "^7.16.7", - "@babel/types": "^7.16.7", + "@babel/traverse": "^7.16.10", + "@babel/types": "^7.16.8", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -144,9 +144,9 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz", - "integrity": "sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.10.tgz", + "integrity": "sha512-wDeej0pu3WN/ffTxMNCPW5UCiOav8IcLRxSIyp/9+IF2xJUM9h/OYjg0IJLHaL6F8oU8kqMz9nc1vryXhMsgXg==", "requires": { "@babel/helper-annotate-as-pure": "^7.16.7", "@babel/helper-environment-visitor": "^7.16.7", @@ -360,9 +360,9 @@ } }, "@babel/highlight": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz", - "integrity": "sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz", + "integrity": "sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==", "requires": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -382,9 +382,9 @@ } }, "@babel/parser": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.8.tgz", - "integrity": "sha512-i7jDUfrVBWc+7OKcBzEe5n7fbv3i2fWtxKzzCvOjnzSxMfWMigAhtfJ7qzZNGFNMsCCd67+uz553dYKWXPvCKw==" + "version": "7.16.12", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.12.tgz", + "integrity": "sha512-VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.16.7", @@ -519,11 +519,11 @@ } }, "@babel/plugin-proposal-private-methods": { - "version": "7.16.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz", - "integrity": "sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz", + "integrity": "sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==", "requires": { - "@babel/helper-create-class-features-plugin": "^7.16.7", + "@babel/helper-create-class-features-plugin": "^7.16.10", "@babel/helper-plugin-utils": "^7.16.7" } }, @@ -937,9 +937,9 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.8.tgz", - "integrity": "sha512-6Kg2XHPFnIarNweZxmzbgYnnWsXxkx9WQUVk2sksBRL80lBC1RAQV3wQagWxdCHiYHqPN+oenwNIuttlYgIbQQ==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.10.tgz", + "integrity": "sha512-9nwTiqETv2G7xI4RvXHNfpGdr8pAA+Q/YtN3yLK7OoK7n9OibVm/xymJ838a9A6E/IciOLPj82lZk0fW6O4O7w==", "requires": { "@babel/helper-module-imports": "^7.16.7", "@babel/helper-plugin-utils": "^7.16.7", @@ -1025,9 +1025,9 @@ } }, "@babel/preset-env": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.8.tgz", - "integrity": "sha512-9rNKgVCdwHb3z1IlbMyft6yIXIeP3xz6vWvGaLHrJThuEIqWfHb0DNBH9VuTgnDfdbUDhkmkvMZS/YMCtP7Elg==", + "version": "7.16.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz", + "integrity": "sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==", "requires": { "@babel/compat-data": "^7.16.8", "@babel/helper-compilation-targets": "^7.16.7", @@ -1047,7 +1047,7 @@ "@babel/plugin-proposal-object-rest-spread": "^7.16.7", "@babel/plugin-proposal-optional-catch-binding": "^7.16.7", "@babel/plugin-proposal-optional-chaining": "^7.16.7", - "@babel/plugin-proposal-private-methods": "^7.16.7", + "@babel/plugin-proposal-private-methods": "^7.16.11", "@babel/plugin-proposal-private-property-in-object": "^7.16.7", "@babel/plugin-proposal-unicode-property-regex": "^7.16.7", "@babel/plugin-syntax-async-generators": "^7.8.4", @@ -1175,9 +1175,9 @@ } }, "@babel/traverse": { - "version": "7.16.8", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.8.tgz", - "integrity": "sha512-xe+H7JlvKsDQwXRsBhSnq1/+9c+LlQcCK3Tn/l5sbx02HYns/cn7ibp9+RV1sIUqu7hKg91NWsgHurO9dowITQ==", + "version": "7.16.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.10.tgz", + "integrity": "sha512-yzuaYXoRJBGMlBhsMJoUW7G1UmSb/eXr/JHYM/MsOJgavJibLwASijW7oXBdw3NQ6T0bW7Ty5P/VarOs9cHmqw==", "requires": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.8", @@ -1185,7 +1185,7 @@ "@babel/helper-function-name": "^7.16.7", "@babel/helper-hoist-variables": "^7.16.7", "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.8", + "@babel/parser": "^7.16.10", "@babel/types": "^7.16.8", "debug": "^4.1.0", "globals": "^11.1.0" @@ -1286,16 +1286,6 @@ "html-entities": "^2.1.0", "querystring": "^0.2.0", "strip-ansi": "^6.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } } }, "@graphql-tools/batch-execute": { @@ -1660,9 +1650,9 @@ "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==" }, "@sindresorhus/is": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.3.0.tgz", - "integrity": "sha512-wwOvh0eO3PiTEivGJWiZ+b946SlMSb4pe+y+Ur/4S87cwo09pYi+FWHHnbrM3W9W7cBYKDqQXcrFYjYUCOJUEQ==" + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.4.0.tgz", + "integrity": "sha512-QppPM/8l3Mawvh4rn9CNEYIU9bxpXUCRMaX9yUpvBk1nMKusLKpfXGDEKExKaPhLzcn3lzil7pR6rnJ11HgeRQ==" }, "@sindresorhus/slugify": { "version": "1.1.2", @@ -1855,9 +1845,9 @@ } }, "@types/node": { - "version": "17.0.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.10.tgz", - "integrity": "sha512-S/3xB4KzyFxYGCppyDt68yzBU9ysL88lSdIah4D6cptdcltc4NCPCAMc0+PCpg/lLIyC7IPvj2Z52OJWeIUkog==" + "version": "17.0.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.12.tgz", + "integrity": "sha512-4YpbAsnJXWYK/fpTVFlMIcUIho2AYCi4wg5aNPrG1ng7fn/1/RZfCIpRCiBX+12RVa34RluilnvCqD+g3KiSiA==" }, "@types/node-fetch": { "version": "2.5.12", @@ -1930,6 +1920,15 @@ "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" }, + "@types/sharp": { + "version": "0.29.5", + "resolved": "https://registry.npmjs.org/@types/sharp/-/sharp-0.29.5.tgz", + "integrity": "sha512-3TC+S3H5RwnJmLYMHrcdfNjz/CaApKmujjY9b6PU/pE6n0qfooi99YqXGWoW8frU9EWYj/XTI35Pzxa+ThAZ5Q==", + "optional": true, + "requires": { + "@types/node": "*" + } + }, "@types/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", @@ -2262,11 +2261,6 @@ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" - }, "anser": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/anser/-/anser-2.1.0.tgz", @@ -2327,11 +2321,53 @@ "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", "integrity": "sha1-GTxfCoZUGkxm+6Hi3DhYM2LqXo8=" }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "optional": true + }, "arch": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" }, + "are-we-there-yet": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", + "optional": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", @@ -2592,12 +2628,12 @@ } }, "babel-plugin-remove-graphql-queries": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.5.2.tgz", - "integrity": "sha512-N/z2vrRBtbPpkzQwgO6vL1GgLvRCxjUwcXPCduMO32xIDlcCeAOAuBUpMSEs7rDyE6YTBhu8FhskeBJl49N0iQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-graphql-queries/-/babel-plugin-remove-graphql-queries-4.6.0.tgz", + "integrity": "sha512-QMbjJhHOkVHBfFDfAXQp1MFSzLWOJdPMe7Dk3+AF8L+dlLcf2Z7zbIrlRoRPEROyoW4CCPzLDi0Vam5leR/+gw==", "requires": { "@babel/runtime": "^7.15.4", - "gatsby-core-utils": "^3.5.2" + "gatsby-core-utils": "^3.6.0" } }, "babel-plugin-transform-react-remove-prop-types": { @@ -2606,9 +2642,9 @@ "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" }, "babel-preset-gatsby": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.5.2.tgz", - "integrity": "sha512-PETwDgkCaBlD4+wrGteYF58IELz4/P4Rsh0Y36bVHYXXqMeJqh8w0mfnSa2fW/Wqcc8DZmNm32erQT1Bj9XFGQ==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/babel-preset-gatsby/-/babel-preset-gatsby-2.6.0.tgz", + "integrity": "sha512-ATl4c7LGySIZhBcYV9pL2vp8VTj6jtduG4b00dWgFb+v/Op1FXMUJ70KSRDUVE6fccFdw2abJlbuOgZgwCQFPA==", "requires": { "@babel/plugin-proposal-class-properties": "^7.14.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -2623,8 +2659,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^2.8.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^3.5.2", - "gatsby-legacy-polyfills": "^2.5.0" + "gatsby-core-utils": "^3.6.0", + "gatsby-legacy-polyfills": "^2.6.0" } }, "backo2": { @@ -2839,6 +2875,11 @@ "readable-stream": "1.1.x" }, "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", @@ -2970,9 +3011,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001300", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001300.tgz", - "integrity": "sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA==" + "version": "1.0.30001302", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001302.tgz", + "integrity": "sha512-YYTMO+tfwvgUN+1ZnRViE53Ma1S/oETg+J2lISsqi/ZTNThj3ZYBOKP2rHwJc37oCsPqAzJ3w2puZHn0xlLPPw==" }, "chalk": { "version": "4.1.2", @@ -3039,6 +3080,12 @@ "readdirp": "~3.6.0" } }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "optional": true + }, "chrome-trace-event": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", @@ -3171,14 +3218,6 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "wrap-ansi": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", @@ -3209,6 +3248,12 @@ "mimic-response": "^1.0.0" } }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "optional": true + }, "collection-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", @@ -3218,6 +3263,33 @@ "object-visit": "^1.0.0" } }, + "color": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.0.tgz", + "integrity": "sha512-hHTcrbvEnGjC7WBMk6ibQWFVDgEFTVmjrz2Q5HlU6ltwxv0JJN2Z8I7uRbWeQLF04dikxs8zgyZkazRJvSMtyQ==", + "optional": true, + "requires": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "optional": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "optional": true + } + } + }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", @@ -3231,6 +3303,16 @@ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, + "color-string": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz", + "integrity": "sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==", + "optional": true, + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, "colord": { "version": "2.9.2", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", @@ -3332,11 +3414,6 @@ "typedarray": "^0.0.6" }, "dependencies": { - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, "readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", @@ -3379,6 +3456,12 @@ "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "optional": true + }, "content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", @@ -3488,9 +3571,9 @@ } }, "create-gatsby": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.5.1.tgz", - "integrity": "sha512-pI5zvUAtHPREzKQpYU4HcpnT/Q9F+pgY99xs8HT49ZphG7qy+g02Ec/7jCNHDxlre7u+7a6TXmDF9FYr4T7BYw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/create-gatsby/-/create-gatsby-2.6.0.tgz", + "integrity": "sha512-ijyTd1mo7LAasyfNAE9ulmR/eSimUyvDJFmwZOExGG2jep+A43J5X8t0Ukso5BSeilMLZJGTniac33jaNoF5sw==", "requires": { "@babel/runtime": "^7.15.4" } @@ -3674,55 +3757,55 @@ "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=" }, "cssnano": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.15.tgz", - "integrity": "sha512-ppZsS7oPpi2sfiyV5+i+NbB/3GtQ+ab2Vs1azrZaXWujUSN4o+WdTxlCZIMcT9yLW3VO/5yX3vpyDaQ1nIn8CQ==", + "version": "5.0.16", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.0.16.tgz", + "integrity": "sha512-ryhRI9/B9VFCwPbb1z60LLK5/ldoExi7nwdnJzpkLZkm2/r7j2X3jfY+ZvDVJhC/0fPZlrAguYdHNFg0iglPKQ==", "requires": { - "cssnano-preset-default": "^5.1.10", + "cssnano-preset-default": "^5.1.11", "lilconfig": "^2.0.3", "yaml": "^1.10.2" } }, "cssnano-preset-default": { - "version": "5.1.10", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.10.tgz", - "integrity": "sha512-BcpSzUVygHMOnp9uG5rfPzTOCb0GAHQkqtUQx8j1oMNF9A1Q8hziOOhiM4bdICpmrBIU85BE64RD5XGYsVQZNA==", + "version": "5.1.11", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.1.11.tgz", + "integrity": "sha512-ETet5hqHxmzQq2ynXMOQofKuLm7VOjMiOB7E2zdtm/hSeCKlD9fabzIUV4GoPcRyJRHi+4kGf0vsfGYbQ4nmPw==", "requires": { "css-declaration-sorter": "^6.0.3", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-calc": "^8.2.0", - "postcss-colormin": "^5.2.3", - "postcss-convert-values": "^5.0.2", - "postcss-discard-comments": "^5.0.1", - "postcss-discard-duplicates": "^5.0.1", - "postcss-discard-empty": "^5.0.1", - "postcss-discard-overridden": "^5.0.2", - "postcss-merge-longhand": "^5.0.4", - "postcss-merge-rules": "^5.0.4", - "postcss-minify-font-values": "^5.0.2", - "postcss-minify-gradients": "^5.0.4", - "postcss-minify-params": "^5.0.3", - "postcss-minify-selectors": "^5.1.1", - "postcss-normalize-charset": "^5.0.1", + "postcss-colormin": "^5.2.4", + "postcss-convert-values": "^5.0.3", + "postcss-discard-comments": "^5.0.2", + "postcss-discard-duplicates": "^5.0.2", + "postcss-discard-empty": "^5.0.2", + "postcss-discard-overridden": "^5.0.3", + "postcss-merge-longhand": "^5.0.5", + "postcss-merge-rules": "^5.0.5", + "postcss-minify-font-values": "^5.0.3", + "postcss-minify-gradients": "^5.0.5", + "postcss-minify-params": "^5.0.4", + "postcss-minify-selectors": "^5.1.2", + "postcss-normalize-charset": "^5.0.2", "postcss-normalize-display-values": "^5.0.2", - "postcss-normalize-positions": "^5.0.2", - "postcss-normalize-repeat-style": "^5.0.2", - "postcss-normalize-string": "^5.0.2", + "postcss-normalize-positions": "^5.0.3", + "postcss-normalize-repeat-style": "^5.0.3", + "postcss-normalize-string": "^5.0.3", "postcss-normalize-timing-functions": "^5.0.2", - "postcss-normalize-unicode": "^5.0.2", + "postcss-normalize-unicode": "^5.0.3", "postcss-normalize-url": "^5.0.4", - "postcss-normalize-whitespace": "^5.0.2", - "postcss-ordered-values": "^5.0.3", + "postcss-normalize-whitespace": "^5.0.3", + "postcss-ordered-values": "^5.0.4", "postcss-reduce-initial": "^5.0.2", - "postcss-reduce-transforms": "^5.0.2", + "postcss-reduce-transforms": "^5.0.3", "postcss-svgo": "^5.0.3", - "postcss-unique-selectors": "^5.0.2" + "postcss-unique-selectors": "^5.0.3" } }, "cssnano-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.0.0.tgz", - "integrity": "sha512-Pzs7/BZ6OgT+tXXuF12DKR8SmSbzUeVYCtMBbS8lI0uAm3mrYmkyqCXXPsQESI6kmLfEVBppbdVY/el3hg3nAA==" + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.0.1.tgz", + "integrity": "sha512-VNCHL364lh++/ono+S3j9NlUK+d97KNkxI77NlqZU2W3xd2/qmyN61dsa47pTpb55zuU4G4lI7qFjAXZJH1OAQ==" }, "csso": { "version": "4.2.0", @@ -3896,6 +3979,12 @@ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "optional": true + }, "depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", @@ -3906,6 +3995,12 @@ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", + "optional": true + }, "detect-port": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.3.0.tgz", @@ -4000,6 +4095,11 @@ "streamsearch": "0.1.2" }, "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, "readable-stream": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", @@ -4109,9 +4209,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.4.48", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.48.tgz", - "integrity": "sha512-RT3SEmpv7XUA+tKXrZGudAWLDpa7f8qmhjcLaM6OD/ERxjQ/zAojT8/Vvo0BSzbArkElFZ1WyZ9FuwAYbkdBNA==" + "version": "1.4.53", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.53.tgz", + "integrity": "sha512-rFveSKQczlcav+H3zkKqykU6ANseFwXwkl855jOIap5/0gnEcuIhv2ecz6aoTrXavF6I/CEBeRnBnkB51k06ew==" }, "emoji-regex": { "version": "8.0.0", @@ -4483,14 +4583,6 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -4986,6 +5078,12 @@ } } }, + "expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "optional": true + }, "express": { "version": "4.17.2", "resolved": "https://registry.npmjs.org/express/-/express-4.17.2.tgz", @@ -5542,6 +5640,12 @@ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "optional": true + }, "fs-exists-cached": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-exists-cached/-/fs-exists-cached-1.0.0.tgz", @@ -5584,9 +5688,9 @@ "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, "gatsby": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.5.4.tgz", - "integrity": "sha512-uXyYl9nq52xdvP/9lwWFp7eGtjFFgdAjG2xNBvpgNgd1AtH/4kU76khm1mmpXea98mnJrcwKmsSZkIbQO9YWCg==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-4.6.0.tgz", + "integrity": "sha512-02NsTyfPQlB/JCilJri0gxvTr7WNcjZWnNUhHQatH0CJ6Sj3meSArEMNuA2thBS/CSIq/30kEOC2HDvWEWPfSA==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -5612,8 +5716,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": "^4.5.2", - "babel-preset-gatsby": "^2.5.2", + "babel-plugin-remove-graphql-queries": "^4.6.0", + "babel-preset-gatsby": "^2.6.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", @@ -5655,17 +5759,18 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^10.0.0", - "gatsby-cli": "^4.5.2", - "gatsby-core-utils": "^3.5.2", - "gatsby-graphiql-explorer": "^2.5.0", - "gatsby-legacy-polyfills": "^2.5.0", - "gatsby-link": "^4.5.0", - "gatsby-plugin-page-creator": "^4.5.2", - "gatsby-plugin-typescript": "^4.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-react-router-scroll": "^5.5.0", - "gatsby-telemetry": "^3.5.2", - "gatsby-worker": "^1.5.0", + "gatsby-cli": "^4.6.0", + "gatsby-core-utils": "^3.6.0", + "gatsby-graphiql-explorer": "^2.6.0", + "gatsby-legacy-polyfills": "^2.6.0", + "gatsby-link": "^4.6.0", + "gatsby-plugin-page-creator": "^4.6.0", + "gatsby-plugin-typescript": "^4.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-react-router-scroll": "^5.6.0", + "gatsby-sharp": "^0.0.1", + "gatsby-telemetry": "^3.6.0", + "gatsby-worker": "^1.6.0", "glob": "^7.2.0", "got": "^11.8.2", "graphql": "^15.7.2", @@ -5721,7 +5826,7 @@ "st": "^2.0.0", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", - "strip-ansi": "^5.2.0", + "strip-ansi": "^6.0.1", "style-loader": "^2.0.0", "terser-webpack-plugin": "^5.2.4", "tmp": "^0.2.1", @@ -5740,9 +5845,9 @@ }, "dependencies": { "gatsby-cli": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.5.2.tgz", - "integrity": "sha512-AAltHfDTqOq4RL0oBgsmZb+IIDiV1zMdEzCgYIeEqWtc7nesKwHs4myYqhQV8wmXwyWKKWuXuTAqSoxuQT+X5w==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.6.0.tgz", + "integrity": "sha512-3YRilKW+aG1iSPUHj4pB7xSwVv1GX2Zjzae/2FOWaOaNRA0vKtQmwax4eks/kpfM+a2n05HH5K8ov6oLxo3YQw==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/core": "^7.15.5", @@ -5759,13 +5864,13 @@ "common-tags": "^1.8.2", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^2.5.1", + "create-gatsby": "^2.6.0", "envinfo": "^7.8.1", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-telemetry": "^3.6.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.4.2", @@ -5782,7 +5887,7 @@ "signal-exit": "^3.0.6", "source-map": "0.7.3", "stack-trace": "^0.0.10", - "strip-ansi": "^5.2.0", + "strip-ansi": "^6.0.1", "update-notifier": "^5.1.0", "uuid": "3.4.0", "yargs": "^15.4.1", @@ -5800,9 +5905,9 @@ } }, "gatsby-core-utils": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.5.2.tgz", - "integrity": "sha512-sY7BD6VlbWwrV892x9/yJPtXYaGC/GLyhabd9j2xP6zsIOW0XBHXZ4jJ+xEPaRn3CJxYgBd8KdCyoc4h1ZEFzg==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-3.6.0.tgz", + "integrity": "sha512-xmjtOWQfLinNbgBiDRT1KpEfDZm0Z0u6+hsf8EH8Ps5UCIhKinGrdtK+QH+RzPGCV1PUg/E/pnLVqQLCvD+tmA==", "requires": { "@babel/runtime": "^7.15.4", "ci-info": "2.0.0", @@ -5818,17 +5923,17 @@ } }, "gatsby-graphiql-explorer": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.5.0.tgz", - "integrity": "sha512-uCZTQshqYuBBYwU66VtWwsbXSmw9axBbg3r20qsyuE9uvECUUkKycdLoMpRPKMuWqBPZbAudgbzl22AqNDBNaw==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-2.6.0.tgz", + "integrity": "sha512-9YSAci8AXsaknCHdGwKJ3hkjSmcUd2+0CCn1IdTh2xcfVCTRW8Q19jgcJjY/8SYfw9kZJVZVx5jdYdD2AsIowQ==", "requires": { "@babel/runtime": "^7.15.4" } }, "gatsby-legacy-polyfills": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.5.0.tgz", - "integrity": "sha512-AtHkcpa7S9E9aAOn0ca9eP3fVh5VVE5s8iD+LMx3zzZGcxZBdh6z7FVx8qWxsQXCO33Be4U/r49EFLc3koti+A==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-legacy-polyfills/-/gatsby-legacy-polyfills-2.6.0.tgz", + "integrity": "sha512-SbZ9s1bUKJo/ED41MMZx16Oh2DaRBuzQ20WRub995RqqthIGXA5oEv/64hNgBWjkuYZdqu+XtACr6Rscd6QXKw==", "requires": { "@babel/runtime": "^7.15.4", "core-js-compat": "3.9.0" @@ -5851,9 +5956,9 @@ } }, "gatsby-link": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.5.0.tgz", - "integrity": "sha512-3u9/VRc5JEQ4SwklNjdIPiEH3mNEYJacqE/rtnLLhG5SQ1V/a3rNh5dBEASiUia1g19AHRLnkVz/LAnR/jcpkA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-link/-/gatsby-link-4.6.0.tgz", + "integrity": "sha512-GbZJDppV/70m0lT3PIh2m0TLDKq5kAAk5Ao/XU9ucATdDRlE4WruwceHOg7imLmRRrK0xxYGEEyANVrqcH3+LQ==", "requires": { "@babel/runtime": "^7.15.4", "@types/reach__router": "^1.3.9", @@ -5861,42 +5966,42 @@ } }, "gatsby-page-utils": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.5.2.tgz", - "integrity": "sha512-Og/OFrnSKkHGkhF0lP8bOhuC/Z0b16lT8309pWoCyI7/PLsQ59ptJ06rGWA2NxW1dLFSXu+hmiJXg/bldibzDg==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/gatsby-page-utils/-/gatsby-page-utils-2.6.0.tgz", + "integrity": "sha512-rckIEZU64wITIYdY+RsbC1klLQI1izMoGD+qMMQF196+FPlMNOmoUWrCOes8LgxNChoRjSBOjRaBsR+M4Piahg==", "requires": { "@babel/runtime": "^7.15.4", "bluebird": "^3.7.2", "chokidar": "^3.5.2", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "glob": "^7.2.0", "lodash": "^4.17.21", "micromatch": "^4.0.4" } }, "gatsby-plugin-page-creator": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.5.2.tgz", - "integrity": "sha512-mXJ2W/BfFeb0rSH+N4J2vpzY/qD6fEj0tSBqAlHocZkpsW+2jrjVCcyI2oGZr2unDekcUA2sZY+3Terxi5L5+g==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-page-creator/-/gatsby-plugin-page-creator-4.6.0.tgz", + "integrity": "sha512-AXDD2A+HaSHJuTa6HznCn5ItnVNHfayRixqJusOpiscBsYty/JwXM/6Fj8CoQvRTwVt2EYwgw9QgjBl76kOoiA==", "requires": { "@babel/runtime": "^7.15.4", "@babel/traverse": "^7.15.4", "@sindresorhus/slugify": "^1.1.2", "chokidar": "^3.5.2", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^3.5.2", - "gatsby-page-utils": "^2.5.2", - "gatsby-plugin-utils": "^2.5.0", - "gatsby-telemetry": "^3.5.2", + "gatsby-core-utils": "^3.6.0", + "gatsby-page-utils": "^2.6.0", + "gatsby-plugin-utils": "^3.0.0", + "gatsby-telemetry": "^3.6.0", "globby": "^11.0.4", "lodash": "^4.17.21" } }, "gatsby-plugin-typescript": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.5.2.tgz", - "integrity": "sha512-Qeb2xpch5GUoeGc/Sx+zckvGFZQw4QnbWIHO4ExzH2VGJx9dy4YjTI0nvervgjew3hJKzq2Db8jSeJ3NXFSZUQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-typescript/-/gatsby-plugin-typescript-4.6.0.tgz", + "integrity": "sha512-1LipVvvBT871P48izX7gk83xc2VSx6J6ruDLBnc57CqAPmNlDa3rRO2bEUNd9Zwk+uOUNi+kl1tKxYwW5G1eSg==", "requires": { "@babel/core": "^7.15.5", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5", @@ -5904,30 +6009,41 @@ "@babel/plugin-proposal-optional-chaining": "^7.14.5", "@babel/preset-typescript": "^7.15.0", "@babel/runtime": "^7.15.4", - "babel-plugin-remove-graphql-queries": "^4.5.2" + "babel-plugin-remove-graphql-queries": "^4.6.0" } }, "gatsby-plugin-utils": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-2.5.0.tgz", - "integrity": "sha512-B/JpKTQJQNRVo3b3rRbOgHKV3/i3V5fYLPOGvBU6qHxBtQ9I5YYwXrsLJYX5vl4bEtLtrkiQG9zQyvSSXzJ9Sw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-utils/-/gatsby-plugin-utils-3.0.0.tgz", + "integrity": "sha512-hZj64WQbs/KgAWez3oWMwlmhewUinXDJJdhj491vOWX2WVlH79m8JpAoklgrm9xaoIdhfbNkhQoMKPkRZKJpJQ==", "requires": { "@babel/runtime": "^7.15.4", "joi": "^17.4.2" } }, "gatsby-react-router-scroll": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.5.0.tgz", - "integrity": "sha512-fW+oBJDD1NNBUuxtD/aR4dJwhyi89HOfZ+u9yffP5V30z5HnF8hB6YNCo6QDhw39gDlsB9v2HIgRIt5rxZ0y9g==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/gatsby-react-router-scroll/-/gatsby-react-router-scroll-5.6.0.tgz", + "integrity": "sha512-n8wO0xeRxvBkJXrH2DAuLKCiHQRgFn/9Ytqb3Uz19fWd5q+jpOlD/qjorkeWl2cqo8oNb83ku8D6dF3qr8OT5g==", "requires": { - "@babel/runtime": "^7.15.4" + "@babel/runtime": "^7.15.4", + "prop-types": "^15.7.2" + } + }, + "gatsby-sharp": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/gatsby-sharp/-/gatsby-sharp-0.0.1.tgz", + "integrity": "sha512-m6NyS1/Y97kA8JY75SHqB0ZcReIk9OTDmUMi/kLK7yVXtwfGh7pgX3UW930ydUB3tooZMB9ojAmmpmmrV8lE+g==", + "optional": true, + "requires": { + "@types/sharp": "^0.29.5", + "sharp": "^0.29.3" } }, "gatsby-telemetry": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.5.2.tgz", - "integrity": "sha512-nL33+AxawRqEjuvHAbyyxoDMZ5GXNMEMzCk5WQu7J/lA6od6cUmXpZMcr4AxwnNFJLfmYKlwalN7cuz5nBL6lw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-3.6.0.tgz", + "integrity": "sha512-mxofrnVUtcjh+CD9QcAQloR5WskKUfBCXzGLCH4/haE5SbWKpKstLBR06ZnNI01VHc5Do0+W+n16NvNe4G8zGQ==", "requires": { "@babel/code-frame": "^7.14.0", "@babel/runtime": "^7.15.4", @@ -5937,7 +6053,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^10.0.0", - "gatsby-core-utils": "^3.5.2", + "gatsby-core-utils": "^3.6.0", "git-up": "^4.0.5", "is-docker": "^2.2.1", "lodash": "^4.17.21", @@ -6015,14 +6131,67 @@ } }, "gatsby-worker": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.5.0.tgz", - "integrity": "sha512-syzm89Jd/xL6PnF0lW/fu4Aqjkbf3dYuJRwABoHVZ2cralshSFvzY3SR4BhC3tXFlkOrF+UgYM3Ek4tv7TDjkw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/gatsby-worker/-/gatsby-worker-1.6.0.tgz", + "integrity": "sha512-UuyRZmHiAI9HnjYeLjG+/5K4ugeGSzftF/hFRBjkvcABCc0GktOm2038FtUpXxpX9MbCiYd6pO3Kij5U7FLQBg==", "requires": { "@babel/core": "^7.15.5", "@babel/runtime": "^7.15.4" } }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "optional": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "optional": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "optional": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "optional": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", @@ -6079,6 +6248,12 @@ "parse-url": "^6.0.0" } }, + "github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=", + "optional": true + }, "glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", @@ -6296,6 +6471,12 @@ "has-symbols": "^1.0.2" } }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "optional": true + }, "has-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", @@ -6550,14 +6731,6 @@ "type-fest": "^0.21.3" } }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, "type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", @@ -6933,9 +7106,9 @@ "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==" }, "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isexe": { "version": "2.0.0", @@ -7564,6 +7737,12 @@ "minimist": "^1.2.5" } }, + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "optional": true + }, "moment": { "version": "2.29.1", "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", @@ -7640,6 +7819,12 @@ "to-regex": "^3.0.1" } }, + "napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", + "optional": true + }, "native-url": { "version": "0.2.6", "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", @@ -7689,6 +7874,21 @@ } } }, + "node-abi": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.5.0.tgz", + "integrity": "sha512-LtHvNIBgOy5mO8mPEUtkCW/YCRWYEKshIvqhe1GHHyXEHEB5mgICyYnAcl4qan3uFeRROErKGzatFHPf6kDxWw==", + "optional": true, + "requires": { + "semver": "^7.3.5" + } + }, + "node-addon-api": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz", + "integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==", + "optional": true + }, "node-fetch": { "version": "2.6.7", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", @@ -7742,6 +7942,18 @@ } } }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "optional": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, "nth-check": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", @@ -7781,6 +7993,12 @@ } } }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "optional": true + }, "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", @@ -8359,9 +8577,9 @@ } }, "postcss-colormin": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.3.tgz", - "integrity": "sha512-dra4xoAjub2wha6RUXAgadHEn2lGxbj8drhFcIGLOMn914Eu7DkPUurugDXgstwttCYkJtZ/+PkWRWdp3UHRIA==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.2.4.tgz", + "integrity": "sha512-rYlC5015aNqVQt/B6Cy156g7sH5tRUJGmT9xeagYthtKehetbKx7jHxhyLpulP4bs4vbp8u/B2rac0J7S7qPQg==", "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", @@ -8370,32 +8588,32 @@ } }, "postcss-convert-values": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz", - "integrity": "sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.0.3.tgz", + "integrity": "sha512-fVkjHm2T0PSMqXUCIhHNWVGjhB9mHEWX2GboVs7j3iCgr6FpIl9c/IdXy0PHWZSQ9LFTRgmj98amxJE6KOnlsA==", "requires": { - "postcss-value-parser": "^4.1.0" + "postcss-value-parser": "^4.2.0" } }, "postcss-discard-comments": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz", - "integrity": "sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.0.2.tgz", + "integrity": "sha512-6VQ3pYTsJHEsN2Bic88Aa7J/Brn4Bv8j/rqaFQZkH+pcVkKYwxCIvoMQkykEW7fBjmofdTnQgcivt5CCBJhtrg==" }, "postcss-discard-duplicates": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz", - "integrity": "sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.2.tgz", + "integrity": "sha512-LKY81YjUjc78p6rbXIsnppsaFo8XzCoMZkXVILJU//sK0DgPkPSpuq/cZvHss3EtdKvWNYgWzQL+wiJFtEET4g==" }, "postcss-discard-empty": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz", - "integrity": "sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.0.2.tgz", + "integrity": "sha512-SxBsbTjlsKUvZLL+dMrdWauuNZU8TBq5IOL/DHa6jBUSXFEwmDqeXRfTIK/FQpPTa8MJMxEHjSV3UbiuyLARPQ==" }, "postcss-discard-overridden": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.2.tgz", - "integrity": "sha512-+56BLP6NSSUuWUXjRgAQuho1p5xs/hU5Sw7+xt9S3JSg+7R6+WMGnJW7Hre/6tTuZ2xiXMB42ObkiZJ2hy/Pew==" + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.0.3.tgz", + "integrity": "sha512-yRTXknIZA4k8Yo4FiF1xbsLj/VBxfXEWxJNIrtIy6HC9KQ4xJxcPtoaaskh6QptCGrrcGnhKsTsENTRPZOBu4g==" }, "postcss-flexbugs-fixes": { "version": "5.0.2", @@ -8427,60 +8645,58 @@ } }, "postcss-merge-longhand": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz", - "integrity": "sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.0.5.tgz", + "integrity": "sha512-R2BCPJJ/U2oh1uTWEYn9CcJ7MMcQ1iIbj9wfr2s/zHu5om5MP/ewKdaunpfJqR1WYzqCsgnXuRoVXPAzxdqy8g==", "requires": { - "postcss-value-parser": "^4.1.0", - "stylehacks": "^5.0.1" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.0.2" } }, "postcss-merge-rules": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.4.tgz", - "integrity": "sha512-yOj7bW3NxlQxaERBB0lEY1sH5y+RzevjbdH4DBJurjKERNpknRByFNdNe+V72i5pIZL12woM9uGdS5xbSB+kDQ==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.0.5.tgz", + "integrity": "sha512-3Oa26/Pb9VOFVksJjFG45SNoe4nhGvJ2Uc6TlRimqF8uhfOCEhVCaJ3rvEat5UFOn2UZqTY5Da8dFgCh3Iq0Ug==", "requires": { "browserslist": "^4.16.6", "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-selector-parser": "^6.0.5" } }, "postcss-minify-font-values": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.2.tgz", - "integrity": "sha512-R6MJZryq28Cw0AmnyhXrM7naqJZZLoa1paBltIzh2wM7yb4D45TLur+eubTQ4jCmZU9SGeZdWsc5KcSoqTMeTg==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.0.3.tgz", + "integrity": "sha512-bC45rVzEwsLhv/cL1eCjoo2OOjbSk9I7HKFBYnBvtyuIZlf7uMipMATXtA0Fc3jwPo3wuPIW1jRJWKzflMh1sA==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-minify-gradients": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.4.tgz", - "integrity": "sha512-RVwZA7NC4R4J76u8X0Q0j+J7ItKUWAeBUJ8oEEZWmtv3Xoh19uNJaJwzNpsydQjk6PkuhRrK+YwwMf+c+68EYg==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.0.5.tgz", + "integrity": "sha512-/YjvXs8PepsoiZAIpjstOO4IHKwFAqYNqbA1yVdqklM84tbUUneh6omJxGlRlF3mi6K5Pa067Mg6IwqEnYC8Zg==", "requires": { "colord": "^2.9.1", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-params": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.3.tgz", - "integrity": "sha512-NY92FUikE+wralaiVexFd5gwb7oJTIDhgTNeIw89i1Ymsgt4RWiPXfz3bg7hDy4NL6gepcThJwOYNtZO/eNi7Q==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.0.4.tgz", + "integrity": "sha512-Z0vjod9lRZEmEPfEmA2sCfjbfEEFKefMD3RDIQSUfXK4LpCyWkX1CniUgyNvnjJFLDPSxtgKzozhHhPHKoeGkg==", "requires": { - "alphanum-sort": "^1.0.2", "browserslist": "^4.16.6", - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, "postcss-minify-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.1.tgz", - "integrity": "sha512-TOzqOPXt91O2luJInaVPiivh90a2SIK5Nf1Ea7yEIM/5w+XA5BGrZGUSW8aEx9pJ/oNj7ZJBhjvigSiBV+bC1Q==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.1.2.tgz", + "integrity": "sha512-gpn1nJDMCf3g32y/7kl+jsdamhiYT+/zmEt57RoT9GmzlixBNRPohI7k8UIHelLABhdLf3MSZhtM33xuH5eQOQ==", "requires": { - "alphanum-sort": "^1.0.2", "postcss-selector-parser": "^6.0.5" } }, @@ -8516,9 +8732,9 @@ } }, "postcss-normalize-charset": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz", - "integrity": "sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==" + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.0.2.tgz", + "integrity": "sha512-fEMhYXzO8My+gC009qDc/3bgnFP8Fv1Ic8uw4ec4YTlhIOw63tGPk1YFd7fk9bZUf1DAbkhiL/QPWs9JLqdF2g==" }, "postcss-normalize-display-values": { "version": "5.0.2", @@ -8529,25 +8745,25 @@ } }, "postcss-normalize-positions": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.2.tgz", - "integrity": "sha512-tqghWFVDp2btqFg1gYob1etPNxXLNh3uVeWgZE2AQGh6b2F8AK2Gj36v5Vhyh+APwIzNjmt6jwZ9pTBP+/OM8g==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.0.3.tgz", + "integrity": "sha512-U+rmhjrNBvIGYqr/1tD4wXPFFMKUbXsYXvlUCzLi0tOCUS6LoeEAnmVXXJY/MEB/1CKZZwBSs2tmzGawcygVBA==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-repeat-style": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.2.tgz", - "integrity": "sha512-/rIZn8X9bBzC7KvY4iKUhXUGW3MmbXwfPF23jC9wT9xTi7kAvgj8sEgwxjixBmoL6MVa4WOgxNz2hAR6wTK8tw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.3.tgz", + "integrity": "sha512-uk1+xYx0AMbA3nLSNhbDrqbf/rx+Iuq5tVad2VNyaxxJzx79oGieJ6D9F6AfOL2GtiIbP7vTYlpYHtG+ERFXTg==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-string": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.2.tgz", - "integrity": "sha512-zaI1yzwL+a/FkIzUWMQoH25YwCYxi917J4pYm1nRXtdgiCdnlTkx5eRzqWEC64HtRa06WCJ9TIutpb6GmW4gFw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.0.3.tgz", + "integrity": "sha512-Mf2V4JbIDboNGQhW6xW0YREDiYXoX3WrD3EjKkjvnpAJ6W4qqjLnK/c9aioyVFaWWHVdP5zVRw/9DI5S3oLDFw==", "requires": { "postcss-value-parser": "^4.2.0" } @@ -8561,9 +8777,9 @@ } }, "postcss-normalize-unicode": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.2.tgz", - "integrity": "sha512-3y/V+vjZ19HNcTizeqwrbZSUsE69ZMRHfiiyLAJb7C7hJtYmM4Gsbajy7gKagu97E8q5rlS9k8FhojA8cpGhWw==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.3.tgz", + "integrity": "sha512-uNC7BmS/7h6to2UWa4RFH8sOTzu2O9dVWPE/F9Vm9GdhONiD/c1kNaCLbmsFHlKWcEx7alNUChQ+jH/QAlqsQw==", "requires": { "browserslist": "^4.16.6", "postcss-value-parser": "^4.2.0" @@ -8579,19 +8795,19 @@ } }, "postcss-normalize-whitespace": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.2.tgz", - "integrity": "sha512-CXBx+9fVlzSgbk0IXA/dcZn9lXixnQRndnsPC5ht3HxlQ1bVh77KQDL1GffJx1LTzzfae8ftMulsjYmO2yegxA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.3.tgz", + "integrity": "sha512-333JWRnX655fSoUbufJ10HJop3c8mrpKkCCUnEmgz/Cb/QEtW+/TMZwDAUt4lnwqP6tCCk0x0b58jqvDgiQm/A==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-ordered-values": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.3.tgz", - "integrity": "sha512-T9pDS+P9bWeFvqivXd5ACzQmrCmHjv3ZP+djn8E1UZY7iK79pFSm7i3WbKw2VSmFmdbMm8sQ12OPcNpzBo3Z2w==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.0.4.tgz", + "integrity": "sha512-taKtGDZtyYUMVYkg+MuJeBUiTF6cGHZmo/qcW7ibvW79UlyKuSHbo6dpCIiqI+j9oJsXWzP+ovIxoyLDOeQFdw==", "requires": { - "cssnano-utils": "^3.0.0", + "cssnano-utils": "^3.0.1", "postcss-value-parser": "^4.2.0" } }, @@ -8605,17 +8821,17 @@ } }, "postcss-reduce-transforms": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.2.tgz", - "integrity": "sha512-25HeDeFsgiPSUx69jJXZn8I06tMxLQJJNF5h7i9gsUg8iP4KOOJ8EX8fj3seeoLt3SLU2YDD6UPnDYVGUO7DEA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.3.tgz", + "integrity": "sha512-yDnTUab5i7auHiNwdcL1f+pBnqQFf+7eC4cbC7D8Lc1FkvNZhtpkdad+9U4wDdFb84haupMf0rA/Zc5LcTe/3A==", "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-selector-parser": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz", - "integrity": "sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==", + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.9.tgz", + "integrity": "sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==", "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -8631,11 +8847,10 @@ } }, "postcss-unique-selectors": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.2.tgz", - "integrity": "sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.0.3.tgz", + "integrity": "sha512-V5tX2hadSSn+miVCluuK1IDGy+7jAXSOfRZ2DQ+s/4uQZb/orDYBjH0CHgFrXsRw78p4QTuEFA9kI6C956UnHQ==", "requires": { - "alphanum-sort": "^1.0.2", "postcss-selector-parser": "^6.0.5" } }, @@ -8644,6 +8859,27 @@ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, + "prebuild-install": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.0.0.tgz", + "integrity": "sha512-IvSenf33K7JcgddNz2D5w521EgO+4aMMjFt73Uk9FRzQ7P+QZPKrp7qPsDydsSwjGt3T5xRNnM1bj1zMTD5fTA==", + "optional": true, + "requires": { + "detect-libc": "^1.0.3", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "npmlog": "^4.0.1", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + } + }, "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -9295,11 +9531,11 @@ "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" }, "resolve": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", - "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "requires": { - "is-core-module": "^2.8.0", + "is-core-module": "^2.8.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } @@ -9558,6 +9794,22 @@ "resolved": "https://registry.npmjs.org/shallow-compare/-/shallow-compare-1.2.2.tgz", "integrity": "sha512-LUMFi+RppPlrHzbqmFnINTrazo0lPNwhcgzuAXVVcfy/mqPDrQmHAyz5bvV0gDAuRFrk804V0HpQ6u9sZ0tBeg==" }, + "sharp": { + "version": "0.29.3", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.29.3.tgz", + "integrity": "sha512-fKWUuOw77E4nhpyzCCJR1ayrttHoFHBT2U/kR/qEMRhvPEcluG4BKj324+SCO1e84+knXHwhJ1HHJGnUt4ElGA==", + "optional": true, + "requires": { + "color": "^4.0.1", + "detect-libc": "^1.0.3", + "node-addon-api": "^4.2.0", + "prebuild-install": "^7.0.0", + "semver": "^7.3.5", + "simple-get": "^4.0.0", + "tar-fs": "^2.1.1", + "tunnel-agent": "^0.6.0" + } + }, "shebang-command": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", @@ -9591,6 +9843,40 @@ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" }, + "simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "optional": true + }, + "simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "optional": true, + "requires": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "optional": true, + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "optional": true + } + } + }, "sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -9987,16 +10273,6 @@ "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } } }, "string.prototype.matchall": { @@ -10048,18 +10324,11 @@ } }, "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "requires": { - "ansi-regex": "^4.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - } + "ansi-regex": "^5.0.1" } }, "strip-bom": { @@ -10123,11 +10392,11 @@ } }, "stylehacks": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.1.tgz", - "integrity": "sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.0.2.tgz", + "integrity": "sha512-114zeJdOpTrbQYRD4OU5UWJ99LKUaqCPJTU1HQ/n3q3BwmllFN8kHENaLnOeqVq6AhXrWfxHNZTl33iJ4oy3cQ==", "requires": { - "browserslist": "^4.16.0", + "browserslist": "^4.16.6", "postcss-selector-parser": "^6.0.4" } }, @@ -10216,14 +10485,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } } } }, @@ -10232,6 +10493,31 @@ "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" }, + "tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "optional": true, + "requires": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "optional": true, + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + } + }, "term-size": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", @@ -10464,6 +10750,15 @@ "tslib": "^1.8.1" } }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "optional": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, "type": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", @@ -10629,11 +10924,6 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" } } }, @@ -10776,9 +11066,9 @@ "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" }, "webpack": { - "version": "5.66.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.66.0.tgz", - "integrity": "sha512-NJNtGT7IKpGzdW7Iwpn/09OXz9inIkeIQ/ibY6B+MdV1x6+uReqz/5z1L89ezWnpPDWpXF0TY5PCYKQdWVn8Vg==", + "version": "5.67.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.67.0.tgz", + "integrity": "sha512-LjFbfMh89xBDpUMgA1W9Ur6Rn/gnr2Cq1jjHFPo4v6a79/ypznSYbAyPgGhwsxBtMIaEmDD1oJoA7BEYw/Fbrw==", "requires": { "@types/eslint-scope": "^3.7.0", "@types/estree": "^0.0.50", @@ -10803,7 +11093,7 @@ "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", "watchpack": "^2.3.1", - "webpack-sources": "^3.2.2" + "webpack-sources": "^3.2.3" }, "dependencies": { "acorn": { @@ -10930,6 +11220,15 @@ "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" }, + "wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "optional": true, + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, "widest-line": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", @@ -10986,14 +11285,6 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } } } }, @@ -11045,9 +11336,9 @@ } }, "xstate": { - "version": "4.28.0", - "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.28.0.tgz", - "integrity": "sha512-qavuFNzejRZVR75Pmbc7zOuUvVOWoABn6sucHr9M5oWjP3LeJ8A5T9lYfADiaY0o9E6q1T63f6JIhCBgt4XTdw==" + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/xstate/-/xstate-4.28.1.tgz", + "integrity": "sha512-0xvaegeZNeHJAJvpjznyNr91qB1xy1PqeYMDyknh5S23TBPQJUHS81hk8W3UcvnB9uNs0YmOU2daoqb3WegzYQ==" }, "xtend": { "version": "4.0.2", @@ -11147,6 +11438,11 @@ "strip-ansi": "^5.2.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -11156,6 +11452,14 @@ "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } } } } diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 9985cbf21d848..f483a56c60dff 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -14,7 +14,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^4.5.4", + "gatsby": "^4.6.0", "react": "^17.0.1", "react-dom": "^17.0.1" },
deeb36d1aede0bc3e1da35f8e23bb579e4697b3a
2018-10-16 21:22:17
Sparrow Silverhawk
feat(starters): Add gatsby-simple-redux (#9107)
false
Add gatsby-simple-redux (#9107)
feat
diff --git a/docs/starters.yml b/docs/starters.yml index b901f2d9826e4..d6adb492a2bbe 100644 --- a/docs/starters.yml +++ b/docs/starters.yml @@ -932,6 +932,14 @@ - Category and Tag for post - Type Safe by TypeScript - Format Safe by TSLint and Prettier with Lint-Staged(Husky) +- url: https://zandersparrow.github.io/gatsby-simple-redux/ + repo: https://github.com/zandersparrow/gatsby-simple-redux + description: The default starter plus redux + tags: + - Redux + features: + - Minimal starter based on the official default + - Includes redux and a simple counter example - url: https://gatsby-casper.netlify.com/ repo: https://github.com/scttcper/gatsby-casper description: This is a starter blog that looks like the Ghost.io default theme, casper. diff --git a/yarn.lock b/yarn.lock index 4b6f284d61303..a1df5776fea10 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2556,7 +2556,7 @@ [email protected], async@^1.4.0, async@^1.5.0, async@^1.5.2: resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= -async@^2.1.2, async@^2.1.4, async@^2.5.0: +async@^2.0.1, async@^2.1.2, async@^2.1.4, async@^2.5.0: version "2.6.1" resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" integrity sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ== @@ -3846,7 +3846,7 @@ [email protected]: resolved "http://registry.npmjs.org/bluebird/-/bluebird-2.9.34.tgz#2f7b4ec80216328a9fddebdf69c8d4942feff7d8" integrity sha1-L3tOyAIWMoqf3evfacjUlC/v99g= -bluebird@^3.5.0, bluebird@^3.5.1: +bluebird@^3.5.0, bluebird@^3.5.1, bluebird@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.2.tgz#1be0908e054a751754549c270489c1505d4ab15a" integrity sha512-dhHTWMI7kMx5whMQntl7Vr9C6BvV10lFXDAasnqnrMYhXVCzzk6IO9Fo2L75jXHT07WrOngL1WDXOp+yYS91Yg== @@ -14225,6 +14225,16 @@ pbkdf2@^3.0.3: safe-buffer "^5.0.1" sha.js "^2.4.8" +pdf2json@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/pdf2json/-/pdf2json-1.1.7.tgz#a09d705ce64d82cbc7d0473d1424963f751bec32" + integrity sha1-oJ1wXOZNgsvH0Ec9FCSWP3Ub7DI= + dependencies: + async "^2.0.1" + lodash "^4.15.0" + optimist "^0.6.1" + xmldom "^0.1.22" + pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -19837,7 +19847,7 @@ xmlbuilder@~9.0.1: resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= -xmldom@^0.1.27: +xmldom@^0.1.22, xmldom@^0.1.27: version "0.1.27" resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" integrity sha1-1QH5ezvbQDr4757MIFcxh6rawOk=
547e20630847a93e148a162005dbdd99c961eb4c
2019-04-12 23:34:32
ronthomas345
docs(awesome-gatsby): Adding 12 Factor GatsbyJS Applications Article to awesome Gatsby (#13281)
false
Adding 12 Factor GatsbyJS Applications Article to awesome Gatsby (#13281)
docs
diff --git a/docs/docs/awesome-gatsby.md b/docs/docs/awesome-gatsby.md index 3b5bd4e6977c2..e011e6234c121 100644 --- a/docs/docs/awesome-gatsby.md +++ b/docs/docs/awesome-gatsby.md @@ -68,6 +68,7 @@ See the [library of official and community plugins](/plugins/) - [Build a Coffee Shop Website w/ Gatsby, Contentful, SnipCard & Formspree](https://www.youtube.com/watch?v=oAVhEPey_qA) - [Why I used GatsbyJS](https://medium.com/@jameshunt.co/why-i-used-gatsbyjs-70bbb0f5c4a7) - [Introducing Dashbored — Generate Static Dashboards Using Gatsby](https://medium.com/planes-agency/introducing-dashbored-62550a028fcc) +- [12 Factor Applications with GatsbyJS](https://medium.com/@wonderboymusic/12-factor-applications-with-gatsbyjs-ef8a2b1f883a) ### German
99e237ad3841872d8f879b6bba3ce27bf259b51f
2018-10-02 20:26:33
Brittany Chiang
feat(www/showcase): Add Brittany Chiang (#8690)
false
Add Brittany Chiang (#8690)
feat
diff --git a/docs/sites.yml b/docs/sites.yml index beffed8b3b9fe..06e97685fcd28 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -2692,12 +2692,14 @@ - Travel built_by: Orestis Ioannou featured: false -- title: Kelvin Kamau - main_url: "https://www.kelvinkamau.app/" - url: "https://www.kelvinkamau.app/" +- title: Brittany Chiang + main_url: https://brittanychiang.com/ + url: https://brittanychiang.com/ + source_url: https://github.com/bchiang7/v4 description: > - Official Website of a maker and software artisan in Kenya. + Personal website and portfolio of Brittany Chiang built with Gatsby v2 categories: - Portfolio - - Miscellaneous + built_by: Brittany Chiang + built_by_url: https://github.com/bchiang7 featured: false
351bd430a9aec55ad8ec2e436f3b79c6aa88a7f9
2019-07-24 02:17:31
Jarmo Isotalo
chore(telemetry): Clean up error sanitization (#15909)
false
Clean up error sanitization (#15909)
chore
diff --git a/packages/gatsby-telemetry/src/__tests__/error-helpers.js b/packages/gatsby-telemetry/src/__tests__/error-helpers.js index 70cc031571ce1..481fd03ed573d 100644 --- a/packages/gatsby-telemetry/src/__tests__/error-helpers.js +++ b/packages/gatsby-telemetry/src/__tests__/error-helpers.js @@ -1,8 +1,4 @@ -const { - sanitizeErrors, - sanitizeError, - cleanPaths, -} = require(`../error-helpers`) +const { sanitizeError, cleanPaths } = require(`../error-helpers`) describe(`Errors Helpers`, () => { describe(`sanitizeError`, () => { @@ -46,7 +42,7 @@ describe(`Errors Helpers`, () => { expect(e.message).toEqual(errormessage) expect(e.stack).toEqual(expect.stringContaining(process.cwd())) - const sanitizedErrorString = sanitizeErrors(e)[0] + const sanitizedErrorString = sanitizeError(e) expect(sanitizedErrorString).toEqual( expect.stringContaining(errormessage) diff --git a/packages/gatsby-telemetry/src/error-helpers.js b/packages/gatsby-telemetry/src/error-helpers.js index 2c742cef8b91d..313ee4aae7736 100644 --- a/packages/gatsby-telemetry/src/error-helpers.js +++ b/packages/gatsby-telemetry/src/error-helpers.js @@ -19,8 +19,6 @@ const cleanPaths = (str, separator = sep) => { return str } -const ensureArray = value => [].concat(value) - // Takes an Error and returns a sanitized JSON String const sanitizeError = (error, pathSeparator = sep) => { // Convert Buffers to Strings @@ -40,14 +38,7 @@ const sanitizeError = (error, pathSeparator = sep) => { return cleanPaths(errorString, pathSeparator) } -// error could be Error or [Error] -const sanitizeErrors = error => { - const errors = ensureArray(error) - return errors.map(error => sanitizeError(error)) -} - module.exports = { sanitizeError, - sanitizeErrors, cleanPaths, } diff --git a/packages/gatsby-telemetry/src/telemetry.js b/packages/gatsby-telemetry/src/telemetry.js index 456b340496f3b..977602e5b7853 100644 --- a/packages/gatsby-telemetry/src/telemetry.js +++ b/packages/gatsby-telemetry/src/telemetry.js @@ -1,6 +1,6 @@ const uuidv4 = require(`uuid/v4`) const EventStorage = require(`./event-storage`) -const { sanitizeErrors, cleanPaths } = require(`./error-helpers`) +const { cleanPaths } = require(`./error-helpers`) const ci = require(`ci-info`) const os = require(`os`) const { join, sep } = require(`path`) @@ -119,12 +119,30 @@ module.exports = class AnalyticsTracker { delete this.metadataCache[type] const eventType = `CLI_ERROR_${type}` + this.formatErrorAndStoreEvent(eventType, lodash.merge({}, tags, decoration)) + } + + captureBuildError(type, tags = {}) { + if (!this.isTrackingEnabled()) { + return + } + const decoration = this.metadataCache[type] + delete this.metadataCache[type] + const eventType = `BUILD_ERROR_${type}` + + this.formatErrorAndStoreEvent(eventType, lodash.merge({}, tags, decoration)) + } + + formatErrorAndStoreEvent(eventType, tags) { if (tags.error) { // `error` ought to have been `errors` but is `error` in the database if (Array.isArray(tags.error)) { const { error, ...restOfTags } = tags error.forEach(err => { - this.captureError(type, { error: err, ...restOfTags }) + this.formatErrorAndStoreEvent(eventType, { + error: err, + ...restOfTags, + }) }) return } @@ -142,23 +160,7 @@ module.exports = class AnalyticsTracker { delete tags.error } - this.buildAndStoreEvent(eventType, lodash.merge({}, tags, decoration)) - } - - captureBuildError(type, tags = {}) { - if (!this.isTrackingEnabled()) { - return - } - const decoration = this.metadataCache[type] - delete this.metadataCache[type] - const eventType = `BUILD_ERROR_${type}` - - if (tags.error) { - // `error` ought to have been `errors` but is `error` in the database - tags.error = sanitizeErrors(tags.error) - } - - this.buildAndStoreEvent(eventType, lodash.merge({}, tags, decoration)) + this.buildAndStoreEvent(eventType, tags) } buildAndStoreEvent(eventType, tags) {
b860b5b4d3e2c238bd6c9f51b1214f8f6047e15c
2019-03-29 17:08:46
William Neill
chore(showcase): Add OneDeck to showcase (#12894)
false
Add OneDeck to showcase (#12894)
chore
diff --git a/docs/sites.yml b/docs/sites.yml index 1186d78e4678c..96f786ffa592a 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -5136,3 +5136,14 @@ built_by: Ariadne Digital built_by_url: https://www.ariadnedigital.it featured: false +- title: OneDeck + main_url: https://www.onedeck.co + url: https://www.onedeck.co + description: > + OneDeck is a simple yet powerful tool for creating and sharing your one-page investment summary in under 10 minutes. + categories: + - Finance + - Technology + built_by: William Neill + built_by_url: https://twitter.com/williamneill + featured: false
44df5126d8d48b0df9697ce90c77d23d123a7394
2018-08-30 03:59:42
Mike Allanson
chore(release): Publish
false
Publish
chore
diff --git a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md index 629fba7e35243..ff2a1eaf9de75 100644 --- a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md +++ b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +<a name="2.0.2-rc.2"></a> + +## [2.0.2-rc.2](https://github.com/gatsbyjs/gatsby/compare/babel-plugin-remove-graphql-queries@[email protected]) (2018-08-29) + +**Note:** Version bump only for package babel-plugin-remove-graphql-queries + <a name="2.0.2-rc.1"></a> ## [2.0.2-rc.1](https://github.com/gatsbyjs/gatsby/compare/babel-plugin-remove-graphql-queries@[email protected]) (2018-08-29) diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json index 7e5d5af214b63..60cd2ee7dc632 100644 --- a/packages/babel-plugin-remove-graphql-queries/package.json +++ b/packages/babel-plugin-remove-graphql-queries/package.json @@ -1,6 +1,6 @@ { "name": "babel-plugin-remove-graphql-queries", - "version": "2.0.2-rc.1", + "version": "2.0.2-rc.2", "author": "Jason Quense <[email protected]>", "devDependencies": { "@babel/cli": "^7.0.0", diff --git a/packages/gatsby-plugin-typescript/CHANGELOG.md b/packages/gatsby-plugin-typescript/CHANGELOG.md index 8859332ad6d02..ea5365ae4a8bd 100644 --- a/packages/gatsby-plugin-typescript/CHANGELOG.md +++ b/packages/gatsby-plugin-typescript/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-rc.3"></a> + +# [2.0.0-rc.3](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typescript/compare/[email protected]@2.0.0-rc.3) (2018-08-29) + +**Note:** Version bump only for package gatsby-plugin-typescript + <a name="2.0.0-rc.2"></a> # [2.0.0-rc.2](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typescript/compare/[email protected]@2.0.0-rc.2) (2018-08-29) diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json index 61b90e451a8f6..746c1687096c9 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typescript", "description": "Adds TypeScript support to Gatsby", - "version": "2.0.0-rc.2", + "version": "2.0.0-rc.3", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "dependencies": { "@babel/preset-typescript": "^7.0.0", "@babel/runtime": "^7.0.0", - "babel-plugin-remove-graphql-queries": "^2.0.2-rc.1" + "babel-plugin-remove-graphql-queries": "^2.0.2-rc.2" }, "devDependencies": { "@babel/cli": "^7.0.0", diff --git a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md index 23d990dc4d609..7a3e933f46001 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. +<a name="2.0.0-rc.2"></a> + +# [2.0.0-rc.2](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter/compare/gatsby-transformer-javascript-frontmatter@2.0.0-rc.1...gatsby-transformer-javascript-frontmatter@2.0.0-rc.2) (2018-08-29) + +**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter + <a name="2.0.0-rc.1"></a> # [2.0.0-rc.1](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter/compare/gatsby-transformer-javascript-frontmatter@2.0.0-rc.0...gatsby-transformer-javascript-frontmatter@2.0.0-rc.1) (2018-08-29) diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json index e2cc6d0a597da..c24ef1e674626 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.0.0-rc.1", + "version": "2.0.0-rc.2", "author": "Jacob Bolda <[email protected]>", "dependencies": { "@babel/parser": "^7.0.0", diff --git a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md index bd18ed36ba2f9..4d0dc9a0f4409 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. +<a name="2.1.1-rc.2"></a> + +## [2.1.1-rc.2](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-static-exports/compare/gatsby-transformer-javascript-static-exports@2.1.1-rc.1...gatsby-transformer-javascript-static-exports@2.1.1-rc.2) (2018-08-29) + +**Note:** Version bump only for package gatsby-transformer-javascript-static-exports + <a name="2.1.1-rc.1"></a> ## [2.1.1-rc.1](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-static-exports/compare/gatsby-transformer-javascript-static-exports@2.1.1-rc.0...gatsby-transformer-javascript-static-exports@2.1.1-rc.1) (2018-08-29) diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json index 286453ce7dd6e..df53c292819c4 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.1.1-rc.1", + "version": "2.1.1-rc.2", "author": "Jacob Bolda <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 4a9e96703ab45..4af0d7476eecc 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-rc.4"></a> + +# [2.0.0-rc.4](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-rc.4) (2018-08-29) + +**Note:** Version bump only for package gatsby + <a name="2.0.0-rc.3"></a> # [2.0.0-rc.3](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-rc.3) (2018-08-29) diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 0c27c6e0f285c..8225c877b15bc 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.0-rc.3", + "version": "2.0.0-rc.4", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js" @@ -29,7 +29,7 @@ "babel-plugin-add-module-exports": "^0.2.1", "babel-plugin-dynamic-import-node": "^1.2.0", "babel-plugin-macros": "^2.4.0", - "babel-plugin-remove-graphql-queries": "^2.0.2-rc.1", + "babel-plugin-remove-graphql-queries": "^2.0.2-rc.2", "better-queue": "^3.8.6", "bluebird": "^3.5.0", "chalk": "^2.3.2",
b569ae53fb87b562e3d1ac33cf2e826be928e829
2019-02-07 02:36:25
David Bailey
docs: clarify how to remove SW (#11540)
false
clarify how to remove SW (#11540)
docs
diff --git a/docs/docs/add-offline-support-with-a-service-worker.md b/docs/docs/add-offline-support-with-a-service-worker.md index 731d27deb9b8e..c0d9fd11303aa 100644 --- a/docs/docs/add-offline-support-with-a-service-worker.md +++ b/docs/docs/add-offline-support-with-a-service-worker.md @@ -74,6 +74,10 @@ exports.registerServiceWorker = () => true That's all! Gatsby will register your custom service worker. +### Removing the service worker + +If you would like to fully remove the service worker from your site, you can use the plugin `gatsby-plugin-remove-serviceworker` in place of `gatsby-plugin-offline`. See [the README for `gatsby-plugin-offline`](/packages/gatsby-plugin-offline/#remove) for instructions how to do this. + ## References - [Service Workers: an Introduction](https://developers.google.com/web/fundamentals/primers/service-workers/) diff --git a/packages/gatsby-plugin-offline/README.md b/packages/gatsby-plugin-offline/README.md index dc4fee30e7645..0daac0c7bf3ac 100644 --- a/packages/gatsby-plugin-offline/README.md +++ b/packages/gatsby-plugin-offline/README.md @@ -68,7 +68,14 @@ const options = { If you want to remove `gatsby-plugin-offline` from your site at a later point, substitute it with [`gatsby-plugin-remove-serviceworker`](https://www.npmjs.com/package/gatsby-plugin-remove-serviceworker) -to safely remove the service worker: +to safely remove the service worker. First, install the new package: + +```bash +npm install gatsby-plugin-remove-serviceworker +npm uninstall gatsby-plugin-offline +``` + +Then, update your `gatsby-config.js`: ```diff:title=gatsby-config.js plugins: [
a9f9a23705edaf393466b30bc89546b59de59158
2020-11-27 23:39:57
Kyle Mathews
fix(gatsby): handle in dev-ssr when a page is deleted (#28325)
false
handle in dev-ssr when a page is deleted (#28325)
fix
diff --git a/integration-tests/ssr/__tests__/ssr.js b/integration-tests/ssr/__tests__/ssr.js index bde93d15b9c0a..248426f972cec 100644 --- a/integration-tests/ssr/__tests__/ssr.js +++ b/integration-tests/ssr/__tests__/ssr.js @@ -36,20 +36,20 @@ describe(`SSR`, () => { `http://localhost:8000/bad-page/` ).then(res => res.text()) expect(rawDevHtml).toMatchSnapshot() - // fs.remove(dest) + fs.remove(dest) - // // After the page is gone, it'll 404. - // await new Promise(resolve => { - // setTimeout(() => { - // const testInterval = setInterval(() => { - // fetch(pageUrl).then(res => { - // if (res.status === 404) { - // clearInterval(testInterval) - // resolve() - // } - // }) - // }, 400) - // }, 400) - // }) + // After the page is gone, it'll 404. + await new Promise(resolve => { + setTimeout(() => { + const testInterval = setInterval(() => { + fetch(pageUrl).then(res => { + if (res.status === 404) { + clearInterval(testInterval) + resolve() + } + }) + }, 400) + }, 400) + }) }) }) diff --git a/packages/gatsby/src/utils/dev-ssr/render-dev-html.ts b/packages/gatsby/src/utils/dev-ssr/render-dev-html.ts index 8329db9abf936..f3e811a00562e 100644 --- a/packages/gatsby/src/utils/dev-ssr/render-dev-html.ts +++ b/packages/gatsby/src/utils/dev-ssr/render-dev-html.ts @@ -135,7 +135,13 @@ export const renderDevHTML = ({ createServerVisitedPage(pageObj.componentChunkName) // Ensure the query has been run and written out. - await getPageDataExperimental(pageObj.path) + try { + await getPageDataExperimental(pageObj.path) + } catch { + // If we can't get the page, it was probably deleted recently + // so let's just do a 404 page. + return reject(`404 page`) + } // Wait for public/render-page.js to update w/ the page component. const found = await ensurePathComponentInSSRBundle(pageObj, directory) @@ -158,8 +164,8 @@ export const renderDevHTML = ({ directory, isClientOnlyPage, }) - resolve(htmlString) + return resolve(htmlString) } catch (error) { - reject(error) + return reject(error) } })
a3e72b97f8f66486b88424b9e643a74de247f20a
2020-10-14 15:58:48
Lennart
chore(gatsby-cli): Change `setErrorMap` & `IErrorMapEntry` type (#27434)
false
Change `setErrorMap` & `IErrorMapEntry` type (#27434)
chore
diff --git a/packages/gatsby-cli/src/reporter/reporter.ts b/packages/gatsby-cli/src/reporter/reporter.ts index 63335c0ff0c57..7a90aa6b72b1e 100644 --- a/packages/gatsby-cli/src/reporter/reporter.ts +++ b/packages/gatsby-cli/src/reporter/reporter.ts @@ -42,9 +42,12 @@ class Reporter { /** * Set a custom error map to the reporter. This allows * the reporter to extend the internal error map + * + * Please note: The entered IDs ideally should be different from the ones we internally use: + * https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-cli/src/structured-errors/error-map.ts */ - setErrorMap = (entry: Record<ErrorId, IErrorMapEntry>): void => { + setErrorMap = (entry: Record<string, IErrorMapEntry>): void => { this.errorMap = { ...this.errorMap, ...entry, diff --git a/packages/gatsby-cli/src/structured-errors/error-map.ts b/packages/gatsby-cli/src/structured-errors/error-map.ts index 744812624771a..357996674cf8e 100644 --- a/packages/gatsby-cli/src/structured-errors/error-map.ts +++ b/packages/gatsby-cli/src/structured-errors/error-map.ts @@ -505,8 +505,9 @@ export const defaultError = errorMap[``] export interface IErrorMapEntry { text: (context) => string - level: Level - type?: Type + // keyof typeof is used for these enums so that the public facing API (e.g. used by setErrorMap) doesn't rely on enum but gives an union + level: keyof typeof Level + type?: keyof typeof Type category?: ErrorCategory docsUrl?: string }
ee2b0aa1ef98675506cdff41ff5e94bb92549a99
2022-08-03 19:35:24
Francesco Agnoletto
chore(gatsby): convert babel-loader-helpers to typescript (#36237)
false
convert babel-loader-helpers to typescript (#36237)
chore
diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index e1a3975cb5743..e1b62e3bf8c84 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -175,6 +175,7 @@ "@babel/cli": "^7.15.4", "@babel/helper-plugin-utils": "^7.14.5", "@babel/register": "^7.15.3", + "@types/babel-core": "^6.25.7", "@types/eslint": "^8.2.1", "@types/express": "^4.17.13", "@types/express-http-proxy": "^1.6.3", diff --git a/packages/gatsby/src/redux/__tests__/__snapshots__/babelrc.ts.snap b/packages/gatsby/src/redux/__tests__/__snapshots__/babelrc.ts.snap index f61e65eecf88c..c83032f991d03 100644 --- a/packages/gatsby/src/redux/__tests__/__snapshots__/babelrc.ts.snap +++ b/packages/gatsby/src/redux/__tests__/__snapshots__/babelrc.ts.snap @@ -153,20 +153,26 @@ Array [ exports[`Babelrc actions/reducer allows merging config items 2`] = ` Array [ Object { + "dirname": "hi", "file": Object { + "request": "hello", "resolved": "hi", }, "options": Object { "wat": 1, }, + "value": [Function], }, Object { + "dirname": "hi2", "file": Object { + "request": "hello2", "resolved": "hi2", }, "options": Object { "wat": 2, }, + "value": [Function], }, ] `; diff --git a/packages/gatsby/src/redux/__tests__/babelrc.ts b/packages/gatsby/src/redux/__tests__/babelrc.ts index 4a14e06b5f959..7734284ff4e65 100644 --- a/packages/gatsby/src/redux/__tests__/babelrc.ts +++ b/packages/gatsby/src/redux/__tests__/babelrc.ts @@ -77,9 +77,9 @@ describe(`Babelrc actions/reducer`, () => { it(`sets default presets/plugins if there's no userland babelrc`, () => { const fakeResolver = (moduleName): string => `/path/to/module/${moduleName}` - const babel = { createConfigItem: jest.fn() } + const babel = { createConfigItem: jest.fn() } as any - prepareOptions(babel, { stage: `test` }, fakeResolver) + prepareOptions(babel, { stage: `test` as any }, fakeResolver as any) expect(babel.createConfigItem.mock.calls).toMatchSnapshot() }) @@ -104,7 +104,7 @@ describe(`Babelrc actions/reducer`, () => { { name: `test` } ) let state = babelrcReducer(undefined, action) - expect(state.stages.develop.options.sourceMaps).toBe(`inline`) + expect(state.stages.develop.options!.sourceMaps).toBe(`inline`) const updateAction = actions.setBabelOptions( { options: { sourceMaps: true } }, @@ -112,7 +112,7 @@ describe(`Babelrc actions/reducer`, () => { ) state = babelrcReducer(state, updateAction) - expect(state.stages.develop.options.sourceMaps).toBe(true) + expect(state.stages.develop.options!.sourceMaps).toBe(true) }) it(`allows setting options on a particular stage`, () => { @@ -121,16 +121,28 @@ describe(`Babelrc actions/reducer`, () => { { name: `test` } ) const state = babelrcReducer(undefined, action) - expect(state.stages.develop.options.sourceMaps).toBe(`inline`) - expect(state.stages[`develop-html`].options.sourceMaps).toBe(undefined) + expect(state.stages.develop.options!.sourceMaps).toBe(`inline`) + expect(state.stages[`develop-html`].options!.sourceMaps).toBe(undefined) }) it(`allows merging config items`, () => { - const babel = { createConfigItem: jest.fn() } + const babel = { createConfigItem: jest.fn() } as any // This merges in new change. mergeConfigItemOptions({ - items: [{ options: { wat: 1 }, file: { resolved: `hi` } }], - itemToMerge: { options: { wat: 2 }, file: { resolved: `hi` } }, + items: [ + { + value: (): null => null, + dirname: `hi`, + options: { wat: 1 }, + file: { resolved: `hi`, request: `hello` }, + }, + ], + itemToMerge: { + value: (): null => null, + dirname: `hi`, + options: { wat: 2 }, + file: { resolved: `hi`, request: `hello` }, + }, type: `plugin`, babel, }) @@ -138,8 +150,20 @@ describe(`Babelrc actions/reducer`, () => { expect( mergeConfigItemOptions({ - items: [{ options: { wat: 1 }, file: { resolved: `hi` } }], - itemToMerge: { options: { wat: 2 }, file: { resolved: `hi2` } }, + items: [ + { + value: (): null => null, + dirname: `hi`, + options: { wat: 1 }, + file: { resolved: `hi`, request: `hello` }, + }, + ], + itemToMerge: { + value: (): null => null, + dirname: `hi2`, + options: { wat: 2 }, + file: { resolved: `hi2`, request: `hello2` }, + }, type: `plugin`, babel, }) diff --git a/packages/gatsby/src/redux/types.ts b/packages/gatsby/src/redux/types.ts index 98dae6c021528..86b61932829f3 100644 --- a/packages/gatsby/src/redux/types.ts +++ b/packages/gatsby/src/redux/types.ts @@ -1,5 +1,5 @@ import type { TrailingSlash } from "gatsby-page-utils" -import { IProgram } from "../commands/types" +import { IProgram, Stage } from "../commands/types" import { GraphQLFieldExtensionDefinition } from "../schema/extensions" import { DocumentNode, @@ -190,25 +190,19 @@ export interface IGatsbyCompleteJobV2 { export interface IPlugin { name: string - options: Record<string, any> + options: Record<string, unknown> } export interface IBabelStage { plugins: Array<IPlugin> presets: Array<IPlugin> - options: { + options?: { cacheDirectory: boolean sourceType: string sourceMaps?: string } } -type BabelStageKeys = - | "develop" - | "develop-html" - | "build-html" - | "build-javascript" - export interface IStateProgram extends IProgram { extensions: Array<string> browserslist: Array<string> @@ -322,7 +316,7 @@ export interface IGatsbyState { redirects: Array<IRedirect> babelrc: { stages: { - [key in BabelStageKeys]: IBabelStage + [key in Stage]: IBabelStage } } schemaCustomization: { @@ -468,7 +462,7 @@ export interface IApiFinishedAction { interface ISetBabelPluginAction { type: `SET_BABEL_PLUGIN` payload: { - stage: BabelStageKeys + stage: Stage name: IPlugin["name"] options: IPlugin["options"] } @@ -477,7 +471,7 @@ interface ISetBabelPluginAction { interface ISetBabelPresetAction { type: `SET_BABEL_PRESET` payload: { - stage: BabelStageKeys + stage: Stage name: IPlugin["name"] options: IPlugin["options"] } @@ -486,7 +480,7 @@ interface ISetBabelPresetAction { interface ISetBabelOptionsAction { type: `SET_BABEL_OPTIONS` payload: { - stage: BabelStageKeys + stage: Stage name: IPlugin["name"] options: IPlugin["options"] } diff --git a/packages/gatsby/src/utils/babel-loader-helpers.js b/packages/gatsby/src/utils/babel-loader-helpers.ts similarity index 65% rename from packages/gatsby/src/utils/babel-loader-helpers.js rename to packages/gatsby/src/utils/babel-loader-helpers.ts index 3366c7a6f86ab..c4d257d184b95 100644 --- a/packages/gatsby/src/utils/babel-loader-helpers.js +++ b/packages/gatsby/src/utils/babel-loader-helpers.ts @@ -1,7 +1,21 @@ -const path = require(`path`) -const _ = require(`lodash`) +import path from "path" +import _ from "lodash" +import Babel, { + ConfigItem, + PluginItem, + CreateConfigItemOptions, +} from "@babel/core" + +import { IBabelStage } from "../redux/types" +import { Stage } from "../commands/types" + +interface ILoadCachedConfigReturnType { + stages: { + test: IBabelStage + } +} -const loadCachedConfig = () => { +const loadCachedConfig = (): ILoadCachedConfigReturnType => { let pluginBabelConfig = { stages: { test: { plugins: [], presets: [] }, @@ -16,7 +30,7 @@ const loadCachedConfig = () => { return pluginBabelConfig } -const getCustomOptions = stage => { +export const getCustomOptions = (stage: Stage): IBabelStage["options"] => { const pluginBabelConfig = loadCachedConfig() return pluginBabelConfig.stages[stage].options } @@ -30,11 +44,15 @@ const getCustomOptions = stage => { */ const configItemsMemoCache = new Map() -const prepareOptions = ( - babel, - customOptions = {}, - resolve = require.resolve -) => { +interface ICustomOptions extends Record<string, unknown> { + stage: Stage +} + +export const prepareOptions = ( + babel: typeof Babel, + customOptions: ICustomOptions, + resolve: RequireResolve = require.resolve +): Array<Array<PluginItem>> => { const { stage, reactRuntime, @@ -94,7 +112,7 @@ const prepareOptions = ( ) } - const requiredPresets = [] + const requiredPresets: Array<PluginItem> = [] // Stage specific plugins to add if ( @@ -117,7 +135,7 @@ const prepareOptions = ( } // Fallback preset - const fallbackPresets = [] + const fallbackPresets: Array<ConfigItem> = [] fallbackPresets.push( babel.createConfigItem( @@ -136,24 +154,27 @@ const prepareOptions = ( ) // Go through babel state and create config items for presets/plugins from. - const reduxPlugins = [] - const reduxPresets = [] - pluginBabelConfig.stages[stage].plugins.forEach(plugin => { - reduxPlugins.push( - babel.createConfigItem([resolve(plugin.name), plugin.options], { - name: plugin.name, - type: `plugin`, - }) - ) - }) - pluginBabelConfig.stages[stage].presets.forEach(preset => { - reduxPresets.push( - babel.createConfigItem([resolve(preset.name), preset.options], { - name: preset.name, - type: `preset`, - }) - ) - }) + const reduxPlugins: Array<PluginItem> = [] + const reduxPresets: Array<PluginItem> = [] + + if (stage) { + pluginBabelConfig.stages[stage].plugins.forEach(plugin => { + reduxPlugins.push( + babel.createConfigItem([resolve(plugin.name), plugin.options], { + dirname: plugin.name, + type: `plugin`, + }) + ) + }) + pluginBabelConfig.stages[stage].presets.forEach(preset => { + reduxPresets.push( + babel.createConfigItem([resolve(preset.name), preset.options], { + dirname: preset.name, + type: `preset`, + }) + ) + }) + } const toReturn = [ reduxPresets, @@ -168,16 +189,18 @@ const prepareOptions = ( return toReturn } -const addRequiredPresetOptions = ( - babel, - presets, - options = {}, - resolve = require.resolve -) => { +export const addRequiredPresetOptions = ( + babel: typeof Babel, + presets: Array<ConfigItem>, + options: { stage?: Stage } = {}, + resolve: RequireResolve = require.resolve +): Array<PluginItem> => { // Always pass `stage` option to babel-preset-gatsby // (even if defined in custom babelrc) const gatsbyPresetResolved = resolve(`babel-preset-gatsby`) - const index = presets.findIndex(p => p.file.resolved === gatsbyPresetResolved) + const index = presets.findIndex( + p => p.file!.resolved === gatsbyPresetResolved + ) if (index !== -1) { presets[index] = babel.createConfigItem( @@ -191,17 +214,27 @@ const addRequiredPresetOptions = ( return presets } -const mergeConfigItemOptions = ({ items, itemToMerge, type, babel }) => { +export const mergeConfigItemOptions = ({ + items, + itemToMerge, + type, + babel, +}: { + items: Array<ConfigItem> + itemToMerge: ConfigItem + type: CreateConfigItemOptions["type"] + babel: typeof Babel +}): Array<ConfigItem> => { const index = _.findIndex( items, - i => i.file.resolved === itemToMerge.file.resolved + i => i.file?.resolved === itemToMerge.file?.resolved ) // If this exist, merge the options, otherwise, add it to the array if (index !== -1) { items[index] = babel.createConfigItem( [ - itemToMerge.file.resolved, + itemToMerge.file?.resolved, _.merge({}, items[index].options, itemToMerge.options), ], { @@ -214,10 +247,3 @@ const mergeConfigItemOptions = ({ items, itemToMerge, type, babel }) => { return items } - -exports.getCustomOptions = getCustomOptions - -// Export helper functions for testing -exports.prepareOptions = prepareOptions -exports.mergeConfigItemOptions = mergeConfigItemOptions -exports.addRequiredPresetOptions = addRequiredPresetOptions diff --git a/packages/gatsby/src/utils/babel-loader.js b/packages/gatsby/src/utils/babel-loader.js index e3a431b7fe8aa..a00bed547ae01 100644 --- a/packages/gatsby/src/utils/babel-loader.js +++ b/packages/gatsby/src/utils/babel-loader.js @@ -1,11 +1,12 @@ const babelLoader = require(`babel-loader`) -const { +import { prepareOptions, getCustomOptions, mergeConfigItemOptions, addRequiredPresetOptions, -} = require(`./babel-loader-helpers`) +} from "./babel-loader-helpers" + const { getBrowsersList } = require(`./browserslist`) /** diff --git a/yarn.lock b/yarn.lock index b8839277ab6cd..3ebfbc97cfeec 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4333,6 +4333,44 @@ resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-4.2.0.tgz#14264692a9d6e2fa4db3df5e56e94b5e25647ac0" integrity sha512-iIgQNzCm0v7QMhhe4Jjn9uRh+I6GoPmt03CbEtwx3ao8/EfoQcmgtqH4vQ5Db/lxiIGaWDv6nwvunuh0RyX0+A== +"@types/babel-core@^6.25.7": + version "6.25.7" + resolved "https://registry.yarnpkg.com/@types/babel-core/-/babel-core-6.25.7.tgz#f9c22d5c085686da2f6ffbdae778edb3e6017671" + integrity sha512-WPnyzNFVRo6bxpr7bcL27qXtNKNQ3iToziNBpibaXHyKGWQA0+tTLt73QQxC/5zzbM544ih6Ni5L5xrck6rGwg== + dependencies: + "@types/babel-generator" "*" + "@types/babel-template" "*" + "@types/babel-traverse" "*" + "@types/babel-types" "*" + "@types/babylon" "*" + +"@types/babel-generator@*": + version "6.25.5" + resolved "https://registry.yarnpkg.com/@types/babel-generator/-/babel-generator-6.25.5.tgz#b02723fd589349b05524376e5530228d3675d878" + integrity sha512-lhbwMlAy5rfWG+R6l8aPtJdEFX/kcv6LMFIuvUb0i89ehqgD24je9YcB+0fRspQhgJGlEsUImxpw4pQeKS/+8Q== + dependencies: + "@types/babel-types" "*" + +"@types/babel-template@*": + version "6.25.2" + resolved "https://registry.yarnpkg.com/@types/babel-template/-/babel-template-6.25.2.tgz#3c4cde02dbcbbf461a58d095a9f69f35eabd5f06" + integrity sha512-QKtDQRJmAz3Y1HSxfMl0syIHebMc/NnOeH/8qeD0zjgU2juD0uyC922biMxCy5xjTNvHinigML2l8kxE8eEBmw== + dependencies: + "@types/babel-types" "*" + "@types/babylon" "*" + +"@types/babel-traverse@*": + version "6.25.7" + resolved "https://registry.yarnpkg.com/@types/babel-traverse/-/babel-traverse-6.25.7.tgz#bc75fce23d8394534562a36a32dec94a54d11835" + integrity sha512-BeQiEGLnVzypzBdsexEpZAHUx+WucOMXW6srEWDkl4SegBlaCy+iBvRO+4vz6EZ+BNQg22G4MCdDdvZxf+jW5A== + dependencies: + "@types/babel-types" "*" + +"@types/babel-types@*": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/babel-types/-/babel-types-7.0.11.tgz#263b113fa396fac4373188d73225297fb86f19a9" + integrity sha512-pkPtJUUY+Vwv6B1inAz55rQvivClHJxc9aVEPPmaq2cbyeMLCiDpbKpcKyX4LAwpNGi+SHBv0tHv6+0gXv0P2A== + "@types/babel__code-frame@^7.0.2": version "7.0.2" resolved "https://registry.yarnpkg.com/@types/babel__code-frame/-/babel__code-frame-7.0.2.tgz#e0c0f1648cbc09a9d4e5b4ed2ae9a6f7c8f5aeb0" @@ -4371,6 +4409,13 @@ dependencies: "@babel/types" "^7.3.0" +"@types/babylon@*": + version "6.16.6" + resolved "https://registry.yarnpkg.com/@types/babylon/-/babylon-6.16.6.tgz#a1e7e01567b26a5ebad321a74d10299189d8d932" + integrity sha512-G4yqdVlhr6YhzLXFKy5F7HtRBU8Y23+iWy7UKthMq/OSQnL1hbsoeXESQ2LY8zEDlknipDG3nRGhUC9tkwvy/w== + dependencies: + "@types/babel-types" "*" + "@types/better-queue@^3.8.2": version "3.8.2" resolved "https://registry.yarnpkg.com/@types/better-queue/-/better-queue-3.8.2.tgz#911a86863c1dd89a42308e03ee8d25ab7f6bafa7"
6329ad2996bfa203a460c0a787014acaf1391c85
2018-08-09 21:20:53
Mike Allanson
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-link/CHANGELOG.md b/packages/gatsby-link/CHANGELOG.md index 0cc7cefa90e30..759cc3c197787 100644 --- a/packages/gatsby-link/CHANGELOG.md +++ b/packages/gatsby-link/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.19"></a> + +# [2.0.0-beta.19](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link/compare/[email protected]@2.0.0-beta.19) (2018-08-09) + +**Note:** Version bump only for package gatsby-link + <a name="2.0.0-beta.18"></a> # [2.0.0-beta.18](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link/compare/[email protected]@2.0.0-beta.18) (2018-08-09) diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index b206390daaf2f..e9d1b6443b7cf 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-link", "description": "An enhanced Link component for Gatsby sites with support for resource prefetching", - "version": "2.0.0-beta.18", + "version": "2.0.0-beta.19", "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 8cd7439576084..f69a7ba6f94ee 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.93"></a> + +# [2.0.0-beta.93](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-beta.93) (2018-08-09) + +**Note:** Version bump only for package gatsby + <a name="2.0.0-beta.92"></a> # [2.0.0-beta.92](https://github.com/gatsbyjs/gatsby/compare/[email protected]@2.0.0-beta.92) (2018-08-09) diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 18cce3b97b9f7..edf3df54ee8bf 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.92", + "version": "2.0.0-beta.93", "author": "Kyle Mathews <[email protected]>", "bin": { "gatsby": "./dist/bin/gatsby.js" @@ -66,7 +66,7 @@ "front-matter": "^2.1.0", "fs-extra": "^5.0.0", "gatsby-cli": "^2.0.0-beta.12", - "gatsby-link": "^2.0.0-beta.18", + "gatsby-link": "^2.0.0-beta.19", "gatsby-plugin-page-creator": "^2.0.0-beta.5", "gatsby-react-router-scroll": "^2.0.0-beta.8", "glob": "^7.1.1",
0c33ce06bce5e639d029797082ee513d6888e068
2020-01-29 00:13:00
Nicholas Capo
chore(benchmark): Add 8k size (#20683)
false
Add 8k size (#20683)
chore
diff --git a/scripts/build-benchmark.sh b/scripts/build-benchmark.sh index 9395373f6c574..4f6dc34d0f012 100755 --- a/scripts/build-benchmark.sh +++ b/scripts/build-benchmark.sh @@ -17,6 +17,7 @@ BENCHMARKS=( SIZES=( 512 4096 + 8192 32768 )
c0840867686283b97ca29c1ddeadbe1272de6947
2022-01-27 17:41:19
Sean Parmelee
fix(gatsby-plugin-fullstory): update snippet (#34583)
false
update snippet (#34583)
fix
diff --git a/packages/gatsby-plugin-fullstory/src/__tests__/__snapshots__/gatsby-ssr.js.snap b/packages/gatsby-plugin-fullstory/src/__tests__/__snapshots__/gatsby-ssr.js.snap index 9bb812c868d87..1eed0bf4873c0 100644 --- a/packages/gatsby-plugin-fullstory/src/__tests__/__snapshots__/gatsby-ssr.js.snap +++ b/packages/gatsby-plugin-fullstory/src/__tests__/__snapshots__/gatsby-ssr.js.snap @@ -25,9 +25,10 @@ window['_fs_namespace'] = 'FS'; g.consent=function(a){g(\\"consent\\",!arguments.length||a)}; g.identifyAccount=function(i,v){o='account';v=v||{};v.acctId=i;g(o,v)}; g.clearUserCookie=function(){}; + g.setVars=function(n, p){g('setVars',[n,p]);}; g._w={};y='XMLHttpRequest';g._w[y]=m[y];y='fetch';g._w[y]=m[y]; if(m[y])m[y]=function(){return g._w[y].apply(this,arguments)}; - g._v=\\"1.2.0\\"; + g._v=\\"1.3.0\\"; })(window,document,window['_fs_namespace'],'script','user'); ", } diff --git a/packages/gatsby-plugin-fullstory/src/gatsby-ssr.js b/packages/gatsby-plugin-fullstory/src/gatsby-ssr.js index da3c4b444cf19..4794729ce1ad1 100644 --- a/packages/gatsby-plugin-fullstory/src/gatsby-ssr.js +++ b/packages/gatsby-plugin-fullstory/src/gatsby-ssr.js @@ -24,9 +24,10 @@ window['_fs_namespace'] = 'FS'; g.consent=function(a){g("consent",!arguments.length||a)}; g.identifyAccount=function(i,v){o='account';v=v||{};v.acctId=i;g(o,v)}; g.clearUserCookie=function(){}; + g.setVars=function(n, p){g('setVars',[n,p]);}; g._w={};y='XMLHttpRequest';g._w[y]=m[y];y='fetch';g._w[y]=m[y]; if(m[y])m[y]=function(){return g._w[y].apply(this,arguments)}; - g._v="1.2.0"; + g._v="1.3.0"; })(window,document,window['_fs_namespace'],'script','user'); `, }}
4f7424a2736963946638556b4d9754e61697e485
2020-02-25 18:21:42
LB
fix(gatsby-theme-notes): fix notes failing tests (#21709)
false
fix notes failing tests (#21709)
fix
diff --git a/packages/gatsby-theme-notes/package.json b/packages/gatsby-theme-notes/package.json index 7743faa0ab540..1c98ca30f365b 100644 --- a/packages/gatsby-theme-notes/package.json +++ b/packages/gatsby-theme-notes/package.json @@ -45,6 +45,11 @@ "gatsby-source-filesystem": "^2.1.48", "is-present": "^1.0.0", "react-feather": "^1.1.6", - "theme-ui": "^0.2.49" + "theme-ui": "^0.2.49", + "@theme-ui/typography": "^0.2.46", + "typeface-merriweather": "0.0.72", + "typeface-montserrat": "0.0.75", + "typography-theme-wordpress-2016": "^0.16.19", + "deepmerge": "^4.2.2" } } diff --git a/packages/gatsby-theme-notes/src/gatsby-plugin-theme-ui/components.js b/packages/gatsby-theme-notes/src/gatsby-plugin-theme-ui/components.js deleted file mode 100644 index b6d9d50e5e5aa..0000000000000 --- a/packages/gatsby-theme-notes/src/gatsby-plugin-theme-ui/components.js +++ /dev/null @@ -1,27 +0,0 @@ -/** @jsx jsx */ -import { jsx } from "theme-ui" -import { preToCodeBlock } from "mdx-utils" -import PrismCodeBlock from "@theme-ui/prism" - -import headings from "../components/headings" - -const CodeBlock = preProps => { - const props = preToCodeBlock(preProps) - - if (props) { - const { codeString, ...restProps } = props - - return ( - <div sx={{ mb: 2 }}> - <PrismCodeBlock {...restProps}>{codeString}</PrismCodeBlock> - </div> - ) - } else { - return <pre {...preProps} /> - } -} - -export default { - pre: CodeBlock, - ...headings, -}
85c352c069ade7cf4b63df54e1bdc01f77e16e7f
2018-11-26 19:38:34
Lennart
fix(www): Remove multiple entries from sites tags (#10118)
false
Remove multiple entries from sites tags (#10118)
fix
diff --git a/docs/sites.yml b/docs/sites.yml index 79a33479e7966..2d5578b36a2e4 100644 --- a/docs/sites.yml +++ b/docs/sites.yml @@ -3422,7 +3422,8 @@ description: > Kings Valley Paving is an asphalt, paving and concrete company serving the commercial, residential and industrial sectors in the Greater Toronto Area. categories: - - Marketing, Construction, Paving + - Marketing + - Construction built_by: Michael Uloth built_by_url: https://www.michaeluloth.com featured: false @@ -3432,7 +3433,8 @@ description: > Peter Barrett is a Canadian baritone from Newfoundland and Labrador who performs opera and concert repertoire in Canada, the U.S. and around the world. categories: - - Portfolio, Music + - Portfolio + - Music built_by: Michael Uloth built_by_url: https://www.michaeluloth.com featured: false
41b4f8961f0741979a54b687a46227843e389776
2019-02-12 23:31:10
Dustin Schau
chore(release): Publish
false
Publish
chore
diff --git a/packages/gatsby-plugin-catch-links/CHANGELOG.md b/packages/gatsby-plugin-catch-links/CHANGELOG.md index 4483927d5aa13..f639fbb69e2b4 100644 --- a/packages/gatsby-plugin-catch-links/CHANGELOG.md +++ b/packages/gatsby-plugin-catch-links/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.0.11](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links/compare/[email protected]@2.0.11) (2019-02-12) + +**Note:** Version bump only for package gatsby-plugin-catch-links + ## [2.0.10](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links/compare/[email protected]@2.0.10) (2019-02-01) **Note:** Version bump only for package gatsby-plugin-catch-links diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json index cd60724293129..6ecfc0d754b19 100644 --- a/packages/gatsby-plugin-catch-links/package.json +++ b/packages/gatsby-plugin-catch-links/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-catch-links", "description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.", - "version": "2.0.10", + "version": "2.0.11", "author": "Kyle Mathews <[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 7b77108326b89..8979a03dd306a 100644 --- a/packages/gatsby-transformer-remark/CHANGELOG.md +++ b/packages/gatsby-transformer-remark/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.2.5](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark/compare/[email protected]@2.2.5) (2019-02-12) + +### Bug Fixes + +- **gatsby-transformer-remark:** restore behavior of serializing date-like fields to string ([#11716](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark/issues/11716)) ([29dee3f](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark/commit/29dee3f)) + ## [2.2.4](https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark/compare/[email protected]@2.2.4) (2019-02-04) **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 7255f72d59012..5d4eb2961410a 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.2.4", + "version": "2.2.5", "author": "Kyle Mathews <[email protected]>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues"
0571199ebc746b53b23a10360311c0f5ba33a275
2022-01-07 01:24:07
Josh Johnson
chore(gatsby): Give option to ignore output from workers and silence validate-engines (#34416)
false
Give option to ignore output from workers and silence validate-engines (#34416)
chore
diff --git a/packages/gatsby-worker/README.md b/packages/gatsby-worker/README.md index 0298beae27fc7..17572b56d02a0 100644 --- a/packages/gatsby-worker/README.md +++ b/packages/gatsby-worker/README.md @@ -29,6 +29,7 @@ const workerPool = new WorkerPool<typeof import("./worker")>( env: { CUSTOM_ENV_VAR_TO_SET_IN_WORKER: `foo`, }, + silent: false, } ) @@ -56,7 +57,9 @@ const workerPool = new WorkerPool<TypeOfWorkerModule>( numWorkers?: number // Additional env vars to set in worker. Worker will inherit env vars of parent process // as well as additional `GATSBY_WORKER_ID` env var (starting with "1" for first worker) - env?: Record<string, string> + env?: Record<string, string>, + // Whether or not the output from forked process should ignored. Defaults to `false` if not defined. + silent?: boolean, } ) ``` diff --git a/packages/gatsby-worker/src/index.ts b/packages/gatsby-worker/src/index.ts index 1d43864b93a72..a8ccd07f1881b 100644 --- a/packages/gatsby-worker/src/index.ts +++ b/packages/gatsby-worker/src/index.ts @@ -12,8 +12,12 @@ import { } from "./types" interface IWorkerOptions { + // number of workers to spawn, defaults to 1 numWorkers?: number + // environmental variables specific to the worker(s) env?: Record<string, string> + // whether or not output should be ignored + silent?: boolean } type WrapReturnOfAFunctionInAPromise< @@ -176,6 +180,7 @@ export class WorkerPool< }, // Suppress --debug / --inspect flags while preserving others (like --harmony). execArgv: process.execArgv.filter(v => !/^--(debug|inspect)/.test(v)), + silent: options && options.silent, }) const workerInfo: IWorkerInfo<keyof WorkerModuleExports> = { diff --git a/packages/gatsby/src/utils/validate-engines/index.ts b/packages/gatsby/src/utils/validate-engines/index.ts index 9c8cbe5e8a045..276e7c780c8f5 100644 --- a/packages/gatsby/src/utils/validate-engines/index.ts +++ b/packages/gatsby/src/utils/validate-engines/index.ts @@ -11,6 +11,7 @@ export async function validateEngines(directory: string): Promise<void> { // that OpenTracing config might make GATSBY_OPEN_TRACING_CONFIG_FILE: ``, }, + silent: true, } )