diff --git a/.eslintrc.js b/.eslintrc.js index e917e67b92867..0f24250a0acc8 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -100,9 +100,10 @@ module.exports = { ...TSEslint.configs.recommended.rules, // We should absolutely avoid using ts-ignore, but it's not always possible. // particular when a dependencies types are incorrect. - "@typescript-eslint/ban-ts-comment": { - "ts-ignore": "allow-with-description", - }, + "@typescript-eslint/ban-ts-comment": [ + "warn", + { "ts-ignore": "allow-with-description" } + ], // This rule is great. It helps us not throw on types for areas that are // easily inferrable. However we have a desire to have all function inputs // and outputs declaratively typed. So this let's us ignore the parameters @@ -125,22 +126,62 @@ module.exports = { }, }, ], + "camelcase": "off", + // TODO: These rules allow a lot of stuff and don't really enforce. If we want to apply our styleguide, we'd need to fix a lot of stuff "@typescript-eslint/naming-convention": [ + "error", { selector: "default", format: ["camelCase"], }, - { selector: "variable", format: ["camelCase", "UPPER_CASE"] }, { - selector: "parameter", - format: ["camelCase"], + selector: "variable", + format: ["camelCase", "UPPER_CASE", "PascalCase"], + leadingUnderscore: "allowSingleOrDouble", + trailingUnderscore: "allowSingleOrDouble", + }, + { + selector: "function", + format: ["camelCase", "PascalCase"], leadingUnderscore: "allow", - prefix: ["unstable_", ""], + }, + { + selector: "parameter", + format: ["camelCase", "PascalCase", "snake_case"], + leadingUnderscore: "allowSingleOrDouble", + }, + { + selector: "enumMember", + format: ["camelCase", "UPPER_CASE", "PascalCase"] }, { selector: "typeLike", format: ["PascalCase"], }, + { + selector: "typeAlias", + format: ["camelCase", "PascalCase"] + }, + { + selector: "property", + format: ["PascalCase", "UPPER_CASE", "camelCase", "snake_case"], + leadingUnderscore: "allowSingleOrDouble", + }, + { + selector: "objectLiteralProperty", + format: ["PascalCase", "UPPER_CASE", "camelCase", "snake_case"], + leadingUnderscore: "allowSingleOrDouble", + trailingUnderscore: "allowSingleOrDouble", + }, + { + selector: "enum", + format: ["PascalCase", "UPPER_CASE"] + }, + { + selector: "method", + format: ["PascalCase", "camelCase"], + leadingUnderscore: "allowSingleOrDouble", + }, { selector: "interface", format: ["PascalCase"], @@ -153,6 +194,7 @@ module.exports = { // mocking. At this point it's easier to have it off and just encourage // using top-level imports via code reviews. "@typescript-eslint/no-var-requires": "off", + "@typescript-eslint/no-extra-semi": "off", // This rule ensures that typescript types do not have semicolons // at the end of their lines, since our prettier setup is to have no semicolons // e.g., @@ -160,7 +202,6 @@ module.exports = { // - baz: string; // + baz: string // } - "@typescript-eslint/no-extra-semi": false, "@typescript-eslint/member-delimiter-style": [ "error", { @@ -205,7 +246,7 @@ module.exports = { ], settings: { react: { - version: "16.4.2", + version: "16.9.0", }, }, } diff --git a/benchmarks/source-agilitycms/package.json b/benchmarks/source-agilitycms/package.json index 3ddc362be10b3..db4fe765062dc 100644 --- a/benchmarks/source-agilitycms/package.json +++ b/benchmarks/source-agilitycms/package.json @@ -28,8 +28,8 @@ "gatsby-source-filesystem": "^2.2.1", "gatsby-transformer-sharp": "^2.4.1", "node-fetch": "^2.6.0", - "react": "^16.8.6", - "react-dom": "^16.8.6", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1", "truncate-html": "^1.0.2" }, @@ -43,4 +43,4 @@ "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" } -} +} \ No newline at end of file diff --git a/docs/tutorial/building-a-theme.md b/docs/tutorial/building-a-theme.md index ae264e1904f06..c1f3fa21b1336 100644 --- a/docs/tutorial/building-a-theme.md +++ b/docs/tutorial/building-a-theme.md @@ -107,8 +107,8 @@ You should now see the following dependencies in your `site/package.json`: "dependencies": { "gatsby": "^2.9.11", "gatsby-theme-events": "*", - "react": "^16.8.6", - "react-dom": "^16.8.6" + "react": "^17.0.0", + "react-dom": "^17.0.0" } } ``` @@ -155,14 +155,14 @@ The `gatsby-theme-events/package.json` file should now include the following: ```json:title=gatsby-theme-events/package.json { "peerDependencies": { - "gatsby": "^2.9.11", - "react": "^16.8.6", - "react-dom": "^16.8.6" + "gatsby": "^3.0.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "devDependencies": { - "gatsby": "^2.9.11", - "react": "^16.8.6", - "react-dom": "^16.8.6" + "gatsby": "^3.0.0", + "react": "^16.9.0", + "react-dom": "^16.9.0" } } ``` @@ -1335,13 +1335,13 @@ It's important to namespace your theme. It helps differentiate between published }, "peerDependencies": { "gatsby": "^2.13.19", - "react": "^16.8.6", - "react-dom": "^16.8.6" + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "devDependencies": { "gatsby": "^2.13.19", - "react": "^16.8.6", - "react-dom": "^16.8.6" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "dependencies": { "@emotion/react": "^11.0.0", diff --git a/e2e-tests/gatsby-image/package.json b/e2e-tests/gatsby-image/package.json index efb031ad453f9..7d6cd8b6f41b7 100644 --- a/e2e-tests/gatsby-image/package.json +++ b/e2e-tests/gatsby-image/package.json @@ -13,8 +13,8 @@ "gatsby-plugin-sharp": "^2.0.20", "gatsby-source-filesystem": "^2.0.20", "gatsby-transformer-sharp": "^2.1.13", - "react": "^16.8.0", - "react-dom": "^16.8.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.0" }, "keywords": [ @@ -42,4 +42,4 @@ "type": "git", "url": "https://github.com/gatsbyjs/gatsby-starter-default" } -} +} \ No newline at end of file diff --git a/e2e-tests/gatsby-static-image/package.json b/e2e-tests/gatsby-static-image/package.json index 022eea298fe26..91da06a887b30 100644 --- a/e2e-tests/gatsby-static-image/package.json +++ b/e2e-tests/gatsby-static-image/package.json @@ -8,8 +8,8 @@ "gatsby": "^2.0.118", "gatsby-plugin-image": "^0.0.2", "gatsby-plugin-sharp": "^2.0.20", - "react": "^16.8.0", - "react-dom": "^16.8.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -36,4 +36,4 @@ "type": "git", "url": "https://github.com/gatsbyjs/gatsby-starter-default" } -} +} \ No newline at end of file diff --git a/e2e-tests/mdx-less-babel/package.json b/e2e-tests/mdx-less-babel/package.json index 31609b1d32bab..7df2170e3f8fe 100644 --- a/e2e-tests/mdx-less-babel/package.json +++ b/e2e-tests/mdx-less-babel/package.json @@ -9,8 +9,8 @@ "gatsby": "^2.0.118", "gatsby-plugin-mdx": "^1.2.19", "gatsby-source-filesystem": "^2.3.14", - "react": "^16.8.0", - "react-dom": "^16.8.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "theme-ui": "^0.3.1" }, "keywords": [ @@ -34,4 +34,4 @@ "prettier": "2.0.4", "start-server-and-test": "^1.7.1" } -} +} \ No newline at end of file diff --git a/e2e-tests/mdx/package.json b/e2e-tests/mdx/package.json index 31609b1d32bab..7df2170e3f8fe 100644 --- a/e2e-tests/mdx/package.json +++ b/e2e-tests/mdx/package.json @@ -9,8 +9,8 @@ "gatsby": "^2.0.118", "gatsby-plugin-mdx": "^1.2.19", "gatsby-source-filesystem": "^2.3.14", - "react": "^16.8.0", - "react-dom": "^16.8.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "theme-ui": "^0.3.1" }, "keywords": [ @@ -34,4 +34,4 @@ "prettier": "2.0.4", "start-server-and-test": "^1.7.1" } -} +} \ No newline at end of file diff --git a/e2e-tests/path-prefix/package.json b/e2e-tests/path-prefix/package.json index f1d96c45262f7..82319edd4fa91 100644 --- a/e2e-tests/path-prefix/package.json +++ b/e2e-tests/path-prefix/package.json @@ -15,8 +15,8 @@ "gatsby-plugin-sitemap": "^2.0.12", "gatsby-source-filesystem": "^2.8.1", "gatsby-transformer-sharp": "^2.9.0", - "react": "^16.8.0", - "react-dom": "^16.8.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.0" }, "keywords": [ @@ -53,4 +53,4 @@ "type": "git", "url": "https://github.com/gatsbyjs/gatsby-starter-default" } -} +} \ No newline at end of file diff --git a/e2e-tests/production-runtime/package.json b/e2e-tests/production-runtime/package.json index 805db5d64230d..8bc4bbaec3ee1 100644 --- a/e2e-tests/production-runtime/package.json +++ b/e2e-tests/production-runtime/package.json @@ -13,8 +13,8 @@ "gatsby-plugin-sharp": "^3.0.0-next.5", "gatsby-seo": "^0.1.0", "glob": "^7.1.3", - "react": "^16.8.0", - "react-dom": "^16.8.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.0", "typeface-merriweather": "^1.1.13" }, @@ -52,4 +52,4 @@ "type": "git", "url": "https://github.com/gatsbyjs/gatsby-starter-default" } -} +} \ No newline at end of file diff --git a/e2e-tests/themes/development-runtime/package.json b/e2e-tests/themes/development-runtime/package.json index d6a478a36d2d2..c5960c041488f 100644 --- a/e2e-tests/themes/development-runtime/package.json +++ b/e2e-tests/themes/development-runtime/package.json @@ -6,8 +6,8 @@ "dependencies": { "gatsby": "^2.13.14", "gatsby-theme-about": "*", - "react": "^16.8.0", - "react-dom": "^16.8.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "license": "MIT", "scripts": { @@ -36,4 +36,4 @@ "type": "git", "url": "https://github.com/gatsbyjs/gatsby-starter-default" } -} +} \ No newline at end of file diff --git a/e2e-tests/themes/gatsby-theme-about/package.json b/e2e-tests/themes/gatsby-theme-about/package.json index baac853712494..d496afbea54e6 100644 --- a/e2e-tests/themes/gatsby-theme-about/package.json +++ b/e2e-tests/themes/gatsby-theme-about/package.json @@ -25,7 +25,7 @@ "prettier": "2.0.4" }, "peerDependencies": { - "react": "^16.8.6", - "react-dom": "^16.8.6" + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" } } diff --git a/e2e-tests/themes/production-runtime/package.json b/e2e-tests/themes/production-runtime/package.json index b6b53ad6ed0f9..3fca97a0cdfb0 100644 --- a/e2e-tests/themes/production-runtime/package.json +++ b/e2e-tests/themes/production-runtime/package.json @@ -6,8 +6,8 @@ "dependencies": { "gatsby": "^2.13.14", "gatsby-theme-about": "*", - "react": "^16.8.0", - "react-dom": "^16.8.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "license": "MIT", "scripts": { @@ -33,4 +33,4 @@ "type": "git", "url": "https://github.com/gatsbyjs/gatsby-starter-default" } -} +} \ No newline at end of file diff --git a/e2e-tests/visual-regression/package.json b/e2e-tests/visual-regression/package.json index 73833ae5706af..e7d06a28de13f 100644 --- a/e2e-tests/visual-regression/package.json +++ b/e2e-tests/visual-regression/package.json @@ -11,8 +11,8 @@ "gatsby-plugin-sharp": "^2.0.20", "gatsby-source-filesystem": "^2.3.35", "gatsby-transformer-sharp": "^2.5.19", - "react": "^16.8.0", - "react-dom": "^16.8.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -42,4 +42,4 @@ "type": "git", "url": "https://github.com/gatsbyjs/gatsby-starter-default" } -} +} \ No newline at end of file diff --git a/examples/client-only-paths/package.json b/examples/client-only-paths/package.json index b42365960b094..650323c735964 100644 --- a/examples/client-only-paths/package.json +++ b/examples/client-only-paths/package.json @@ -8,8 +8,8 @@ "gatsby": "next", "gatsby-plugin-netlify": "next", "gatsby-plugin-typography": "next", - "react": "^16.3.1", - "react-dom": "^16.3.1", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-transition-group": "^2.9.0", "react-typography": "^0.16.19", "typography": "^0.16.19", @@ -25,4 +25,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/feed/package.json b/examples/feed/package.json index f8eae290e622a..4406f337639e6 100644 --- a/examples/feed/package.json +++ b/examples/feed/package.json @@ -9,8 +9,8 @@ "gatsby-plugin-feed": "next", "gatsby-source-filesystem": "next", "gatsby-transformer-remark": "next", - "react": "^16.4.1", - "react-dom": "^16.4.1" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -22,4 +22,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/gatsbygram/package.json b/examples/gatsbygram/package.json index edf5e6285abcd..0af16fab6a5b4 100644 --- a/examples/gatsbygram/package.json +++ b/examples/gatsbygram/package.json @@ -25,8 +25,8 @@ "mousetrap": "^1.6.5", "progress": "^2.0.3", "prop-types": "^15.7.2", - "react": "^16.3.2", - "react-dom": "^16.3.2", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-gravatar": "^2.6.3", "react-icons": "^2.2.7", "react-modal": "^3.11.2", @@ -57,4 +57,4 @@ "gatsby-cypress": "^0.4.10", "start-server-and-test": "^1.11.3" } -} +} \ No newline at end of file diff --git a/examples/hn/package.json b/examples/hn/package.json index 1bcf0d5993b9a..e988b23e51fec 100644 --- a/examples/hn/package.json +++ b/examples/hn/package.json @@ -11,8 +11,8 @@ "gatsby-plugin-manifest": "next", "gatsby-source-hacker-news": "next", "lodash": "^4.17.20", - "react": "^16.3.1", - "react-dom": "^16.3.1", + "react": "^16.9.0", + "react-dom": "^16.9.0", "slash": "^2.0.0" }, "keywords": [ @@ -25,4 +25,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/image-processing/package.json b/examples/image-processing/package.json index d08ab261f4726..5e4cfce4cb66c 100644 --- a/examples/image-processing/package.json +++ b/examples/image-processing/package.json @@ -14,8 +14,8 @@ "gatsby-source-drupal": "next", "gatsby-source-filesystem": "next", "gatsby-transformer-sharp": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-typography": "^0.16.19", "typography": "^0.16.19", "typography-theme-bootstrap": "^0.16.19" @@ -31,4 +31,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/no-trailing-slashes/package.json b/examples/no-trailing-slashes/package.json index 1bedc0537f7de..51245d4edd019 100644 --- a/examples/no-trailing-slashes/package.json +++ b/examples/no-trailing-slashes/package.json @@ -9,8 +9,8 @@ "gatsby-plugin-google-analytics": "next", "gatsby-plugin-offline": "next", "lodash": "^4.17.20", - "react": "^16.4.0", - "react-dom": "^16.4.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "slash": "^1.0.0" }, "keywords": [ @@ -23,4 +23,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/recipe-static-image/package.json b/examples/recipe-static-image/package.json index b7852dc600306..00588441716ae 100644 --- a/examples/recipe-static-image/package.json +++ b/examples/recipe-static-image/package.json @@ -14,8 +14,8 @@ }, "dependencies": { "gatsby": "next", - "react": "^16.8.6", - "react-dom": "^16.8.6" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "devDependencies": { "prettier": "2.1.1" @@ -27,4 +27,4 @@ "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" } -} +} \ No newline at end of file diff --git a/examples/recipe-webpack-image/package.json b/examples/recipe-webpack-image/package.json index 72fd0226e9b5b..79f490361f906 100644 --- a/examples/recipe-webpack-image/package.json +++ b/examples/recipe-webpack-image/package.json @@ -14,8 +14,8 @@ }, "dependencies": { "gatsby": "next", - "react": "^16.8.6", - "react-dom": "^16.8.6" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "devDependencies": { "prettier": "2.1.1" @@ -27,4 +27,4 @@ "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" } -} +} \ No newline at end of file diff --git a/examples/recipes-gatsby-image/package.json b/examples/recipes-gatsby-image/package.json index b1b39cdd04607..548b0ae5db608 100644 --- a/examples/recipes-gatsby-image/package.json +++ b/examples/recipes-gatsby-image/package.json @@ -17,8 +17,8 @@ "gatsby-source-filesystem": "next", "gatsby-transformer-sharp": "next", "prop-types": "^15.7.2", - "react": "^16.8.6", - "react-dom": "^16.8.6", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "devDependencies": { @@ -43,4 +43,4 @@ "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" } -} +} \ No newline at end of file diff --git a/examples/route-api/package.json b/examples/route-api/package.json index 1370981d4d548..eb03b77b18e4d 100644 --- a/examples/route-api/package.json +++ b/examples/route-api/package.json @@ -9,8 +9,8 @@ "gatsby-source-filesystem": "next", "gatsby-transformer-remark": "next", "gatsby-transformer-yaml": "next", - "react": "^16.3.1", - "react-dom": "^16.3.1" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -22,4 +22,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/simple-auth/package.json b/examples/simple-auth/package.json index 4ef4928e355ad..4be691afd84a0 100644 --- a/examples/simple-auth/package.json +++ b/examples/simple-auth/package.json @@ -7,8 +7,8 @@ "gatsby": "next", "gatsby-plugin-react-helmet": "next", "prop-types": "^15.7.2", - "react": "^16.4.0", - "react-dom": "^16.4.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "keywords": [ @@ -22,4 +22,4 @@ "start": "npm run develop", "test": "echo \"Error: no test specified\" && exit 1" } -} +} \ No newline at end of file diff --git a/examples/sitemap/package.json b/examples/sitemap/package.json index 4ba9d113eea20..c2a7de1618433 100644 --- a/examples/sitemap/package.json +++ b/examples/sitemap/package.json @@ -10,8 +10,8 @@ "gatsby-plugin-sitemap": "next", "gatsby-source-filesystem": "next", "gatsby-transformer-remark": "next", - "react": "^16.3.2", - "react-dom": "^16.3.2" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -23,4 +23,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/styleguide/package.json b/examples/styleguide/package.json index 12037f185fd17..f3ba1b5b33e5b 100644 --- a/examples/styleguide/package.json +++ b/examples/styleguide/package.json @@ -11,8 +11,8 @@ "gatsby-transformer-remark": "next", "glamor": "^2.20.40", "html-to-react": "^1.4.3", - "react": "^16.4.0", - "react-dom": "^16.4.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-live": "^2.2.2" }, "keywords": [ @@ -25,4 +25,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-asciidoc/package.json b/examples/using-asciidoc/package.json index 333a47eef580f..91b76f81e922f 100644 --- a/examples/using-asciidoc/package.json +++ b/examples/using-asciidoc/package.json @@ -13,8 +13,8 @@ "gatsby-source-filesystem": "next", "gatsby-transformer-asciidoc": "next", "lodash": "^4.17.20", - "react": "^16.3.1", - "react-dom": "^16.3.1", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-typography": "^0.16.19", "slash": "^1.0.0", "typography": "^0.16.19", @@ -30,4 +30,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-contentful/package.json b/examples/using-contentful/package.json index 08617916457f1..100e96239d338 100644 --- a/examples/using-contentful/package.json +++ b/examples/using-contentful/package.json @@ -14,8 +14,8 @@ "gatsby-source-contentful": "next", "gatsby-transformer-remark": "next", "lodash": "^4.17.20", - "react": "^16.3.1", - "react-dom": "^16.3.1", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-typography": "^0.16.19", "slash": "^2.0.0", "typography": "^0.16.19", @@ -34,4 +34,4 @@ "build": "gatsby build", "start": "gatsby serve" } -} +} \ No newline at end of file diff --git a/examples/using-css-modules/package.json b/examples/using-css-modules/package.json index 0790bb9227099..a2ee66a52d217 100644 --- a/examples/using-css-modules/package.json +++ b/examples/using-css-modules/package.json @@ -7,8 +7,8 @@ "gatsby": "next", "gatsby-plugin-sass": "next", "node-sass": "^4.14.1", - "react": "^16.4.0", - "react-dom": "^16.4.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "license": "MIT", "main": "n/a", @@ -17,4 +17,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-csv/package.json b/examples/using-csv/package.json index 00eee26ab52f7..e779f47ba4d20 100644 --- a/examples/using-csv/package.json +++ b/examples/using-csv/package.json @@ -8,8 +8,8 @@ "gatsby-plugin-google-analytics": "next", "gatsby-source-filesystem": "next", "gatsby-transformer-csv": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -21,4 +21,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-drupal/package.json b/examples/using-drupal/package.json index d10c82772cb78..cd1d9b3286a31 100644 --- a/examples/using-drupal/package.json +++ b/examples/using-drupal/package.json @@ -17,8 +17,8 @@ "glamor": "^2.20.40", "gray-percentage": "^2.0.0", "lodash": "^4.17.20", - "react": "^16.3.2", - "react-dom": "^16.3.2", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-icons": "^2.2.7", "react-typography": "^0.16.19", "slash": "^1.0.0", @@ -38,4 +38,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-emotion-prismjs/package.json b/examples/using-emotion-prismjs/package.json index aa6aef76c722b..72fad54c1983a 100644 --- a/examples/using-emotion-prismjs/package.json +++ b/examples/using-emotion-prismjs/package.json @@ -25,8 +25,8 @@ "lodash": "^4.17.20", "prismjs": "^1.21.0", "prop-types": "^15.7.2", - "react": "^16.8.6", - "react-dom": "^16.8.6", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1", "react-typography": "^0.16.19", "typography": "^0.16.19", @@ -34,4 +34,4 @@ }, "author": "Andrew Wyatt ", "license": "MIT" -} +} \ No newline at end of file diff --git a/examples/using-emotion/package.json b/examples/using-emotion/package.json index 4211062a6b6cc..7711f499d764e 100644 --- a/examples/using-emotion/package.json +++ b/examples/using-emotion/package.json @@ -13,8 +13,8 @@ "gatsby-plugin-google-analytics": "next", "gatsby-plugin-offline": "next", "gatsby-plugin-react-helmet": "next", - "react": "^16.8.6", - "react-dom": "^16.8.6", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "license": "MIT", @@ -25,4 +25,4 @@ "serve": "gatsby serve", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-excel/package.json b/examples/using-excel/package.json index db141885aa584..7f5c2db1cc16f 100644 --- a/examples/using-excel/package.json +++ b/examples/using-excel/package.json @@ -7,8 +7,8 @@ "gatsby": "next", "gatsby-source-filesystem": "next", "gatsby-transformer-excel": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "license": "MIT", "main": "n/a", @@ -17,4 +17,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-faker/package.json b/examples/using-faker/package.json index 4fde736c8af2a..49fc69b3ec5be 100644 --- a/examples/using-faker/package.json +++ b/examples/using-faker/package.json @@ -8,8 +8,8 @@ "gatsby": "next", "gatsby-plugin-react-helmet": "next", "gatsby-source-faker": "next", - "react": "^16.3.2", - "react-dom": "^16.3.2", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "keywords": [ @@ -24,4 +24,4 @@ "start": "npm run develop", "test": "echo \"Error: no test specified\" && exit 1" } -} +} \ No newline at end of file diff --git a/examples/using-gatsby-image/package.json b/examples/using-gatsby-image/package.json index 0967ab6c46a1e..ce72765499909 100644 --- a/examples/using-gatsby-image/package.json +++ b/examples/using-gatsby-image/package.json @@ -17,8 +17,8 @@ "gatsby-transformer-sharp": "next", "gatsby-transformer-yaml": "next", "numeral": "^2.0.6", - "react": "^16.6.0", - "react-dom": "^16.6.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-icons": "^3.11.0", "react-typography": "^0.16.19", "typeface-oswald": "0.0.75", @@ -32,4 +32,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-gatsby-without-graphql/package.json b/examples/using-gatsby-without-graphql/package.json index f43276962c5fd..c33a096a10c18 100755 --- a/examples/using-gatsby-without-graphql/package.json +++ b/examples/using-gatsby-without-graphql/package.json @@ -11,10 +11,10 @@ "dependencies": { "axios": "^0.20.0", "gatsby": "next", - "react": "^16.5.1", - "react-dom": "^16.5.1" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "version": "1.0.0", "main": "index.js", "author": "Jason Lengstorf " -} +} \ No newline at end of file diff --git a/examples/using-glamor/package.json b/examples/using-glamor/package.json index f771fe40e7746..211d5640e05db 100644 --- a/examples/using-glamor/package.json +++ b/examples/using-glamor/package.json @@ -12,8 +12,8 @@ "gatsby-plugin-typography": "next", "glamor": "^2.20.40", "lodash": "^4.17.20", - "react": "^16.4.0", - "react-dom": "^16.4.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-typography": "^0.16.19", "slash": "^1.0.0", "typography": "^0.16.19", @@ -29,4 +29,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-hjson/package.json b/examples/using-hjson/package.json index b1f00e274e005..f3d2d1b3df841 100644 --- a/examples/using-hjson/package.json +++ b/examples/using-hjson/package.json @@ -8,8 +8,8 @@ "gatsby": "next", "gatsby-source-filesystem": "next", "gatsby-transformer-hjson": "next", - "react": "^16.3.2", - "react-dom": "^16.3.2" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "license": "MIT", "main": "n/a", @@ -18,4 +18,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-jest/package.json b/examples/using-jest/package.json index 70425add03467..78d2a21f429aa 100644 --- a/examples/using-jest/package.json +++ b/examples/using-jest/package.json @@ -12,8 +12,8 @@ "gatsby-plugin-sharp": "next", "gatsby-source-filesystem": "next", "gatsby-transformer-sharp": "next", - "react": "^16.7.0", - "react-dom": "^16.7.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "keywords": [ @@ -41,4 +41,4 @@ "type": "git", "url": "https://github.com/gatsbyjs/gatsby" } -} +} \ No newline at end of file diff --git a/examples/using-js-search/package.json b/examples/using-js-search/package.json index 408cddd370927..d32d3018faafd 100644 --- a/examples/using-js-search/package.json +++ b/examples/using-js-search/package.json @@ -20,7 +20,7 @@ "axios": "^0.20.0", "gatsby": "next", "js-search": "^1.4.3", - "react": "^16.5.1", - "react-dom": "^16.5.1" + "react": "^16.9.0", + "react-dom": "^16.9.0" } -} +} \ No newline at end of file diff --git a/examples/using-jss/package.json b/examples/using-jss/package.json index f051ba205e2ee..d20a72fe205d4 100644 --- a/examples/using-jss/package.json +++ b/examples/using-jss/package.json @@ -8,8 +8,8 @@ "gatsby": "next", "gatsby-plugin-flow": "next", "gatsby-plugin-jss": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-jss": "^8.6.1" }, "keywords": [ @@ -23,4 +23,4 @@ "start": "npm run develop", "serve": "gatsby serve" } -} +} \ No newline at end of file diff --git a/examples/using-local-plugins/package.json b/examples/using-local-plugins/package.json index f43276962c5fd..c33a096a10c18 100755 --- a/examples/using-local-plugins/package.json +++ b/examples/using-local-plugins/package.json @@ -11,10 +11,10 @@ "dependencies": { "axios": "^0.20.0", "gatsby": "next", - "react": "^16.5.1", - "react-dom": "^16.5.1" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "version": "1.0.0", "main": "index.js", "author": "Jason Lengstorf " -} +} \ No newline at end of file diff --git a/examples/using-markdown-pages/package.json b/examples/using-markdown-pages/package.json index c3b40bba91817..c691d1d310fbc 100644 --- a/examples/using-markdown-pages/package.json +++ b/examples/using-markdown-pages/package.json @@ -15,8 +15,8 @@ "gatsby-transformer-remark": "next", "gatsby-transformer-sharp": "next", "prop-types": "^15.7.2", - "react": "^16.8.6", - "react-dom": "^16.8.6", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "devDependencies": { @@ -34,4 +34,4 @@ "serve": "gatsby serve", "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"" } -} +} \ No newline at end of file diff --git a/examples/using-medium/package.json b/examples/using-medium/package.json index d2a58d1c0948e..a384ffba568b4 100644 --- a/examples/using-medium/package.json +++ b/examples/using-medium/package.json @@ -9,8 +9,8 @@ "dependencies": { "gatsby": "next", "gatsby-source-medium": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -20,4 +20,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-mongodb/package.json b/examples/using-mongodb/package.json index 7437d440fe4ff..314e7a359af33 100644 --- a/examples/using-mongodb/package.json +++ b/examples/using-mongodb/package.json @@ -8,8 +8,8 @@ "gatsby-plugin-react-helmet": "next", "gatsby-source-mongodb": "next", "gatsby-transformer-remark": "next", - "react": "^16.4.1", - "react-dom": "^16.4.1", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "license": "MIT", @@ -19,4 +19,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-multiple-providers/package.json b/examples/using-multiple-providers/package.json index d368a6630dc9b..7ebab3c4a3617 100644 --- a/examples/using-multiple-providers/package.json +++ b/examples/using-multiple-providers/package.json @@ -11,9 +11,9 @@ "gatsby-plugin-jss": "next", "gatsby-plugin-styled-components": "next", "isomorphic-fetch": "^2.2.1", - "react": "^16.4.0", + "react": "^16.9.0", "react-apollo": "^2.5.8", - "react-dom": "^16.4.0", + "react-dom": "^16.9.0", "react-jss": "^8.6.1", "react-redux": "^5.1.2", "redux": "^4.0.5", @@ -30,4 +30,4 @@ "start": "npm run develop", "serve": "gatsby serve" } -} +} \ No newline at end of file diff --git a/examples/using-page-loading-indicator/package.json b/examples/using-page-loading-indicator/package.json index 7763ae160df90..bc338bebf270f 100644 --- a/examples/using-page-loading-indicator/package.json +++ b/examples/using-page-loading-indicator/package.json @@ -6,8 +6,8 @@ "dependencies": { "gatsby": "next", "gatsby-plugin-nprogress": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "license": "MIT", "main": "n/a", @@ -16,4 +16,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-page-transitions/package.json b/examples/using-page-transitions/package.json index b08aff7c1aa7b..268c4fe7c9e86 100644 --- a/examples/using-page-transitions/package.json +++ b/examples/using-page-transitions/package.json @@ -7,8 +7,8 @@ "gatsby": "next", "gatsby-plugin-layout": "next", "gatsby-plugin-react-helmet": "next", - "react": "^16.4.1", - "react-dom": "^16.4.1", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1", "react-transition-group": "^2.9.0" }, @@ -24,4 +24,4 @@ "start": "npm run develop", "test": "echo \"Error: no test specified\" && exit 1" } -} +} \ No newline at end of file diff --git a/examples/using-path-prefix/package.json b/examples/using-path-prefix/package.json index c96f2c2e27a57..1127275700b9d 100644 --- a/examples/using-path-prefix/package.json +++ b/examples/using-path-prefix/package.json @@ -5,8 +5,8 @@ "author": "Kyle Mathews <mathews.kyle@gmail.com>", "dependencies": { "gatsby": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -19,4 +19,4 @@ "start": "npm run develop", "serve": "gatsby serve" } -} +} \ No newline at end of file diff --git a/examples/using-prefetching-preloading-modules/package.json b/examples/using-prefetching-preloading-modules/package.json index 7514a2ebed3cb..e1aad31b0c2b0 100644 --- a/examples/using-prefetching-preloading-modules/package.json +++ b/examples/using-prefetching-preloading-modules/package.json @@ -12,8 +12,8 @@ "gatsby-plugin-styled-components": "next", "gatsby-plugin-typography": "next", "lodash": "^4.17.20", - "react": "^16.4.0", - "react-dom": "^16.4.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1", "react-typography": "^0.16.19", "slash": "^1.0.0", @@ -31,4 +31,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-reach-skip-nav/package.json b/examples/using-reach-skip-nav/package.json index 07d30f676c828..6a5f68b91a7b0 100644 --- a/examples/using-reach-skip-nav/package.json +++ b/examples/using-reach-skip-nav/package.json @@ -11,8 +11,8 @@ "gatsby-plugin-react-helmet": "next", "gatsby-source-filesystem": "next", "lodash": "^4.17.20", - "react": "^16.3.1", - "react-dom": "^16.3.1", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "keywords": [ @@ -34,4 +34,4 @@ "cypress": "^4.12.1", "start-server-and-test": "^1.11.3" } -} +} \ No newline at end of file diff --git a/examples/using-redirects/package.json b/examples/using-redirects/package.json index d31cfe93ad31a..5607a7d1806a6 100644 --- a/examples/using-redirects/package.json +++ b/examples/using-redirects/package.json @@ -6,8 +6,8 @@ "dependencies": { "gatsby": "next", "gatsby-plugin-react-helmet": "next", - "react": "^16.3.2", - "react-dom": "^16.3.2", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "keywords": [ @@ -20,4 +20,4 @@ "develop": "gatsby develop", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-redux/package.json b/examples/using-redux/package.json index d16188437ae6e..82e0774eaa6c2 100644 --- a/examples/using-redux/package.json +++ b/examples/using-redux/package.json @@ -6,8 +6,8 @@ "author": "Scotty Eckenthal ", "dependencies": { "gatsby": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-redux": "5.1.2", "redux": "3.7.2" }, @@ -22,4 +22,4 @@ "start": "npm run develop", "serve": "gatsby serve" } -} +} \ No newline at end of file diff --git a/examples/using-remark-copy-linked-files/package.json b/examples/using-remark-copy-linked-files/package.json index 0a99208b368f5..caef29868e038 100644 --- a/examples/using-remark-copy-linked-files/package.json +++ b/examples/using-remark-copy-linked-files/package.json @@ -20,8 +20,8 @@ "gatsby-transformer-sharp": "next", "lodash": "^4.17.20", "prismjs": "^1.21.0", - "react": "^16.8.6", - "react-dom": "^16.8.6", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1", "react-typography": "^0.16.19", "typeface-merriweather": "0.0.72", @@ -47,4 +47,4 @@ "deploy": "gatsby build --prefix-paths && gh-pages -d public", "fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js" } -} +} \ No newline at end of file diff --git a/examples/using-remark/package.json b/examples/using-remark/package.json index 52e9dcbfdb9b7..0b83caad0dc33 100644 --- a/examples/using-remark/package.json +++ b/examples/using-remark/package.json @@ -33,8 +33,8 @@ "lodash-id": "^0.14.0", "lodash-webpack-plugin": "^0.11.5", "prismjs": "^1.21.0", - "react": "^16.8.6", - "react-dom": "^16.8.6", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-typography": "^0.16.19", "rehype-react": "^3.1.0", "slash": "^2.0.0", @@ -50,4 +50,4 @@ "start": "npm run develop", "serve": "gatsby serve" } -} +} \ No newline at end of file diff --git a/examples/using-sass/package.json b/examples/using-sass/package.json index d6aa9a0903636..ebf9e5630f646 100644 --- a/examples/using-sass/package.json +++ b/examples/using-sass/package.json @@ -16,8 +16,8 @@ "gatsby-plugin-offline": "next", "gatsby-plugin-sass": "next", "node-sass": "^4.14.1", - "react": "^16.3.0", - "react-dom": "^16.3.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "tachyons-sass": "^4.9.5" } -} +} \ No newline at end of file diff --git a/examples/using-shopify/package.json b/examples/using-shopify/package.json index 127f01e17d004..4179c4dbed6e7 100644 --- a/examples/using-shopify/package.json +++ b/examples/using-shopify/package.json @@ -15,8 +15,8 @@ "gatsby-source-shopify": "next", "gatsby-transformer-sharp": "next", "prop-types": "^15.7.2", - "react": "^16.8.1", - "react-dom": "^16.8.1", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1", "react-icons": "^3.11.0" }, @@ -42,4 +42,4 @@ "dotenv": "^6.2.0", "limax": "^1.7.0" } -} +} \ No newline at end of file diff --git a/examples/using-sqip/package.json b/examples/using-sqip/package.json index ca80a538be94d..56d7a1eaa4ca1 100644 --- a/examples/using-sqip/package.json +++ b/examples/using-sqip/package.json @@ -10,8 +10,8 @@ "gatsby-source-filesystem": "next", "gatsby-transformer-sharp": "next", "gatsby-transformer-sqip": "next", - "react": "^16.4.2", - "react-dom": "^16.4.2" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -27,4 +27,4 @@ "devDependencies": { "prettier": "2.1.1" } -} +} \ No newline at end of file diff --git a/examples/using-styled-jsx/package.json b/examples/using-styled-jsx/package.json index 4879f02d102ca..4608dae7b245f 100644 --- a/examples/using-styled-jsx/package.json +++ b/examples/using-styled-jsx/package.json @@ -6,8 +6,8 @@ "dependencies": { "gatsby": "next", "gatsby-plugin-styled-jsx": "next", - "react": "^16.2.0", - "react-dom": "^16.2.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "styled-jsx": "^3.3.0" }, "license": "MIT", @@ -17,4 +17,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-styletron/package.json b/examples/using-styletron/package.json index 0de959112c13d..dd4389620c11c 100644 --- a/examples/using-styletron/package.json +++ b/examples/using-styletron/package.json @@ -7,8 +7,8 @@ "dependencies": { "gatsby": "next", "gatsby-plugin-styletron": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -20,4 +20,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-stylus/package.json b/examples/using-stylus/package.json index d97fb53b4d3b2..b12c94b240895 100644 --- a/examples/using-stylus/package.json +++ b/examples/using-stylus/package.json @@ -16,9 +16,9 @@ "gatsby-plugin-offline": "next", "gatsby-plugin-stylus": "next", "gatsby-plugin-typography": "next", - "react": "^16.3.2", - "react-dom": "^16.3.2", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-typography": "^0.16.19", "typography": "^0.16.19" } -} +} \ No newline at end of file diff --git a/examples/using-type-definitions/package.json b/examples/using-type-definitions/package.json index 922f46d3e4300..7080bf5aaf62d 100644 --- a/examples/using-type-definitions/package.json +++ b/examples/using-type-definitions/package.json @@ -11,8 +11,8 @@ "gatsby-transformer-json": "next", "gatsby-transformer-sharp": "next", "prop-types": "^15.7.2", - "react": "^16.6.3", - "react-dom": "^16.6.3", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1" }, "keywords": [ @@ -36,4 +36,4 @@ "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" } -} +} \ No newline at end of file diff --git a/examples/using-video/package.json b/examples/using-video/package.json index b6e45c5414a4f..fd9a5e0a8d0de 100644 --- a/examples/using-video/package.json +++ b/examples/using-video/package.json @@ -9,8 +9,8 @@ "dependencies": { "file-loader": "^4.3.0", "gatsby": "next", - "react": "^16.4.0", - "react-dom": "^16.4.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "keywords": [ "gatsby" @@ -20,4 +20,4 @@ "build": "gatsby build", "start": "npm run develop" } -} +} \ No newline at end of file diff --git a/examples/using-wordpress-with-acf/package.json b/examples/using-wordpress-with-acf/package.json index 610ac9371e8a6..cd238f9ed4b51 100644 --- a/examples/using-wordpress-with-acf/package.json +++ b/examples/using-wordpress-with-acf/package.json @@ -16,8 +16,8 @@ "gatsby-transformer-sharp": "next", "glamor": "^2.20.40", "lodash": "^4.17.20", - "react": "^16.3.2", - "react-dom": "^16.3.2", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.1", "react-icons": "^3.11.0", "react-typography": "^0.16.19", @@ -41,4 +41,4 @@ "devDependencies": { "eslint": "^4.19.1" } -} +} \ No newline at end of file diff --git a/integration-tests/cache-resilience/package.json b/integration-tests/cache-resilience/package.json index 7fa54b641c8e8..5e27ea3122f3a 100644 --- a/integration-tests/cache-resilience/package.json +++ b/integration-tests/cache-resilience/package.json @@ -14,8 +14,8 @@ }, "dependencies": { "gatsby": "^3.0.0-next.0", - "react": "^16.8.0", - "react-dom": "^16.8.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "devDependencies": { "gatsby-core-utils": "^1.0.21", @@ -27,4 +27,4 @@ "slash": "^3.0.0", "snapshot-diff": "^0.6.1" } -} +} \ No newline at end of file diff --git a/integration-tests/gatsby-pipeline/package.json b/integration-tests/gatsby-pipeline/package.json index 3d6cefacdcb88..d94482feb5dd5 100644 --- a/integration-tests/gatsby-pipeline/package.json +++ b/integration-tests/gatsby-pipeline/package.json @@ -11,8 +11,8 @@ "gatsby-source-filesystem": "latest", "gatsby-transformer-sharp": "latest", "prop-types": "^15.6.2", - "react": "^16.7.0", - "react-dom": "^16.7.0", + "react": "^16.9.0", + "react-dom": "^16.9.0", "react-helmet": "^5.2.0" }, "keywords": [ @@ -38,4 +38,4 @@ "engines": { "node": ">=12.13.0" } -} +} \ No newline at end of file diff --git a/integration-tests/images/package.json b/integration-tests/images/package.json index 56e5db3f8d6e7..120c9fa69828e 100644 --- a/integration-tests/images/package.json +++ b/integration-tests/images/package.json @@ -15,12 +15,12 @@ "gatsby-plugin-sharp": "next", "gatsby-source-filesystem": "next", "gatsby-transformer-sharp": "next", - "react": "^16.8.0", - "react-dom": "^16.8.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "devDependencies": { "jest": "^24.0.0", "jest-cli": "^24.0.0", "pixelmatch": "^5.2.1" } -} +} \ No newline at end of file diff --git a/integration-tests/long-term-caching/package.json b/integration-tests/long-term-caching/package.json index 90b025d7ba471..ac6ce781196e3 100644 --- a/integration-tests/long-term-caching/package.json +++ b/integration-tests/long-term-caching/package.json @@ -11,12 +11,12 @@ "dependencies": { "gatsby": "^3.0.0-next.0", "gray-percentage": "^2.0.0", - "react": "^16.8.0", - "react-dom": "^16.8.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "devDependencies": { "babel-plugin-dynamic-import-node-sync": "^2.0.1", "jest": "^24.0.0", "jest-cli": "^24.0.0" } -} +} \ No newline at end of file diff --git a/integration-tests/structured-logging/package.json b/integration-tests/structured-logging/package.json index 711b27966e959..ba9d25953f7a8 100644 --- a/integration-tests/structured-logging/package.json +++ b/integration-tests/structured-logging/package.json @@ -12,8 +12,8 @@ "dependencies": { "gatsby": "^3.0.0-next.0", "gray-percentage": "^2.0.0", - "react": "^16.8.0", - "react-dom": "^16.8.0" + "react": "^16.9.0", + "react-dom": "^16.9.0" }, "devDependencies": { "babel-plugin-dynamic-import-node-sync": "^2.0.1", @@ -24,4 +24,4 @@ "lodash": "^4.17.20", "node-fetch": "^2.6.1" } -} +} \ No newline at end of file diff --git a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md index fb176ab50033a..a1a31ad68f210 100644 --- a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md +++ b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-plugin-remove-graphql-queries@3.0.0-next.3...babel-plugin-remove-graphql-queries@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package babel-plugin-remove-graphql-queries + # [3.0.0-next.3](https://github.com/gatsbyjs/gatsby/compare/babel-plugin-remove-graphql-queries@3.0.0-next.2...babel-plugin-remove-graphql-queries@3.0.0-next.3) (2021-02-25) **Note:** Version bump only for package babel-plugin-remove-graphql-queries diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json index 80d5600633b43..d64d3c639c4aa 100644 --- a/packages/babel-plugin-remove-graphql-queries/package.json +++ b/packages/babel-plugin-remove-graphql-queries/package.json @@ -1,6 +1,6 @@ { "name": "babel-plugin-remove-graphql-queries", - "version": "3.0.0-next.3", + "version": "3.1.0-next.0", "author": "Jason Quense ", "repository": { "type": "git", @@ -11,9 +11,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-core-utils": "^2.0.0-next.2" + "gatsby-core-utils": "^2.1.0-next.0" }, "peerDependencies": { "@babel/core": "^7.0.0", diff --git a/packages/babel-preset-gatsby-package/CHANGELOG.md b/packages/babel-preset-gatsby-package/CHANGELOG.md index e91bfe7221a12..ebbc919b57274 100644 --- a/packages/babel-preset-gatsby-package/CHANGELOG.md +++ b/packages/babel-preset-gatsby-package/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby-package@1.0.0-next.0...babel-preset-gatsby-package@1.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package babel-preset-gatsby-package + # [1.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby-package@0.13.0-next.0...babel-preset-gatsby-package@1.0.0-next.0) (2021-02-05) **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 ced3f0911e467..586d3d58ee369 100644 --- a/packages/babel-preset-gatsby-package/package.json +++ b/packages/babel-preset-gatsby-package/package.json @@ -1,6 +1,6 @@ { "name": "babel-preset-gatsby-package", - "version": "1.0.0-next.0", + "version": "1.1.0-next.0", "author": "Philipp Spiess ", "repository": { "type": "git", diff --git a/packages/babel-preset-gatsby/CHANGELOG.md b/packages/babel-preset-gatsby/CHANGELOG.md index c94125b4ac7f6..c5fe53b4d0e87 100644 --- a/packages/babel-preset-gatsby/CHANGELOG.md +++ b/packages/babel-preset-gatsby/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby@1.0.0-next.4...babel-preset-gatsby@1.1.0-next.0) (2021-02-26) + +### Features + +- **babel-preset-gatsby:** allow setting importSource on preset-react ([#29260](https://github.com/gatsbyjs/gatsby/issues/29260)) ([f72ff77](https://github.com/gatsbyjs/gatsby/commit/f72ff7747afb1a71d53ba9258bd9a8838c0b062f)) + # [1.0.0-next.4](https://github.com/gatsbyjs/gatsby/compare/babel-preset-gatsby@1.0.0-next.3...babel-preset-gatsby@1.0.0-next.4) (2021-02-25) **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 c945edcbb7bf2..0f5401b92ef81 100644 --- a/packages/babel-preset-gatsby/package.json +++ b/packages/babel-preset-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "babel-preset-gatsby", - "version": "1.0.0-next.4", + "version": "1.1.0-next.0", "author": "Philipp Spiess ", "repository": { "type": "git", @@ -22,8 +22,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^2.8.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^2.0.0-next.2", - "gatsby-legacy-polyfills": "^1.0.0-next.1" + "gatsby-core-utils": "^2.1.0-next.0", + "gatsby-legacy-polyfills": "^1.1.0-next.0" }, "peerDependencies": { "@babel/core": "^7.11.6", @@ -38,7 +38,7 @@ }, "devDependencies": { "@babel/cli": "^7.12.1", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 85cae5858c305..53daaaf150dcd 100644 --- a/packages/create-gatsby/CHANGELOG.md +++ b/packages/create-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. +# [1.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/create-gatsby@1.0.0-next.2...create-gatsby@1.1.0-next.0) (2021-02-26) + +### Features + +- **create-gatsby:** Remove offline plugin ([#29771](https://github.com/gatsbyjs/gatsby/issues/29771)) ([27adffe](https://github.com/gatsbyjs/gatsby/commit/27adffe1ade6dc5c1dcf649bc204b45bf85c700f)) + # [1.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/create-gatsby@1.0.0-next.1...create-gatsby@1.0.0-next.2) (2021-02-25) **Note:** Version bump only for package create-gatsby diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json index 14ba247037f80..ab730a4ce10e7 100644 --- a/packages/create-gatsby/package.json +++ b/packages/create-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "create-gatsby", - "version": "1.0.0-next.2", + "version": "1.1.0-next.0", "main": "lib/index.js", "bin": "cli.js", "license": "MIT", @@ -27,7 +27,7 @@ "eslint": "^7.18.0", "execa": "^4.1.0", "fs-extra": "^9.0.1", - "gatsby-plugin-utils": "^1.0.0-next.1", + "gatsby-plugin-utils": "^1.1.0-next.0", "joi": "^17.2.1", "microbundle": "^0.13.0", "node-fetch": "^2.6.1", diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index 01cc74ec65edf..db0c9ae7c8be9 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.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-admin@0.10.0-next.9...gatsby-admin@0.11.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-admin + # [0.10.0-next.9](https://github.com/gatsbyjs/gatsby/compare/gatsby-admin@0.10.0-next.8...gatsby-admin@0.10.0-next.9) (2021-02-25) **Note:** Version bump only for package gatsby-admin diff --git a/packages/gatsby-admin/package.json b/packages/gatsby-admin/package.json index 47f283795851e..c9ef02ab2e016 100644 --- a/packages/gatsby-admin/package.json +++ b/packages/gatsby-admin/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-admin", - "version": "0.10.0-next.9", + "version": "0.11.0-next.0", "main": "index.js", "author": "Max Stoiber", "license": "MIT", @@ -20,11 +20,11 @@ "@typescript-eslint/parser": "^4.14.2", "csstype": "^2.6.14", "formik": "^2.2.6", - "gatsby": "^3.0.0-next.9", + "gatsby": "^3.1.0-next.0", "gatsby-interface": "^0.0.244", - "gatsby-plugin-typescript": "^3.0.0-next.3", + "gatsby-plugin-typescript": "^3.1.0-next.0", "gatsby-plugin-webfonts": "^1.1.4", - "gatsby-source-graphql": "^3.0.0-next.1", + "gatsby-source-graphql": "^3.1.0-next.0", "lodash-es": "^4.17.20", "ncp": "^2.0.0", "nodemon": "^2.0.7", diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index c764677e90929..e925312814fb8 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@3.0.0-next.7...gatsby-cli@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-cli + # [3.0.0-next.7](https://github.com/gatsbyjs/gatsby/compare/gatsby-cli@3.0.0-next.6...gatsby-cli@3.0.0-next.7) (2021-02-25) ### Bug Fixes diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index 5a9c3f8002321..10eb5424c8a04 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.0.0-next.7", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bin": { "gatsby": "cli.js" @@ -19,14 +19,14 @@ "common-tags": "^1.8.0", "configstore": "^5.0.1", "convert-hrtime": "^3.0.0", - "create-gatsby": "^1.0.0-next.2", + "create-gatsby": "^1.1.0-next.0", "envinfo": "^7.7.3", "execa": "^3.4.0", "fs-exists-cached": "^1.0.0", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^2.0.0-next.2", - "gatsby-recipes": "^0.11.0-next.5", - "gatsby-telemetry": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.0-next.0", + "gatsby-recipes": "^0.12.0-next.0", + "gatsby-telemetry": "^2.1.0-next.0", "hosted-git-info": "^3.0.6", "is-valid-path": "^0.1.1", "lodash": "^4.17.20", @@ -59,12 +59,12 @@ "@rollup/plugin-replace": "^2.3.3", "@types/hosted-git-info": "^3.0.1", "@types/yargs": "^15.0.8", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "ink": "^3.0.8", "ink-spinner": "^4.0.1", "npm-run-all": "4.1.5", - "react": "^16.8.0", + "react": "^16.9.0", "rimraf": "^3.0.2", "rollup": "^2.34.2", "rollup-plugin-auto-external": "^2.0.0", diff --git a/packages/gatsby-codemods/CHANGELOG.md b/packages/gatsby-codemods/CHANGELOG.md index f3edc064e34f7..180a8cf0b8f1f 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. +# [2.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-codemods@2.0.0-next.2...gatsby-codemods@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-codemods + # [2.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-codemods@2.0.0-next.1...gatsby-codemods@2.0.0-next.2) (2021-02-22) ### Bug Fixes diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json index 6fe27db850018..ee3474125a334 100644 --- a/packages/gatsby-codemods/package.json +++ b/packages/gatsby-codemods/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-codemods", - "version": "2.0.0-next.2", + "version": "2.1.0-next.0", "description": "A collection of codemod scripts for use with JSCodeshift that help migrate to newer versions of Gatsby.", "main": "index.js", "scripts": { @@ -36,7 +36,7 @@ }, "devDependencies": { "@babel/cli": "^7.12.1", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 1d8afac81cf26..2bea09eb0fe77 100644 --- a/packages/gatsby-core-utils/CHANGELOG.md +++ b/packages/gatsby-core-utils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-core-utils@2.0.0-next.2...gatsby-core-utils@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-core-utils + # [2.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-core-utils@2.0.0-next.1...gatsby-core-utils@2.0.0-next.2) (2021-02-25) **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 317e6d8681fc9..4352d46cf8b2a 100644 --- a/packages/gatsby-core-utils/package.json +++ b/packages/gatsby-core-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-core-utils", - "version": "2.0.0-next.2", + "version": "2.1.0-next.0", "description": "A collection of gatsby utils used in different gatsby packages", "keywords": [ "gatsby", @@ -42,7 +42,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@types/ci-info": "2.0.0", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "typescript": "^4.1.5" }, diff --git a/packages/gatsby-cypress/CHANGELOG.md b/packages/gatsby-cypress/CHANGELOG.md index db8403aeee178..7138c73ab4981 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. +# [1.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-cypress@1.0.0-next.0...gatsby-cypress@1.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-cypress + # [1.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-cypress@0.12.0-next.0...gatsby-cypress@1.0.0-next.0) (2021-02-05) **Note:** Version bump only for package gatsby-cypress diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json index 3393703ba4f41..6b5606a1321bd 100644 --- a/packages/gatsby-cypress/package.json +++ b/packages/gatsby-cypress/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-cypress", - "version": "1.0.0-next.0", + "version": "1.1.0-next.0", "description": "Cypress tools for Gatsby projects", "main": "index.js", "repository": { @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 22315a7d76ae6..bf52192b2b769 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-design-tokens@3.0.0-next.1...gatsby-design-tokens@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-design-tokens + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-design-tokens@3.0.0-next.0...gatsby-design-tokens@3.0.0-next.1) (2021-02-25) **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 a8c9d09a1a448..68a8165cbabb8 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.0.0-next.1", + "version": "3.1.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 364acabfe63a4..bd25790ca597a 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-dev-cli@3.0.0-next.0...gatsby-dev-cli@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-dev-cli + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-dev-cli@2.15.0-next.0...gatsby-dev-cli@3.0.0-next.0) (2021-02-05) **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 3be57237b931f..b22fd7e64b445 100644 --- a/packages/gatsby-dev-cli/package.json +++ b/packages/gatsby-dev-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-dev-cli", "description": "CLI helpers for contributors working on Gatsby", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bin": { "gatsby-dev": "./dist/index.js" @@ -27,7 +27,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 fde9c97f1e0b3..a19386c6c46e4 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. +# [1.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-graphiql-explorer@1.0.0-next.0...gatsby-graphiql-explorer@1.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-graphiql-explorer + # [1.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-graphiql-explorer@0.12.0-next.0...gatsby-graphiql-explorer@1.0.0-next.0) (2021-02-05) **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 efa73b0e3b5de..8d046ea575a53 100644 --- a/packages/gatsby-graphiql-explorer/package.json +++ b/packages/gatsby-graphiql-explorer/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-graphiql-explorer", - "version": "1.0.0-next.0", + "version": "1.1.0-next.0", "description": "GraphiQL IDE with custom features for Gatsby users", "main": "index.js", "scripts": { @@ -38,7 +38,7 @@ "@babel/preset-env": "^7.12.1", "@babel/preset-react": "^7.12.5", "babel-loader": "^8.2.2", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 33684a3167df4..fc823f84de108 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-image@3.0.0-next.1...gatsby-image@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-image + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-image@3.0.0-next.0...gatsby-image@3.0.0-next.1) (2021-02-25) **Note:** Version bump only for package gatsby-image diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json index 6db05e7b0d323..cd96fec8b3ddb 100644 --- a/packages/gatsby-image/package.json +++ b/packages/gatsby-image/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-image", "description": "Lazy-loading React image component with optional support for the blur-up effect.", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@testing-library/react": "^9.5.0", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 e60cad68bfecf..c3b6894abc2b4 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. +# [1.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-legacy-polyfills@1.0.0-next.1...gatsby-legacy-polyfills@1.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-legacy-polyfills + # [1.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-legacy-polyfills@1.0.0-next.0...gatsby-legacy-polyfills@1.0.0-next.1) (2021-02-25) **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 dadf609277299..9b7aee62ef853 100644 --- a/packages/gatsby-legacy-polyfills/package.json +++ b/packages/gatsby-legacy-polyfills/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-legacy-polyfills", "description": "Polyfills for legacy browsers", - "version": "1.0.0-next.1", + "version": "1.1.0-next.0", "main": "dist/polyfills.js", "author": "Ward Peeters ", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-legacy-polyfills#readme", diff --git a/packages/gatsby-link/CHANGELOG.md b/packages/gatsby-link/CHANGELOG.md index 7fcc4daaa8fea..b947f70786efd 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@3.0.0-next.0...gatsby-link@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-link + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-link@2.12.0-next.1...gatsby-link@3.0.0-next.0) (2021-02-05) **Note:** Version bump only for package gatsby-link diff --git a/packages/gatsby-link/index.d.ts b/packages/gatsby-link/index.d.ts index e08b07f6b857c..74526f67856b5 100644 --- a/packages/gatsby-link/index.d.ts +++ b/packages/gatsby-link/index.d.ts @@ -1,7 +1,7 @@ import * as React from "react" import { NavigateFn, LinkProps } from "@reach/router" -// eslint-disable-next-line @typescript-eslint/interface-name-prefix +// eslint-disable-next-line @typescript-eslint/naming-convention export interface GatsbyLinkProps extends LinkProps { /** A class to apply when this Link is active */ activeClassName?: string diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index 2ccc2889ed5fd..37ff94cde5636 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-link", "description": "An enhanced Link component for Gatsby sites with support for resource prefetching", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,13 +15,13 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@testing-library/react": "^9.5.0", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { "@reach/router": "^1.3.3", - "react": "^16.4.2 || ^17.0.0", - "react-dom": "^16.4.2 || ^17.0.0" + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link#readme", "keywords": [ diff --git a/packages/gatsby-page-utils/CHANGELOG.md b/packages/gatsby-page-utils/CHANGELOG.md index 5abd6a3f707ca..aee2b72657062 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. +# [1.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-page-utils@1.0.0-next.2...gatsby-page-utils@1.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-page-utils + # [1.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-page-utils@1.0.0-next.1...gatsby-page-utils@1.0.0-next.2) (2021-02-25) **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 dca9ea821a252..a2185f1cccd16 100644 --- a/packages/gatsby-page-utils/package.json +++ b/packages/gatsby-page-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-page-utils", - "version": "1.0.0-next.2", + "version": "1.1.0-next.0", "description": "Gatsby library that helps creating pages", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -26,7 +26,7 @@ "bluebird": "^3.7.2", "chokidar": "^3.5.1", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.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": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "rimraf": "^3.0.2", "typescript": "^4.1.5" diff --git a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md index fed169d98b6ba..299a36a280c85 100644 --- a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md +++ b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-benchmark-reporting@1.0.0-next.0...gatsby-plugin-benchmark-reporting@1.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-benchmark-reporting + # [1.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-benchmark-reporting@0.10.0-next.0...gatsby-plugin-benchmark-reporting@1.0.0-next.0) (2021-02-05) **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 0e2f4d69e2a82..70c3e359899f9 100644 --- a/packages/gatsby-plugin-benchmark-reporting/package.json +++ b/packages/gatsby-plugin-benchmark-reporting/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-benchmark-reporting", "description": "Gatsby Benchmark Reporting", - "version": "1.0.0-next.0", + "version": "1.1.0-next.0", "author": "Peter van der Zee ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0" + "babel-preset-gatsby-package": "^1.1.0-next.0" }, "dependencies": { "fast-glob": "^3.2.5", diff --git a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md index 68bb8c31ba938..de22d1ccc3223 100644 --- a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md +++ b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-canonical-urls@3.0.0-next.1...gatsby-plugin-canonical-urls@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-canonical-urls + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-canonical-urls@3.0.0-next.0...gatsby-plugin-canonical-urls@3.0.0-next.1) (2021-02-25) ### Features diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json index afc29e6e21fb5..c599e1ec87281 100644 --- a/packages/gatsby-plugin-canonical-urls/package.json +++ b/packages/gatsby-plugin-canonical-urls/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-canonical-urls", "description": "Add canonical links to HTML pages Gatsby generates.", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 02b4800930f75..a9c5c52d027fe 100644 --- a/packages/gatsby-plugin-catch-links/CHANGELOG.md +++ b/packages/gatsby-plugin-catch-links/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-catch-links@3.0.0-next.0...gatsby-plugin-catch-links@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-catch-links + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-catch-links@2.11.0-next.0...gatsby-plugin-catch-links@3.0.0-next.0) (2021-02-05) **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 0e2fed3a8f3c7..50cc853fbe3ad 100644 --- a/packages/gatsby-plugin-catch-links/package.json +++ b/packages/gatsby-plugin-catch-links/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-catch-links", "description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 b37246f3703eb..361223d801d73 100644 --- a/packages/gatsby-plugin-coffeescript/CHANGELOG.md +++ b/packages/gatsby-plugin-coffeescript/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-coffeescript@3.0.0-next.0...gatsby-plugin-coffeescript@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-coffeescript + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-coffeescript@2.11.0-next.0...gatsby-plugin-coffeescript@3.0.0-next.0) (2021-02-05) **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 3043a01407560..62658ca81c681 100644 --- a/packages/gatsby-plugin-coffeescript/package.json +++ b/packages/gatsby-plugin-coffeescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-coffeescript", "description": "Adds CoffeeScript support for Gatsby", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 d3133881abb3d..5c34723099e5b 100644 --- a/packages/gatsby-plugin-create-client-paths/CHANGELOG.md +++ b/packages/gatsby-plugin-create-client-paths/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-create-client-paths@3.0.0-next.0...gatsby-plugin-create-client-paths@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-create-client-paths + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-create-client-paths@2.11.0-next.0...gatsby-plugin-create-client-paths@3.0.0-next.0) (2021-02-05) **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 1fb46599b0983..806c208a85ff6 100644 --- a/packages/gatsby-plugin-create-client-paths/package.json +++ b/packages/gatsby-plugin-create-client-paths/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-create-client-paths", "description": "Gatsby-plugin for creating paths that exist only on the client", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "scott.eckenthal@gmail.com", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 6034c4d8ea5b6..bd9de992c0619 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-cxs@3.0.0-next.1...gatsby-plugin-cxs@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-cxs + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-cxs@3.0.0-next.0...gatsby-plugin-cxs@3.0.0-next.1) (2021-02-25) **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 c5e6f90b6bfa3..4d9392a92ab5a 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.0.0-next.1", + "version": "3.1.0-next.0", "author": "Chen-Tai Hou ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,10 +12,10 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "cxs": "^6.2.0", - "gatsby-plugin-utils": "^1.0.0-next.1" + "gatsby-plugin-utils": "^1.1.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme", "keywords": [ @@ -27,7 +27,9 @@ "main": "index.js", "peerDependencies": { "cxs": ">=5.0.0", - "gatsby": "^3.0.0-next.0" + "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-emotion/CHANGELOG.md b/packages/gatsby-plugin-emotion/CHANGELOG.md index 06b7bc75e0475..c818561a8f7fe 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. +# [6.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-emotion@6.0.0-next.0...gatsby-plugin-emotion@6.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-emotion + # [6.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-emotion@5.5.0-next.0...gatsby-plugin-emotion@6.0.0-next.0) (2021-02-05) **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 6aa98cfb533ea..b182905181641 100644 --- a/packages/gatsby-plugin-emotion/package.json +++ b/packages/gatsby-plugin-emotion/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-emotion", "description": "Gatsby plugin to add support for Emotion", - "version": "6.0.0-next.0", + "version": "6.1.0-next.0", "author": "Tegan Churchill ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 84d693378cdc3..5a210e78b2e2a 100644 --- a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md +++ b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-facebook-analytics@3.0.0-next.0...gatsby-plugin-facebook-analytics@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-facebook-analytics + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-facebook-analytics@2.12.0-next.0...gatsby-plugin-facebook-analytics@3.0.0-next.0) (2021-02-05) **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 b74d097ddd8cd..1afd4b3804263 100644 --- a/packages/gatsby-plugin-facebook-analytics/package.json +++ b/packages/gatsby-plugin-facebook-analytics/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-facebook-analytics", "description": "Gatsby plugin to add facebook analytics onto a site", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Yeison Daza ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 0c30003b24c6b..33ccabfad9893 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-feed@3.0.0-next.2...gatsby-plugin-feed@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-feed + # [3.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-feed@3.0.0-next.1...gatsby-plugin-feed@3.0.0-next.2) (2021-02-25) ### Bug Fixes diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json index 05372186e360b..a3071435dd482 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.0.0-next.2", + "version": "3.1.0-next.0", "author": "Nicholas Young ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,14 +11,14 @@ "@hapi/joi": "^15.1.1", "common-tags": "^1.8.0", "fs-extra": "^9.1.0", - "gatsby-plugin-utils": "^1.0.0-next.1", + "gatsby-plugin-utils": "^1.1.0-next.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-feed#readme", @@ -32,7 +32,9 @@ "license": "MIT", "main": "index.js", "peerDependencies": { - "gatsby": "^3.0.0-next.0" + "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-flow/CHANGELOG.md b/packages/gatsby-plugin-flow/CHANGELOG.md index c48bc51dedf76..9e4d30cf61a5d 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-flow@2.0.0-next.0...gatsby-plugin-flow@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-flow + # [2.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-flow@1.11.0-next.0...gatsby-plugin-flow@2.0.0-next.0) (2021-02-05) **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 5bc45b1f71448..65714f835d157 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.0.0-next.0", + "version": "2.1.0-next.0", "description": "Provides drop-in support for Flow by adding @babel/preset-flow.", "main": "index.js", "scripts": { @@ -30,7 +30,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-fullstory/CHANGELOG.md b/packages/gatsby-plugin-fullstory/CHANGELOG.md index 9dd20f498e413..8398d098f5efc 100644 --- a/packages/gatsby-plugin-fullstory/CHANGELOG.md +++ b/packages/gatsby-plugin-fullstory/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-fullstory@3.0.0-next.0...gatsby-plugin-fullstory@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-fullstory + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-fullstory@2.11.0-next.0...gatsby-plugin-fullstory@3.0.0-next.0) (2021-02-05) **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 19b4f7c377189..4c48da57fe5c3 100644 --- a/packages/gatsby-plugin-fullstory/package.json +++ b/packages/gatsby-plugin-fullstory/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-fullstory", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "description": "Plugin to add the tracking code for Fullstory.com", "main": "index.js", "scripts": { @@ -29,11 +29,13 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { - "gatsby": "^3.0.0-next.0" + "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "engines": { "node": ">=12.13.0" diff --git a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md b/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md index f35afbcc0a8ca..357da22824aad 100644 --- a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md +++ b/packages/gatsby-plugin-gatsby-cloud/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.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-gatsby-cloud@1.1.0-next.3...gatsby-plugin-gatsby-cloud@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-gatsby-cloud + # [1.1.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-gatsby-cloud@1.1.0-next.2...gatsby-plugin-gatsby-cloud@1.1.0-next.3) (2021-02-25) ### Bug Fixes diff --git a/packages/gatsby-plugin-gatsby-cloud/package.json b/packages/gatsby-plugin-gatsby-cloud/package.json index 965c0704f0545..e5d8ae948f134 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.0.0-next.0", + "version": "2.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-gatsby-cloud#readme", diff --git a/packages/gatsby-plugin-glamor/CHANGELOG.md b/packages/gatsby-plugin-glamor/CHANGELOG.md index 15e512728ffd3..612c05145f913 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-glamor@3.0.0-next.1...gatsby-plugin-glamor@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-glamor + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-glamor@3.0.0-next.0...gatsby-plugin-glamor@3.0.0-next.1) (2021-02-25) **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 a65ce5a73e141..677fd1d2f74ee 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.0.0-next.1", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,9 +12,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.0.0-next.1" + "gatsby-plugin-utils": "^1.1.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor#readme", "keywords": [ @@ -26,7 +26,9 @@ "main": "index.js", "peerDependencies": { "gatsby": "^3.0.0-next.0", - "glamor": "^2.20.29" + "glamor": "^2.20.29", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-google-analytics/CHANGELOG.md b/packages/gatsby-plugin-google-analytics/CHANGELOG.md index fcfb451d38363..ed8560431d87e 100644 --- a/packages/gatsby-plugin-google-analytics/CHANGELOG.md +++ b/packages/gatsby-plugin-google-analytics/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-analytics@3.0.0-next.1...gatsby-plugin-google-analytics@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-google-analytics + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-analytics@3.0.0-next.0...gatsby-plugin-google-analytics@3.0.0-next.1) (2021-02-11) **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 c063cb8119965..0e814ac9c0cdd 100644 --- a/packages/gatsby-plugin-google-analytics/package.json +++ b/packages/gatsby-plugin-google-analytics/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-analytics", "description": "Gatsby plugin to add google analytics onto a site", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@testing-library/react": "^9.5.0", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-analytics#readme", @@ -27,8 +27,8 @@ "main": "index.js", "peerDependencies": { "gatsby": "^3.0.0-next.0", - "react": "^16.4.2 || ^17.0.0", - "react-dom": "^16.4.2 || ^17.0.0" + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-google-gtag/CHANGELOG.md b/packages/gatsby-plugin-google-gtag/CHANGELOG.md index 0a30b859c4bc4..a070fb09a2e6c 100644 --- a/packages/gatsby-plugin-google-gtag/CHANGELOG.md +++ b/packages/gatsby-plugin-google-gtag/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-gtag@3.0.0-next.1...gatsby-plugin-google-gtag@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-google-gtag + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-gtag@3.0.0-next.0...gatsby-plugin-google-gtag@3.0.0-next.1) (2021-02-12) **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 0836bb26172f8..c9d95a45ac4ab 100644 --- a/packages/gatsby-plugin-google-gtag/package.json +++ b/packages/gatsby-plugin-google-gtag/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-gtag", "description": "Gatsby plugin to add google gtag onto a site", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Tyler Buchea ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-gtag#readme", @@ -26,7 +26,9 @@ "license": "MIT", "main": "index.js", "peerDependencies": { - "gatsby": "^3.0.0-next.0" + "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md index 0da9a37af51f5..c69006526eda0 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-tagmanager@3.0.0-next.1...gatsby-plugin-google-tagmanager@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-google-tagmanager + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-google-tagmanager@3.0.0-next.0...gatsby-plugin-google-tagmanager@3.0.0-next.1) (2021-02-25) **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 bc7a3d2c8eac2..b01df4f2ac5ae 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.0.0-next.1", + "version": "3.1.0-next.0", "author": "Thijs Koerselman ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,9 +12,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.0.0-next.1" + "gatsby-plugin-utils": "^1.1.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme", "keywords": [ @@ -26,7 +26,9 @@ "license": "MIT", "main": "index.js", "peerDependencies": { - "gatsby": "^3.0.0-next.0" + "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-graphql-config/CHANGELOG.md b/packages/gatsby-plugin-graphql-config/CHANGELOG.md index dc88a90c9bc1f..56076e905e8e4 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.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-graphql-config@0.9.0-next.0...gatsby-plugin-graphql-config@0.10.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-graphql-config + # [0.9.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-graphql-config@0.8.0-next.0...gatsby-plugin-graphql-config@0.9.0-next.0) (2021-02-05) **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 54e9a6d27d2f6..a8452967bf95f 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.9.0-next.0", + "version": "0.10.0-next.0", "author": "Rikki Schulte ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 ff8237266ede2..6b4c660e0eabb 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-image@1.0.0-next.9...gatsby-plugin-image@1.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-image + # [1.0.0-next.9](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-image@1.0.0-next.8...gatsby-plugin-image@1.0.0-next.9) (2021-02-25) ### Bug Fixes diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json index 2bb844c8ae50d..b4181a131780b 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.0.0-next.9", + "version": "1.1.0-next.0", "scripts": { "build": "npm-run-all -s clean -p build:*", "build:gatsby-node": "tsc --jsx react --downlevelIteration true --skipLibCheck true --esModuleInterop true --outDir dist/ src/gatsby-node.ts src/babel-plugin-parse-static-images.ts src/resolver-utils.ts src/types.d.ts -d --declarationDir dist/src", @@ -68,19 +68,19 @@ "gatsby-image": "*", "gatsby-plugin-sharp": "*", "gatsby-source-filesystem": "*", - "react": ">=16.8.0", - "react-dom": ">=16.8.0" + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "dependencies": { "@babel/parser": "^7.12.5", "@babel/traverse": "^7.12.5", "babel-jsx-utils": "^1.0.1", - "babel-plugin-remove-graphql-queries": "^3.0.0-next.3", + "babel-plugin-remove-graphql-queries": "^3.1.0-next.0", "camelcase": "^5.3.1", "chokidar": "^3.5.1", "common-tags": "^1.8.0", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.0-next.0", "objectFitPolyfill": "^2.3.0", "prop-types": "^15.7.2" }, diff --git a/packages/gatsby-plugin-image/src/components/__tests__/gatsby-image.browser.tsx b/packages/gatsby-plugin-image/src/components/__tests__/gatsby-image.browser.tsx index a2da1d65313a5..71a59493858e4 100644 --- a/packages/gatsby-plugin-image/src/components/__tests__/gatsby-image.browser.tsx +++ b/packages/gatsby-plugin-image/src/components/__tests__/gatsby-image.browser.tsx @@ -5,6 +5,7 @@ import * as hooks from "../hooks" type GlobalOverride = NodeJS.Global & typeof global.globalThis & { + // eslint-disable-next-line @typescript-eslint/naming-convention GATSBY___IMAGE: boolean SERVER: boolean } diff --git a/packages/gatsby-plugin-image/src/components/__tests__/gatsby-image.server.tsx b/packages/gatsby-plugin-image/src/components/__tests__/gatsby-image.server.tsx index 18af1d422dd5e..ecb4db475f0e1 100644 --- a/packages/gatsby-plugin-image/src/components/__tests__/gatsby-image.server.tsx +++ b/packages/gatsby-plugin-image/src/components/__tests__/gatsby-image.server.tsx @@ -7,6 +7,7 @@ import { SourceProps } from "../picture" type GlobalOverride = NodeJS.Global & typeof global.globalThis & { SERVER: boolean | undefined + // eslint-disable-next-line @typescript-eslint/naming-convention GATSBY___IMAGE: boolean | undefined } diff --git a/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx b/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx index f31269ed51c70..0814691197560 100644 --- a/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx +++ b/packages/gatsby-plugin-image/src/components/gatsby-image.browser.tsx @@ -19,7 +19,7 @@ import { MainImageProps } from "./main-image" import { Layout } from "../image-utils" import { getSizer } from "./layout-wrapper" -// eslint-disable-next-line @typescript-eslint/interface-name-prefix +// eslint-disable-next-line @typescript-eslint/naming-convention export interface GatsbyImageProps extends Omit< ImgHTMLAttributes, diff --git a/packages/gatsby-plugin-jss/CHANGELOG.md b/packages/gatsby-plugin-jss/CHANGELOG.md index aa05afa5447af..e0251b7313354 100644 --- a/packages/gatsby-plugin-jss/CHANGELOG.md +++ b/packages/gatsby-plugin-jss/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-jss@3.0.0-next.0...gatsby-plugin-jss@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-jss + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-jss@2.11.0-next.0...gatsby-plugin-jss@3.0.0-next.0) (2021-02-05) **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 86dad24382b0c..58a41e8d4f5b3 100644 --- a/packages/gatsby-plugin-jss/package.json +++ b/packages/gatsby-plugin-jss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-jss", "description": "Gatsby plugin that adds SSR support for JSS", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Vladimir Guguiev ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-jss#readme", @@ -25,7 +25,9 @@ "license": "MIT", "main": "index.js", "peerDependencies": { - "gatsby": "^3.0.0-next.0" + "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-layout/CHANGELOG.md b/packages/gatsby-plugin-layout/CHANGELOG.md index 546bec234d046..da2e9a83a0333 100644 --- a/packages/gatsby-plugin-layout/CHANGELOG.md +++ b/packages/gatsby-plugin-layout/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-layout@2.0.0-next.0...gatsby-plugin-layout@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-layout + # [2.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-layout@1.11.0-next.0...gatsby-plugin-layout@2.0.0-next.0) (2021-02-05) **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 b0b61cb646e6e..24dcf74b41905 100644 --- a/packages/gatsby-plugin-layout/package.json +++ b/packages/gatsby-plugin-layout/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-layout", - "version": "2.0.0-next.0", + "version": "2.1.0-next.0", "description": "Reimplements the behavior of layout components in gatsby@1, which was removed in version 2.", "main": "index.js", "scripts": { @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-less/CHANGELOG.md b/packages/gatsby-plugin-less/CHANGELOG.md index 557ec448c9ddf..7096a2e603d14 100644 --- a/packages/gatsby-plugin-less/CHANGELOG.md +++ b/packages/gatsby-plugin-less/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-less@5.0.0-next.1...gatsby-plugin-less@5.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-less + # [5.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-less@5.0.0-next.0...gatsby-plugin-less@5.0.0-next.1) (2021-02-19) ### Bug Fixes diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json index 4fec671499517..edec9d883e389 100644 --- a/packages/gatsby-plugin-less/package.json +++ b/packages/gatsby-plugin-less/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-less", "description": "Gatsby plugin to add support for using Less", - "version": "5.0.0-next.1", + "version": "5.1.0-next.0", "author": "monastic.panic@gmail.com", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 e30c5f9cc0205..d7818353f4df0 100644 --- a/packages/gatsby-plugin-lodash/CHANGELOG.md +++ b/packages/gatsby-plugin-lodash/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-lodash@4.0.0-next.0...gatsby-plugin-lodash@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-lodash + # [4.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-lodash@3.11.0-next.0...gatsby-plugin-lodash@4.0.0-next.0) (2021-02-05) **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 0dd5faeb0da58..8aaba848553d8 100644 --- a/packages/gatsby-plugin-lodash/package.json +++ b/packages/gatsby-plugin-lodash/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-lodash", "description": "Easy modular Lodash builds. Adds the Lodash webpack & Babel plugins to your Gatsby build", - "version": "4.0.0-next.0", + "version": "4.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 0ff3f0482cd7a..bdd2c213b1909 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-manifest@3.0.0-next.2...gatsby-plugin-manifest@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-manifest + # [3.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-manifest@3.0.0-next.1...gatsby-plugin-manifest@3.0.0-next.2) (2021-02-25) **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 ef44c34712a1a..6246143cf43b1 100644 --- a/packages/gatsby-plugin-manifest/package.json +++ b/packages/gatsby-plugin-manifest/package.json @@ -1,22 +1,22 @@ { "name": "gatsby-plugin-manifest", "description": "Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps", - "version": "3.0.0-next.2", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "@babel/runtime": "^7.12.5", - "gatsby-core-utils": "^2.0.0-next.2", - "gatsby-plugin-utils": "^1.0.0-next.1", + "gatsby-core-utils": "^2.1.0-next.0", + "gatsby-plugin-utils": "^1.1.0-next.0", "semver": "^7.3.2", "sharp": "^0.27.0" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 d9de03d78d2d2..4640b4912583a 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-mdx@2.0.0-next.3...gatsby-plugin-mdx@2.1.0-next.0) (2021-02-26) + +### Bug Fixes + +- **gatsby-plugin-mdx:** fix relative imports ([#29775](https://github.com/gatsbyjs/gatsby/issues/29775)) ([e79fc6b](https://github.com/gatsbyjs/gatsby/commit/e79fc6b8b0da2bb5aaec8e0ff06073af9c466401)) + # [2.0.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-mdx@2.0.0-next.2...gatsby-plugin-mdx@2.0.0-next.3) (2021-02-25) **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 dfffe8d02f452..894ef2d61a92a 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.0.0-next.3", + "version": "2.1.0-next.0", "description": "MDX integration for Gatsby", "main": "index.js", "license": "MIT", @@ -15,7 +15,9 @@ }, "peerDependencies": { "@mdx-js/mdx": "^1.0.0", - "@mdx-js/react": "^1.0.0" + "@mdx-js/react": "^1.0.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "dependencies": { "@babel/core": "^7.12.3", @@ -33,7 +35,7 @@ "escape-string-regexp": "^1.0.5", "eval": "^0.1.4", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.0-next.0", "gray-matter": "^4.0.2", "json5": "^2.1.3", "loader-utils": "^1.4.0", @@ -58,7 +60,7 @@ "devDependencies": { "@mdx-js/mdx": "^1.6.16", "@mdx-js/react": "^1.6.16", - "gatsby-plugin-utils": "^1.0.0-next.1", + "gatsby-plugin-utils": "^1.1.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 8b55df7cabbcb..41e74b3de180a 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. +# [5.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify-cms@5.0.0-next.2...gatsby-plugin-netlify-cms@5.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-netlify-cms + # [5.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify-cms@5.0.0-next.1...gatsby-plugin-netlify-cms@5.0.0-next.2) (2021-02-25) ### Features diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json index d9e633265d7c2..8cba8f3a90282 100644 --- a/packages/gatsby-plugin-netlify-cms/package.json +++ b/packages/gatsby-plugin-netlify-cms/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-netlify-cms", "description": "A Gatsby plugin which generates the Netlify CMS single page app", - "version": "5.0.0-next.2", + "version": "5.1.0-next.0", "author": "Shawn Erquhart ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.12.17", "@babel/core": "^7.12.17", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "react": "^16.12.0", "react-dom": "^16.12.0" @@ -37,8 +37,8 @@ "peerDependencies": { "gatsby": "^3.0.0-next.0", "netlify-cms-app": "^2.9.0", - "react": "^16.8.4 || ^17.0.0", - "react-dom": "^16.8.4 || ^17.0.0" + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-netlify/CHANGELOG.md b/packages/gatsby-plugin-netlify/CHANGELOG.md index 9ee4813c7ecf2..159883d055bc4 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify@3.0.0-next.3...gatsby-plugin-netlify@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-netlify + # [3.0.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-netlify@3.0.0-next.2...gatsby-plugin-netlify@3.0.0-next.3) (2021-02-25) **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 f9e69428dcee1..c8069256298ef 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.0.0-next.3", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "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": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.0.0-next.1" + "gatsby-plugin-utils": "^1.1.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 f957345b01f6f..09a5f748d4fd3 100644 --- a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md +++ b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-no-sourcemaps@3.0.0-next.0...gatsby-plugin-no-sourcemaps@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-no-sourcemaps + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-no-sourcemaps@2.10.0-next.0...gatsby-plugin-no-sourcemaps@3.0.0-next.0) (2021-02-05) **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 ea679bbbe2b88..7c2195a29c307 100644 --- a/packages/gatsby-plugin-no-sourcemaps/package.json +++ b/packages/gatsby-plugin-no-sourcemaps/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-no-sourcemaps", "description": "Disable sourcemaps when building JavaScript", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Stuart Taylor ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-nprogress/CHANGELOG.md b/packages/gatsby-plugin-nprogress/CHANGELOG.md index 5176e291a15fd..7de29d5ef2757 100644 --- a/packages/gatsby-plugin-nprogress/CHANGELOG.md +++ b/packages/gatsby-plugin-nprogress/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-nprogress@3.0.0-next.0...gatsby-plugin-nprogress@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-nprogress + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-nprogress@2.11.0-next.0...gatsby-plugin-nprogress@3.0.0-next.0) (2021-02-05) **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 83ce444236544..2a48512b9d759 100644 --- a/packages/gatsby-plugin-nprogress/package.json +++ b/packages/gatsby-plugin-nprogress/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-nprogress", "description": "Shows page loading indicator when loading page resources is delayed", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 87c57f20a71f0..bd6d37c96248d 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-offline@4.0.0-next.3...gatsby-plugin-offline@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-offline + # [4.0.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-offline@4.0.0-next.2...gatsby-plugin-offline@4.0.0-next.3) (2021-02-25) **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 137ee516993fd..eb347c0c184f3 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.0.0-next.3", + "version": "4.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.12.5", "cheerio": "^1.0.0-rc.3", - "gatsby-core-utils": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.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": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cpx": "^1.5.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.0.0-next.1", + "gatsby-plugin-utils": "^1.1.0-next.0", "rewire": "^5.0.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme", @@ -35,7 +35,9 @@ "license": "MIT", "main": "index.js", "peerDependencies": { - "gatsby": "^3.0.0-next.0" + "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md index 09b0fa97da6cb..f0d1b808bdb21 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@3.0.0-next.2...gatsby-plugin-page-creator@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-page-creator + # [3.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-page-creator@3.0.0-next.1...gatsby-plugin-page-creator@3.0.0-next.2) (2021-02-25) ### Features diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json index 2e4fbb5c1eaca..69466d805284f 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.0.0-next.2", + "version": "3.1.0-next.0", "description": "Gatsby plugin that automatically creates pages from React components in specified directories", "main": "index.js", "scripts": { @@ -28,15 +28,15 @@ "@sindresorhus/slugify": "^1.1.0", "chokidar": "^3.5.1", "fs-exists-cached": "^1.0.0", - "gatsby-page-utils": "^1.0.0-next.2", - "gatsby-telemetry": "^2.0.0-next.2", + "gatsby-page-utils": "^1.1.0-next.0", + "gatsby-telemetry": "^2.1.0-next.0", "globby": "^11.0.2", "lodash": "^4.17.20" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-page-creator/src/__tests__/extract-query.ts b/packages/gatsby-plugin-page-creator/src/__tests__/extract-query.ts index f0b823fcdf0b2..52f2782e07051 100644 --- a/packages/gatsby-plugin-page-creator/src/__tests__/extract-query.ts +++ b/packages/gatsby-plugin-page-creator/src/__tests__/extract-query.ts @@ -216,6 +216,7 @@ describe(`reverseLookupParams`, () => { compatiblePath(`/{Model.fields__name}.js`) ) ).toEqual({ + // eslint-disable-next-line @typescript-eslint/naming-convention fields__name: `foo`, }) expect( @@ -224,6 +225,7 @@ describe(`reverseLookupParams`, () => { compatiblePath(`/{_model.fields__name}.js`) ) ).toEqual({ + // eslint-disable-next-line @typescript-eslint/naming-convention fields__name: `foo`, }) }) @@ -236,6 +238,7 @@ describe(`reverseLookupParams`, () => { compatiblePath(`/{Model.parent__(File)__relativePath}.js`) ) ).toEqual({ + // eslint-disable-next-line @typescript-eslint/naming-convention parent__relativePath: `foo`, }) expect( @@ -245,6 +248,7 @@ describe(`reverseLookupParams`, () => { compatiblePath(`/{model123.parent__(File)__relativePath}.js`) ) ).toEqual({ + // eslint-disable-next-line @typescript-eslint/naming-convention parent__relativePath: `foo`, }) }) diff --git a/packages/gatsby-plugin-postcss/CHANGELOG.md b/packages/gatsby-plugin-postcss/CHANGELOG.md index e9652bd26f2ca..1e7c518d6a00b 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. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-postcss@4.0.0-next.1...gatsby-plugin-postcss@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-postcss + # [4.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-postcss@4.0.0-next.0...gatsby-plugin-postcss@4.0.0-next.1) (2021-02-19) ### Bug Fixes diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json index aeee116c35435..3a2b07e2c82a2 100644 --- a/packages/gatsby-plugin-postcss/package.json +++ b/packages/gatsby-plugin-postcss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-postcss", "description": "Gatsby plugin to handle PostCSS", - "version": "4.0.0-next.1", + "version": "4.1.0-next.0", "author": "Marat Dreizin ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 cd5313164287c..8eb6ba007e05d 100644 --- a/packages/gatsby-plugin-preact/CHANGELOG.md +++ b/packages/gatsby-plugin-preact/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preact@5.0.0-next.2...gatsby-plugin-preact@5.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-preact + # [5.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preact@5.0.0-next.1...gatsby-plugin-preact@5.0.0-next.2) (2021-02-25) ### Features diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json index ab5ff75b2b399..4c78c7fa41f5d 100644 --- a/packages/gatsby-plugin-preact/package.json +++ b/packages/gatsby-plugin-preact/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-preact", "description": "A Gatsby plugin which replaces React with Preact", - "version": "5.0.0-next.2", + "version": "5.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@pmmmwh/react-refresh-webpack-plugin": "^0.4.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 9aabea5ae6759..9bd30b8b590e4 100644 --- a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md +++ b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preload-fonts@2.0.0-next.2...gatsby-plugin-preload-fonts@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-preload-fonts + # [2.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-preload-fonts@2.0.0-next.1...gatsby-plugin-preload-fonts@2.0.0-next.2) (2021-02-25) **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 1392035e460f0..54b995c53e3f5 100644 --- a/packages/gatsby-plugin-preload-fonts/package.json +++ b/packages/gatsby-plugin-preload-fonts/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-preload-fonts", "description": "Gatsby plugin for preloading fonts per page", - "version": "2.0.0-next.2", + "version": "2.1.0-next.0", "author": "Aaron Ross ", "main": "index.js", "bin": { @@ -14,7 +14,7 @@ "chalk": "^4.1.0", "date-fns": "^2.16.1", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.0-next.0", "graphql-request": "^1.8.2", "progress": "^2.0.3", "puppeteer": "^3.3.0" @@ -22,7 +22,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 2ee22cd990a20..ff52864e8dafb 100644 --- a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md +++ b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-css-modules@3.0.0-next.0...gatsby-plugin-react-css-modules@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-react-css-modules + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-css-modules@2.11.0-next.0...gatsby-plugin-react-css-modules@3.0.0-next.0) (2021-02-05) **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 98d14ae715087..6bf2dc62845dd 100644 --- a/packages/gatsby-plugin-react-css-modules/package.json +++ b/packages/gatsby-plugin-react-css-modules/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-react-css-modules", "description": "Gatsby plugin that transforms styleName to className using compile time CSS module resolution", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Ming Aldrich-Gan ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 4bd9ec9641e72..b03b0e38d13d3 100644 --- a/packages/gatsby-plugin-react-helmet/CHANGELOG.md +++ b/packages/gatsby-plugin-react-helmet/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-helmet@4.0.0-next.0...gatsby-plugin-react-helmet@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-react-helmet + # [4.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-react-helmet@3.11.0-next.0...gatsby-plugin-react-helmet@4.0.0-next.0) (2021-02-05) **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 a75cb5f3cbb90..017f7f1eed1b1 100644 --- a/packages/gatsby-plugin-react-helmet/package.json +++ b/packages/gatsby-plugin-react-helmet/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-react-helmet", "description": "Manage document head data with react-helmet. Provides drop-in server rendering support for Gatsby.", - "version": "4.0.0-next.0", + "version": "4.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 cb856d0be907d..6ca27a0068f10 100644 --- a/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md +++ b/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-remove-trailing-slashes@3.0.0-next.0...gatsby-plugin-remove-trailing-slashes@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-remove-trailing-slashes + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-remove-trailing-slashes@2.11.0-next.0...gatsby-plugin-remove-trailing-slashes@3.0.0-next.0) (2021-02-05) **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 44949701474b8..415452b1d271e 100644 --- a/packages/gatsby-plugin-remove-trailing-slashes/package.json +++ b/packages/gatsby-plugin-remove-trailing-slashes/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-remove-trailing-slashes", "description": "Removes trailing slashes from your project's paths. For example, yoursite.com/about/ becomes yoursite.com/about", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "scott.eckenthal@gmail.com", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 f1b0cf2324064..37cb27e8518e0 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sass@4.0.0-next.3...gatsby-plugin-sass@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-sass + # [4.0.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sass@4.0.0-next.2...gatsby-plugin-sass@4.0.0-next.3) (2021-02-25) **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 bc0990faa0c1f..4c3200b3ad51d 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.0.0-next.3", + "version": "4.1.0-next.0", "author": "Daniel Farrell ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,9 +14,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.0.0-next.1" + "gatsby-plugin-utils": "^1.1.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 fa7f50058737b..e658e5a11fba8 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. +# [2.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-schema-snapshot@2.0.0-next.0...gatsby-plugin-schema-snapshot@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-schema-snapshot + # [2.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-schema-snapshot@1.8.0-next.0...gatsby-plugin-schema-snapshot@2.0.0-next.0) (2021-02-05) **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 ea30af5e17fcd..6b9b74707c003 100644 --- a/packages/gatsby-plugin-schema-snapshot/package.json +++ b/packages/gatsby-plugin-schema-snapshot/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-schema-snapshot", - "version": "2.0.0-next.0", + "version": "2.1.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 614319dbd1c71..f57faf157cb4e 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sharp@3.0.0-next.9...gatsby-plugin-sharp@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-sharp + # [3.0.0-next.9](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sharp@3.0.0-next.8...gatsby-plugin-sharp@3.0.0-next.9) (2021-02-25) ### Features diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index e93179814db73..3a386073805ef 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.0.0-next.9", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,8 +12,8 @@ "bluebird": "^3.7.2", "filenamify": "^4.2.0", "fs-extra": "^9.1.0", - "gatsby-core-utils": "^2.0.0-next.2", - "gatsby-telemetry": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.0-next.0", + "gatsby-telemetry": "^2.1.0-next.0", "got": "^10.7.0", "imagemin": "^7.0.1", "imagemin-mozjpeg": "^9.0.0", @@ -32,10 +32,10 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@types/sharp": "^0.27.1", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^1.0.0-next.9", - "gatsby-plugin-utils": "^1.0.0-next.1" + "gatsby-plugin-image": "^1.1.0-next.0", + "gatsby-plugin-utils": "^1.1.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 c69a5128771e7..00f53c48798de 100644 --- a/packages/gatsby-plugin-sitemap/CHANGELOG.md +++ b/packages/gatsby-plugin-sitemap/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sitemap@3.0.0-next.0...gatsby-plugin-sitemap@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-sitemap + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-sitemap@2.13.0-next.0...gatsby-plugin-sitemap@3.0.0-next.0) (2021-02-05) **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 69d612aae6bf5..ffecebbbfb50b 100644 --- a/packages/gatsby-plugin-sitemap/package.json +++ b/packages/gatsby-plugin-sitemap/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sitemap", "description": "Gatsby plugin that automatically creates a sitemap for your site", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Nicholas Young <nicholas@nicholaswyoung.com>", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme", @@ -27,7 +27,9 @@ "license": "MIT", "main": "index.js", "peerDependencies": { - "gatsby": "^3.0.0-next.0" + "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-plugin-styled-components/CHANGELOG.md b/packages/gatsby-plugin-styled-components/CHANGELOG.md index e4cd0743a773e..4a0b8c705d87d 100644 --- a/packages/gatsby-plugin-styled-components/CHANGELOG.md +++ b/packages/gatsby-plugin-styled-components/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-components@4.0.0-next.2...gatsby-plugin-styled-components@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-styled-components + # [4.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-components@4.0.0-next.1...gatsby-plugin-styled-components@4.0.0-next.2) (2021-02-17) ### Bug Fixes diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json index b3d423391c2a2..2c60692168082 100644 --- a/packages/gatsby-plugin-styled-components/package.json +++ b/packages/gatsby-plugin-styled-components/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styled-components", "description": "Gatsby plugin to add support for styled components", - "version": "4.0.0-next.2", + "version": "4.1.0-next.0", "author": "Guten Ye ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-components#readme", @@ -26,6 +26,8 @@ "peerDependencies": { "babel-plugin-styled-components": ">1.5.0", "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0", "styled-components": ">=2.0.0" }, "repository": { diff --git a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md index 9dba1439063e0..143bbe38711de 100644 --- a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md +++ b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-jsx@4.0.0-next.0...gatsby-plugin-styled-jsx@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-styled-jsx + # [4.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styled-jsx@3.11.0-next.0...gatsby-plugin-styled-jsx@4.0.0-next.0) (2021-02-05) **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 172974a761ba5..138d7ec4ae5cc 100644 --- a/packages/gatsby-plugin-styled-jsx/package.json +++ b/packages/gatsby-plugin-styled-jsx/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styled-jsx", "description": "Adds SSR support for styled-jsx", - "version": "4.0.0-next.0", + "version": "4.1.0-next.0", "author": "Tim Suchanek ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 fa6dcb2a07397..f7ba434ecf4c0 100644 --- a/packages/gatsby-plugin-styletron/CHANGELOG.md +++ b/packages/gatsby-plugin-styletron/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styletron@6.0.0-next.0...gatsby-plugin-styletron@6.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-styletron + # [6.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-styletron@5.8.0-next.0...gatsby-plugin-styletron@6.0.0-next.0) (2021-02-05) **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 bdaba6d0e7ebf..577df67011135 100644 --- a/packages/gatsby-plugin-styletron/package.json +++ b/packages/gatsby-plugin-styletron/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styletron", "description": "A Gatsby plugin for styletron with built-in server-side rendering support", - "version": "6.0.0-next.0", + "version": "6.1.0-next.0", "author": "Nadiia Dmytrenko ", "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": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "styletron-engine-atomic": "^1.4.6", "styletron-react": "^5.2.7" @@ -23,7 +23,7 @@ "main": "index.js", "peerDependencies": { "gatsby": "^3.0.0-next.0", - "react": "^16.4.2 || ^17.0.0", + "react": "^16.9.0 || ^17.0.0", "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 8f5c03df5241c..498d0853ff469 100644 --- a/packages/gatsby-plugin-stylus/CHANGELOG.md +++ b/packages/gatsby-plugin-stylus/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-stylus@3.0.0-next.1...gatsby-plugin-stylus@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-stylus + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-stylus@3.0.0-next.0...gatsby-plugin-stylus@3.0.0-next.1) (2021-02-19) ### Bug Fixes diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json index d6dd898e5a3d2..82799b8ce6dfd 100644 --- a/packages/gatsby-plugin-stylus/package.json +++ b/packages/gatsby-plugin-stylus/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-stylus", "description": "Gatsby support for Stylus", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Ian Sinnott ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 a2b4170ac73b9..04f8893295dda 100644 --- a/packages/gatsby-plugin-subfont/CHANGELOG.md +++ b/packages/gatsby-plugin-subfont/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-subfont@3.0.0-next.0...gatsby-plugin-subfont@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-subfont + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-subfont@2.10.0-next.1...gatsby-plugin-subfont@3.0.0-next.0) (2021-02-05) **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 856e7efd847f4..7b8501dc8a7df 100644 --- a/packages/gatsby-plugin-subfont/package.json +++ b/packages/gatsby-plugin-subfont/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-subfont", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "description": "Runs the font delivery optimizing CLI tool subfont on the homepage of your site during the Gatsby build", "main": "index.js", "scripts": { @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-twitter/CHANGELOG.md b/packages/gatsby-plugin-twitter/CHANGELOG.md index 2ea61db9663f0..c7a5883662bce 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-twitter@3.0.0-next.1...gatsby-plugin-twitter@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-twitter + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-twitter@3.0.0-next.0...gatsby-plugin-twitter@3.0.0-next.1) (2021-02-25) **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 34c34b141fa12..acffa2e2b307a 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.0.0-next.1", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,9 +12,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.0.0-next.1" + "gatsby-plugin-utils": "^1.1.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 c966694d07935..2cf547f3645ea 100644 --- a/packages/gatsby-plugin-typescript/CHANGELOG.md +++ b/packages/gatsby-plugin-typescript/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typescript@3.0.0-next.3...gatsby-plugin-typescript@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-typescript + # [3.0.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typescript@3.0.0-next.2...gatsby-plugin-typescript@3.0.0-next.3) (2021-02-25) **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 28ad0fc71d745..220cc5d150eef 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typescript", "description": "Adds TypeScript support to Gatsby", - "version": "3.0.0-next.3", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,12 +16,12 @@ "@babel/plugin-proposal-optional-chaining": "^7.12.1", "@babel/preset-typescript": "^7.12.1", "@babel/runtime": "^7.12.5", - "babel-plugin-remove-graphql-queries": "^3.0.0-next.3" + "babel-plugin-remove-graphql-queries": "^3.1.0-next.0" }, "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-typography/CHANGELOG.md b/packages/gatsby-plugin-typography/CHANGELOG.md index 7858d66bfc204..fe5f24968c709 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typography@3.0.0-next.0...gatsby-plugin-typography@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-typography + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-typography@2.13.0-next.0...gatsby-plugin-typography@3.0.0-next.0) (2021-02-05) **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 63a8758165c9b..59f0a90442c44 100644 --- a/packages/gatsby-plugin-typography/package.json +++ b/packages/gatsby-plugin-typography/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typography", "description": "Gatsby plugin to setup server rendering of Typography.js' CSS", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "react": "^16.12.0", "react-dom": "^16.12.0", @@ -30,8 +30,8 @@ "main": "index.js", "peerDependencies": { "gatsby": "^3.0.0-next.0", - "react": "^16.4.2 || ^17.0.0", - "react-dom": "^16.4.2 || ^17.0.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0", "react-typography": "^0.16.1 || ^1.0.0-alpha.0", "typography": "^0.16.0 || ^1.0.0-alpha.0" }, diff --git a/packages/gatsby-plugin-utils/CHANGELOG.md b/packages/gatsby-plugin-utils/CHANGELOG.md index fcc2dc8539636..d3b5e360de808 100644 --- a/packages/gatsby-plugin-utils/CHANGELOG.md +++ b/packages/gatsby-plugin-utils/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-utils@1.0.0-next.1...gatsby-plugin-utils@1.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-plugin-utils + # [1.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-utils@1.0.0-next.0...gatsby-plugin-utils@1.0.0-next.1) (2021-02-25) **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 2e5cfacf090b0..04c522ac54a9b 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.0.0-next.1", + "version": "1.1.0-next.0", "description": "Gatsby utils that help creating plugins", "main": "dist/index.js", "scripts": { @@ -26,7 +26,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "rimraf": "^3.0.2", "typescript": "^4.1.5" diff --git a/packages/gatsby-react-router-scroll/CHANGELOG.md b/packages/gatsby-react-router-scroll/CHANGELOG.md index 89890de128753..fb0bcf06d4074 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. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@4.0.0-next.2...gatsby-react-router-scroll@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-react-router-scroll + # [4.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-react-router-scroll@4.0.0-next.1...gatsby-react-router-scroll@4.0.0-next.2) (2021-02-25) **Note:** Version bump only for package gatsby-react-router-scroll diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json index 06e3538d90c0d..01fc2b2f3f2a1 100644 --- a/packages/gatsby-react-router-scroll/package.json +++ b/packages/gatsby-react-router-scroll/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-react-router-scroll", "description": "React Router scroll management forked from https://github.com/ytase/react-router-scroll for Gatsby", - "version": "4.0.0-next.2", + "version": "4.1.0-next.0", "author": "Jimmy Jia", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "babel-plugin-dev-expression": "^0.2.2", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "history": "^4.10.1" }, @@ -25,8 +25,8 @@ "main": "index.js", "peerDependencies": { "@reach/router": "^1.0.0", - "react": "^16.4.2 || ^17.0.0", - "react-dom": "^16.4.2 || ^17.0.0" + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md index 30a8c35dd4231..5d208492eb43c 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.12.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-recipes@0.11.0-next.5...gatsby-recipes@0.12.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-recipes + # [0.11.0-next.5](https://github.com/gatsbyjs/gatsby/compare/gatsby-recipes@0.11.0-next.4...gatsby-recipes@0.11.0-next.5) (2021-02-25) **Note:** Version bump only for package gatsby-recipes diff --git a/packages/gatsby-recipes/package.json b/packages/gatsby-recipes/package.json index e14b32b976089..540a536a1a9d6 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.11.0-next.5", + "version": "0.12.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -30,8 +30,8 @@ "express": "^4.17.1", "express-graphql": "^0.9.0", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^2.0.0-next.2", - "gatsby-telemetry": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.0-next.0", + "gatsby-telemetry": "^2.1.0-next.0", "glob": "^7.1.6", "graphql": "^15.4.0", "graphql-compose": "~7.25.0", diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md index 49fb29f11d460..1921d3d54c1b0 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@3.0.0-next.1...gatsby-remark-autolink-headers@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-autolink-headers + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-autolink-headers@3.0.0-next.0...gatsby-remark-autolink-headers@3.0.0-next.1) (2021-02-25) **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 6f707f49ac0c0..c54f3b1f5df2a 100644 --- a/packages/gatsby-remark-autolink-headers/package.json +++ b/packages/gatsby-remark-autolink-headers/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-autolink-headers", "description": "Gatsby plugin to autolink headers in markdown processed by Remark", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,9 +16,9 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.0.0-next.1" + "gatsby-plugin-utils": "^1.1.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers#readme", "keywords": [ @@ -29,7 +29,9 @@ "license": "MIT", "main": "index.js", "peerDependencies": { - "gatsby": "^3.0.0-next.0" + "gatsby": "^3.0.0-next.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0" }, "repository": { "type": "git", diff --git a/packages/gatsby-remark-code-repls/CHANGELOG.md b/packages/gatsby-remark-code-repls/CHANGELOG.md index ba5a1f522df7a..934a31ae963ea 100644 --- a/packages/gatsby-remark-code-repls/CHANGELOG.md +++ b/packages/gatsby-remark-code-repls/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-code-repls@4.0.0-next.0...gatsby-remark-code-repls@4.1.0-next.0) (2021-02-26) + +### Features + +- shim reporter from gatsby ([#29669](https://github.com/gatsbyjs/gatsby/issues/29669)) ([249905a](https://github.com/gatsbyjs/gatsby/commit/249905ac92f11efdb2333828667b946a860a1a27)) + # [4.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-code-repls@3.10.0-next.0...gatsby-remark-code-repls@4.0.0-next.0) (2021-02-05) **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 3054c69517f74..e7ea7e1d23a8f 100644 --- a/packages/gatsby-remark-code-repls/package.json +++ b/packages/gatsby-remark-code-repls/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-code-repls", "description": "Gatsby plugin to auto-generate links to popular REPLs like Babel and Codepen", - "version": "4.0.0-next.0", + "version": "4.1.0-next.0", "author": "Brian Vaughn ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 8d20d2c04dce7..c00f3cf91be67 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-copy-linked-files@3.0.0-next.0...gatsby-remark-copy-linked-files@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-copy-linked-files + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-copy-linked-files@2.11.0-next.0...gatsby-remark-copy-linked-files@3.0.0-next.0) (2021-02-05) **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 9dcb377d888b7..2ae7026b0f8eb 100644 --- a/packages/gatsby-remark-copy-linked-files/package.json +++ b/packages/gatsby-remark-copy-linked-files/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-copy-linked-files", "description": "Find files which are linked to from markdown and copy them to the public directory", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 f09e2bdf666b4..c42d764d778de 100644 --- a/packages/gatsby-remark-custom-blocks/CHANGELOG.md +++ b/packages/gatsby-remark-custom-blocks/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-custom-blocks@3.0.0-next.0...gatsby-remark-custom-blocks@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-custom-blocks + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-custom-blocks@2.11.0-next.0...gatsby-remark-custom-blocks@3.0.0-next.0) (2021-02-05) **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 10fda83e1e791..94fb82d847114 100644 --- a/packages/gatsby-remark-custom-blocks/package.json +++ b/packages/gatsby-remark-custom-blocks/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-custom-blocks", "description": "Gatsby remark plugin for adding custom blocks in markdown", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Mohammad Asad Mohammad ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 96b20584b647b..79d0af084f7c8 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. +# [5.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-embed-snippet@5.0.0-next.1...gatsby-remark-embed-snippet@5.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-embed-snippet + # [5.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-embed-snippet@5.0.0-next.0...gatsby-remark-embed-snippet@5.0.0-next.1) (2021-02-19) **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 a02c948938517..b48f4985b27c7 100644 --- a/packages/gatsby-remark-embed-snippet/package.json +++ b/packages/gatsby-remark-embed-snippet/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-embed-snippet", "description": "Gatsby plugin to embed formatted code snippets within markdown", - "version": "5.0.0-next.1", + "version": "5.1.0-next.0", "author": "Brian Vaughn ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 b49fe94f75a86..ed8c655d03681 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. +# [2.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-graphviz@2.0.0-next.0...gatsby-remark-graphviz@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-graphviz + # [2.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-graphviz@1.11.0-next.0...gatsby-remark-graphviz@2.0.0-next.0) (2021-02-05) **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 8f7a8c1a1cb16..3f618e3f5c5e6 100644 --- a/packages/gatsby-remark-graphviz/package.json +++ b/packages/gatsby-remark-graphviz/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-graphviz", "description": "Processes graphviz code blocks and renders to SVG using viz.js", - "version": "2.0.0-next.0", + "version": "2.1.0-next.0", "author": "Anthony Marcar ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 be7d9674294b3..7ca6e7f76c9f7 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@3.0.0-next.0...gatsby-remark-images-contentful@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-images-contentful + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images-contentful@2.11.0-next.0...gatsby-remark-images-contentful@3.0.0-next.0) (2021-02-05) **Note:** Version bump only for package gatsby-remark-images-contentful diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json index 38bd860116899..5970255ae3af5 100644 --- a/packages/gatsby-remark-images-contentful/package.json +++ b/packages/gatsby-remark-images-contentful/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-remark-images-contentful", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "description": "Process Images in Contentful markdown so they can use the images API.", "main": "index.js", "scripts": { @@ -28,7 +28,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 05d3e46ef3616..4db608f754582 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. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images@4.0.0-next.2...gatsby-remark-images@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-images + # [4.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-images@4.0.0-next.1...gatsby-remark-images@4.0.0-next.2) (2021-02-25) **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 733a9e42ba50b..f9fbd83af55cf 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-images", "description": "Processes images in markdown so they can be used in the production build.", - "version": "4.0.0-next.2", + "version": "4.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,7 +10,7 @@ "@babel/runtime": "^7.12.5", "chalk": "^4.1.0", "cheerio": "^1.0.0-rc.3", - "gatsby-core-utils": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.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": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.0.0-next.1", + "gatsby-plugin-utils": "^1.1.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 fda5ec5e696d3..dbd00383ee997 100644 --- a/packages/gatsby-remark-katex/CHANGELOG.md +++ b/packages/gatsby-remark-katex/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-katex@4.0.0-next.0...gatsby-remark-katex@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-katex + # [4.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-katex@3.11.0-next.0...gatsby-remark-katex@4.0.0-next.0) (2021-02-05) **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 b015fbebfac37..b1771d4fa86ed 100644 --- a/packages/gatsby-remark-katex/package.json +++ b/packages/gatsby-remark-katex/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-katex", "description": "Transform math nodes to html markup", - "version": "4.0.0-next.0", + "version": "4.1.0-next.0", "author": "Jeffrey Xiao ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 67dab0cfbf98b..089524523abe6 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. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-prismjs@4.0.0-next.0...gatsby-remark-prismjs@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-prismjs + # [4.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-prismjs@3.14.0-next.0...gatsby-remark-prismjs@4.0.0-next.0) (2021-02-05) **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 7356f0be05108..0ec98ea9ffa50 100644 --- a/packages/gatsby-remark-prismjs/package.json +++ b/packages/gatsby-remark-prismjs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-prismjs", "description": "Adds syntax highlighting to code blocks at build time using PrismJS", - "version": "4.0.0-next.0", + "version": "4.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 58655271e22c6..909e8e8dc4437 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-responsive-iframe@3.0.0-next.0...gatsby-remark-responsive-iframe@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-responsive-iframe + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-responsive-iframe@2.12.0-next.0...gatsby-remark-responsive-iframe@3.0.0-next.0) (2021-02-05) **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 26bf925a386f0..8cf31de8a6a59 100644 --- a/packages/gatsby-remark-responsive-iframe/package.json +++ b/packages/gatsby-remark-responsive-iframe/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-responsive-iframe", "description": "Make iframes in Markdown processed by Remark responsive", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 3ef0fcb9fc89f..28e22da302a62 100644 --- a/packages/gatsby-remark-smartypants/CHANGELOG.md +++ b/packages/gatsby-remark-smartypants/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-smartypants@3.0.0-next.1...gatsby-remark-smartypants@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-remark-smartypants + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-remark-smartypants@3.0.0-next.0...gatsby-remark-smartypants@3.0.0-next.1) (2021-02-25) **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 ad7f3fbdf8c17..1f963f70bf921 100644 --- a/packages/gatsby-remark-smartypants/package.json +++ b/packages/gatsby-remark-smartypants/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-smartypants", "description": "Use retext-smartypants to auto-enhance typography of markdown", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 3ce4caf5a069b..5f5893c633c69 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. +# [5.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-contentful@5.0.0-next.10...gatsby-source-contentful@5.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-contentful + # [5.0.0-next.10](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-contentful@5.0.0-next.9...gatsby-source-contentful@5.0.0-next.10) (2021-02-25) ### Bug Fixes diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index 4f6eb9fb467b9..58e15c8796339 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.0.0-next.10", + "version": "5.1.0-next.0", "author": "Marcus Ericsson (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,10 +17,10 @@ "common-tags": "^1.8.0", "contentful": "^8.1.7", "fs-extra": "^9.1.0", - "gatsby-core-utils": "^2.0.0-next.2", - "gatsby-plugin-image": "^1.0.0-next.9", - "gatsby-plugin-utils": "^1.0.0-next.1", - "gatsby-source-filesystem": "^3.0.0-next.4", + "gatsby-core-utils": "^2.1.0-next.0", + "gatsby-plugin-image": "^1.1.0-next.0", + "gatsby-plugin-utils": "^1.1.0-next.0", + "gatsby-source-filesystem": "^3.1.0-next.0", "is-online": "^8.5.1", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.20", @@ -33,7 +33,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "nock": "^13.0.6" }, diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index 1f95958630e20..b137fc123fd8b 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. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-drupal@4.0.0-next.4...gatsby-source-drupal@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-drupal + # [4.0.0-next.4](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-drupal@4.0.0-next.3...gatsby-source-drupal@4.0.0-next.4) (2021-02-25) **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 15e01bbcc2877..6b592747fd7ea 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.0.0-next.4", + "version": "4.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,14 +11,14 @@ "axios": "^0.21.1", "bluebird": "^3.7.2", "body-parser": "^1.19.0", - "gatsby-source-filesystem": "^3.0.0-next.4", + "gatsby-source-filesystem": "^3.1.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": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 e21cae3d20629..ef88286c0a4cb 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-faker@3.0.0-next.0...gatsby-source-faker@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-faker + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-faker@2.11.0-next.0...gatsby-source-faker@3.0.0-next.0) (2021-02-05) **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 71570bcba46de..4318fbb7c1ee3 100644 --- a/packages/gatsby-source-faker/package.json +++ b/packages/gatsby-source-faker/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-faker", "description": "A gatsby plugin to get fake data for testing", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Pavithra Kodmad", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 87ffe008aa080..96539cf541cef 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@3.0.0-next.4...gatsby-source-filesystem@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-filesystem + # [3.0.0-next.4](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-filesystem@3.0.0-next.3...gatsby-source-filesystem@3.0.0-next.4) (2021-02-25) ### Features diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index e13582b42f2e7..befaba49698b8 100644 --- a/packages/gatsby-source-filesystem/package.json +++ b/packages/gatsby-source-filesystem/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-filesystem", "description": "Gatsby source plugin for building websites from local data. Markdown, JSON, images, YAML, CSV, and dozens of other data types supported.", - "version": "3.0.0-next.4", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "chokidar": "^3.4.3", "file-type": "^16.0.0", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.0-next.0", "got": "^9.6.0", "md5-file": "^5.0.0", "mime": "^2.4.6", @@ -24,7 +24,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "msw": "^0.25.0" }, diff --git a/packages/gatsby-source-graphql/CHANGELOG.md b/packages/gatsby-source-graphql/CHANGELOG.md index d9ccedae16848..bea1b4235d2d3 100644 --- a/packages/gatsby-source-graphql/CHANGELOG.md +++ b/packages/gatsby-source-graphql/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-graphql@3.0.0-next.1...gatsby-source-graphql@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-graphql + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-graphql@3.0.0-next.0...gatsby-source-graphql@3.0.0-next.1) (2021-02-15) **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 f5504ef4d00c4..b7eaeacec78d5 100644 --- a/packages/gatsby-source-graphql/package.json +++ b/packages/gatsby-source-graphql/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-graphql", "description": "Gatsby plugin which adds a third-party GraphQL API to Gatsby GraphQL", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Mikhail Novikov ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -21,7 +21,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 1b74014d539a2..a499b04e8ff7a 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-hacker-news@3.0.0-next.1...gatsby-source-hacker-news@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-hacker-news + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-hacker-news@3.0.0-next.0...gatsby-source-hacker-news@3.0.0-next.1) (2021-02-11) **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 25435cdb853c6..a9d66c8063ba9 100644 --- a/packages/gatsby-source-hacker-news/package.json +++ b/packages/gatsby-source-hacker-news/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-hacker-news", "description": "Gatsby source plugin for building websites using Hacker News as a data source", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 9240cad708ea1..681762d314e96 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-lever@3.0.0-next.0...gatsby-source-lever@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-lever + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-lever@2.11.0-next.0...gatsby-source-lever@3.0.0-next.0) (2021-02-05) **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 0255fa7893c73..8aacd3a7008bf 100644 --- a/packages/gatsby-source-lever/package.json +++ b/packages/gatsby-source-lever/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-lever", "description": "Gatsby source plugin for building websites using the Lever.co Recruitment Software as a data source.", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Sebastien Fichot ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 90d09fa0008e9..5399acfd65eaa 100644 --- a/packages/gatsby-source-medium/CHANGELOG.md +++ b/packages/gatsby-source-medium/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-medium@3.0.0-next.0...gatsby-source-medium@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-medium + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-medium@2.11.0-next.0...gatsby-source-medium@3.0.0-next.0) (2021-02-05) **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 aa1b9aa3de9e7..8f222bfac8f01 100644 --- a/packages/gatsby-source-medium/package.json +++ b/packages/gatsby-source-medium/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-medium", "description": "Gatsby source plugin for building websites using Medium as a data source", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Robert Vogt ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 8dbd67720c0ff..dd880815e737c 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-mongodb@3.0.0-next.1...gatsby-source-mongodb@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-mongodb + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-mongodb@3.0.0-next.0...gatsby-source-mongodb@3.0.0-next.1) (2021-02-11) **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 c0f399dd99f3a..6d038222f31bc 100644 --- a/packages/gatsby-source-mongodb/package.json +++ b/packages/gatsby-source-mongodb/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-mongodb", "description": "Source plugin for pulling data into Gatsby from MongoDB collections", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "authors": [ "jhermans85@hotmail.com", "hi@elmar.codes" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 a0942c37ec228..88e2384473147 100644 --- a/packages/gatsby-source-npm-package-search/CHANGELOG.md +++ b/packages/gatsby-source-npm-package-search/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@3.0.0-next.2...gatsby-source-npm-package-search@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-npm-package-search + # [3.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-npm-package-search@3.0.0-next.1...gatsby-source-npm-package-search@3.0.0-next.2) (2021-02-22) ### Bug Fixes diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json index 306d0b5cbf12c..a9856660bf07d 100644 --- a/packages/gatsby-source-npm-package-search/package.json +++ b/packages/gatsby-source-npm-package-search/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-npm-package-search", "description": "Search NPM packages and pull NPM & GitHub metadata from Algolia's NPM index", - "version": "3.0.0-next.2", + "version": "3.1.0-next.0", "author": "james.a.stack@gmail.com", "repository": { "type": "git", @@ -17,7 +17,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 93646fe3621fb..7314719ed6116 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. +# [4.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-shopify@4.0.0-next.5...gatsby-source-shopify@4.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-shopify + # [4.0.0-next.5](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-shopify@4.0.0-next.4...gatsby-source-shopify@4.0.0-next.5) (2021-02-25) **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 8be5739b37bd4..e99629b715465 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-shopify", - "version": "4.0.0-next.5", + "version": "4.1.0-next.0", "description": "Gatsby source plugin for building websites using Shopify as a data source.", "scripts": { "build": "babel src --out-dir . --ignore \"**/__tests__\"", @@ -33,10 +33,10 @@ "cross-env": "^7.0.3" }, "dependencies": { - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "chalk": "^4.1.0", "gatsby-node-helpers": "^0.3.0", - "gatsby-source-filesystem": "^3.0.0-next.4", + "gatsby-source-filesystem": "^3.1.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 25c5c994252ac..8c0534c991238 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wikipedia@3.0.0-next.0...gatsby-source-wikipedia@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-wikipedia + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wikipedia@2.11.0-next.0...gatsby-source-wikipedia@3.0.0-next.0) (2021-02-05) **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 09e7bb51e2e1f..87cbf38788dc6 100644 --- a/packages/gatsby-source-wikipedia/package.json +++ b/packages/gatsby-source-wikipedia/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-wikipedia", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "description": "Gatsby source plugin for pulling articles from Wikipedia", "main": "index.js", "scripts": { @@ -36,7 +36,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 6bb88cde5e6e3..f8d63e696cc61 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. +# [5.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wordpress@5.0.0-next.9...gatsby-source-wordpress@5.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-source-wordpress + # [5.0.0-next.9](https://github.com/gatsbyjs/gatsby/compare/gatsby-source-wordpress@5.0.0-next.8...gatsby-source-wordpress@5.0.0-next.9) (2021-02-25) ### Bug Fixes diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index 83a700a3c2031..4a301db96b041 100644 --- a/packages/gatsby-source-wordpress/package.json +++ b/packages/gatsby-source-wordpress/package.json @@ -2,7 +2,7 @@ "name": "gatsby-source-wordpress", "description": "Source data from WordPress in an efficient and scalable way.", "author": "Tyler Barnes ", - "version": "5.0.0-next.9", + "version": "5.1.0-next.0", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, @@ -28,10 +28,10 @@ "file-type": "^15.0.1", "filesize": "^6.1.0", "fs-extra": "^9.0.1", - "gatsby-core-utils": "^2.0.0-next.2", - "gatsby-image": "^3.0.0-next.1", - "gatsby-plugin-catch-links": "^3.0.0-next.0", - "gatsby-source-filesystem": "^3.0.0-next.4", + "gatsby-core-utils": "^2.1.0-next.0", + "gatsby-image": "^3.1.0-next.0", + "gatsby-plugin-catch-links": "^3.1.0-next.0", + "gatsby-source-filesystem": "^3.1.0-next.0", "glob": "^7.1.6", "got": "^11.7.0", "graphql-query-compress": "^1.2.2", @@ -53,8 +53,8 @@ "@types/semver": "^7.3.4", "babel-plugin-import-globals": "^2.0.0", "babel-plugin-module-resolver": "4.0.0", - "babel-preset-gatsby": "^1.0.0-next.4", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby": "^1.1.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^5.2.1", "identity-obj-proxy": "^3.0.0", "react-test-renderer": "^16.12.0", diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md index a360b85004c4a..e6d5777aba513 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-telemetry@2.0.0-next.2...gatsby-telemetry@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-telemetry + # [2.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-telemetry@2.0.0-next.1...gatsby-telemetry@2.0.0-next.2) (2021-02-25) **Note:** Version bump only for package gatsby-telemetry diff --git a/packages/gatsby-telemetry/package.json b/packages/gatsby-telemetry/package.json index f7d5184d0dd5c..b02e3c59770ab 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.0.0-next.2", + "version": "2.1.0-next.0", "author": "Jarmo Isotalo ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "boxen": "^4.2.0", "configstore": "^5.0.1", "fs-extra": "^8.1.0", - "gatsby-core-utils": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.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": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 d3804ba8021c9..a59cee28b417b 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.11.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme@0.10.0-next.0...gatsby-theme@0.11.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-theme + # [0.10.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-theme@0.9.0-next.0...gatsby-theme@0.10.0-next.0) (2021-02-05) **Note:** Version bump only for package gatsby-theme diff --git a/packages/gatsby-theme/package.json b/packages/gatsby-theme/package.json index 5b02210bec8ed..65868cf5a2621 100644 --- a/packages/gatsby-theme/package.json +++ b/packages/gatsby-theme/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-theme", - "version": "0.10.0-next.0", + "version": "0.11.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 478fb195ea70a..9e0db0d0bc51e 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. +# [2.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-asciidoc@2.0.0-next.0...gatsby-transformer-asciidoc@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-asciidoc + # [2.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-asciidoc@1.11.0-next.0...gatsby-transformer-asciidoc@2.0.0-next.0) (2021-02-05) **Note:** Version bump only for package gatsby-transformer-asciidoc diff --git a/packages/gatsby-transformer-asciidoc/package.json b/packages/gatsby-transformer-asciidoc/package.json index e0e3208ca4a54..913a7ee5438d9 100644 --- a/packages/gatsby-transformer-asciidoc/package.json +++ b/packages/gatsby-transformer-asciidoc/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-asciidoc", "description": "Gatsby transformer plugin for Asciidocs using the Asciidoctor.js library", - "version": "2.0.0-next.0", + "version": "2.1.0-next.0", "author": "Daniel Oliver ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 b64f0bdda0103..f57f88efc73af 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-csv@3.0.0-next.0...gatsby-transformer-csv@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-csv + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-csv@2.11.0-next.0...gatsby-transformer-csv@3.0.0-next.0) (2021-02-05) **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 b5f969ece826e..e742432ebfb9d 100644 --- a/packages/gatsby-transformer-csv/package.json +++ b/packages/gatsby-transformer-csv/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-csv", "description": "Gatsby transformer plugin for CSV files", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Sonal Saldanha ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 90ba4f975fb6c..1b636605ce458 100644 --- a/packages/gatsby-transformer-documentationjs/CHANGELOG.md +++ b/packages/gatsby-transformer-documentationjs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-documentationjs@5.0.0-next.0...gatsby-transformer-documentationjs@5.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-documentationjs + # [5.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-documentationjs@4.11.0-next.0...gatsby-transformer-documentationjs@5.0.0-next.0) (2021-02-05) **Note:** Version bump only for package gatsby-transformer-documentationjs diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json index 9f74a904a1792..58b68743a7e22 100644 --- a/packages/gatsby-transformer-documentationjs/package.json +++ b/packages/gatsby-transformer-documentationjs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-documentationjs", "description": "Gatsby transformer plugin which uses Documentation.js to extract JavaScript documentation", - "version": "5.0.0-next.0", + "version": "5.1.0-next.0", "author": "Kyle Mathews", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 a6a612d992b38..7f791a702134b 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-excel@3.0.0-next.0...gatsby-transformer-excel@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-excel + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-excel@2.12.0-next.0...gatsby-transformer-excel@3.0.0-next.0) (2021-02-05) **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 c14d6eb278f89..0fe6ebca543bb 100644 --- a/packages/gatsby-transformer-excel/package.json +++ b/packages/gatsby-transformer-excel/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-excel", "description": "Gatsby transformer plugin for Excel spreadsheets", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "SheetJS ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 bd2cd1e48a3d1..9ef0e4565aa8f 100644 --- a/packages/gatsby-transformer-hjson/CHANGELOG.md +++ b/packages/gatsby-transformer-hjson/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-hjson@3.0.0-next.1...gatsby-transformer-hjson@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-hjson + # [3.0.0-next.1](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-hjson@3.0.0-next.0...gatsby-transformer-hjson@3.0.0-next.1) (2021-02-22) ### Bug Fixes diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json index 6d6f2d781a6cc..9d18e3000b6c8 100644 --- a/packages/gatsby-transformer-hjson/package.json +++ b/packages/gatsby-transformer-hjson/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-hjson", "description": "Gatsby transformer plugin for HJSON files", - "version": "3.0.0-next.1", + "version": "3.1.0-next.0", "author": "Remi Barraquand ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 540f582bea25b..2895116ecc910 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@3.0.0-next.0...gatsby-transformer-javascript-frontmatter@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-frontmatter@2.11.0-next.0...gatsby-transformer-javascript-frontmatter@3.0.0-next.0) (2021-02-05) **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 773ea271d30a6..65f5211e43f3d 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/package.json +++ b/packages/gatsby-transformer-javascript-frontmatter/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-javascript-frontmatter", "description": "Gatsby transformer plugin for JavaScript to extract exports.frontmatter statically.", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Jacob Bolda ", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme", "dependencies": { @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 97e50194163ea..a581b55928955 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@3.0.0-next.0...gatsby-transformer-javascript-static-exports@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-javascript-static-exports + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-javascript-static-exports@2.12.0-next.0...gatsby-transformer-javascript-static-exports@3.0.0-next.0) (2021-02-05) **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 c70573718ac99..44da7ae5f0832 100644 --- a/packages/gatsby-transformer-javascript-static-exports/package.json +++ b/packages/gatsby-transformer-javascript-static-exports/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-javascript-static-exports", "description": "Gatsby transformer plugin for JavaScript to extract exports.data statically.", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Jacob Bolda ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 e7912eb137c57..3e236e5e5e87b 100644 --- a/packages/gatsby-transformer-json/CHANGELOG.md +++ b/packages/gatsby-transformer-json/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-json@3.0.0-next.0...gatsby-transformer-json@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-json + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-json@2.12.0-next.0...gatsby-transformer-json@3.0.0-next.0) (2021-02-05) **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 9ce08136874a7..f83d227817a8d 100644 --- a/packages/gatsby-transformer-json/package.json +++ b/packages/gatsby-transformer-json/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-json", "description": "Gatsby transformer plugin for JSON files", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 950c8459b6abb..43a7ee8a36cfb 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. +# [2.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-pdf@2.0.0-next.0...gatsby-transformer-pdf@2.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-pdf + # [2.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-pdf@1.11.0-next.0...gatsby-transformer-pdf@2.0.0-next.0) (2021-02-05) **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 d844faedde3b1..7a248afdb2cda 100644 --- a/packages/gatsby-transformer-pdf/package.json +++ b/packages/gatsby-transformer-pdf/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-pdf", "description": "Gatsby transformer plugin for pdf files", - "version": "2.0.0-next.0", + "version": "2.1.0-next.0", "author": "Alex Munoz ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 447c82a073abc..0b85c9a338eab 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. +# [6.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-react-docgen@6.0.0-next.0...gatsby-transformer-react-docgen@6.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-react-docgen + # [6.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-react-docgen@5.10.0-next.0...gatsby-transformer-react-docgen@6.0.0-next.0) (2021-02-05) **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 63bd60dd8ef06..203fad6c68ee8 100644 --- a/packages/gatsby-transformer-react-docgen/package.json +++ b/packages/gatsby-transformer-react-docgen/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-react-docgen", "description": "Expose React component metadata and prop information as GraphQL types", - "version": "6.0.0-next.0", + "version": "6.1.0-next.0", "author": "Jason Quense ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,7 +17,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 820c7147d366e..3c885a28b3e63 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@3.0.0-next.3...gatsby-transformer-remark@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-remark + # [3.0.0-next.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-remark@3.0.0-next.2...gatsby-transformer-remark@3.0.0-next.3) (2021-02-25) ### Features diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index 0048d715f9de5..75f9c097d01fa 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": "3.0.0-next.3", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "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": "^2.0.0-next.2", + "gatsby-core-utils": "^2.1.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": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^1.0.0-next.1" + "gatsby-plugin-utils": "^1.1.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 9992cccc16bce..de830ef04d4ec 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@3.0.0-next.2...gatsby-transformer-screenshot@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-screenshot + # [3.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-screenshot@3.0.0-next.1...gatsby-transformer-screenshot@3.0.0-next.2) (2021-02-22) **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 ddc86619f0bfe..a633132955e73 100644 --- a/packages/gatsby-transformer-screenshot/package.json +++ b/packages/gatsby-transformer-screenshot/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-screenshot", "description": "Gatsby transformer plugin that uses AWS Lambda to take screenshots of websites", - "version": "3.0.0-next.2", + "version": "3.1.0-next.0", "author": "David Beckley ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 25a2c083d7c52..a955d64350cff 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sharp@3.0.0-next.2...gatsby-transformer-sharp@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-sharp + # [3.0.0-next.2](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sharp@3.0.0-next.1...gatsby-transformer-sharp@3.0.0-next.2) (2021-02-25) **Note:** Version bump only for package gatsby-transformer-sharp diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index 33ceaa541dc9e..8082d2fa024e1 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sharp", "description": "Gatsby transformer plugin for images using Sharp", - "version": "3.0.0-next.2", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -20,7 +20,7 @@ "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@types/sharp": "^0.27.1", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 24408d88cff8f..77691f6676bb5 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.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sqip@3.0.0-next.9...gatsby-transformer-sqip@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-sqip + # [3.0.0-next.9](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-sqip@3.0.0-next.8...gatsby-transformer-sqip@3.0.0-next.9) (2021-02-25) **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 a507d12188feb..adc4bcf55f86c 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.0.0-next.9", + "version": "3.1.0-next.0", "author": "Benedikt Rötsch ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.12.5", "fs-extra": "^8.1.0", - "gatsby-plugin-sharp": "^3.0.0-next.9", + "gatsby-plugin-sharp": "^3.1.0-next.0", "md5-file": "^5.0.0", "mini-svg-data-uri": "^1.2.3", "p-queue": "^6.6.2", @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.0-next.0", "cross-env": "^7.0.3", "debug": "^3.2.7" }, diff --git a/packages/gatsby-transformer-toml/CHANGELOG.md b/packages/gatsby-transformer-toml/CHANGELOG.md index b9a2648447e5b..48a7326437ac7 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-toml@3.0.0-next.0...gatsby-transformer-toml@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-toml + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-toml@2.12.0-next.0...gatsby-transformer-toml@3.0.0-next.0) (2021-02-05) **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 ba7aa0505cca6..3c8485778d896 100644 --- a/packages/gatsby-transformer-toml/package.json +++ b/packages/gatsby-transformer-toml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-toml", "description": "Gatsby transformer plugin for toml", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Ruben Harutyunyan ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 cb331b5ec5048..5dc35cd795812 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-xml@3.0.0-next.0...gatsby-transformer-xml@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-xml + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-xml@2.11.0-next.0...gatsby-transformer-xml@3.0.0-next.0) (2021-02-05) **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 0461075234109..02e73e460c777 100644 --- a/packages/gatsby-transformer-xml/package.json +++ b/packages/gatsby-transformer-xml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-xml", "description": "Gatsby plugin for parsing XML files. It supports also attributes", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 a78859ff1e03d..17fc994c45386 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. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-yaml@3.0.0-next.0...gatsby-transformer-yaml@3.1.0-next.0) (2021-02-26) + +**Note:** Version bump only for package gatsby-transformer-yaml + # [3.0.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby-transformer-yaml@2.12.0-next.0...gatsby-transformer-yaml@3.0.0-next.0) (2021-02-05) **Note:** Version bump only for package gatsby-transformer-yaml diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json index ad21daa65fcfc..7cd04a85a2331 100644 --- a/packages/gatsby-transformer-yaml/package.json +++ b/packages/gatsby-transformer-yaml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-yaml", "description": "Gatsby transformer plugin for yaml", - "version": "3.0.0-next.0", + "version": "3.1.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", - "babel-preset-gatsby-package": "^1.0.0-next.0", + "babel-preset-gatsby-package": "^1.1.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 7b3810b95606c..4ad004f087fe7 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.1.0-next.0](https://github.com/gatsbyjs/gatsby/compare/gatsby@3.0.0-next.9...gatsby@3.1.0-next.0) (2021-02-26) + +### Bug Fixes + +- **gatsby:** temporarily pin mini-css-extract-plugin version ([#29773](https://github.com/gatsbyjs/gatsby/issues/29773)) ([8967b88](https://github.com/gatsbyjs/gatsby/commit/8967b888b71ce2621b3f2957dae42f78b394ba20)) + +### Features + +- **gatsby:** Add ignoreCase option for createRedirect and support it in client sid… ([#29714](https://github.com/gatsbyjs/gatsby/issues/29714)) ([09f58de](https://github.com/gatsbyjs/gatsby/commit/09f58defb6c3b4b26a3efbc8151fbf129e5cb7fd)) +- **gatsby:** Set up Fast Refresh ([#29588](https://github.com/gatsbyjs/gatsby/issues/29588)) ([e0bd955](https://github.com/gatsbyjs/gatsby/commit/e0bd955677dd23c26491e794d9a339eb343e632b)) + # [3.0.0-next.9](https://github.com/gatsbyjs/gatsby/compare/gatsby@3.0.0-next.8...gatsby@3.0.0-next.9) (2021-02-25) ### Bug Fixes diff --git a/packages/gatsby/cache-dir/error-overlay-handler.js b/packages/gatsby/cache-dir/error-overlay-handler.js index cf9361d02e6e2..9b9fa3067365c 100644 --- a/packages/gatsby/cache-dir/error-overlay-handler.js +++ b/packages/gatsby/cache-dir/error-overlay-handler.js @@ -1,43 +1,25 @@ -const overlayPackage = require(`@pmmmwh/react-refresh-webpack-plugin/overlay`) - -const ErrorOverlay = { - showCompileError: overlayPackage.showCompileError, - clearCompileError: overlayPackage.clearCompileError, -} - const errorMap = {} -function flat(arr) { - return Array.prototype.flat ? arr.flat() : [].concat(...arr) -} - const handleErrorOverlay = () => { const errors = Object.values(errorMap) - let errorStringsToDisplay = [] + let errorsToDisplay = [] if (errors.length > 0) { - errorStringsToDisplay = flat(errors) - .map(error => { - if (typeof error === `string`) { - return error - } else if (typeof error === `object`) { - const errorStrBuilder = [error.text] - - if (error.filePath) { - errorStrBuilder.push(`File: ${error.filePath}`) - } - - return errorStrBuilder.join(`\n\n`) - } - - return null - }) - .filter(Boolean) + errorsToDisplay = errors.flatMap(e => e).filter(Boolean) } - if (errorStringsToDisplay.length > 0) { - ErrorOverlay.showCompileError(errorStringsToDisplay.join(`\n\n`)) + if (errorsToDisplay.length > 0) { + window._gatsbyEvents.push([ + `FAST_REFRESH`, + { + action: `SHOW_GRAPHQL_ERRORS`, + payload: errorsToDisplay, + }, + ]) } else { - ErrorOverlay.clearCompileError() + window._gatsbyEvents.push([ + `FAST_REFRESH`, + { action: `CLEAR_GRAPHQL_ERRORS` }, + ]) } } @@ -52,5 +34,3 @@ export const reportError = (errorID, error) => { } handleErrorOverlay() } - -export { errorMap } diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/accordion.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/accordion.js new file mode 100644 index 0000000000000..235fb0e96f49c --- /dev/null +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/accordion.js @@ -0,0 +1,83 @@ +import * as React from "react" +import { useId } from "./use-id" +import * as keys from "../helpers/keys" +import { match } from "../helpers/match" + +function ChevronIcon() { + return ( + + ) +} + +export function Accordion({ children, ...rest }) { + return ( +
    + {children} +
+ ) +} + +export function AccordionItem({ + children, + disabled = false, + open = false, + title = `title`, + ...rest +}) { + const [isOpen, setIsOpen] = React.useState(open) + const [prevIsOpen, setPrevIsOpen] = React.useState(open) + const id = useId(`accordion-item`) + + if (open !== prevIsOpen) { + setIsOpen(open) + setPrevIsOpen(open) + } + + const toggleOpen = () => { + const nextValue = !isOpen + setIsOpen(nextValue) + } + + // If the AccordionItem is open, and the user hits the ESC key, then close it + const onKeyDown = event => { + if (isOpen && match(event, keys.Escape)) { + setIsOpen(false) + } + } + + return ( +
  • + +
    + {children} +
    +
  • + ) +} diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/build-error.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/build-error.js index 7992c126bdf96..f8da6ae62fecc 100644 --- a/packages/gatsby/cache-dir/fast-refresh-overlay/components/build-error.js +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/build-error.js @@ -1,44 +1,35 @@ -import React from "react" -import Overlay from "./overlay" -import Anser from "anser" -import CodeFrame from "./code-frame" -import { prettifyStack } from "../utils" +import * as React from "react" +import { Overlay, Header, Body, Footer, HeaderOpenClose } from "./overlay" +import { CodeFrame } from "./code-frame" +import { prettifyStack, openInEditor } from "../utils" -const BuildError = ({ error, open, dismiss }) => { - const [file, cause, _emptyLine, ...rest] = error.split(`\n`) - const [_fullPath, _detailedError] = rest - const detailedError = Anser.ansiToJson(_detailedError, { - remove_empty: true, - json: true, - }) - const lineNumberRegex = /^[0-9]*:[0-9]*$/g - const lineNumberFiltered = detailedError.filter( - d => d.content !== ` ` && d.content.match(lineNumberRegex) - )[0]?.content - const lineNumber = lineNumberFiltered.substr( - 0, - lineNumberFiltered.indexOf(`:`) - ) +// Error that is thrown on e.g. webpack errors and thus can't be dismissed and must be fixed +export function BuildError({ error }) { + // Incoming build error shape is like this: + // ./relative-path-to-file + // Additional information (sometimes empty line => handled in "prettifyStack" function) + // /absolute-path-to-file + // Errors/Warnings + const [file, ...rest] = error.split(`\n`) const decoded = prettifyStack(rest) - const header = ( - <> -
    -

    {cause}

    - {file} -
    - - + return ( + +
    +
    +

    Failed to compile

    + {file} +
    + openInEditor(file, 1)} dismiss={false} /> +
    + +

    Source

    + + +
    + This error occurred during the build process and can only be dismissed + by fixing the error. +
    +
    ) - - const body = - - return } - -export default BuildError diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/code-frame.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/code-frame.js index 98bbe415d8725..ca7b63b76ef91 100644 --- a/packages/gatsby/cache-dir/fast-refresh-overlay/components/code-frame.js +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/code-frame.js @@ -1,28 +1,54 @@ -import React from "react" +import * as React from "react" -const CodeFrame = ({ decoded }) => ( -
    -    
    -      {decoded
    -        ? decoded.map((entry, index) => (
    +export function CodeFrame({ decoded }) {
    +  if (!decoded) {
    +    return (
    +      
    +        
    +      
    + ) + } + + return ( +
    +      
    +        {decoded.map((entry, index) => {
    +          // Check if content is "Enter" and render other element that collapses
    +          // Otherwise an empty line would be printed
    +          if (
    +            index === 0 &&
    +            entry.content ===
    +              `
    +`
    +          ) {
    +            return (
    +              
    +            )
    +          }
    +
    +          const style = {
    +            color: entry.fg ? `var(--color-${entry.fg})` : undefined,
    +            ...(entry.decoration === `bold`
    +              ? { fontWeight: 800 }
    +              : entry.decoration === `italic`
    +              ? { fontStyle: `italic` }
    +              : undefined),
    +          }
    +
    +          return (
                 
                   {entry.content}
                 
    -          ))
    -        : null}
    -    
    -  
    -) - -export default CodeFrame + ) + })} +
    +
    + ) +} diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/error-boundary.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/error-boundary.js index 16d154286136a..d3a1d54c8816e 100644 --- a/packages/gatsby/cache-dir/fast-refresh-overlay/components/error-boundary.js +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/error-boundary.js @@ -1,23 +1,14 @@ -import React from "react" +import * as React from "react" -class ErrorBoundary extends React.Component { - state = { hasError: false } +export class ErrorBoundary extends React.Component { + state = { error: null } componentDidCatch(error) { - this.props.onError(error) - } - - componentDidMount() { - this.props.clearErrors() - } - - static getDerivedStateFromError() { - return { hasError: true } + this.setState({ error }) } render() { - return this.state.hasError ? null : this.props.children + // Without this check => possible infinite loop + return this.state.error && this.props.hasErrors ? null : this.props.children } } - -export default ErrorBoundary diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/graphql-errors.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/graphql-errors.js new file mode 100644 index 0000000000000..467f5439d4082 --- /dev/null +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/graphql-errors.js @@ -0,0 +1,94 @@ +import * as React from "react" +import { Body, Header, HeaderOpenClose, Overlay } from "./overlay" +import { Accordion, AccordionItem } from "./accordion" +import { openInEditor } from "../utils" + +function WrappedAccordionItem({ error, open }) { + const title = + error?.error?.message || + error.context.sourceMessage || + `Unknown GraphQL error` + const docsUrl = error?.docsUrl + const filePath = error?.filePath + const lineNumber = error?.location?.start?.line + const columnNumber = error?.location?.start?.column + let locString = `` + if (typeof lineNumber !== `undefined`) { + locString += `:${lineNumber}` + if (typeof columnNumber !== `undefined`) { + locString += `:${columnNumber}` + } + } + + return ( + +
    +
    +
    + {error.level} + {` `}#{error.code} +
    + +
    + {filePath && ( +
    + {filePath} + {locString} +
    + )} +
    +          {error.text}
    +        
    + {docsUrl && ( +
    + See our docs page for more info on this error:{` `} + {docsUrl} +
    + )} +
    +
    + ) +} + +export function GraphqlErrors({ errors, dismiss }) { + const deduplicatedErrors = React.useMemo(() => [...new Set(errors)], [errors]) + const hasMultipleErrors = deduplicatedErrors.length > 1 + return ( + +
    +
    +

    + {hasMultipleErrors + ? `${errors.length} Unhandled GraphQL Errors` + : `Unhandled GraphQL Error`} +

    +
    + +
    + +

    + {hasMultipleErrors ? `Multiple` : `One`} unhandled GraphQL{` `} + {hasMultipleErrors ? `errors` : `error`} found in your files. See the + list below to fix {hasMultipleErrors ? `them` : `it`}: +

    + + {deduplicatedErrors.map((error, index) => ( + + ))} + + +
    + ) +} diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/hooks.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/hooks.js new file mode 100644 index 0000000000000..db8507a2e65eb --- /dev/null +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/hooks.js @@ -0,0 +1,38 @@ +import * as React from "react" +import { prettifyStack } from "../utils" + +export function useStackFrame({ moduleId, lineNumber, columnNumber }) { + const url = + `/__original-stack-frame?moduleId=` + + window.encodeURIComponent(moduleId) + + `&lineNumber=` + + window.encodeURIComponent(lineNumber) + + `&columnNumber=` + + window.encodeURIComponent(columnNumber) + + const [response, setResponse] = React.useState({ + decoded: null, + sourcePosition: { + line: null, + number: null, + }, + sourceContent: null, + }) + + React.useEffect(() => { + async function fetchData() { + const res = await fetch(url) + const json = await res.json() + const decoded = prettifyStack(json.codeFrame) + const { sourcePosition, sourceContent } = json + setResponse({ + decoded, + sourceContent, + sourcePosition, + }) + } + fetchData() + }, []) + + return response +} diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/overlay.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/overlay.js index 3d2c22de26c17..05ed6993840e8 100644 --- a/packages/gatsby/cache-dir/fast-refresh-overlay/components/overlay.js +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/overlay.js @@ -1,43 +1,142 @@ -import React from "react" +import * as React from "react" +import { lock, unlock } from "../helpers/lock-body" +import a11yTrap from "../helpers/focus-trap" -export default function Overlay({ header, body, dismiss }) { +function Backdrop() { + return
    +} + +export function VisuallyHidden({ children }) { + return ( + + {children} + + ) +} + +export function Overlay({ children }) { + React.useEffect(() => { + lock() + + return () => { + unlock() + } + }, []) + + const [overlay, setOverlay] = React.useState(null) + const onOverlay = React.useCallback(el => { + setOverlay(el) + }, []) + + React.useEffect(() => { + if (overlay === null) { + return + } + + const handle = a11yTrap({ context: overlay }) + + // eslint-disable-next-line consistent-return + return () => { + handle.disengage() + } + }, [overlay]) + + return ( +
    + +
    + {children} +
    +
    + ) +} + +export function CloseButton({ dismiss }) { return ( - <> -
    -
    -
    - {header} - + ) +} + +export function HeaderOpenClose({ open, dismiss, children, ...rest }) { + return ( +
    + {children} +
    + {open && ( + -
    -
    {body}
    + )} + {dismiss && }
    - +
    + ) +} + +export function Header({ children, ...rest }) { + return ( +
    + {children} +
    + ) +} + +export function Body({ children, ...rest }) { + return ( +
    + {children} +
    + ) +} + +export function Footer({ children, ...rest }) { + return ( +
    + {children} +
    ) } diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/portal.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/portal.js index 3cc52e82175ac..d995e9ca08dbd 100644 --- a/packages/gatsby/cache-dir/fast-refresh-overlay/components/portal.js +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/portal.js @@ -1,7 +1,7 @@ import * as React from "react" import { createPortal } from "react-dom" -const ShadowPortal = function Portal({ children }) { +export const ShadowPortal = function Portal({ children }) { const mountNode = React.useRef(null) const portalNode = React.useRef(null) const shadowNode = React.useRef(null) @@ -9,7 +9,7 @@ const ShadowPortal = function Portal({ children }) { React.useLayoutEffect(() => { const ownerDocument = mountNode.current.ownerDocument - portalNode.current = ownerDocument.createElement(`gatsby-portal`) + portalNode.current = ownerDocument.createElement(`gatsby-fast-refresh`) shadowNode.current = portalNode.current.attachShadow({ mode: `open` }) ownerDocument.body.appendChild(portalNode.current) forceUpdate({}) @@ -26,5 +26,3 @@ const ShadowPortal = function Portal({ children }) { ) } - -export default ShadowPortal diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-error.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-error.js deleted file mode 100644 index dc5c718faba15..0000000000000 --- a/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-error.js +++ /dev/null @@ -1,111 +0,0 @@ -import React from "react" -import StackTrace from "stack-trace" -import Overlay from "./overlay" -import { prettifyStack } from "../utils" -import CodeFrame from "./code-frame" - -function formatFilename(filename) { - const htmlMatch = /^https?:\/\/(.*)\/(.*)/.exec(filename) - if (htmlMatch && htmlMatch[1] && htmlMatch[2]) { - return htmlMatch[2] - } - - const sourceMatch = /^webpack-internal:\/\/\/(.*)$/.exec(filename) - if (sourceMatch && sourceMatch[1]) { - return sourceMatch[1] - } - - return filename -} - -const useFetch = url => { - const [response, setResponse] = React.useState({ - decoded: null, - sourcePosition: { - line: null, - number: null, - }, - sourceContent: null, - }) - React.useEffect(() => { - async function fetchData() { - const res = await fetch(url) - const json = await res.json() - const decoded = prettifyStack(json.codeFrame) - const { sourcePosition, sourceContent } = json - setResponse({ - decoded, - sourceContent, - sourcePosition, - }) - } - fetchData() - }, []) - return response -} - -function getCodeFrameInformation(stackTrace) { - const callSite = stackTrace.find(CallSite => CallSite.getFileName()) - if (!callSite) { - return null - } - - const moduleId = formatFilename(callSite.getFileName()) - const lineNumber = callSite.getLineNumber() - const columnNumber = callSite.getColumnNumber() - const functionName = callSite.getFunctionName() - - return { - moduleId, - lineNumber, - columnNumber, - functionName, - } -} - -const RuntimeError = ({ error, open, dismiss }) => { - const stacktrace = StackTrace.parse(error.error) - const { - moduleId, - lineNumber, - columnNumber, - functionName, - } = getCodeFrameInformation(stacktrace) - - const res = useFetch( - `/__original-stack-frame?moduleId=` + - window.encodeURIComponent(moduleId) + - `&lineNumber=` + - window.encodeURIComponent(lineNumber) + - `&columnNumber=` + - window.encodeURIComponent(columnNumber) - ) - - const header = ( - <> -
    -

    Unhandled Runtime Error

    - {moduleId} -
    - - - ) - const body = ( - <> -

    - Error in function {functionName} -

    -

    {error.error.message}

    - - - ) - - return -} - -export default RuntimeError diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-errors.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-errors.js new file mode 100644 index 0000000000000..125767e4fb483 --- /dev/null +++ b/packages/gatsby/cache-dir/fast-refresh-overlay/components/runtime-errors.js @@ -0,0 +1,92 @@ +import * as React from "react" +import StackTrace from "stack-trace" +import { Overlay, Header, HeaderOpenClose, Body } from "./overlay" +import { useStackFrame } from "./hooks" +import { CodeFrame } from "./code-frame" +import { getCodeFrameInformation, openInEditor } from "../utils" +import { Accordion, AccordionItem } from "./accordion" + +function WrappedAccordionItem({ error, open }) { + const stacktrace = StackTrace.parse(error) + const codeFrameInformation = getCodeFrameInformation(stacktrace) + const filePath = codeFrameInformation?.moduleId + const lineNumber = codeFrameInformation?.lineNumber + const columnNumber = codeFrameInformation?.columnNumber + const name = codeFrameInformation?.functionName + + const res = useStackFrame({ moduleId: filePath, lineNumber, columnNumber }) + const line = res.sourcePosition?.line + + const Title = () => { + if (!name) { + return <>Unknown Runtime Error + } + + return ( + <> + Error in function{` `} + {name} in{` `} + + {filePath}:{line} + + + ) + } + + return ( + }> +

    {error.message}

    +
    +
    + {filePath}:{line} +
    + +
    + +
    + ) +} + +export function RuntimeErrors({ errors, dismiss }) { + const deduplicatedErrors = React.useMemo(() => [...new Set(errors)], [errors]) + const hasMultipleErrors = deduplicatedErrors.length > 1 + + return ( + +
    +
    +

    + {hasMultipleErrors + ? `${errors.length} Unhandled Runtime Errors` + : `Unhandled Runtime Error`} +

    +
    + +
    + +

    + {hasMultipleErrors ? `Multiple` : `One`} unhandled runtime{` `} + {hasMultipleErrors ? `errors` : `error`} found in your files. See the + list below to fix {hasMultipleErrors ? `them` : `it`}: +

    + + {deduplicatedErrors.map((error, index) => ( + + ))} + + +
    + ) +} diff --git a/packages/gatsby/cache-dir/fast-refresh-overlay/components/style.js b/packages/gatsby/cache-dir/fast-refresh-overlay/components/style.js deleted file mode 100644 index d7bdf8ec5d65d..0000000000000 --- a/packages/gatsby/cache-dir/fast-refresh-overlay/components/style.js +++ /dev/null @@ -1,170 +0,0 @@ -import React from "react" - -function css(strings, ...keys) { - const lastIndex = strings.length - 1 - return ( - strings.slice(0, lastIndex).reduce((p, s, i) => p + s + keys[i], ``) + - strings[lastIndex] - ) -} - -const Style = () => ( -