From 6f84e7ebc4901149d7fd3a6e0e34ad2163e6b9d6 Mon Sep 17 00:00:00 2001 From: Michal Piechowiak Date: Fri, 17 Sep 2021 16:37:20 +0200 Subject: [PATCH 1/5] test(cache-resilience): adjust for v4/lmdb (#33235) --- .../cache-resilience/gatsby-node.js | 30 ++++++++++++++----- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/integration-tests/cache-resilience/gatsby-node.js b/integration-tests/cache-resilience/gatsby-node.js index d10abd70ea2ac..58dc6d187491a 100644 --- a/integration-tests/cache-resilience/gatsby-node.js +++ b/integration-tests/cache-resilience/gatsby-node.js @@ -3,6 +3,7 @@ const v8 = require(`v8`) const glob = require(`glob`) const path = require(`path`) const _ = require(`lodash`) +const { open } = require(`lmdb-store`) const { saveState } = require(`gatsby/dist/redux/save-state`) @@ -16,17 +17,30 @@ const getDiskCacheSnapshot = () => { const plugins = getAllPlugins() const snapshot = {} - plugins.forEach(pluginName => { - const cacheDirectory = path.join(__dirname, `.cache`, `caches`, pluginName) + let store + try { + store = open({ + name: `root`, + path: path.join(process.cwd(), `.cache/caches-lmdb`), + compression: true, + maxDbs: 200, + }) + plugins.forEach(pluginName => { + const pluginDb = store.openDB({ + name: pluginName, + encoding: `json`, + }) - const files = glob.sync(path.join(cacheDirectory, `**`), { - nodir: true, + snapshot[pluginName] = Array.from(pluginDb.getKeys({ snapshot: false })) }) + } catch (e) { + console.error(e) + } finally { + if (store) { + store.close() + } + } - snapshot[pluginName] = files.map(absolutePath => - path.relative(cacheDirectory, absolutePath) - ) - }) return snapshot } From 2ad6e2398736e4bdd450fac0cc82eeb7733983a2 Mon Sep 17 00:00:00 2001 From: Vladimir Razuvaev Date: Sat, 18 Sep 2021 02:23:07 +0700 Subject: [PATCH 2/5] chore(docs): Release notes for 3.14 (#33231) * chore(docs): Release notes for 3.14 * Update release notes * minor change * thanks contributors --- .../reference/release-notes/v3.14/index.md | 206 ++++++++++++++++++ 1 file changed, 206 insertions(+) create mode 100644 docs/docs/reference/release-notes/v3.14/index.md diff --git a/docs/docs/reference/release-notes/v3.14/index.md b/docs/docs/reference/release-notes/v3.14/index.md new file mode 100644 index 0000000000000..6f4ca9613fc0a --- /dev/null +++ b/docs/docs/reference/release-notes/v3.14/index.md @@ -0,0 +1,206 @@ +--- +date: "2021-09-17" +version: "3.14.0" +title: "v3.14 Release Notes" +--- + +Welcome to `gatsby@3.14.0` release (September 2021 #1) + +> This is the final minor release for gatsby v3. Gatsby v4 beta is already published behind +> the `next` npm tag and the next stable release will be `gatsby@4.0.0`. [See what's inside!](/gatsby-4/) +> +> We will keep publishing patches for 3.14.x with hotfixes until `4.0.0` stable is published and at least several +> weeks after. + +Key highlights of this release: + +- [Better UX for navigation in the middle of deployment](#better-ux-for-navigation-in-the-middle-of-deployment) +- [New developer tools](#new-developer-tools) - `createPages` snippet in GraphiQL and new GraphQL capability +- [Preparations for gatsby v4](#preparations-for-gatsby-v4) - API deprecations; migration guide; docs +- [Improvements for `gatsby-source-drupal`](#gatsby-source-drupal-improvements) +- [New home for `gatsby-plugin-netlify`](#new-home-for-gatsby-plugin-netlify) + +Also check out [notable bugfixes](#notable-bugfixes--improvements). + +**Bleeding Edge:** Want to try new features as soon as possible? Install `gatsby@next` and let us know +if you have any [issues](https://github.com/gatsbyjs/gatsby/issues). + +[Previous release notes](/docs/reference/release-notes/v3.13) + +[Full changelog](https://github.com/gatsbyjs/gatsby/compare/gatsby@3.14.0-next.0...gatsby@3.14.0) + +--- + +## Better UX for navigation in the middle of deployment + +This release solves a common UX problem with navigation in the middle of deployment. +Imagine the following scenario: + +1. Users loads a page +2. New version of the site is deployed +3. User tries to navigate to another page with `gatsby-link` + +However, nothing happens and there are some JS errors in the console. + +It happens because paths of JS chunks change with the new deployment and so the old chunks cannot be found. +This problem is now addressed in Gatsby automatically. Once we spot this error, the page is hard-reloaded for the user. + +This was one of the most [upvoted issues](https://github.com/gatsbyjs/gatsby/issues/18866) in our repo. +See [PR #33032](https://github.com/gatsbyjs/gatsby/pull/33032) for details. + +## New developer tools + +### `createPages` snippet in GraphiQL + +Often, a developer will begin creating the site by examining their data layer in GraphiQL. They will then want to create pages based off of their initial query. For example: + +```graphql +query MyQuery { + allContentfulBlogPosts { + nodes { + id + slug + } + } +} +``` + +Usually this will end up with this code in `gatsby-node.js`: + +```javascript +const path = require(`path`) + +exports.createPages = async ({ graphql, actions }) => { + const { createPage } = actions + + const result = await graphql(` + { + allContentfulBlogPosts { + nodes { + id + slug + } + } + } + `) + const templatePath = path.resolve(`PATH/TO/TEMPLATE.js`) + + result.data.allContentfulBlogPosts.nodes.forEach(node => { + createPage({ + path: NODE_SLUG, + component: templatePath, + context: { + slug: NODE_SLUG, + }, + }) + }) +} +``` + +Doing it manually is tedious, but now you can generate this snippet from GraphiQL +and paste to `gatsby-node.js`! + +See [PR #32968](https://github.com/gatsbyjs/gatsby/pull/32968) for details. + +### Added GraphQL aggregation fields to group + +Now you can apply `max`, `min`, `distinct`, `sum`, `group` to grouped nodes. In other words, +a query like this is now possible: + +```graphql +{ + allMarkdown { + group(field: frontmatter___authors___name) { + fieldValue + group(field: frontmatter___title) { + fieldValue + max(field: frontmatter___price) + } + } + } +} +``` + +See [PR #32533](https://github.com/gatsbyjs/gatsby/pull/32533) for details. + +## Preparations for gatsby v4 + +Actions used for schema customization should not be used in `sourceNodes` API anymore: +namely `createTypes`, `createFieldExtension` and `addThirdPartySchema`. + +Usage of those actions in `sourceNodes` is deprecated as of this release and will break in [Gatsby v4](/gatsby-4/). + +Also check out the [migration guide](#) (work in progress!) for other upcoming breaking changes and don't hesitate to +let us know what you think in [GitHub discussion](https://github.com/gatsbyjs/gatsby/discussions/32860). + +## `gatsby-source-drupal` improvements + +The plugin got a fair share of improvements and bugfixes for warm and incremental builds: + +- Fix GraphQL schema errors and crashes when deleting nodes, PRs [#32971](https://github.com/gatsbyjs/gatsby/pull/32971), [#33099](https://github.com/gatsbyjs/gatsby/pull/33099), [#33143](https://github.com/gatsbyjs/gatsby/pull/33143) and [#33181](https://github.com/gatsbyjs/gatsby/pull/33181) +- Warn on bad webhook format: [PR #33079](https://github.com/gatsbyjs/gatsby/pull/33079) +- Add tracing for full/delta fetches and http requests: [PR #33142](https://github.com/gatsbyjs/gatsby/pull/33142) + +## New home for `gatsby-plugin-netlify` + +The plugin is moved to https://github.com/netlify/gatsby-plugin-netlify Go check it out for the latest source code. + +## Notable bugfixes & improvements + +- `gatsby`: make conditional page builds work with static queries, via [PR #32949](https://github.com/gatsbyjs/gatsby/pull/32949) +- `gatsby`: reduce page-renderer size, via [PR #33051](https://github.com/gatsbyjs/gatsby/pull/33051/) +- `gatsby`: fix nesting of tracing spans + add docs for OpenTelemetry, via [PR #33098](https://github.com/gatsbyjs/gatsby/pull/33098) +- `gatsby`: don't bundle moment locale files, via [PR #33092](https://github.com/gatsbyjs/gatsby/pull/33092) +- `gatsby`: add environment variable for setting tracing config file, via [PR #32513](https://github.com/gatsbyjs/gatsby/pull/32513) +- `gatsby`: Assign parentSpan to activities that were missing them, via [PR #33122](https://github.com/gatsbyjs/gatsby/pull/33122) +- `gatsby-source-contentful`: fix error "Unable to download asset", via [PR #33024](https://github.com/gatsbyjs/gatsby/pull/33024) +- `gatsby-transformer-sqip`: ensure failed asset downloads do not break build, via [PR #33037](https://github.com/gatsbyjs/gatsby/pull/33037) +- `gatsby-plugin-google-tagmanager`: ability to serve gtm.js from "self-hosted" tagging server, via [PR #32733](https://github.com/gatsbyjs/gatsby/pull/32733) +- `gatsby-plugin-styled-components`: Add ability to disable vendor prefixes, via [PR #33147](https://github.com/gatsbyjs/gatsby/pull/33147) + +## Contributors + +A big **Thank You** to [our community who contributed](https://github.com/gatsbyjs/gatsby/compare/gatsby@3.14.0-next.0...gatsby@3.14.0) to this release 💜 + +- [tackaberry](https://github.com/tackaberry): feat(gatsby-plugin-google-tagmanager): add option for se + lfHostedOrigin [PR #32733](https://github.com/gatsbyjs/gatsby/pull/32733) +- [herecydev](https://github.com/herecydev) + + - fix(gatsby): set staticQueryResultHash to new hash on data change [PR #32949](https://github.com/ga + tsbyjs/gatsby/pull/32949) + - feat(gatsby-plugin-styled-components): Add ability to disable vendor prefixes [PR #33147](https://g + ithub.com/gatsbyjs/gatsby/pull/33147) + +- [ascorbic](https://github.com/ascorbic): chore: add missing `@babel/runtime` dependencies [PR #32954] + (https://github.com/gatsbyjs/gatsby/pull/32954) +- [axe312ger](https://github.com/axe312ger) + + - fix(contentful): asset download retry [PR #33024](https://github.com/gatsbyjs/gatsby/pull/33024) + - test(CTF): ensure changing base64 previews don't break rich text tests [PR #33027](https://github.c + om/gatsbyjs/gatsby/pull/33027) + - fix(sqip): ensure failed asset downloads do not break build [PR #33037](https://github.com/gatsbyjs + /gatsby/pull/33037) + +- [Himadu2000](https://github.com/Himadu2000): fix(starters): Formats for StaticImage [PR #33057](https + ://github.com/gatsbyjs/gatsby/pull/33057) +- [merceyz](https://github.com/merceyz): fix: add missing dependencies [PR #31837](https://github.com/g + atsbyjs/gatsby/pull/31837) +- [actuallyatiger](https://github.com/actuallyatiger): chore(docs): Update GitHub Pages doc [PR #29031] + (https://github.com/gatsbyjs/gatsby/pull/29031) +- [acbramley](https://github.com/acbramley): Document filtering temporary files [PR #32048](https://git + hub.com/gatsbyjs/gatsby/pull/32048) +- [jabrks](https://github.com/jabrks): fix(gatsby): Don't bundle moment locale files [PR #33092](https: + //github.com/gatsbyjs/gatsby/pull/33092) +- [nagiek](https://github.com/nagiek): feat(gatsby): Add aggregation resolvers to group [PR #32533](htt + ps://github.com/gatsbyjs/gatsby/pull/32533) +- [aleksanderantropov](https://github.com/aleksanderantropov) + + - chore(docs): Correct gatsby-cloud plugin in tutorial part 3 [PR #33118](https://github.com/gatsbyjs + /gatsby/pull/33118) + - docs: fix typo [PR #33137](https://github.com/gatsbyjs/gatsby/pull/33137) + +- [bartveneman](https://github.com/bartveneman): docs(gatsby-plugin-gatsby-cloud): fix typo: asterix -> + asterisk [PR #33135](https://github.com/gatsbyjs/gatsby/pull/33135) +- [rudouglas](https://github.com/rudouglas): chore(gatsby): add environment variable for setting tracin + g config file [PR #32513](https://github.com/gatsbyjs/gatsby/pull/32513) +- [minimalsm](https://github.com/minimalsm): docs: Fix broken link on Getting Started with MDX page [PR #33148](https://github.com/gatsbyjs/gatsby/pull/33148) From 24a427d732204a53657d3fd1abe7c71a8867cab2 Mon Sep 17 00:00:00 2001 From: GatsbyJS Bot Date: Fri, 17 Sep 2021 13:40:12 -0600 Subject: [PATCH 3/5] chore(changelogs): update changelogs (#33239) Co-authored-by: Vladimir Razuvaev --- .../CHANGELOG.md | 18 ++++++ .../babel-preset-gatsby-package/CHANGELOG.md | 13 ++++ packages/babel-preset-gatsby/CHANGELOG.md | 8 +++ packages/create-gatsby/CHANGELOG.md | 15 +++++ packages/gatsby-admin/CHANGELOG.md | 18 ++++++ packages/gatsby-cli/CHANGELOG.md | 11 ++++ packages/gatsby-codemods/CHANGELOG.md | 12 ++++ packages/gatsby-core-utils/CHANGELOG.md | 15 +++++ packages/gatsby-cypress/CHANGELOG.md | 8 +++ packages/gatsby-design-tokens/CHANGELOG.md | 9 +++ packages/gatsby-dev-cli/CHANGELOG.md | 14 +++++ .../gatsby-graphiql-explorer/CHANGELOG.md | 17 ++++++ packages/gatsby-legacy-polyfills/CHANGELOG.md | 11 ++++ packages/gatsby-link/CHANGELOG.md | 8 +++ packages/gatsby-page-utils/CHANGELOG.md | 12 ++++ .../CHANGELOG.md | 9 +++ .../gatsby-plugin-canonical-urls/CHANGELOG.md | 8 +++ .../gatsby-plugin-catch-links/CHANGELOG.md | 8 +++ .../gatsby-plugin-coffeescript/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 8 +++ packages/gatsby-plugin-cxs/CHANGELOG.md | 8 +++ packages/gatsby-plugin-emotion/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 8 +++ packages/gatsby-plugin-feed/CHANGELOG.md | 9 +++ packages/gatsby-plugin-flow/CHANGELOG.md | 8 +++ packages/gatsby-plugin-fullstory/CHANGELOG.md | 8 +++ .../gatsby-plugin-gatsby-cloud/CHANGELOG.md | 23 +++++++ .../CHANGELOG.md | 8 +++ .../gatsby-plugin-google-gtag/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 12 ++++ .../gatsby-plugin-graphql-config/CHANGELOG.md | 10 +++ packages/gatsby-plugin-image/CHANGELOG.md | 19 ++++++ packages/gatsby-plugin-jss/CHANGELOG.md | 8 +++ packages/gatsby-plugin-layout/CHANGELOG.md | 8 +++ packages/gatsby-plugin-less/CHANGELOG.md | 8 +++ packages/gatsby-plugin-lodash/CHANGELOG.md | 8 +++ packages/gatsby-plugin-manifest/CHANGELOG.md | 8 +++ packages/gatsby-plugin-mdx/CHANGELOG.md | 14 +++++ .../gatsby-plugin-netlify-cms/CHANGELOG.md | 10 +++ .../gatsby-plugin-no-sourcemaps/CHANGELOG.md | 14 +++++ packages/gatsby-plugin-nprogress/CHANGELOG.md | 8 +++ packages/gatsby-plugin-offline/CHANGELOG.md | 12 ++++ .../gatsby-plugin-page-creator/CHANGELOG.md | 17 ++++++ packages/gatsby-plugin-postcss/CHANGELOG.md | 8 +++ packages/gatsby-plugin-preact/CHANGELOG.md | 9 +++ .../gatsby-plugin-preload-fonts/CHANGELOG.md | 14 +++++ .../CHANGELOG.md | 8 +++ .../gatsby-plugin-react-helmet/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 8 +++ packages/gatsby-plugin-sass/CHANGELOG.md | 9 +++ .../CHANGELOG.md | 14 +++++ packages/gatsby-plugin-sharp/CHANGELOG.md | 24 ++++++++ packages/gatsby-plugin-sitemap/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 12 ++++ .../gatsby-plugin-styled-jsx/CHANGELOG.md | 8 +++ packages/gatsby-plugin-styletron/CHANGELOG.md | 14 +++++ packages/gatsby-plugin-stylus/CHANGELOG.md | 8 +++ packages/gatsby-plugin-subfont/CHANGELOG.md | 9 +++ packages/gatsby-plugin-twitter/CHANGELOG.md | 8 +++ .../gatsby-plugin-typescript/CHANGELOG.md | 12 ++++ .../gatsby-plugin-typography/CHANGELOG.md | 8 +++ packages/gatsby-plugin-utils/CHANGELOG.md | 17 ++++++ .../gatsby-react-router-scroll/CHANGELOG.md | 8 +++ packages/gatsby-recipes/CHANGELOG.md | 16 +++++ .../CHANGELOG.md | 8 +++ .../gatsby-remark-code-repls/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 9 +++ .../gatsby-remark-custom-blocks/CHANGELOG.md | 8 +++ .../gatsby-remark-embed-snippet/CHANGELOG.md | 8 +++ packages/gatsby-remark-graphviz/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 13 ++++ packages/gatsby-remark-images/CHANGELOG.md | 8 +++ packages/gatsby-remark-katex/CHANGELOG.md | 9 +++ packages/gatsby-remark-prismjs/CHANGELOG.md | 12 ++++ .../CHANGELOG.md | 8 +++ .../gatsby-remark-smartypants/CHANGELOG.md | 8 +++ .../gatsby-source-contentful/CHANGELOG.md | 18 ++++++ packages/gatsby-source-drupal/CHANGELOG.md | 25 ++++++++ packages/gatsby-source-faker/CHANGELOG.md | 8 +++ .../gatsby-source-filesystem/CHANGELOG.md | 19 ++++++ packages/gatsby-source-graphql/CHANGELOG.md | 8 +++ .../gatsby-source-hacker-news/CHANGELOG.md | 8 +++ packages/gatsby-source-lever/CHANGELOG.md | 8 +++ packages/gatsby-source-medium/CHANGELOG.md | 8 +++ packages/gatsby-source-mongodb/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 9 +++ packages/gatsby-source-shopify/CHANGELOG.md | 18 ++++++ packages/gatsby-source-wikipedia/CHANGELOG.md | 9 +++ packages/gatsby-source-wordpress/CHANGELOG.md | 25 ++++++++ packages/gatsby-telemetry/CHANGELOG.md | 13 ++++ .../gatsby-transformer-asciidoc/CHANGELOG.md | 12 ++++ packages/gatsby-transformer-csv/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 12 ++++ .../gatsby-transformer-excel/CHANGELOG.md | 8 +++ .../gatsby-transformer-hjson/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 8 +++ .../CHANGELOG.md | 8 +++ packages/gatsby-transformer-json/CHANGELOG.md | 8 +++ packages/gatsby-transformer-pdf/CHANGELOG.md | 8 +++ .../CHANGELOG.md | 8 +++ .../gatsby-transformer-remark/CHANGELOG.md | 16 +++++ .../CHANGELOG.md | 18 ++++++ .../gatsby-transformer-sharp/CHANGELOG.md | 9 +++ packages/gatsby-transformer-sqip/CHANGELOG.md | 17 ++++++ packages/gatsby-transformer-toml/CHANGELOG.md | 8 +++ packages/gatsby-transformer-xml/CHANGELOG.md | 8 +++ packages/gatsby-transformer-yaml/CHANGELOG.md | 8 +++ packages/gatsby-worker/CHANGELOG.md | 9 +++ packages/gatsby/CHANGELOG.md | 61 +++++++++++++++++++ 109 files changed, 1237 insertions(+) diff --git a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md index ff0a284d60e67..428cbfec0332f 100644 --- a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md +++ b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/babel-plugin-remove-graphql-queries@3.14.0/packages/babel-plugin-remove-graphql-queries) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- add missing dependencies [#31837](https://github.com/gatsbyjs/gatsby/issues/31837) ([ec453f2](https://github.com/gatsbyjs/gatsby/commit/ec453f26b5e8caaebb002ee53bbd5d48e862aefd)) + +#### Chores + +- Reorder package.json entries & fix patches fix [#33081](https://github.com/gatsbyjs/gatsby/issues/33081) ([be3f4f3](https://github.com/gatsbyjs/gatsby/commit/be3f4f33b2e1c5cd54bfb00dd45c0fe4f917a1e9)) +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/babel-plugin-remove-graphql-queries@3.13.0/packages/babel-plugin-remove-graphql-queries) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/babel-preset-gatsby-package/CHANGELOG.md b/packages/babel-preset-gatsby-package/CHANGELOG.md index 9d7bb329b5469..10d8b78c7e590 100644 --- a/packages/babel-preset-gatsby-package/CHANGELOG.md +++ b/packages/babel-preset-gatsby-package/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby-package@1.14.0/packages/babel-preset-gatsby-package) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency core-js to ^3.17.2 [#32980](https://github.com/gatsbyjs/gatsby/issues/32980) ([efdf037](https://github.com/gatsbyjs/gatsby/commit/efdf0378a98dddd898c4a051ec7b4fd0da211a5e)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby-package@1.13.0/packages/babel-preset-gatsby-package) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/babel-preset-gatsby/CHANGELOG.md b/packages/babel-preset-gatsby/CHANGELOG.md index b4d26de48f909..625a9eb9cbb1e 100644 --- a/packages/babel-preset-gatsby/CHANGELOG.md +++ b/packages/babel-preset-gatsby/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby@1.14.0/packages/babel-preset-gatsby) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby@1.13.0/packages/babel-preset-gatsby) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/create-gatsby/CHANGELOG.md b/packages/create-gatsby/CHANGELOG.md index 03ec6588f3c3d..0b9df8ec13366 100644 --- a/packages/create-gatsby/CHANGELOG.md +++ b/packages/create-gatsby/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/create-gatsby@1.14.0/packages/create-gatsby) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update dependency @types/node to ^14.17.14 for create-gatsby [#32973](https://github.com/gatsbyjs/gatsby/issues/32973) ([5d5ad48](https://github.com/gatsbyjs/gatsby/commit/5d5ad482d5c5ca04c883013e29780e6737b478e2)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + +#### Other Changes + +- Remove cloud plugin from `gatsby new` and tutorial [#32939](https://github.com/gatsbyjs/gatsby/issues/32939) ([b88b9d1](https://github.com/gatsbyjs/gatsby/commit/b88b9d1d530ec28c0aa180256c24017653072d06)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/create-gatsby@1.13.0/packages/create-gatsby) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-admin/CHANGELOG.md b/packages/gatsby-admin/CHANGELOG.md index 65a8a96962ccd..e3ba01bc2ea3f 100644 --- a/packages/gatsby-admin/CHANGELOG.md +++ b/packages/gatsby-admin/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.24.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-admin@0.24.0/packages/gatsby-admin) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update [dev] minor and patch dependencies for gatsby-admin [#32616](https://github.com/gatsbyjs/gatsby/issues/32616) ([d5738ca](https://github.com/gatsbyjs/gatsby/commit/d5738ca566aa909a879c0e0092717b3dbfc4c3eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + +### [0.23.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-admin@0.23.1/packages/gatsby-admin) (2021-09-16) + +**Note:** Version bump only for package gatsby-admin + ## [0.23.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-admin@0.23.0/packages/gatsby-admin) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index 456f42d46cb19..26898a4411181 100644 --- a/packages/gatsby-cli/CHANGELOG.md +++ b/packages/gatsby-cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cli@3.14.0/packages/gatsby-cli) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update semver [#32979](https://github.com/gatsbyjs/gatsby/issues/32979) ([ecf1fa7](https://github.com/gatsbyjs/gatsby/commit/ecf1fa7ef10a60e7631a8f8fad8a33c1d0acaad6)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cli@3.13.0/packages/gatsby-cli) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-codemods/CHANGELOG.md b/packages/gatsby-codemods/CHANGELOG.md index 1e10fc49cd8d6..c7c35eeb0d9b7 100644 --- a/packages/gatsby-codemods/CHANGELOG.md +++ b/packages/gatsby-codemods/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-codemods@2.14.0/packages/gatsby-codemods) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency graphql to ^15.5.2 for gatsby-codemods [#32989](https://github.com/gatsbyjs/gatsby/issues/32989) ([3afef0a](https://github.com/gatsbyjs/gatsby/commit/3afef0ac2be0da8a875dc53b5e9bb8ca288e1239)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-codemods@2.13.0/packages/gatsby-codemods) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-core-utils/CHANGELOG.md b/packages/gatsby-core-utils/CHANGELOG.md index 9e01ebf375389..ef009e4ee7a1a 100644 --- a/packages/gatsby-core-utils/CHANGELOG.md +++ b/packages/gatsby-core-utils/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-core-utils@2.14.0/packages/gatsby-core-utils) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency node-object-hash to ^2.3.9 for gatsby-core-utils [#32990](https://github.com/gatsbyjs/gatsby/issues/32990) ([03a4dd0](https://github.com/gatsbyjs/gatsby/commit/03a4dd04e7b55c1297e121413b552cdb8887ca45)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- upgrade got package [#32928](https://github.com/gatsbyjs/gatsby/issues/32928) ([2ac366e](https://github.com/gatsbyjs/gatsby/commit/2ac366e3745990d47c01f19875f185d0355c89b5)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-core-utils@2.13.0/packages/gatsby-core-utils) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-cypress/CHANGELOG.md b/packages/gatsby-cypress/CHANGELOG.md index 724e83d3805db..4d72eefe269df 100644 --- a/packages/gatsby-cypress/CHANGELOG.md +++ b/packages/gatsby-cypress/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cypress@1.14.0/packages/gatsby-cypress) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cypress@1.13.0/packages/gatsby-cypress) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-design-tokens/CHANGELOG.md b/packages/gatsby-design-tokens/CHANGELOG.md index 63c004041d4f2..93532e5405a51 100644 --- a/packages/gatsby-design-tokens/CHANGELOG.md +++ b/packages/gatsby-design-tokens/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-design-tokens@3.14.0/packages/gatsby-design-tokens) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-design-tokens@3.13.0/packages/gatsby-design-tokens) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-dev-cli/CHANGELOG.md b/packages/gatsby-dev-cli/CHANGELOG.md index 399e78936f5a1..da0c7fc622832 100644 --- a/packages/gatsby-dev-cli/CHANGELOG.md +++ b/packages/gatsby-dev-cli/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-dev-cli@3.14.0/packages/gatsby-dev-cli) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency chokidar to ^3.5.2 [#32985](https://github.com/gatsbyjs/gatsby/issues/32985) ([e710518](https://github.com/gatsbyjs/gatsby/commit/e710518ab85953e194ef6f6e8bc9828aa47d3ad4)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- upgrade got package [#32928](https://github.com/gatsbyjs/gatsby/issues/32928) ([2ac366e](https://github.com/gatsbyjs/gatsby/commit/2ac366e3745990d47c01f19875f185d0355c89b5)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-dev-cli@3.13.0/packages/gatsby-dev-cli) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-graphiql-explorer/CHANGELOG.md b/packages/gatsby-graphiql-explorer/CHANGELOG.md index e79c02f31d4a7..bd6ca05e565cc 100644 --- a/packages/gatsby-graphiql-explorer/CHANGELOG.md +++ b/packages/gatsby-graphiql-explorer/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-graphiql-explorer@1.14.0/packages/gatsby-graphiql-explorer) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- Add a createPages snippet [#32968](https://github.com/gatsbyjs/gatsby/issues/32968) ([58e628a](https://github.com/gatsbyjs/gatsby/commit/58e628ad51734601bddffc788d4fdab9e2eb0283)) + +#### Bug Fixes + +- update dependency core-js to ^3.17.2 [#32980](https://github.com/gatsbyjs/gatsby/issues/32980) ([efdf037](https://github.com/gatsbyjs/gatsby/commit/efdf0378a98dddd898c4a051ec7b4fd0da211a5e)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update dependency css-loader to v6 for gatsby-graphiql-explorer [#32638](https://github.com/gatsbyjs/gatsby/issues/32638) ([3e7e9e1](https://github.com/gatsbyjs/gatsby/commit/3e7e9e1ec6c941e1a5a397043288cb1ac938a883)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-graphiql-explorer@1.13.0/packages/gatsby-graphiql-explorer) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-legacy-polyfills/CHANGELOG.md b/packages/gatsby-legacy-polyfills/CHANGELOG.md index 15765223a310c..d78e5e737f978 100644 --- a/packages/gatsby-legacy-polyfills/CHANGELOG.md +++ b/packages/gatsby-legacy-polyfills/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. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-legacy-polyfills@1.14.0/packages/gatsby-legacy-polyfills) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- fix broken recipes test fix [#33013](https://github.com/gatsbyjs/gatsby/issues/33013) ([476a00f](https://github.com/gatsbyjs/gatsby/commit/476a00f2c5821602a547b0670af78e0a29349dcd)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-legacy-polyfills@1.13.0/packages/gatsby-legacy-polyfills) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-link/CHANGELOG.md b/packages/gatsby-link/CHANGELOG.md index 6890cbb962cfb..527a78dd10c91 100644 --- a/packages/gatsby-link/CHANGELOG.md +++ b/packages/gatsby-link/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@3.14.0/packages/gatsby-link) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@3.13.0/packages/gatsby-link) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-page-utils/CHANGELOG.md b/packages/gatsby-page-utils/CHANGELOG.md index a9664532c23b3..e6651ba7663c4 100644 --- a/packages/gatsby-page-utils/CHANGELOG.md +++ b/packages/gatsby-page-utils/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-page-utils@1.14.0/packages/gatsby-page-utils) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency chokidar to ^3.5.2 [#32985](https://github.com/gatsbyjs/gatsby/issues/32985) ([e710518](https://github.com/gatsbyjs/gatsby/commit/e710518ab85953e194ef6f6e8bc9828aa47d3ad4)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-page-utils@1.13.0/packages/gatsby-page-utils) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md index 030597d6fd3f6..a1c2c8ab00ae0 100644 --- a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md +++ b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-benchmark-reporting@1.14.0/packages/gatsby-plugin-benchmark-reporting) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-benchmark-reporting@1.13.0/packages/gatsby-plugin-benchmark-reporting) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md index 36effa5c53dfb..0020827ff462b 100644 --- a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md +++ b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-canonical-urls@3.14.0/packages/gatsby-plugin-canonical-urls) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-canonical-urls@3.13.0/packages/gatsby-plugin-canonical-urls) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-catch-links/CHANGELOG.md b/packages/gatsby-plugin-catch-links/CHANGELOG.md index 1aa50bd5b0622..8fdaf2a9b747c 100644 --- a/packages/gatsby-plugin-catch-links/CHANGELOG.md +++ b/packages/gatsby-plugin-catch-links/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-catch-links@3.14.0/packages/gatsby-plugin-catch-links) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-catch-links@3.13.0/packages/gatsby-plugin-catch-links) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-coffeescript/CHANGELOG.md b/packages/gatsby-plugin-coffeescript/CHANGELOG.md index 3ad76ad4c8b86..b4ca28d75b081 100644 --- a/packages/gatsby-plugin-coffeescript/CHANGELOG.md +++ b/packages/gatsby-plugin-coffeescript/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-coffeescript@3.14.0/packages/gatsby-plugin-coffeescript) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-coffeescript@3.13.0/packages/gatsby-plugin-coffeescript) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-create-client-paths/CHANGELOG.md b/packages/gatsby-plugin-create-client-paths/CHANGELOG.md index 22b48727a9cd6..da4385b633574 100644 --- a/packages/gatsby-plugin-create-client-paths/CHANGELOG.md +++ b/packages/gatsby-plugin-create-client-paths/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-create-client-paths@3.14.0/packages/gatsby-plugin-create-client-paths) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-create-client-paths@3.13.0/packages/gatsby-plugin-create-client-paths) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-cxs/CHANGELOG.md b/packages/gatsby-plugin-cxs/CHANGELOG.md index 22109df747be9..aa0c6882951cf 100644 --- a/packages/gatsby-plugin-cxs/CHANGELOG.md +++ b/packages/gatsby-plugin-cxs/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-cxs@3.14.0/packages/gatsby-plugin-cxs) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-cxs@3.13.0/packages/gatsby-plugin-cxs) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-emotion/CHANGELOG.md b/packages/gatsby-plugin-emotion/CHANGELOG.md index da8610ccdad53..290d748a278c2 100644 --- a/packages/gatsby-plugin-emotion/CHANGELOG.md +++ b/packages/gatsby-plugin-emotion/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-emotion@6.14.0/packages/gatsby-plugin-emotion) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [6.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-emotion@6.13.0/packages/gatsby-plugin-emotion) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md index 546a4ca2578d5..64ec3ec9758eb 100644 --- a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md +++ b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-facebook-analytics@3.14.0/packages/gatsby-plugin-facebook-analytics) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-facebook-analytics@3.13.0/packages/gatsby-plugin-facebook-analytics) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-feed/CHANGELOG.md b/packages/gatsby-plugin-feed/CHANGELOG.md index c613ca2feb707..28e4f7d2f394d 100644 --- a/packages/gatsby-plugin-feed/CHANGELOG.md +++ b/packages/gatsby-plugin-feed/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-feed@3.14.0/packages/gatsby-plugin-feed) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-feed@3.13.0/packages/gatsby-plugin-feed) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-flow/CHANGELOG.md b/packages/gatsby-plugin-flow/CHANGELOG.md index 1b95448a1607e..5fa7c3ed98394 100644 --- a/packages/gatsby-plugin-flow/CHANGELOG.md +++ b/packages/gatsby-plugin-flow/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-flow@2.14.0/packages/gatsby-plugin-flow) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-flow@2.13.0/packages/gatsby-plugin-flow) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-fullstory/CHANGELOG.md b/packages/gatsby-plugin-fullstory/CHANGELOG.md index a7fc7c3a46d76..6e45e977a7d07 100644 --- a/packages/gatsby-plugin-fullstory/CHANGELOG.md +++ b/packages/gatsby-plugin-fullstory/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-fullstory@3.14.0/packages/gatsby-plugin-fullstory) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-fullstory@3.13.0/packages/gatsby-plugin-fullstory) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md b/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md index 4a7030f03058d..3651b6e9d292f 100644 --- a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md +++ b/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md @@ -3,6 +3,29 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.2.0/packages/gatsby-plugin-gatsby-cloud) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- fix hydration flicker on initial render of ssr page fix [#33134](https://github.com/gatsbyjs/gatsby/issues/33134) ([44afaf5](https://github.com/gatsbyjs/gatsby/commit/44afaf58762e1685fcf895b1e87a860c3ae9973a)) +- Emit CREATE_FILE_NODE in onPostBootstrap [#33136](https://github.com/gatsbyjs/gatsby/issues/33136) ([62683f5](https://github.com/gatsbyjs/gatsby/commit/62683f5dc9add09642da235dd822c9a381635dd0)) +- add missing dependencies [#31837](https://github.com/gatsbyjs/gatsby/issues/31837) ([ec453f2](https://github.com/gatsbyjs/gatsby/commit/ec453f26b5e8caaebb002ee53bbd5d48e862aefd)) +- add backpressure for IPC [#32963](https://github.com/gatsbyjs/gatsby/issues/32963) ([eb1f568](https://github.com/gatsbyjs/gatsby/commit/eb1f568338445cf4949b183a8d3def503829ff43)) +- update dependency date-fns to ^2.23.0 for gatsby-plugin-gatsby-cloud [#32627](https://github.com/gatsbyjs/gatsby/issues/32627) ([1be8ab9](https://github.com/gatsbyjs/gatsby/commit/1be8ab99e370936002b4d5537f6bbae62faf13fa)) + +#### Chores + +- fix copy type file fix [#33156](https://github.com/gatsbyjs/gatsby/issues/33156) ([b1168af](https://github.com/gatsbyjs/gatsby/commit/b1168aff8856ff28e3c42d1ee13ef7a9686f7048)) +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update dependency msw to ^0.35.0 for gatsby-plugin-gatsby-cloud [#32994](https://github.com/gatsbyjs/gatsby/issues/32994) ([de3d61a](https://github.com/gatsbyjs/gatsby/commit/de3d61aab1656ffec0becd58d1098883ff3ec57b)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + +#### Other Changes + +- fix typo: asterix -> asterisk fix [#33135](https://github.com/gatsbyjs/gatsby/issues/33135) ([81f35ff](https://github.com/gatsbyjs/gatsby/commit/81f35ffaa56d4e093bcfb2f46e590a2ea2ca43a8)) + ## [3.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.1.0/packages/gatsby-plugin-gatsby-cloud) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-google-analytics/CHANGELOG.md b/packages/gatsby-plugin-google-analytics/CHANGELOG.md index 8278616c3f016..5a43016be5613 100644 --- a/packages/gatsby-plugin-google-analytics/CHANGELOG.md +++ b/packages/gatsby-plugin-google-analytics/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-analytics@3.14.0/packages/gatsby-plugin-google-analytics) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-analytics@3.13.0/packages/gatsby-plugin-google-analytics) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-google-gtag/CHANGELOG.md b/packages/gatsby-plugin-google-gtag/CHANGELOG.md index 831c77d495f7e..e82bcc1528d8a 100644 --- a/packages/gatsby-plugin-google-gtag/CHANGELOG.md +++ b/packages/gatsby-plugin-google-gtag/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-gtag@3.14.0/packages/gatsby-plugin-google-gtag) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-gtag@3.13.0/packages/gatsby-plugin-google-gtag) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md index a0239d7ed9f03..798d36807f59c 100644 --- a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md +++ b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-tagmanager@3.14.0/packages/gatsby-plugin-google-tagmanager) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- add option for selfHostedOrigin [#32733](https://github.com/gatsbyjs/gatsby/issues/32733) ([ed72e68](https://github.com/gatsbyjs/gatsby/commit/ed72e68c42da68eaeb0dd7a5ba5404f2f6133a44)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-tagmanager@3.13.0/packages/gatsby-plugin-google-tagmanager) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-graphql-config/CHANGELOG.md b/packages/gatsby-plugin-graphql-config/CHANGELOG.md index 3ad0f0a7103a2..36ff9d88f178d 100644 --- a/packages/gatsby-plugin-graphql-config/CHANGELOG.md +++ b/packages/gatsby-plugin-graphql-config/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.23.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-graphql-config@0.23.0/packages/gatsby-plugin-graphql-config) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [0.22.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-graphql-config@0.22.0/packages/gatsby-plugin-graphql-config) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-image/CHANGELOG.md b/packages/gatsby-plugin-image/CHANGELOG.md index 3ed2f85411a22..4958c4137d32d 100644 --- a/packages/gatsby-plugin-image/CHANGELOG.md +++ b/packages/gatsby-plugin-image/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@1.14.0/packages/gatsby-plugin-image) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency objectfitpolyfill to ^2.3.5 for gatsby-plugin-image [#32599](https://github.com/gatsbyjs/gatsby/issues/32599) ([530ca0d](https://github.com/gatsbyjs/gatsby/commit/530ca0d4a500e7b97500b2af24fb8748d41ab2ea)) +- update dependency chokidar to ^3.5.2 [#32985](https://github.com/gatsbyjs/gatsby/issues/32985) ([e710518](https://github.com/gatsbyjs/gatsby/commit/e710518ab85953e194ef6f6e8bc9828aa47d3ad4)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@1.13.0/packages/gatsby-plugin-image) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-jss/CHANGELOG.md b/packages/gatsby-plugin-jss/CHANGELOG.md index c81f1c31992a9..f1311f9a797d7 100644 --- a/packages/gatsby-plugin-jss/CHANGELOG.md +++ b/packages/gatsby-plugin-jss/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-jss@3.14.0/packages/gatsby-plugin-jss) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-jss@3.13.0/packages/gatsby-plugin-jss) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-layout/CHANGELOG.md b/packages/gatsby-plugin-layout/CHANGELOG.md index 3011de7e61066..df6cf1ce3736e 100644 --- a/packages/gatsby-plugin-layout/CHANGELOG.md +++ b/packages/gatsby-plugin-layout/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-layout@2.14.0/packages/gatsby-plugin-layout) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-layout@2.13.0/packages/gatsby-plugin-layout) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-less/CHANGELOG.md b/packages/gatsby-plugin-less/CHANGELOG.md index bab48e45ae877..52a5d193532e1 100644 --- a/packages/gatsby-plugin-less/CHANGELOG.md +++ b/packages/gatsby-plugin-less/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-less@5.14.0/packages/gatsby-plugin-less) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-less@5.13.0/packages/gatsby-plugin-less) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-lodash/CHANGELOG.md b/packages/gatsby-plugin-lodash/CHANGELOG.md index a7e79f00ccbe8..6e65b4573e68e 100644 --- a/packages/gatsby-plugin-lodash/CHANGELOG.md +++ b/packages/gatsby-plugin-lodash/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-lodash@4.14.0/packages/gatsby-plugin-lodash) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-lodash@4.13.0/packages/gatsby-plugin-lodash) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-manifest/CHANGELOG.md b/packages/gatsby-plugin-manifest/CHANGELOG.md index f0ad90d62bfe2..f01fa7a158bee 100644 --- a/packages/gatsby-plugin-manifest/CHANGELOG.md +++ b/packages/gatsby-plugin-manifest/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-manifest@3.14.0/packages/gatsby-plugin-manifest) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-manifest@3.13.0/packages/gatsby-plugin-manifest) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md index 6d2e2dd157dbb..fe944d3c3968b 100644 --- a/packages/gatsby-plugin-mdx/CHANGELOG.md +++ b/packages/gatsby-plugin-mdx/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-mdx@2.14.0/packages/gatsby-plugin-mdx) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency core-js to ^3.17.2 [#32980](https://github.com/gatsbyjs/gatsby/issues/32980) ([efdf037](https://github.com/gatsbyjs/gatsby/commit/efdf0378a98dddd898c4a051ec7b4fd0da211a5e)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-mdx@2.13.0/packages/gatsby-plugin-mdx) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md index 9e7ef48263c04..373d2ae675184 100644 --- a/packages/gatsby-plugin-netlify-cms/CHANGELOG.md +++ b/packages/gatsby-plugin-netlify-cms/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-netlify-cms@5.14.0/packages/gatsby-plugin-netlify-cms) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- add webpack file to export same version [#33126](https://github.com/gatsbyjs/gatsby/issues/33126) ([d31645c](https://github.com/gatsbyjs/gatsby/commit/d31645c10352363f1af509a11ad633604be3f40e)) +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-netlify-cms@5.13.0/packages/gatsby-plugin-netlify-cms) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md index 3049f9a09a8c0..602e52db66368 100644 --- a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md +++ b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-no-sourcemaps@3.14.0/packages/gatsby-plugin-no-sourcemaps) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- Reorder package.json entries & fix patches fix [#33081](https://github.com/gatsbyjs/gatsby/issues/33081) ([be3f4f3](https://github.com/gatsbyjs/gatsby/commit/be3f4f33b2e1c5cd54bfb00dd45c0fe4f917a1e9)) +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-no-sourcemaps@3.13.0/packages/gatsby-plugin-no-sourcemaps) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-nprogress/CHANGELOG.md b/packages/gatsby-plugin-nprogress/CHANGELOG.md index 665c6274e5a2b..7696fbd5809cc 100644 --- a/packages/gatsby-plugin-nprogress/CHANGELOG.md +++ b/packages/gatsby-plugin-nprogress/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-nprogress@3.14.0/packages/gatsby-plugin-nprogress) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-nprogress@3.13.0/packages/gatsby-plugin-nprogress) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md index ec704d5df112b..d513964f1ba98 100644 --- a/packages/gatsby-plugin-offline/CHANGELOG.md +++ b/packages/gatsby-plugin-offline/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-offline@4.14.0/packages/gatsby-plugin-offline) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency cheerio to ^1.0.0-rc.10 [#32984](https://github.com/gatsbyjs/gatsby/issues/32984) ([7805783](https://github.com/gatsbyjs/gatsby/commit/7805783335394bfedddc3af8e61a71fb763b9608)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-offline@4.13.0/packages/gatsby-plugin-offline) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md index 6869090b0e1cb..5193863929a47 100644 --- a/packages/gatsby-plugin-page-creator/CHANGELOG.md +++ b/packages/gatsby-plugin-page-creator/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-page-creator@3.14.0/packages/gatsby-plugin-page-creator) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- Fix gatsby plugin page creator v4 Fix [#33120](https://github.com/gatsbyjs/gatsby/issues/33120) ([4837b72](https://github.com/gatsbyjs/gatsby/commit/4837b72b8192ab5e525a1367db255a4f23321014)) + +#### Bug Fixes + +- update dependency chokidar to ^3.5.2 [#32985](https://github.com/gatsbyjs/gatsby/issues/32985) ([e710518](https://github.com/gatsbyjs/gatsby/commit/e710518ab85953e194ef6f6e8bc9828aa47d3ad4)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-page-creator@3.13.0/packages/gatsby-plugin-page-creator) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-postcss/CHANGELOG.md b/packages/gatsby-plugin-postcss/CHANGELOG.md index 84c204dc8764d..d31e3fa63bb43 100644 --- a/packages/gatsby-plugin-postcss/CHANGELOG.md +++ b/packages/gatsby-plugin-postcss/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-postcss@4.14.0/packages/gatsby-plugin-postcss) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-postcss@4.13.0/packages/gatsby-plugin-postcss) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-preact/CHANGELOG.md b/packages/gatsby-plugin-preact/CHANGELOG.md index 9fd49076b303c..724706036ab94 100644 --- a/packages/gatsby-plugin-preact/CHANGELOG.md +++ b/packages/gatsby-plugin-preact/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preact@5.14.0/packages/gatsby-plugin-preact) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preact@5.13.0/packages/gatsby-plugin-preact) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md index bc95353aa45da..1f97b29ee6f77 100644 --- a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md +++ b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preload-fonts@2.14.0/packages/gatsby-plugin-preload-fonts) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency date-fns to ^2.23.0 for gatsby-plugin-preload-fonts [#32986](https://github.com/gatsbyjs/gatsby/issues/32986) ([9a29e7c](https://github.com/gatsbyjs/gatsby/commit/9a29e7cd98857dd95b2fda15429fdb1ced378069)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preload-fonts@2.13.0/packages/gatsby-plugin-preload-fonts) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md index 4eef3e1939fda..5c5b807884f4a 100644 --- a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md +++ b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-css-modules@3.14.0/packages/gatsby-plugin-react-css-modules) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-css-modules@3.13.0/packages/gatsby-plugin-react-css-modules) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-react-helmet/CHANGELOG.md b/packages/gatsby-plugin-react-helmet/CHANGELOG.md index 5c33ea64c5659..cdacaf6b11d1a 100644 --- a/packages/gatsby-plugin-react-helmet/CHANGELOG.md +++ b/packages/gatsby-plugin-react-helmet/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-helmet@4.14.0/packages/gatsby-plugin-react-helmet) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-helmet@4.13.0/packages/gatsby-plugin-react-helmet) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md b/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md index 94450fd685c60..1401a67331459 100644 --- a/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md +++ b/packages/gatsby-plugin-remove-trailing-slashes/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-remove-trailing-slashes@3.14.0/packages/gatsby-plugin-remove-trailing-slashes) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-remove-trailing-slashes@3.13.0/packages/gatsby-plugin-remove-trailing-slashes) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-sass/CHANGELOG.md b/packages/gatsby-plugin-sass/CHANGELOG.md index 907c3bd38ffa6..e17ddfba0fc36 100644 --- a/packages/gatsby-plugin-sass/CHANGELOG.md +++ b/packages/gatsby-plugin-sass/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sass@4.14.0/packages/gatsby-plugin-sass) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update dependency autoprefixer to ^10.3.3 for gatsby-plugin-sass [#32974](https://github.com/gatsbyjs/gatsby/issues/32974) ([94ac690](https://github.com/gatsbyjs/gatsby/commit/94ac690f937d47f6ee501a97249e849508c00c0e)) + ## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sass@4.13.0/packages/gatsby-plugin-sass) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md index f1f5b9a37fc7f..577785afd7ac4 100644 --- a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md +++ b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-schema-snapshot@2.14.0/packages/gatsby-plugin-schema-snapshot) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- Reorder package.json entries & fix patches fix [#33081](https://github.com/gatsbyjs/gatsby/issues/33081) ([be3f4f3](https://github.com/gatsbyjs/gatsby/commit/be3f4f33b2e1c5cd54bfb00dd45c0fe4f917a1e9)) +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-schema-snapshot@2.13.0/packages/gatsby-plugin-schema-snapshot) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md index b050ee5eee8b6..1691888af4477 100644 --- a/packages/gatsby-plugin-sharp/CHANGELOG.md +++ b/packages/gatsby-plugin-sharp/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sharp@3.14.0/packages/gatsby-plugin-sharp) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- Use file streams instead of file paths [#33029](https://github.com/gatsbyjs/gatsby/issues/33029) ([e6d9eb3](https://github.com/gatsbyjs/gatsby/commit/e6d9eb37f95ad096febbf513d330c8e5b06299e2)) + +#### Bug Fixes + +- Add TS type/v4 patches for `unstable_onPluginInit` [#33062](https://github.com/gatsbyjs/gatsby/issues/33062) ([8901eb2](https://github.com/gatsbyjs/gatsby/commit/8901eb2afe46791a654f0ef67828a12c577b3f2a)) +- update dependency async to ^3.2.1 for gatsby-plugin-sharp [#32983](https://github.com/gatsbyjs/gatsby/issues/32983) ([6857e26](https://github.com/gatsbyjs/gatsby/commit/6857e26ea6d564b60fed95d01be2f7bae881776f)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update semver [#32979](https://github.com/gatsbyjs/gatsby/issues/32979) ([ecf1fa7](https://github.com/gatsbyjs/gatsby/commit/ecf1fa7ef10a60e7631a8f8fad8a33c1d0acaad6)) +- upgrade got package [#32928](https://github.com/gatsbyjs/gatsby/issues/32928) ([2ac366e](https://github.com/gatsbyjs/gatsby/commit/2ac366e3745990d47c01f19875f185d0355c89b5)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sharp@3.13.0/packages/gatsby-plugin-sharp) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-sitemap/CHANGELOG.md b/packages/gatsby-plugin-sitemap/CHANGELOG.md index c51fc232ee93a..6edd460cdda69 100644 --- a/packages/gatsby-plugin-sitemap/CHANGELOG.md +++ b/packages/gatsby-plugin-sitemap/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sitemap@4.10.0/packages/gatsby-plugin-sitemap) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sitemap@4.9.0/packages/gatsby-plugin-sitemap) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-styled-components/CHANGELOG.md b/packages/gatsby-plugin-styled-components/CHANGELOG.md index db0973b9b252b..b244a465f3199 100644 --- a/packages/gatsby-plugin-styled-components/CHANGELOG.md +++ b/packages/gatsby-plugin-styled-components/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-components@4.14.0/packages/gatsby-plugin-styled-components) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- Add ability to disable vendor prefixes fixes [#33147](https://github.com/gatsbyjs/gatsby/issues/33147) ([3d05986](https://github.com/gatsbyjs/gatsby/commit/3d05986558bffc6908abb59475b166275f8520a6)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-components@4.13.0/packages/gatsby-plugin-styled-components) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md index b793618677aee..2d605da80741b 100644 --- a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md +++ b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-jsx@4.14.0/packages/gatsby-plugin-styled-jsx) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-jsx@4.13.0/packages/gatsby-plugin-styled-jsx) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-styletron/CHANGELOG.md b/packages/gatsby-plugin-styletron/CHANGELOG.md index b37396618ff64..8022a260ab0d9 100644 --- a/packages/gatsby-plugin-styletron/CHANGELOG.md +++ b/packages/gatsby-plugin-styletron/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styletron@6.14.0/packages/gatsby-plugin-styletron) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- Reorder package.json entries & fix patches fix [#33081](https://github.com/gatsbyjs/gatsby/issues/33081) ([be3f4f3](https://github.com/gatsbyjs/gatsby/commit/be3f4f33b2e1c5cd54bfb00dd45c0fe4f917a1e9)) +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [6.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styletron@6.13.0/packages/gatsby-plugin-styletron) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-stylus/CHANGELOG.md b/packages/gatsby-plugin-stylus/CHANGELOG.md index 9d3bf3c628c1c..79c72b19317e6 100644 --- a/packages/gatsby-plugin-stylus/CHANGELOG.md +++ b/packages/gatsby-plugin-stylus/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-stylus@3.14.0/packages/gatsby-plugin-stylus) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-stylus@3.13.0/packages/gatsby-plugin-stylus) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-subfont/CHANGELOG.md b/packages/gatsby-plugin-subfont/CHANGELOG.md index 064eb60374425..f1dc7b05c6bed 100644 --- a/packages/gatsby-plugin-subfont/CHANGELOG.md +++ b/packages/gatsby-plugin-subfont/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-subfont@3.14.0/packages/gatsby-plugin-subfont) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-subfont@3.13.0/packages/gatsby-plugin-subfont) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-twitter/CHANGELOG.md b/packages/gatsby-plugin-twitter/CHANGELOG.md index e39505f1058d9..563e3bf7569aa 100644 --- a/packages/gatsby-plugin-twitter/CHANGELOG.md +++ b/packages/gatsby-plugin-twitter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-twitter@3.14.0/packages/gatsby-plugin-twitter) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-twitter@3.13.0/packages/gatsby-plugin-twitter) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-typescript/CHANGELOG.md b/packages/gatsby-plugin-typescript/CHANGELOG.md index 9e16c0ba65bba..8f216e962690e 100644 --- a/packages/gatsby-plugin-typescript/CHANGELOG.md +++ b/packages/gatsby-plugin-typescript/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typescript@3.14.0/packages/gatsby-plugin-typescript) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typescript@3.13.0/packages/gatsby-plugin-typescript) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-typography/CHANGELOG.md b/packages/gatsby-plugin-typography/CHANGELOG.md index 25a4a7524a111..cb96279ccd326 100644 --- a/packages/gatsby-plugin-typography/CHANGELOG.md +++ b/packages/gatsby-plugin-typography/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typography@3.14.0/packages/gatsby-plugin-typography) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typography@3.13.0/packages/gatsby-plugin-typography) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-plugin-utils/CHANGELOG.md b/packages/gatsby-plugin-utils/CHANGELOG.md index ce0919eb7d4f3..4b4695c433917 100644 --- a/packages/gatsby-plugin-utils/CHANGELOG.md +++ b/packages/gatsby-plugin-utils/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-utils@1.14.0/packages/gatsby-plugin-utils) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- graphql engine [#33030](https://github.com/gatsbyjs/gatsby/issues/33030) ([48cff06](https://github.com/gatsbyjs/gatsby/commit/48cff061dfca53b8f5236bc9c65289cc08f5a8c3)) + +#### Bug Fixes + +- update dependency joi to ^17.4.2 for gatsby-plugin-utils [#32585](https://github.com/gatsbyjs/gatsby/issues/32585) ([ed8301e](https://github.com/gatsbyjs/gatsby/commit/ed8301e8144975776ad3e3e11fb6bcdc968956a7)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [1.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-utils@1.13.0/packages/gatsby-plugin-utils) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-react-router-scroll/CHANGELOG.md b/packages/gatsby-react-router-scroll/CHANGELOG.md index a70c37b2e949e..07e58113cff22 100644 --- a/packages/gatsby-react-router-scroll/CHANGELOG.md +++ b/packages/gatsby-react-router-scroll/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-react-router-scroll@4.14.0/packages/gatsby-react-router-scroll) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-react-router-scroll@4.13.0/packages/gatsby-react-router-scroll) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-recipes/CHANGELOG.md b/packages/gatsby-recipes/CHANGELOG.md index a4d6439e6c234..bf9902a1a9799 100644 --- a/packages/gatsby-recipes/CHANGELOG.md +++ b/packages/gatsby-recipes/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.25.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-recipes@0.25.0/packages/gatsby-recipes) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency chokidar to ^3.5.2 [#32985](https://github.com/gatsbyjs/gatsby/issues/32985) ([e710518](https://github.com/gatsbyjs/gatsby/commit/e710518ab85953e194ef6f6e8bc9828aa47d3ad4)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- fix broken recipes test fix [#33013](https://github.com/gatsbyjs/gatsby/issues/33013) ([476a00f](https://github.com/gatsbyjs/gatsby/commit/476a00f2c5821602a547b0670af78e0a29349dcd)) +- update semver [#32979](https://github.com/gatsbyjs/gatsby/issues/32979) ([ecf1fa7](https://github.com/gatsbyjs/gatsby/commit/ecf1fa7ef10a60e7631a8f8fad8a33c1d0acaad6)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [0.24.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-recipes@0.24.0/packages/gatsby-recipes) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md index e45b4976b427d..ebc9bc3a6fc14 100644 --- a/packages/gatsby-remark-autolink-headers/CHANGELOG.md +++ b/packages/gatsby-remark-autolink-headers/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-autolink-headers@4.11.0/packages/gatsby-remark-autolink-headers) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-autolink-headers@4.10.0/packages/gatsby-remark-autolink-headers) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-code-repls/CHANGELOG.md b/packages/gatsby-remark-code-repls/CHANGELOG.md index 1c956759f23e0..4758ad7d6f963 100644 --- a/packages/gatsby-remark-code-repls/CHANGELOG.md +++ b/packages/gatsby-remark-code-repls/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-code-repls@5.11.0/packages/gatsby-remark-code-repls) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [5.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-code-repls@5.10.0/packages/gatsby-remark-code-repls) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md index e3f5c9822f902..a8f5bf7cbbdc2 100644 --- a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md +++ b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-copy-linked-files@4.11.0/packages/gatsby-remark-copy-linked-files) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + ## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-copy-linked-files@4.10.0/packages/gatsby-remark-copy-linked-files) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-custom-blocks/CHANGELOG.md b/packages/gatsby-remark-custom-blocks/CHANGELOG.md index f9bfddfd190fa..7df431e33f2c4 100644 --- a/packages/gatsby-remark-custom-blocks/CHANGELOG.md +++ b/packages/gatsby-remark-custom-blocks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-custom-blocks@3.14.0/packages/gatsby-remark-custom-blocks) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-custom-blocks@3.13.0/packages/gatsby-remark-custom-blocks) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-embed-snippet/CHANGELOG.md b/packages/gatsby-remark-embed-snippet/CHANGELOG.md index 65693b795afae..61d0cb960b1fe 100644 --- a/packages/gatsby-remark-embed-snippet/CHANGELOG.md +++ b/packages/gatsby-remark-embed-snippet/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-embed-snippet@6.11.0/packages/gatsby-remark-embed-snippet) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [6.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-embed-snippet@6.10.0/packages/gatsby-remark-embed-snippet) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-graphviz/CHANGELOG.md b/packages/gatsby-remark-graphviz/CHANGELOG.md index fdb1f1566aa93..e8530dd9bfd59 100644 --- a/packages/gatsby-remark-graphviz/CHANGELOG.md +++ b/packages/gatsby-remark-graphviz/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-graphviz@3.11.0/packages/gatsby-remark-graphviz) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-graphviz@3.10.0/packages/gatsby-remark-graphviz) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-images-contentful/CHANGELOG.md b/packages/gatsby-remark-images-contentful/CHANGELOG.md index f913288f852e9..9cf4221fe9cc6 100644 --- a/packages/gatsby-remark-images-contentful/CHANGELOG.md +++ b/packages/gatsby-remark-images-contentful/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images-contentful@4.11.0/packages/gatsby-remark-images-contentful) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency cheerio to ^1.0.0-rc.10 [#32984](https://github.com/gatsbyjs/gatsby/issues/32984) ([7805783](https://github.com/gatsbyjs/gatsby/commit/7805783335394bfedddc3af8e61a71fb763b9608)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update semver [#32979](https://github.com/gatsbyjs/gatsby/issues/32979) ([ecf1fa7](https://github.com/gatsbyjs/gatsby/commit/ecf1fa7ef10a60e7631a8f8fad8a33c1d0acaad6)) + ## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images-contentful@4.10.0/packages/gatsby-remark-images-contentful) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md index f2b5e564434e9..fdb68620c2fb5 100644 --- a/packages/gatsby-remark-images/CHANGELOG.md +++ b/packages/gatsby-remark-images/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images@5.11.0/packages/gatsby-remark-images) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [5.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images@5.10.0/packages/gatsby-remark-images) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-katex/CHANGELOG.md b/packages/gatsby-remark-katex/CHANGELOG.md index 674357c0ecf7e..aec5bbbf08b08 100644 --- a/packages/gatsby-remark-katex/CHANGELOG.md +++ b/packages/gatsby-remark-katex/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-katex@5.11.0/packages/gatsby-remark-katex) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update dependency katex to ^0.13.16 for gatsby-remark-katex [#32976](https://github.com/gatsbyjs/gatsby/issues/32976) ([3231c36](https://github.com/gatsbyjs/gatsby/commit/3231c363a378486073c85bb9912995d796836046)) + ## [5.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-katex@5.10.0/packages/gatsby-remark-katex) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-prismjs/CHANGELOG.md b/packages/gatsby-remark-prismjs/CHANGELOG.md index 25f111cf6ac45..79d8a5ba1692a 100644 --- a/packages/gatsby-remark-prismjs/CHANGELOG.md +++ b/packages/gatsby-remark-prismjs/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-prismjs@5.11.0/packages/gatsby-remark-prismjs) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency cheerio to ^1.0.0-rc.10 [#32984](https://github.com/gatsbyjs/gatsby/issues/32984) ([7805783](https://github.com/gatsbyjs/gatsby/commit/7805783335394bfedddc3af8e61a71fb763b9608)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [5.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-prismjs@5.10.0/packages/gatsby-remark-prismjs) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md index 904db8aa00e2a..5274bb9fec4be 100644 --- a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md +++ b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-responsive-iframe@4.11.0/packages/gatsby-remark-responsive-iframe) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-responsive-iframe@4.10.0/packages/gatsby-remark-responsive-iframe) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-remark-smartypants/CHANGELOG.md b/packages/gatsby-remark-smartypants/CHANGELOG.md index 07f573016d157..87c8543484119 100644 --- a/packages/gatsby-remark-smartypants/CHANGELOG.md +++ b/packages/gatsby-remark-smartypants/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-smartypants@4.11.0/packages/gatsby-remark-smartypants) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-smartypants@4.10.0/packages/gatsby-remark-smartypants) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index 01c45b2d1bceb..c9b7c77f83fa1 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-contentful@5.14.0/packages/gatsby-source-contentful) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- asset download retry [#33024](https://github.com/gatsbyjs/gatsby/issues/33024) ([a77695e](https://github.com/gatsbyjs/gatsby/commit/a77695eaa93ba40e664ac2d215bbfe7266afbc46)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update dependency nock to ^13.1.3 for gatsby-source-contentful [#32977](https://github.com/gatsbyjs/gatsby/issues/32977) ([4384ac8](https://github.com/gatsbyjs/gatsby/commit/4384ac8547b01dc62295014479af1b59567cac9a)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + +#### Other Changes + +- fix snapshot fix [#32960](https://github.com/gatsbyjs/gatsby/issues/32960) ([4ef8437](https://github.com/gatsbyjs/gatsby/commit/4ef84376be35cf439af22343c6e9ef57253db405)) + ## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-contentful@5.13.0/packages/gatsby-source-contentful) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index bc7a29e33bcae..d4c976cbc5fb6 100644 --- a/packages/gatsby-source-drupal/CHANGELOG.md +++ b/packages/gatsby-source-drupal/CHANGELOG.md @@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-drupal@4.14.0/packages/gatsby-source-drupal) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- Add tracing for full/delta fetches and http requests [#33142](https://github.com/gatsbyjs/gatsby/issues/33142) ([91187da](https://github.com/gatsbyjs/gatsby/commit/91187dacdab45034c9ce4a1aa9f7018eb3bb1049)) + +#### Bug Fixes + +- check relationships type exists on node before filtering [#33181](https://github.com/gatsbyjs/gatsby/issues/33181) [#33228](https://github.com/gatsbyjs/gatsby/issues/33228) ([c410082](https://github.com/gatsbyjs/gatsby/commit/c410082aecccf2fad0fa94bb105b6975176c13c4)) +- handle edge case with deleting nodes [#33143](https://github.com/gatsbyjs/gatsby/issues/33143) ([2f2880e](https://github.com/gatsbyjs/gatsby/commit/2f2880e332cdef414b50fdfb6579f9abdf2715a0)) +- guard against already deleted nodes [#33099](https://github.com/gatsbyjs/gatsby/issues/33099) ([3d44652](https://github.com/gatsbyjs/gatsby/commit/3d44652ecfc041a6189ce72630625b378b02d43b)) +- validate webhook bodies & updated node data [#33079](https://github.com/gatsbyjs/gatsby/issues/33079) ([dac2b73](https://github.com/gatsbyjs/gatsby/commit/dac2b73ec57077a4a74baa652eff6b3cabf1c1d3)) +- delete relationships to now deleted nodes [#32971](https://github.com/gatsbyjs/gatsby/issues/32971) ([c720767](https://github.com/gatsbyjs/gatsby/commit/c7207674248f5e7fcb96a900fce934e4bc25a203)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) +- Document filtering temporary files [#32048](https://github.com/gatsbyjs/gatsby/issues/32048) [#L702](https://github.com/gatsbyjs/gatsby/issues/L702) [#L52](https://github.com/gatsbyjs/gatsby/issues/L52) ([721b2dc](https://github.com/gatsbyjs/gatsby/commit/721b2dc7dbf44d6372cadbb1d2d08284b75f96a6)) + ### [4.13.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-drupal@4.13.1/packages/gatsby-source-drupal) (2021-09-04) #### Bug Fixes diff --git a/packages/gatsby-source-faker/CHANGELOG.md b/packages/gatsby-source-faker/CHANGELOG.md index ce5f6dfa873a7..78a5a6d0affd9 100644 --- a/packages/gatsby-source-faker/CHANGELOG.md +++ b/packages/gatsby-source-faker/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-faker@3.14.0/packages/gatsby-source-faker) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-faker@3.13.0/packages/gatsby-source-faker) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md index b445b1304c816..4892464d99326 100644 --- a/packages/gatsby-source-filesystem/CHANGELOG.md +++ b/packages/gatsby-source-filesystem/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@3.14.0/packages/gatsby-source-filesystem) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency file-type to ^16.5.3 for gatsby-source-filesystem [#32988](https://github.com/gatsbyjs/gatsby/issues/32988) ([621ee81](https://github.com/gatsbyjs/gatsby/commit/621ee8135d42a822cd453e6971b9c77834440ce9)) +- update dependency chokidar to ^3.5.2 [#32985](https://github.com/gatsbyjs/gatsby/issues/32985) ([e710518](https://github.com/gatsbyjs/gatsby/commit/e710518ab85953e194ef6f6e8bc9828aa47d3ad4)) + +#### Refactoring + +- replace better-queue with fastq [#32941](https://github.com/gatsbyjs/gatsby/issues/32941) ([b18703e](https://github.com/gatsbyjs/gatsby/commit/b18703eb395fe083bd12c9a5af26206b5317ac55)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- upgrade got package [#32928](https://github.com/gatsbyjs/gatsby/issues/32928) ([2ac366e](https://github.com/gatsbyjs/gatsby/commit/2ac366e3745990d47c01f19875f185d0355c89b5)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@3.13.0/packages/gatsby-source-filesystem) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-graphql/CHANGELOG.md b/packages/gatsby-source-graphql/CHANGELOG.md index c5615920b4d1a..b4d240486048f 100644 --- a/packages/gatsby-source-graphql/CHANGELOG.md +++ b/packages/gatsby-source-graphql/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-graphql@3.14.0/packages/gatsby-source-graphql) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-graphql@3.13.0/packages/gatsby-source-graphql) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-hacker-news/CHANGELOG.md b/packages/gatsby-source-hacker-news/CHANGELOG.md index c52c3664238b7..985f5fe8aab52 100644 --- a/packages/gatsby-source-hacker-news/CHANGELOG.md +++ b/packages/gatsby-source-hacker-news/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-hacker-news@3.14.0/packages/gatsby-source-hacker-news) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-hacker-news@3.13.0/packages/gatsby-source-hacker-news) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-lever/CHANGELOG.md b/packages/gatsby-source-lever/CHANGELOG.md index 00e252f3e73c4..40bd06da72bd5 100644 --- a/packages/gatsby-source-lever/CHANGELOG.md +++ b/packages/gatsby-source-lever/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-lever@3.14.0/packages/gatsby-source-lever) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-lever@3.13.0/packages/gatsby-source-lever) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-medium/CHANGELOG.md b/packages/gatsby-source-medium/CHANGELOG.md index 9fadd394e09bd..efccb34d520ef 100644 --- a/packages/gatsby-source-medium/CHANGELOG.md +++ b/packages/gatsby-source-medium/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-medium@3.14.0/packages/gatsby-source-medium) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-medium@3.13.0/packages/gatsby-source-medium) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-mongodb/CHANGELOG.md b/packages/gatsby-source-mongodb/CHANGELOG.md index 9a7f7d5aa7bab..97dffe59ad955 100644 --- a/packages/gatsby-source-mongodb/CHANGELOG.md +++ b/packages/gatsby-source-mongodb/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-mongodb@3.14.0/packages/gatsby-source-mongodb) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-mongodb@3.13.0/packages/gatsby-source-mongodb) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-npm-package-search/CHANGELOG.md b/packages/gatsby-source-npm-package-search/CHANGELOG.md index 9f7afce9241ed..6ea9349110413 100644 --- a/packages/gatsby-source-npm-package-search/CHANGELOG.md +++ b/packages/gatsby-source-npm-package-search/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-npm-package-search@3.14.0/packages/gatsby-source-npm-package-search) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- upgrade got package [#32928](https://github.com/gatsbyjs/gatsby/issues/32928) ([2ac366e](https://github.com/gatsbyjs/gatsby/commit/2ac366e3745990d47c01f19875f185d0355c89b5)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-npm-package-search@3.13.0/packages/gatsby-source-npm-package-search) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-shopify/CHANGELOG.md b/packages/gatsby-source-shopify/CHANGELOG.md index b3d733d6d30f9..83d9ea30c8e7e 100644 --- a/packages/gatsby-source-shopify/CHANGELOG.md +++ b/packages/gatsby-source-shopify/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-shopify@5.6.0/packages/gatsby-source-shopify) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- v4 compatibility through onPluginInit [#32909](https://github.com/gatsbyjs/gatsby/issues/32909) ([728c63c](https://github.com/gatsbyjs/gatsby/commit/728c63c9eb634cb2d0c1a0f2d6b089b997ad194a)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update [dev] minor and patch dependencies for gatsby-source-shopify [#33008](https://github.com/gatsbyjs/gatsby/issues/33008) ([f7923f7](https://github.com/gatsbyjs/gatsby/commit/f7923f7c486aab7c807fc4c4a5c7a9dc360454ec)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [5.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-shopify@5.5.0/packages/gatsby-source-shopify) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-wikipedia/CHANGELOG.md b/packages/gatsby-source-wikipedia/CHANGELOG.md index 94ce06c53e981..5e4b6bafddd13 100644 --- a/packages/gatsby-source-wikipedia/CHANGELOG.md +++ b/packages/gatsby-source-wikipedia/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wikipedia@3.14.0/packages/gatsby-source-wikipedia) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wikipedia@3.13.0/packages/gatsby-source-wikipedia) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md index 75f2fe6f839aa..af44aa0e52533 100644 --- a/packages/gatsby-source-wordpress/CHANGELOG.md +++ b/packages/gatsby-source-wordpress/CHANGELOG.md @@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@5.14.0/packages/gatsby-source-wordpress) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- Support on plugin init [#33080](https://github.com/gatsbyjs/gatsby/issues/33080) ([b9f114f](https://github.com/gatsbyjs/gatsby/commit/b9f114f89556021fe432dcfbe275f033f690dfdd)) +- replace lazynodes option for v4 [#32929](https://github.com/gatsbyjs/gatsby/issues/32929) ([78e9aca](https://github.com/gatsbyjs/gatsby/commit/78e9aca141395e301b341e7b163c564dc5a300be)) + +#### Bug Fixes + +- update minor and patch dependencies for gatsby-source-wordpress [#32611](https://github.com/gatsbyjs/gatsby/issues/32611) ([cb73a5a](https://github.com/gatsbyjs/gatsby/commit/cb73a5a889d6e130976805ac866f12bafcfd8ace)) +- update dependency cheerio to ^1.0.0-rc.10 [#32984](https://github.com/gatsbyjs/gatsby/issues/32984) ([7805783](https://github.com/gatsbyjs/gatsby/commit/7805783335394bfedddc3af8e61a71fb763b9608)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update semver [#32979](https://github.com/gatsbyjs/gatsby/issues/32979) ([ecf1fa7](https://github.com/gatsbyjs/gatsby/commit/ecf1fa7ef10a60e7631a8f8fad8a33c1d0acaad6)) +- upgrade got package [#32928](https://github.com/gatsbyjs/gatsby/issues/32928) ([2ac366e](https://github.com/gatsbyjs/gatsby/commit/2ac366e3745990d47c01f19875f185d0355c89b5)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@5.13.0/packages/gatsby-source-wordpress) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/packages/gatsby-telemetry/CHANGELOG.md index 512a7fb13090f..06ef8fcb8c874 100644 --- a/packages/gatsby-telemetry/CHANGELOG.md +++ b/packages/gatsby-telemetry/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.14.0/packages/gatsby-telemetry) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- don't require gatsby-cli [#33071](https://github.com/gatsbyjs/gatsby/issues/33071) ([407a10c](https://github.com/gatsbyjs/gatsby/commit/407a10c31f50a68c85cde5cbba1347cebda7b8c4)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.13.0/packages/gatsby-telemetry) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-asciidoc/CHANGELOG.md b/packages/gatsby-transformer-asciidoc/CHANGELOG.md index 0e934c94fe3a3..a6e368ba13c59 100644 --- a/packages/gatsby-transformer-asciidoc/CHANGELOG.md +++ b/packages/gatsby-transformer-asciidoc/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-asciidoc@2.14.0/packages/gatsby-transformer-asciidoc) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency asciidoctor to ^2.2.5 for gatsby-transformer-asciidoc [#32982](https://github.com/gatsbyjs/gatsby/issues/32982) ([08b3c76](https://github.com/gatsbyjs/gatsby/commit/08b3c764f697de51504a7e89d2d0199d28439416)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-asciidoc@2.13.0/packages/gatsby-transformer-asciidoc) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-csv/CHANGELOG.md b/packages/gatsby-transformer-csv/CHANGELOG.md index 943ac23cb1a55..c7fc837ba195d 100644 --- a/packages/gatsby-transformer-csv/CHANGELOG.md +++ b/packages/gatsby-transformer-csv/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-csv@3.14.0/packages/gatsby-transformer-csv) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-csv@3.13.0/packages/gatsby-transformer-csv) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-documentationjs/CHANGELOG.md b/packages/gatsby-transformer-documentationjs/CHANGELOG.md index 81b00b0fb3d69..505f6b5b87cd2 100644 --- a/packages/gatsby-transformer-documentationjs/CHANGELOG.md +++ b/packages/gatsby-transformer-documentationjs/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-documentationjs@5.14.0/packages/gatsby-transformer-documentationjs) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- move createTypes to createSchemaCustomization [#33149](https://github.com/gatsbyjs/gatsby/issues/33149) ([1720988](https://github.com/gatsbyjs/gatsby/commit/1720988a0f14d6ff2008118086d5000fe185ee8d)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-documentationjs@5.13.0/packages/gatsby-transformer-documentationjs) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-excel/CHANGELOG.md b/packages/gatsby-transformer-excel/CHANGELOG.md index fba66c8ae0ab3..c01cc4cd96679 100644 --- a/packages/gatsby-transformer-excel/CHANGELOG.md +++ b/packages/gatsby-transformer-excel/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-excel@3.14.0/packages/gatsby-transformer-excel) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-excel@3.13.0/packages/gatsby-transformer-excel) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-hjson/CHANGELOG.md b/packages/gatsby-transformer-hjson/CHANGELOG.md index 9b12e1de2505e..255abb231f3d1 100644 --- a/packages/gatsby-transformer-hjson/CHANGELOG.md +++ b/packages/gatsby-transformer-hjson/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-hjson@3.14.0/packages/gatsby-transformer-hjson) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-hjson@3.13.0/packages/gatsby-transformer-hjson) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md index 8ad279e7e85f5..09fc32bcf740e 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md +++ b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-frontmatter@3.14.0/packages/gatsby-transformer-javascript-frontmatter) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-frontmatter@3.13.0/packages/gatsby-transformer-javascript-frontmatter) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md index e78a4fe98c269..6f062475270f4 100644 --- a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md +++ b/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.14.0/packages/gatsby-transformer-javascript-static-exports) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.13.0/packages/gatsby-transformer-javascript-static-exports) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-json/CHANGELOG.md b/packages/gatsby-transformer-json/CHANGELOG.md index a57c1a1743609..55243ab54668c 100644 --- a/packages/gatsby-transformer-json/CHANGELOG.md +++ b/packages/gatsby-transformer-json/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-json@3.14.0/packages/gatsby-transformer-json) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-json@3.13.0/packages/gatsby-transformer-json) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-pdf/CHANGELOG.md b/packages/gatsby-transformer-pdf/CHANGELOG.md index 4fb5381852f0f..f2a1e4758dd0e 100644 --- a/packages/gatsby-transformer-pdf/CHANGELOG.md +++ b/packages/gatsby-transformer-pdf/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-pdf@2.14.0/packages/gatsby-transformer-pdf) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-pdf@2.13.0/packages/gatsby-transformer-pdf) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-react-docgen/CHANGELOG.md b/packages/gatsby-transformer-react-docgen/CHANGELOG.md index 7160398154cac..2bd0ebabab5e1 100644 --- a/packages/gatsby-transformer-react-docgen/CHANGELOG.md +++ b/packages/gatsby-transformer-react-docgen/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-react-docgen@6.14.0/packages/gatsby-transformer-react-docgen) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [6.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-react-docgen@6.13.0/packages/gatsby-transformer-react-docgen) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-remark/CHANGELOG.md b/packages/gatsby-transformer-remark/CHANGELOG.md index e44ab7b742527..fedc56ba91b77 100644 --- a/packages/gatsby-transformer-remark/CHANGELOG.md +++ b/packages/gatsby-transformer-remark/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-remark@4.11.0/packages/gatsby-transformer-remark) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- use subplugin annotation to use automatic subplugin module loading [#33039](https://github.com/gatsbyjs/gatsby/issues/33039) ([3260b1a](https://github.com/gatsbyjs/gatsby/commit/3260b1a43ace66349b0a683ab052f0d5c10f33d2)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-remark@4.10.0/packages/gatsby-transformer-remark) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-screenshot/CHANGELOG.md b/packages/gatsby-transformer-screenshot/CHANGELOG.md index 18e7250e7a4c7..0483f17e25cf1 100644 --- a/packages/gatsby-transformer-screenshot/CHANGELOG.md +++ b/packages/gatsby-transformer-screenshot/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-screenshot@3.14.0/packages/gatsby-transformer-screenshot) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- update dependency gatsby-core-utils to ^2.13.0 [#32999](https://github.com/gatsbyjs/gatsby/issues/32999) ([7016128](https://github.com/gatsbyjs/gatsby/commit/7016128f388dfdc4e69a17ae44c43a10a618a776)) + +#### Refactoring + +- replace better-queue with fastq [#32941](https://github.com/gatsbyjs/gatsby/issues/32941) ([b18703e](https://github.com/gatsbyjs/gatsby/commit/b18703eb395fe083bd12c9a5af26206b5317ac55)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update dependency aws-sdk to ^2.980.0 [#32993](https://github.com/gatsbyjs/gatsby/issues/32993) ([3491a72](https://github.com/gatsbyjs/gatsby/commit/3491a72aad86c9b822b39f7ff4f385dfa0c334e5)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-screenshot@3.13.0/packages/gatsby-transformer-screenshot) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-sharp/CHANGELOG.md b/packages/gatsby-transformer-sharp/CHANGELOG.md index 741150f0ee7f5..c819710406f23 100644 --- a/packages/gatsby-transformer-sharp/CHANGELOG.md +++ b/packages/gatsby-transformer-sharp/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sharp@3.14.0/packages/gatsby-transformer-sharp) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sharp@3.13.0/packages/gatsby-transformer-sharp) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md index 49a67f5303d29..71c8ce2ebb305 100644 --- a/packages/gatsby-transformer-sqip/CHANGELOG.md +++ b/packages/gatsby-transformer-sqip/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sqip@3.14.0/packages/gatsby-transformer-sqip) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Bug Fixes + +- ensure failed asset downloads do not break build [#33037](https://github.com/gatsbyjs/gatsby/issues/33037) ([0b1ebb6](https://github.com/gatsbyjs/gatsby/commit/0b1ebb6a8815c03eee509a129c925f881207fa8c)) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + +#### Other Changes + +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sqip@3.13.0/packages/gatsby-transformer-sqip) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-toml/CHANGELOG.md b/packages/gatsby-transformer-toml/CHANGELOG.md index 6660324b97b37..d30d56e14f022 100644 --- a/packages/gatsby-transformer-toml/CHANGELOG.md +++ b/packages/gatsby-transformer-toml/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-toml@3.14.0/packages/gatsby-transformer-toml) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-toml@3.13.0/packages/gatsby-transformer-toml) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-xml/CHANGELOG.md b/packages/gatsby-transformer-xml/CHANGELOG.md index f8f30a97e1c3e..b53a5ba04967f 100644 --- a/packages/gatsby-transformer-xml/CHANGELOG.md +++ b/packages/gatsby-transformer-xml/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-xml@3.14.0/packages/gatsby-transformer-xml) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-xml@3.13.0/packages/gatsby-transformer-xml) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-transformer-yaml/CHANGELOG.md b/packages/gatsby-transformer-yaml/CHANGELOG.md index c068cc42ea4db..d9d19fa69335d 100644 --- a/packages/gatsby-transformer-yaml/CHANGELOG.md +++ b/packages/gatsby-transformer-yaml/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-yaml@3.14.0/packages/gatsby-transformer-yaml) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-yaml@3.13.0/packages/gatsby-transformer-yaml) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby-worker/CHANGELOG.md b/packages/gatsby-worker/CHANGELOG.md index 78922a65b4baa..7176a51b0f291 100644 --- a/packages/gatsby-worker/CHANGELOG.md +++ b/packages/gatsby-worker/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-worker@0.5.0/packages/gatsby-worker) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Chores + +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- add missing `@babel/runtime` dependencies [#32954](https://github.com/gatsbyjs/gatsby/issues/32954) ([401b358](https://github.com/gatsbyjs/gatsby/commit/401b3589771135ec35ab8f68406a64de6b387d9d)) + ## [0.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-worker@0.4.0/packages/gatsby-worker) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 6828518d74008..95a632165b1d8 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,67 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby@3.14.0/packages/gatsby) (2021-09-18) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) + +#### Features + +- let serve use getServerData headers [#33159](https://github.com/gatsbyjs/gatsby/issues/33159) ([fe2f09b](https://github.com/gatsbyjs/gatsby/commit/fe2f09b436419b71c1e196b88b5241981d85142d)) +- Add tracing for full/delta fetches and http requests [#33142](https://github.com/gatsbyjs/gatsby/issues/33142) ([91187da](https://github.com/gatsbyjs/gatsby/commit/91187dacdab45034c9ce4a1aa9f7018eb3bb1049)) +- Fix gatsby plugin page creator v4 Fix [#33120](https://github.com/gatsbyjs/gatsby/issues/33120) ([4837b72](https://github.com/gatsbyjs/gatsby/commit/4837b72b8192ab5e525a1367db255a4f23321014)) +- Deprecate schema-related APIs in sourceNodes [#32291](https://github.com/gatsbyjs/gatsby/issues/32291) ([3401149](https://github.com/gatsbyjs/gatsby/commit/340114956af1be28678f8b0cf760392e202aea69)) +- Add aggregation resolvers to group [#32533](https://github.com/gatsbyjs/gatsby/issues/32533) ([5a14c38](https://github.com/gatsbyjs/gatsby/commit/5a14c38166b3e351b0cd592a834f6e261d5d1052)) +- enable SSR mode in develop & serve [#32896](https://github.com/gatsbyjs/gatsby/issues/32896) ([bdf42c9](https://github.com/gatsbyjs/gatsby/commit/bdf42c9a9f8e91dbe594ef49a46e97f68fc872fc)) +- page engine [#33067](https://github.com/gatsbyjs/gatsby/issues/33067) ([ce5af85](https://github.com/gatsbyjs/gatsby/commit/ce5af85505f6fc79110871198c7a7a212000cab8)) +- graphql engine [#33030](https://github.com/gatsbyjs/gatsby/issues/33030) ([48cff06](https://github.com/gatsbyjs/gatsby/commit/48cff061dfca53b8f5236bc9c65289cc08f5a8c3)) +- catch webpack chunk loading errors and completely reload the app [#33032](https://github.com/gatsbyjs/gatsby/issues/33032) ([fc83cb7](https://github.com/gatsbyjs/gatsby/commit/fc83cb79ed13514859154a4bb1499b2e25853a2a)) +- Fail on incompatible gatsby-plugin-gatsby-cloud version [#33025](https://github.com/gatsbyjs/gatsby/issues/33025) ([a43a532](https://github.com/gatsbyjs/gatsby/commit/a43a532c7ea1f8e1b312771ad0df5379e8d50884)) + +#### Bug Fixes + +- Assign parentSpan to activities that were missing them [#33122](https://github.com/gatsbyjs/gatsby/issues/33122) ([fc66250](https://github.com/gatsbyjs/gatsby/commit/fc662506e6205e529d195403a55c289fac924a65)) +- fix hydration flicker on initial render of ssr page fix [#33134](https://github.com/gatsbyjs/gatsby/issues/33134) ([44afaf5](https://github.com/gatsbyjs/gatsby/commit/44afaf58762e1685fcf895b1e87a860c3ae9973a)) +- prevent stack overflow when writing page-data with DSG [#33117](https://github.com/gatsbyjs/gatsby/issues/33117) ([689c7ff](https://github.com/gatsbyjs/gatsby/commit/689c7ff1ba7015c9d26d93ac0a4d8a9fc1fc7d15)) +- fix onPluginInit api calls in engine fix [#33114](https://github.com/gatsbyjs/gatsby/issues/33114) ([248e067](https://github.com/gatsbyjs/gatsby/commit/248e067bbcb9645332349a99f86d041725cf3d68)) +- Don't bundle moment locale files [#33092](https://github.com/gatsbyjs/gatsby/issues/33092) ([f03fb94](https://github.com/gatsbyjs/gatsby/commit/f03fb94eeb6e10ff4ac83b37ab40f496654f6758)) +- fix nesting of tracing spans + add docs for OpenTelemetry fix [#33098](https://github.com/gatsbyjs/gatsby/issues/33098) ([2f70a82](https://github.com/gatsbyjs/gatsby/commit/2f70a826871bcb6a515032035813d83b01ae9b5c)) +- fix experimental engines fix [#33095](https://github.com/gatsbyjs/gatsby/issues/33095) ([0df1a06](https://github.com/gatsbyjs/gatsby/commit/0df1a06426daf41791e1ca1e6b38c6caca9f83a3)) +- fix client-only-paths rendering in page engine fix [#33090](https://github.com/gatsbyjs/gatsby/issues/33090) ([2bed43e](https://github.com/gatsbyjs/gatsby/commit/2bed43e7aff9070cc19c1b99693cba7bf2f61ee3)) +- Send IPC message when engines are ready [#33089](https://github.com/gatsbyjs/gatsby/issues/33089) ([f4662e4](https://github.com/gatsbyjs/gatsby/commit/f4662e4a20ab4cba27b54b792e9d0d34a928e364)) +- Add TS type/v4 patches for `unstable_onPluginInit` [#33062](https://github.com/gatsbyjs/gatsby/issues/33062) ([8901eb2](https://github.com/gatsbyjs/gatsby/commit/8901eb2afe46791a654f0ef67828a12c577b3f2a)) +- reduce page-renderer-size [#33051](https://github.com/gatsbyjs/gatsby/issues/33051) ([1bf112e](https://github.com/gatsbyjs/gatsby/commit/1bf112ee407a147b168930aacf9c6d115a840d86)) +- update dependency eslint-plugin-flowtype to ^5.9.2 [#32987](https://github.com/gatsbyjs/gatsby/issues/32987) ([de437d6](https://github.com/gatsbyjs/gatsby/commit/de437d639591cd8e6f0abc96813029de18cbf661)) +- update dependency core-js to ^3.17.2 [#32980](https://github.com/gatsbyjs/gatsby/issues/32980) ([efdf037](https://github.com/gatsbyjs/gatsby/commit/efdf0378a98dddd898c4a051ec7b4fd0da211a5e)) +- add missing built-in types [#33014](https://github.com/gatsbyjs/gatsby/issues/33014) ([66d9243](https://github.com/gatsbyjs/gatsby/commit/66d9243fe3fbd22e9ecf52d9f5ec4cc0b65b096a)) +- update dependency chokidar to ^3.5.2 [#32985](https://github.com/gatsbyjs/gatsby/issues/32985) ([e710518](https://github.com/gatsbyjs/gatsby/commit/e710518ab85953e194ef6f6e8bc9828aa47d3ad4)) +- update dependency eslint-plugin-react to ^7.25.1 [#32998](https://github.com/gatsbyjs/gatsby/issues/32998) ([14ac745](https://github.com/gatsbyjs/gatsby/commit/14ac745d57154c7c49639c3ec92a4203da54b72b)) +- update dependency eslint-plugin-import to ^2.24.2 [#32997](https://github.com/gatsbyjs/gatsby/issues/32997) ([b1097a7](https://github.com/gatsbyjs/gatsby/commit/b1097a797639cc21428aa40459c00f7607e70dd0)) +- Proper cache status event [#32962](https://github.com/gatsbyjs/gatsby/issues/32962) ([383de2b](https://github.com/gatsbyjs/gatsby/commit/383de2bc69c596ca546428d611c551325b34a527)) +- don't log FAST_DEV message for each worker [#32961](https://github.com/gatsbyjs/gatsby/issues/32961) ([e547dc3](https://github.com/gatsbyjs/gatsby/commit/e547dc3a327365528404e18da1341ba281a9d0e9)) +- set staticQueryResultHash to new hash on data change [#32949](https://github.com/gatsbyjs/gatsby/issues/32949) ([88e1559](https://github.com/gatsbyjs/gatsby/commit/88e1559c444156d668cc2c4ec732e6c39aff2dac)) + +#### Chores + +- add webpack file to export same version [#33126](https://github.com/gatsbyjs/gatsby/issues/33126) ([d31645c](https://github.com/gatsbyjs/gatsby/commit/d31645c10352363f1af509a11ad633604be3f40e)) +- add environment variable for setting tracing config file [#32513](https://github.com/gatsbyjs/gatsby/issues/32513) ([323920d](https://github.com/gatsbyjs/gatsby/commit/323920dbb9778992ebf8cdde88595456e536d30a)) +- update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) +- update [dev] major dependencies for gatsby (major) [#32634](https://github.com/gatsbyjs/gatsby/issues/32634) ([03f5951](https://github.com/gatsbyjs/gatsby/commit/03f59512c5f26090b5cb78da37a754605798e41b)) +- update semver [#32979](https://github.com/gatsbyjs/gatsby/issues/32979) ([ecf1fa7](https://github.com/gatsbyjs/gatsby/commit/ecf1fa7ef10a60e7631a8f8fad8a33c1d0acaad6)) +- upgrade got package [#32928](https://github.com/gatsbyjs/gatsby/issues/32928) ([2ac366e](https://github.com/gatsbyjs/gatsby/commit/2ac366e3745990d47c01f19875f185d0355c89b5)) +- update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) + +#### Other Changes + +- initial [#33088](https://github.com/gatsbyjs/gatsby/issues/33088) ([f0c33ef](https://github.com/gatsbyjs/gatsby/commit/f0c33ef280145428a17e82ac66b988945b597f79)) +- Revert "chore(release): Publish next" ([a0c4d44](https://github.com/gatsbyjs/gatsby/commit/a0c4d44488ce00c8917b4d364e4369d337fdcfd9)) + +### [3.13.1](https://github.com/gatsbyjs/gatsby/commits/gatsby@3.13.1/packages/gatsby) (2021-09-16) + +#### Bug Fixes + +- Don't bundle moment locale files [#33092](https://github.com/gatsbyjs/gatsby/issues/33092) [#33222](https://github.com/gatsbyjs/gatsby/issues/33222) ([093f7b4](https://github.com/gatsbyjs/gatsby/commit/093f7b47487f812999013e1a4efe484b99339a53)) + ## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby@3.13.0/packages/gatsby) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) From 2a48e38aa1d22b66c88b61e3f7781ffb9359f2bc Mon Sep 17 00:00:00 2001 From: Vladimir Razuvaev Date: Sat, 18 Sep 2021 02:50:40 +0700 Subject: [PATCH 4/5] chore(docs): fix formatting (#33240) --- .../reference/release-notes/v3.14/index.md | 47 +++++++------------ 1 file changed, 16 insertions(+), 31 deletions(-) diff --git a/docs/docs/reference/release-notes/v3.14/index.md b/docs/docs/reference/release-notes/v3.14/index.md index 6f4ca9613fc0a..1d62ad2084241 100644 --- a/docs/docs/reference/release-notes/v3.14/index.md +++ b/docs/docs/reference/release-notes/v3.14/index.md @@ -162,45 +162,30 @@ The plugin is moved to https://github.com/netlify/gatsby-plugin-netlify Go check A big **Thank You** to [our community who contributed](https://github.com/gatsbyjs/gatsby/compare/gatsby@3.14.0-next.0...gatsby@3.14.0) to this release 💜 -- [tackaberry](https://github.com/tackaberry): feat(gatsby-plugin-google-tagmanager): add option for se - lfHostedOrigin [PR #32733](https://github.com/gatsbyjs/gatsby/pull/32733) +- [tackaberry](https://github.com/tackaberry): feat(gatsby-plugin-google-tagmanager): add option for selfHostedOrigin [PR #32733](https://github.com/gatsbyjs/gatsby/pull/32733) - [herecydev](https://github.com/herecydev) - - fix(gatsby): set staticQueryResultHash to new hash on data change [PR #32949](https://github.com/ga - tsbyjs/gatsby/pull/32949) - - feat(gatsby-plugin-styled-components): Add ability to disable vendor prefixes [PR #33147](https://g - ithub.com/gatsbyjs/gatsby/pull/33147) + - fix(gatsby): set staticQueryResultHash to new hash on data change [PR #32949](https://github.com/gatsbyjs/gatsby/pull/32949) + - feat(gatsby-plugin-styled-components): Add ability to disable vendor prefixes [PR #33147](https://github.com/gatsbyjs/gatsby/pull/33147) -- [ascorbic](https://github.com/ascorbic): chore: add missing `@babel/runtime` dependencies [PR #32954] - (https://github.com/gatsbyjs/gatsby/pull/32954) +- [ascorbic](https://github.com/ascorbic): chore: add missing `@babel/runtime` dependencies [PR #32954](https://github.com/gatsbyjs/gatsby/pull/32954) - [axe312ger](https://github.com/axe312ger) - fix(contentful): asset download retry [PR #33024](https://github.com/gatsbyjs/gatsby/pull/33024) - - test(CTF): ensure changing base64 previews don't break rich text tests [PR #33027](https://github.c - om/gatsbyjs/gatsby/pull/33027) - - fix(sqip): ensure failed asset downloads do not break build [PR #33037](https://github.com/gatsbyjs - /gatsby/pull/33037) - -- [Himadu2000](https://github.com/Himadu2000): fix(starters): Formats for StaticImage [PR #33057](https - ://github.com/gatsbyjs/gatsby/pull/33057) -- [merceyz](https://github.com/merceyz): fix: add missing dependencies [PR #31837](https://github.com/g - atsbyjs/gatsby/pull/31837) -- [actuallyatiger](https://github.com/actuallyatiger): chore(docs): Update GitHub Pages doc [PR #29031] - (https://github.com/gatsbyjs/gatsby/pull/29031) -- [acbramley](https://github.com/acbramley): Document filtering temporary files [PR #32048](https://git - hub.com/gatsbyjs/gatsby/pull/32048) -- [jabrks](https://github.com/jabrks): fix(gatsby): Don't bundle moment locale files [PR #33092](https: - //github.com/gatsbyjs/gatsby/pull/33092) -- [nagiek](https://github.com/nagiek): feat(gatsby): Add aggregation resolvers to group [PR #32533](htt - ps://github.com/gatsbyjs/gatsby/pull/32533) + - test(CTF): ensure changing base64 previews don't break rich text tests [PR #33027](https://github.com/gatsbyjs/gatsby/pull/33027) + - fix(sqip): ensure failed asset downloads do not break build [PR #33037](https://github.com/gatsbyjs/gatsby/pull/33037) + +- [Himadu2000](https://github.com/Himadu2000): fix(starters): Formats for StaticImage [PR #33057](https://github.com/gatsbyjs/gatsby/pull/33057) +- [merceyz](https://github.com/merceyz): fix: add missing dependencies [PR #31837](https://github.com/gatsbyjs/gatsby/pull/31837) +- [actuallyatiger](https://github.com/actuallyatiger): chore(docs): Update GitHub Pages doc [PR #29031](https://github.com/gatsbyjs/gatsby/pull/29031) +- [acbramley](https://github.com/acbramley): Document filtering temporary files [PR #32048](https://github.com/gatsbyjs/gatsby/pull/32048) +- [jabrks](https://github.com/jabrks): fix(gatsby): Don't bundle moment locale files [PR #33092](https://github.com/gatsbyjs/gatsby/pull/33092) +- [nagiek](https://github.com/nagiek): feat(gatsby): Add aggregation resolvers to group [PR #32533](https://github.com/gatsbyjs/gatsby/pull/32533) - [aleksanderantropov](https://github.com/aleksanderantropov) - - chore(docs): Correct gatsby-cloud plugin in tutorial part 3 [PR #33118](https://github.com/gatsbyjs - /gatsby/pull/33118) + - chore(docs): Correct gatsby-cloud plugin in tutorial part 3 [PR #33118](https://github.com/gatsbyjs/gatsby/pull/33118) - docs: fix typo [PR #33137](https://github.com/gatsbyjs/gatsby/pull/33137) -- [bartveneman](https://github.com/bartveneman): docs(gatsby-plugin-gatsby-cloud): fix typo: asterix -> - asterisk [PR #33135](https://github.com/gatsbyjs/gatsby/pull/33135) -- [rudouglas](https://github.com/rudouglas): chore(gatsby): add environment variable for setting tracin - g config file [PR #32513](https://github.com/gatsbyjs/gatsby/pull/32513) +- [bartveneman](https://github.com/bartveneman): docs(gatsby-plugin-gatsby-cloud): fix typo: asterix -> asterisk [PR #33135](https://github.com/gatsbyjs/gatsby/pull/33135) +- [rudouglas](https://github.com/rudouglas): chore(gatsby): add environment variable for setting tracing config file [PR #32513](https://github.com/gatsbyjs/gatsby/pull/32513) - [minimalsm](https://github.com/minimalsm): docs: Fix broken link on Getting Started with MDX page [PR #33148](https://github.com/gatsbyjs/gatsby/pull/33148) From 56fbc6d3e56e3060dd44a0e0ed0cccee651f08a6 Mon Sep 17 00:00:00 2001 From: Grayson Hicks Date: Sun, 19 Sep 2021 08:43:36 -0400 Subject: [PATCH 5/5] chore(gatsby): upgrade lmbd to 1.6.8 (#33244) --- packages/gatsby/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 49bb083eb1608..380c9e3e6b17b 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -101,7 +101,7 @@ "joi": "^17.2.1", "json-loader": "^0.5.7", "latest-version": "5.1.0", - "lmdb-store": "^1.6.6", + "lmdb-store": "^1.6.8", "lodash": "^4.17.21", "md5-file": "^5.0.0", "meant": "^1.0.1", diff --git a/yarn.lock b/yarn.lock index 8bf1c8e1fb557..8fc7ed3d7323b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -16568,10 +16568,10 @@ livereload-js@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/livereload-js/-/livereload-js-2.3.0.tgz#c3ab22e8aaf5bf3505d80d098cbad67726548c9a" -lmdb-store@^1.6.6: - version "1.6.7" - resolved "https://registry.yarnpkg.com/lmdb-store/-/lmdb-store-1.6.7.tgz#55c564e5ec6fcb1f9d159e228a860bc5009e0ed4" - integrity sha512-q9q7zNhuFWjSD0fDmyB5hiQkOY3UUJ6LPjhs+W/zJdleRLOLPFR6bAh9nERHGkmEA49sZtZRwFPCwPWGM8qdzA== +lmdb-store@^1.6.8: + version "1.6.8" + resolved "https://registry.yarnpkg.com/lmdb-store/-/lmdb-store-1.6.8.tgz#f57c1fa4a8e8e7a73d58523d2bfbcee96782311f" + integrity sha512-Ltok13VVAfgO5Fdj/jVzXjPJZjefl1iENEHerZyAfAlzFUhvOrA73UdKItqmEPC338U29mm56ZBQr5NJQiKXow== dependencies: mkdirp "^1.0.4" nan "^2.14.2"