diff --git a/.circleci/config.yml b/.circleci/config.yml
index 5d16baacbcf59..a2e0bc531656f 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -6,7 +6,7 @@ executors:
parameters:
image:
type: string
- default: "18.0.0"
+ default: "22.13"
gatsby_major:
type: string
default: "5"
@@ -16,6 +16,10 @@ executors:
GATSBY_CPU_COUNT: 2
COMPILER_OPTIONS: GATSBY_MAJOR=<< parameters.gatsby_major >>
NODE_NO_WARNINGS: 1
+ # See https://sharp.pixelplumbing.com/install/#custom-libvips
+ # libvips may or may not be installed in the CircleCI images we're using, but we
+ # don't want to use it regardless, for consistency (and because it can cause problems)
+ SHARP_IGNORE_GLOBAL_LIBVIPS: 1
aliases:
e2e-executor-env: &e2e-executor-env
@@ -28,12 +32,6 @@ aliases:
environment:
<<: *e2e-executor-env
- restore_cache: &restore_cache
- restore_cache:
- name: Restore node_modules cache
- keys:
- - yarn-cypress-cache-{{ checksum "yarn.lock" }}
-
install_node_modules: &install_node_modules
run:
name: Install node modules
@@ -49,13 +47,6 @@ aliases:
name: Validate renovate-config
command: (node scripts/renovate-config-generator.js && (git status --porcelain renovate.json5 | grep "M renovate.json5")) && (echo "Please run \"node scripts/renovate-config-generator.js\" to update renovate.json5" && exit 1) || npx -p renovate@31.28.5 renovate-config-validator .
- persist_cache: &persist_cache
- save_cache:
- name: Save node modules cache
- key: yarn-cypress-cache-{{ checksum "yarn.lock" }}
- paths:
- - ~/.cache
-
attach_to_bootstrap: &attach_to_bootstrap
attach_workspace:
at: ./
@@ -110,11 +101,48 @@ aliases:
- master
- /docs.+/
requires:
- - lint
- - typecheck
- - unit_tests_node18
+ - bootstrap-18.2.0
+
+ integration-test-workflow: &integration-test-workflow
+ filters:
+ branches:
+ ignore:
+ - master
+ - /docs.+/
+ matrix:
+ parameters:
+ # TODO(serhalp): We test on 22.13 rather than the latest because there is an issue
+ # introduced in node.js 22.14.0 (not present in 22.13.1) and node.js 20.19.0 (not present in
+ # 20.18.3). It seems almost certainly to be caused by https://github.com/nodejs/node/pull/56106.
+ # I'm not sure yet if this is only a test issue or an actual race condition that could
+ # affect users - AFAICT the only manifestation is causing this test to fail:
+ # https://github.com/gatsbyjs/gatsby/blob/c3708b068abba3a26e5cf229d6d4dc5813884acd/integration-tests/ssr/__tests__/ssr.js#L102.
+ node_version: ["18.2.0", "22.13"]
+ requires:
+ - bootstrap-<< matrix.node_version >>
commands:
+ restore_yarn_cache:
+ parameters:
+ node_version:
+ type: string
+ steps:
+ - restore_cache:
+ name: Restore node_modules cache
+ keys:
+ - yarn-cypress-cache-{{ checksum "yarn.lock" }}-<< parameters.node_version >>
+
+ persist_yarn_cache:
+ parameters:
+ node_version:
+ type: string
+ steps:
+ - save_cache:
+ name: Save node modules cache
+ key: yarn-cypress-cache-{{ checksum "yarn.lock" }}-<< parameters.node_version >>
+ paths:
+ - ~/.cache
+
e2e-test:
parameters:
skip_file_change_test:
@@ -140,9 +168,11 @@ commands:
steps:
- checkout
# In case of failure, add these steps again. Cache probably got deleted
- #- <<: *restore_cache
+ #- restore_yarn_cache:
+ # node_version: << parameters.node_version >>
#- <<: *install_node_modules
- #- <<: *persist_cache
+ #- persist_yarn_cache:
+ # node_version: << parameters.node_version >>
- unless:
condition: << parameters.skip_file_change_test >>
steps:
@@ -173,17 +203,24 @@ version: 2.1
jobs:
bootstrap:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- checkout
- run: ./scripts/assert-changed-files.sh "packages/*|(e2e|integration)-tests/*|.circleci/*|scripts/e2e-test.sh|yarn.lock"
- # python 2 is not built in and node-gyp needs it to build lmdb
- - run: sudo apt-get update && sudo apt-get install python -y
- - <<: *restore_cache
+ # python is not built in and node-gyp needs it to build lmdb
+ - run: sudo apt-get update && sudo apt-get install -y python3 python-is-python3
+ - restore_yarn_cache:
+ node_version: << parameters.node_version >>
- <<: *install_node_modules
- <<: *check_lockfile
- <<: *validate_renovate
- - <<: *persist_cache
+ - persist_yarn_cache:
+ node_version: << parameters.node_version >>
- run: yarn bootstrap -- concurrency=2
# Persist the workspace again with all packages already built
- persist_to_workspace:
@@ -222,7 +259,22 @@ jobs:
image: "18.2.0"
<<: *test_template
+ unit_tests_node20:
+ executor:
+ name: node
+ image: "20.19"
+ <<: *test_template
+
+ unit_tests_node22:
+ executor:
+ name: node
+ image: "22.13"
+ <<: *test_template
+
integration_tests_gatsby_source_wordpress:
+ parameters:
+ node_version:
+ type: string
machine:
image: "ubuntu-2204:2023.02.1"
steps:
@@ -230,65 +282,105 @@ jobs:
command: |
echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV
echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
- echo nvm install v18 >> $BASH_ENV
- echo nvm alias default v18 >> $BASH_ENV
+ echo nvm install v<< parameters.node_version >> >> $BASH_ENV
+ echo nvm alias default v<< parameters.node_version >> >> $BASH_ENV
- run: |
node -v
- run: npm i -g yarn@1.22.11
- e2e-test:
test_path: integration-tests/gatsby-source-wordpress
- integration_tests_node_manifest:
- executor: node
- steps:
- - e2e-test:
- test_path: integration-tests/node-manifest
-
integration_tests_long_term_caching:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/long-term-caching
+ test_command: yarn test
integration_tests_cache_resilience:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/cache-resilience
+ test_command: yarn test
integration_tests_gatsby_pipeline:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/gatsby-pipeline
+ test_command: yarn test
integration_tests_gatsby_cli:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/gatsby-cli
- trigger_pattern: packages/gatsby-cli/*|packages/gatsby/*|integration-tests/gatsby-cli/*|scripts/e2e-test.sh
+ test_command: yarn test
integration_tests_structured_logging:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/structured-logging
+ test_command: yarn test
integration_tests_artifacts:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/artifacts
+ test_command: yarn test
integration_tests_ssr:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/ssr
+ test_command: yarn test
integration_tests_images:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/images
@@ -297,28 +389,48 @@ jobs:
path: integration-tests/images/__diff_output__
integration_tests_functions:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/functions
test_command: yarn test
integration_tests_head_function_export:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/head-function-export
test_command: yarn test
integration_tests_esm_in_gatsby_files:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/esm-in-gatsby-files
test_command: yarn test
integration_tests_lmdb_regeneration:
- executor: node
+ parameters:
+ node_version:
+ type: string
+ executor:
+ name: node
+ image: << parameters.node_version >>
steps:
- e2e-test:
test_path: integration-tests/lmdb-regeneration
@@ -535,8 +647,9 @@ jobs:
steps:
- checkout
# jq is helpful for parsing json & python required for node-gyp to build lmdb
- - run: sudo apt-get update && sudo apt-get install jq python -y
- - <<: *restore_cache
+ - run: sudo apt-get update && sudo apt-get install -y jq python3 python-is-python3
+ - restore_yarn_cache:
+ node_version: 18.0.0
- <<: *install_node_modules
- run: yarn markdown
- run: git config --global user.name "GatsbyJS Bot"
@@ -547,13 +660,16 @@ jobs:
executor: node
steps:
- checkout
- - run: sudo apt-get update && sudo apt-get install jq python -y
- - <<: *restore_cache
+ # python is not built in and node-gyp needs it to build lmdb
+ - run: sudo apt-get update && sudo apt-get install -y jq python3 python-is-python3
+ - restore_yarn_cache:
+ node_version: 18.0.0
- <<: *install_node_modules
- run: git config --global user.name "GatsbyJS Bot"
- run: git config --global user.email "core-team@gatsbyjs.com"
- run: node scripts/gatsby-changelog-generator/update-and-open-pr.js
+ # TODO(serhalp): Test Windows on Node.js 20 and 22?
windows_unit_tests:
parallelism: 4
executor:
@@ -567,8 +683,8 @@ jobs:
# Restoring cache takes as long as installing node modules, so skipping
# - restore_cache:
# keys:
- # - yarn-packages-v2-{{ checksum "yarn.lock" }}
- # - yarn-packages-v2-
+ # - yarn-packages-v2-{{ checksum "yarn.lock" }}-<< parameters.node_version >>
+ # - yarn-packages-v2-<< parameters.node_version >>
- <<: *attach_to_bootstrap
- run:
@@ -655,59 +771,60 @@ workflows:
build-test:
jobs:
- - bootstrap
+ - bootstrap:
+ name: "bootstrap-<< matrix.node_version >>"
+ matrix:
+ parameters:
+ node_version: ["18.2.0", "20.19", "22.13"]
- lint
- typecheck:
requires:
- - bootstrap
+ - bootstrap-18.2.0
- windows_unit_tests:
<<: *ignore_docs
requires:
- - lint
- - bootstrap
+ - bootstrap-18.2.0
- windows_adapters_smoke:
requires:
- # ideally we wait for windows unit tests here, but because those are flaky
- # feedback loop would be not practical, so at least wait for linux unit tests
- # to resemble setup for more robust E2E tests
- - lint
- - bootstrap
- - unit_tests_node18
+ - bootstrap-18.2.0
- unit_tests_node18:
<<: *ignore_docs
requires:
- - lint
- - typecheck
- - bootstrap
+ - bootstrap-18.2.0
+ - unit_tests_node20:
+ <<: *ignore_docs
+ requires:
+ - bootstrap-20.19
+ - unit_tests_node22:
+ <<: *ignore_docs
+ requires:
+ - bootstrap-22.13
- integration_tests_gatsby_source_wordpress:
- <<: *e2e-test-workflow
- - integration_tests_node_manifest:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_long_term_caching:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_cache_resilience:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_gatsby_pipeline:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_structured_logging:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_artifacts:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_ssr:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_images:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_functions:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_head_function_export:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_esm_in_gatsby_files:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_lmdb_regeneration:
- <<: *e2e-test-workflow
+ <<: *integration-test-workflow
- integration_tests_gatsby_cli:
- requires:
- - bootstrap
+ <<: *integration-test-workflow
- e2e_tests_pnp:
<<: *e2e-test-workflow
- e2e_tests_pnpm:
diff --git a/.eslintignore b/.eslintignore
index b97b3a4bfc442..c7c9b3f0fa00c 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -25,10 +25,10 @@ packages/gatsby-plugin-preload-fonts/prepare/*.js
packages/gatsby/cache-dir/commonjs/**/*
packages/gatsby-codemods/transforms
packages/gatsby-source-graphql/batching
-packages/gatsby-plugin-gatsby-cloud/components
-packages/gatsby-plugin-gatsby-cloud/context
-packages/gatsby-plugin-gatsby-cloud/models
-packages/gatsby-plugin-gatsby-cloud/utils
+deprecated-packages/gatsby-plugin-gatsby-cloud/components
+deprecated-packages/gatsby-plugin-gatsby-cloud/context
+deprecated-packages/gatsby-plugin-gatsby-cloud/models
+deprecated-packages/gatsby-plugin-gatsby-cloud/utils
packages/gatsby-plugin-preact/fast-refresh
packages/gatsby-source-wordpress/test-site/**
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index 6ff2d64e52060..659b59d8b3d7c 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -3,12 +3,6 @@ contact_links:
- name: Gatsby Documentation
url: https://www.gatsbyjs.com/docs/
about: Check out the Gatsby documentation for answers to common questions
- - name: Gatsby Discord
- url: https://gatsby.dev/discord
- about: Ask questions, get help and discuss new things you're building with the Gatsby community
- name: Gatsby Discussions
url: https://github.com/gatsbyjs/gatsby/discussions
about: Ask questions, request features & discuss RFCs
- - name: AskGatsbyJS Twitter
- url: https://twitter.com/AskGatsbyJS
- about: The official Twitter account to ask questions and get help with Gatsby
diff --git a/README.md b/README.md
index 47caf1df6b910..22b56d3689b76 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@
- Gatsby is a free and open source framework based on React that helps developers build blazing fast websites and apps. It combines the control and scalability of dynamically rendered sites with the speed of static-site generation, creating a whole new web of possibilities.
+ Gatsby is a free and open-source framework based on React that helps developers build blazing fast websites and apps.
It combines the control and scalability of dynamically rendered sites with the speed of static-site generation, creating a whole new web of possibilities.
gatsby-cheat-sheet.pdf
gatsbyjs.com
-
- twitter.com/gatsbyjs
-
Gatsby CLI Commands
First, install the global executable:
diff --git a/docs/docs/how-to/styling/tailwind-css.md b/docs/docs/how-to/styling/tailwind-css.md
index 26f09a052f449..1c59534aebea4 100644
--- a/docs/docs/how-to/styling/tailwind-css.md
+++ b/docs/docs/how-to/styling/tailwind-css.md
@@ -6,7 +6,9 @@ Tailwind CSS is a utility-first CSS framework for rapidly building custom user i
## Installing and configuring Tailwind
-Please follow the [official "Install Tailwind CSS with Gatsby" guide](https://tailwindcss.com/docs/guides/gatsby) to install and configure Tailwind CSS with Gatsby. Some important notes when configuring Tailwind with Gatsby:
+### Tailwind v3
+
+Please follow the [official "Install Tailwind CSS with Gatsby" guide](https://v3.tailwindcss.com/docs/guides/gatsby) to install and configure Tailwind CSS with Gatsby. Some important notes when configuring Tailwind with Gatsby:
- It is **not recommended** that you include Gatsby's output directories (`public` and `.cache`) in your `content` array in your `tailwind.config.js`. You should only include your source files to have Tailwind working as expected.
- If you use [GraphQL Typegen](/docs/how-to/local-development/graphql-typegen/) a file at `src/gatsby-types.d.ts` will be generated and with the default configuration for `content` in `tailwind.config.js` this will trigger an infinite loop. You have two options to fix this:
@@ -22,6 +24,10 @@ Please follow the [official "Install Tailwind CSS with Gatsby" guide](https://ta
}
```
+### Tailwind v4
+
+Currently, there's no official dedicated page for installing Tailwind with Gatsby in the Tailwind v4 documentation. However, the [installation instructions](https://tailwindcss.com/docs/installation/using-postcss) and/or the [Upgrade Guide](https://tailwindcss.com/docs/upgrade-guide) from Tailwind v3 to v4 should suffice.
+
## Other resources
- [Tailwind Documentation](https://tailwindcss.com/)
diff --git a/docs/docs/reference/release-notes/v3.0/index.md b/docs/docs/reference/release-notes/v3.0/index.md
index 3cc62f00f90f0..87f17c335db5f 100644
--- a/docs/docs/reference/release-notes/v3.0/index.md
+++ b/docs/docs/reference/release-notes/v3.0/index.md
@@ -211,7 +211,7 @@ Gatsby Cloud now includes Hosting for all your Gatsby projects. `gatsby-plugin-g
If you're using Gatsby v2 please install `gatsby-plugin-gatsby-cloud@^1.0.0`. For Gatsby v3 we’ve bumped `gatsby-plugin-gatsby-cloud` to `2.0.0`. It should
be a straight-forward update, no additional changes from you are required.
-Read more about `gatsby-plugin-gatsby-cloud` at the [README](/packages/gatsby-plugin-gatsby-cloud/).
+Read more about `gatsby-plugin-gatsby-cloud` at the [README](/deprecated-packages/gatsby-plugin-gatsby-cloud/).
## Miscellaneous changes in plugins
diff --git a/docs/docs/reference/release-notes/v4.14/index.md b/docs/docs/reference/release-notes/v4.14/index.md
index ac856e1fe22c8..dad1e9acb5df1 100644
--- a/docs/docs/reference/release-notes/v4.14/index.md
+++ b/docs/docs/reference/release-notes/v4.14/index.md
@@ -93,7 +93,7 @@ Drupal now has Image CDN support. Enable it in your site by following the offici
We updated our [default Starter template `gatsby-starter-default`](https://www.gatsbyjs.com/starters/gatsbyjs/gatsby-starter-default/) to contain references to documentation, tutorial, our monorepo examples folder, and more – and aligned its look-and-feel to that of our `gatsby new`/`npm init gatsby` experience. It shows you how to use TypeScript, Server Side Rendering, and Deferred Static Generation in your Gatsby application.
-
+
## Notable bugfixes & improvements
diff --git a/docs/docs/reference/release-notes/v4.21/index.md b/docs/docs/reference/release-notes/v4.21/index.md
index 5bfd04cf2e71b..620a4b99ec73c 100644
--- a/docs/docs/reference/release-notes/v4.21/index.md
+++ b/docs/docs/reference/release-notes/v4.21/index.md
@@ -55,7 +55,7 @@ If you're already using `gatsby-plugin-mdx` v3 and want to migrate, you can foll
We did our best to strike a balance between introducing meaningful breaking changes and keeping old behaviors. For example, while a lot of people use GraphQL nodes like `timeToRead` or `wordCount`, over the years it has become increasingly hard to fulfill every feature request and behavior that users wanted (e.g. correctly providing `timeToRead`/`wordCount` for every language is hard). One the one hand removing default fields like these means that you have to reimplement them on your own, but on the other hand this also means that you can more granularly customize them to your needs. Read [Extending the GraphQL MDX nodes](/plugins/gatsby-plugin-mdx#extending-the-graphql-mdx-nodes) for guidance on how to migrate.
-If you have any questions along the way, post them either into the [umbrella discussion](https://github.com/gatsbyjs/gatsby/discussions/25068) or into the [`mdx-v2` channel on Discord](https://gatsby.dev/discord).
+If you have any questions along the way, post them into the [umbrella discussion](https://github.com/gatsbyjs/gatsby/discussions/25068).
The [using-mdx example](https://github.com/gatsbyjs/gatsby/tree/master/examples/using-mdx) also showcases some of the necessary migration steps.
diff --git a/docs/docs/reference/release-notes/v4.24/index.md b/docs/docs/reference/release-notes/v4.24/index.md
index bdb879bf3192c..de7c25ae8672e 100644
--- a/docs/docs/reference/release-notes/v4.24/index.md
+++ b/docs/docs/reference/release-notes/v4.24/index.md
@@ -27,7 +27,7 @@ You probably noticed that in the last couple of releases we mostly focused on bu
For the Alpha the big new feature you'll be able to test out is [Partial Hydration](https://github.com/gatsbyjs/gatsby/discussions/36608). With Partial Hydration you gain the ability to mark specific parts of your site/application as “interactive”, while the rest of your site is static by default. This will result in shipping less JavaScript to your users and improved Lighthouse scores. For a quick preview of these great features, you can [watch the showcase on YouTube](https://www.youtube.com/watch?v=C-WrnfUm33k)
-Please take part in the [Gatsby 5 Umbrella Discussion](https://github.com/gatsbyjs/gatsby/discussions/36609), **try it out**, and let us know what works and doesn't work. If Discord is more your jam, you can also join the [`gatsby-5` Discord channel](https://discord.gg/MhfpnT4cNg).
+Please take part in the [Gatsby 5 Umbrella Discussion](https://github.com/gatsbyjs/gatsby/discussions/36609), **try it out**, and let us know what works and doesn't work.
## Updating File System Routes on data changes
diff --git a/docs/docs/reference/release-notes/v5.0/index.md b/docs/docs/reference/release-notes/v5.0/index.md
index ffe9a6ae947d0..e00d06b221629 100644
--- a/docs/docs/reference/release-notes/v5.0/index.md
+++ b/docs/docs/reference/release-notes/v5.0/index.md
@@ -98,7 +98,7 @@ Across the board we can see at least a 20% decrease in build time when using Sli
For more information, read the [Using Slices How-To Guide](/docs/how-to/performance/using-slices/) or the [Slice API Reference Documentation](/docs/reference/built-in-components/gatsby-slice).
-If you have any questions about the Slice API, you can comment on the [Gatsby 5 Umbrella Discussion](https://github.com/gatsbyjs/gatsby/discussions/36609) or [`gatsby-5` Discord channel](https://discord.gg/MhfpnT4cNg).
+If you have any questions about the Slice API, you can comment on the [Gatsby 5 Umbrella Discussion](https://github.com/gatsbyjs/gatsby/discussions/36609).
## Partial Hydration (Beta)
@@ -128,7 +128,7 @@ As a quick start, here's how you can use Partial Hydration in Gatsby 5 today:
```
- Add the `"use client"` directive to any component that needs to be a client component. You can see an example in the [gatsby-partial-hydration-starter](https://github.com/gatsbyjs/gatsby-partial-hydration-starter/blob/main/src/components/demo.js)
-If you have any questions about Partial Hydration, you can comment on the [RFC: Partial Hydration](https://github.com/gatsbyjs/gatsby/discussions/36608) or [`partial-hydration` Discord channel](https://discord.gg/KEVcg3rup2).
+If you have any questions about Partial Hydration, you can comment on the [RFC: Partial Hydration](https://github.com/gatsbyjs/gatsby/discussions/36608).
## GraphiQL v2
diff --git a/docs/docs/reference/release-notes/v5.6/index.md b/docs/docs/reference/release-notes/v5.6/index.md
index 7f2c4753ba6d3..87b0d2b1ca776 100644
--- a/docs/docs/reference/release-notes/v5.6/index.md
+++ b/docs/docs/reference/release-notes/v5.6/index.md
@@ -27,7 +27,7 @@ In case you have missed the news, [Gatsby is joining Netlify](https://www.gatsby
**Gatsby as a framework will continue to evolve and grow.** We’ve always shared with Netlify a mutual commitment to open-source and have never been more excited about Gatsby’s future. Many of Gatsby’s core contributors will join Netlify and continue to maintain the Gatsby framework.
-Be sure to join [our Discord](https://gatsby.dev/discord), follow [Gatsby](https://twitter.com/gatsbyjs) and [Netlify](https://twitter.com/Netlify) on Twitter or continue to read these release notes to know when we share our plans for the future.
+Follow [Gatsby](https://twitter.com/gatsbyjs) and [Netlify](https://twitter.com/Netlify) on Twitter or continue to read these release notes to know when we share our plans for the future.
## Head API supports context providers from `wrapRootElement`
diff --git a/docs/docs/telemetry.md b/docs/docs/telemetry.md
index 87fb041578d70..4ac538851b9ef 100644
--- a/docs/docs/telemetry.md
+++ b/docs/docs/telemetry.md
@@ -44,6 +44,6 @@ The access to the raw data is highly controlled, and we cannot identify individu
## What about sensitive data? (e.g. secrets)
-We perform additional steps to ensure that secure data (e.g. environment variables used to store secrets for the build process) **do not** make their way into our analytics. [We strip logs, error messages, etc.](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-telemetry/src/error-helpers.ts) of this sensitive data to ensure we _never_ gain access to this sensitive data.
+We perform additional steps to ensure that secure data (e.g. environment variables used to store secrets for the build process) **do not** make their way into our analytics. [We strip logs, error messages, etc.](https://github.com/gatsbyjs/gatsby/blob/master/deprecated-packages/gatsby-telemetry/src/error-helpers.ts) of this sensitive data to ensure we _never_ gain access to this sensitive data.
You can view all the information that is sent by Gatsby’s telemetry by setting the environment variable `GATSBY_TELEMETRY_DEBUG`to `1` to print the telemetry data instead of sending it over.
diff --git a/docs/docs/tutorial/creating-a-source-plugin/whats-next/index.mdx b/docs/docs/tutorial/creating-a-source-plugin/whats-next/index.mdx
index cab69078abc34..2016713f4fd45 100644
--- a/docs/docs/tutorial/creating-a-source-plugin/whats-next/index.mdx
+++ b/docs/docs/tutorial/creating-a-source-plugin/whats-next/index.mdx
@@ -26,13 +26,6 @@ Here are some more interesting pages in context of source plugins:
- [Creating a Local Plugin](/docs/creating-a-local-plugin/)
- [Maintaining a Plugin](/docs/how-to/plugins-and-themes/maintaining-a-plugin/)
-## Join the community
-
-Use the following resources to share your Gatsby projects or to ask for help from the community:
-
-- [Discord](https://gatsby.dev/discord): Connect with other Gatsby developers.
-- [Twitter](https://twitter.com/gatsbyjs): Tag @GatsbyJS, or use the hashtag #BuildWithGatsby to share what you're working on.
-
## Stay informed
Want to see what the Gatsby team is working on? Join the discussion on the following platforms:
@@ -47,4 +40,4 @@ Help us make Gatsby even better! Here are some resources to help you make your f
- [GitHub issues](https://github.com/gatsbyjs/gatsby/issues):
- Look through our existing issues to find something to work on. Try the "help wanted" or "good first issue" labels.
- Have an idea for something that could be improved? Check our existing issues to make sure it's not already listed. If it's not, create a new issue to start a conversation with the Gatsby team.
-- [Contributing docs](/contributing/): These docs include more detailed information about how to contribute to our open-source code or docs.
\ No newline at end of file
+- [Contributing docs](/contributing/): These docs include more detailed information about how to contribute to our open-source code or docs.
diff --git a/docs/docs/tutorial/getting-started/whats-next/index.mdx b/docs/docs/tutorial/getting-started/whats-next/index.mdx
index 2c185d045c89c..0803900fb4f2b 100644
--- a/docs/docs/tutorial/getting-started/whats-next/index.mdx
+++ b/docs/docs/tutorial/getting-started/whats-next/index.mdx
@@ -24,13 +24,6 @@ Not sure where to start? Here are a few Gatsby features that weren't covered in
- [Deferred static generation](/docs/how-to/rendering-options/using-deferred-static-generation): Speed up your site's build time by waiting to generate low-traffic pages until users request them at run time.
- [Server-side rendering](/docs/how-to/rendering-options/using-server-side-rendering/): Pre-render a page with data that gets fetched when a user visits the page. With server-side rendering, you can add features like dynamic personalization, A/B testing, or other configuration based on location or user data.
-## Join the community
-
-Use the following resources to share your Gatsby projects or to ask for help from the community:
-
-- [Discord](https://gatsby.dev/discord): Connect with other Gatsby developers.
-- [Twitter](https://twitter.com/gatsbyjs): Tag @GatsbyJS, or use the hashtag #BuildWithGatsby to share what you're working on.
-
## Stay informed
Want to see what the Gatsby team is working on? Join the discussion on the following platforms:
diff --git a/e2e-tests/adapters/cypress/e2e/headers.cy.ts b/e2e-tests/adapters/cypress/e2e/headers.cy.ts
index cc034a9afcd7d..878974d48ceee 100644
--- a/e2e-tests/adapters/cypress/e2e/headers.cy.ts
+++ b/e2e-tests/adapters/cypress/e2e/headers.cy.ts
@@ -1,5 +1,7 @@
+import { applyTrailingSlashOption } from "../../utils"
import { WorkaroundCachedResponse } from "../utils/dont-cache-responses-in-browser"
+const TRAILING_SLASH = Cypress.env(`TRAILING_SLASH`) || `never`
const PATH_PREFIX = Cypress.env(`PATH_PREFIX`) || ``
describe("Headers", () => {
@@ -75,7 +77,10 @@ describe("Headers", () => {
}
beforeEach(() => {
- cy.intercept(PATH_PREFIX + "/", WorkaroundCachedResponse).as("index")
+ cy.intercept(
+ applyTrailingSlashOption(PATH_PREFIX, TRAILING_SLASH),
+ WorkaroundCachedResponse
+ ).as("index")
cy.intercept(
PATH_PREFIX + "/routes/ssg/static",
WorkaroundCachedResponse
@@ -114,7 +119,9 @@ describe("Headers", () => {
})
it("should contain correct headers for index page", () => {
- cy.visit("/").waitForRouteChange()
+ cy.visit(
+ applyTrailingSlashOption(Cypress.config().baseUrl, TRAILING_SLASH)
+ ).waitForRouteChange()
checkHeaders("@index", {
...defaultHeaders,
@@ -133,7 +140,12 @@ describe("Headers", () => {
})
it("should contain correct headers for ssg page", () => {
- cy.visit("routes/ssg/static").waitForRouteChange()
+ cy.visit(
+ applyTrailingSlashOption(
+ Cypress.config().baseUrl + "/routes/ssg/static",
+ TRAILING_SLASH
+ )
+ ).waitForRouteChange()
checkHeaders("@ssg", {
...defaultHeaders,
diff --git a/integration-tests/functions/__tests__/__snapshots__/functions-dev.js.snap b/integration-tests/functions/__tests__/__snapshots__/functions-dev.js.snap
index ff56c6b025dde..a481e0adb4f38 100644
--- a/integration-tests/functions/__tests__/__snapshots__/functions-dev.js.snap
+++ b/integration-tests/functions/__tests__/__snapshots__/functions-dev.js.snap
@@ -80,13 +80,8 @@ Object {
exports[`develop response formats returns json correctly 2`] = `
Object {
- "access-control-allow-origin": "*",
- "connection": "close",
"content-length": "16",
"content-type": "application/json; charset=utf-8",
- "etag": "W/\\"10-R6td1pV+B+Xz9CJkNeaEI2kP+QY\\"",
- "vary": "Accept-Encoding",
- "x-powered-by": "Express",
}
`;
@@ -94,13 +89,8 @@ exports[`develop response formats returns text correctly 1`] = `"I am typescript
exports[`develop response formats returns text correctly 2`] = `
Object {
- "access-control-allow-origin": "*",
- "connection": "close",
"content-length": "15",
"content-type": "text/html; charset=utf-8",
- "etag": "W/\\"f-zwggT56l/fnWBm4dI0PkA4E3i4E\\"",
- "vary": "Accept-Encoding",
- "x-powered-by": "Express",
}
`;
diff --git a/integration-tests/functions/__tests__/__snapshots__/functions-prod.js.snap b/integration-tests/functions/__tests__/__snapshots__/functions-prod.js.snap
index 72ee383760b68..f0b12be2ce761 100644
--- a/integration-tests/functions/__tests__/__snapshots__/functions-prod.js.snap
+++ b/integration-tests/functions/__tests__/__snapshots__/functions-prod.js.snap
@@ -80,11 +80,8 @@ Object {
exports[`production response formats returns json correctly 2`] = `
Object {
- "connection": "close",
"content-length": "16",
"content-type": "application/json; charset=utf-8",
- "etag": "W/\\"10-R6td1pV+B+Xz9CJkNeaEI2kP+QY\\"",
- "x-powered-by": "Express",
}
`;
@@ -92,11 +89,8 @@ exports[`production response formats returns text correctly 1`] = `"I am typescr
exports[`production response formats returns text correctly 2`] = `
Object {
- "connection": "close",
"content-length": "15",
"content-type": "text/html; charset=utf-8",
- "etag": "W/\\"f-zwggT56l/fnWBm4dI0PkA4E3i4E\\"",
- "x-powered-by": "Express",
}
`;
diff --git a/integration-tests/functions/test-helpers.js b/integration-tests/functions/test-helpers.js
index 0c457df8bc215..17d5ae1afb829 100644
--- a/integration-tests/functions/test-helpers.js
+++ b/integration-tests/functions/test-helpers.js
@@ -164,17 +164,23 @@ export function runTests(env, host) {
const res = await fetchWithRetry(`${host}/api/i-am-json`)
const result = await res.json()
- const { date, ...headers } = Object.fromEntries(res.headers)
+ const relevantHeaders = {
+ 'content-type': res.headers.get('content-type'),
+ 'content-length': res.headers.get('content-length')
+ }
expect(result).toMatchSnapshot()
- expect(headers).toMatchSnapshot()
+ expect(relevantHeaders).toMatchSnapshot()
})
test(`returns text correctly`, async () => {
const res = await fetchWithRetry(`${host}/api/i-am-typescript`)
const result = await res.text()
- const { date, ...headers } = Object.fromEntries(res.headers)
+ const relevantHeaders = {
+ 'content-type': res.headers.get('content-type'),
+ 'content-length': res.headers.get('content-length')
+ }
expect(result).toMatchSnapshot()
- expect(headers).toMatchSnapshot()
+ expect(relevantHeaders).toMatchSnapshot()
})
})
diff --git a/integration-tests/gatsby-cli/__tests__/new.js b/integration-tests/gatsby-cli/__tests__/new.js
index 6cf61330aff15..17236ea86a497 100644
--- a/integration-tests/gatsby-cli/__tests__/new.js
+++ b/integration-tests/gatsby-cli/__tests__/new.js
@@ -1,6 +1,5 @@
import { GatsbyCLI } from "../test-helpers"
import * as fs from "fs-extra"
-import execa from "execa"
import { join } from "path"
import { getConfigStore } from "gatsby-core-utils"
@@ -9,7 +8,14 @@ jest.setTimeout(MAX_TIMEOUT)
const cwd = `execution-folder`
-const clean = dir => execa(`yarn`, ["del-cli", dir])
+const clean = async dir => {
+ try {
+ await fs.rmdir(dir, { recursive: true })
+ } catch {
+ // will throw when dir doesn't exist
+ // which is fine, we just want to ensure it's clean
+ }
+}
describe(`gatsby new`, () => {
// make folder for us to create sites into
diff --git a/integration-tests/gatsby-cli/package.json b/integration-tests/gatsby-cli/package.json
index 8634fa11a5b41..a5790c6a67628 100644
--- a/integration-tests/gatsby-cli/package.json
+++ b/integration-tests/gatsby-cli/package.json
@@ -8,7 +8,6 @@
"devDependencies": {
"babel-jest": "^29.3.1",
"babel-preset-gatsby-package": "next",
- "del-cli": "^3.0.1",
"execa": "^4.0.1",
"fs-extra": "^9.0.0",
"gatsby": "next",
diff --git a/integration-tests/lmdb-regeneration/.npmrc b/integration-tests/lmdb-regeneration/.npmrc
deleted file mode 100644
index 1a456a8d1c769..0000000000000
--- a/integration-tests/lmdb-regeneration/.npmrc
+++ /dev/null
@@ -1 +0,0 @@
-build_from_source=true
diff --git a/integration-tests/lmdb-regeneration/package.json b/integration-tests/lmdb-regeneration/package.json
index 7cd2ca82f4e72..e235ae63db9ab 100644
--- a/integration-tests/lmdb-regeneration/package.json
+++ b/integration-tests/lmdb-regeneration/package.json
@@ -8,6 +8,7 @@
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
+ "postinstall": "npm rebuild --build-from-source lmdb",
"test": "jest --runInBand"
},
"dependencies": {
diff --git a/integration-tests/node-manifest/__tests__/create-node-manifest.test.js b/integration-tests/node-manifest/__tests__/create-node-manifest.test.js
deleted file mode 100644
index 3c8cf2f176cb9..0000000000000
--- a/integration-tests/node-manifest/__tests__/create-node-manifest.test.js
+++ /dev/null
@@ -1,242 +0,0 @@
-// Must run `gatsby-dev --packages gatsby to get latest gatsby changes before running the tests
-jest.setTimeout(100000)
-const DEFAULT_MAX_DAYS_OLD = 30
-
-const {
- spawnGatsbyProcess,
- runGatsbyClean,
-} = require(`../utils/get-gatsby-process`)
-const urling = require(`urling`)
-const rimraf = require(`rimraf`)
-const path = require(`path`)
-const fs = require(`fs-extra`)
-
-const gatsbyCommandName = process.env.GATSBY_COMMAND_NAME || `develop`
-
-const manifestDir = path.join(
- process.cwd(),
- `public`,
- `__node-manifests`,
- `default-site-plugin`
-)
-
-const pageDataDir = path.join(process.cwd(), `public`, `page-data`)
-
-const createManifestId = nodeId => `${gatsbyCommandName}-${nodeId}`
-
-const cleanNodeManifests = async () => {
- console.log(`removing any lingering node manifest files at ${manifestDir}`)
- return new Promise(resolve => rimraf(manifestDir, resolve))
-}
-
-const getManifestContents = async nodeId =>
- await fs.readJSON(path.join(manifestDir, `${createManifestId(nodeId)}.json`))
-
-const pageDataContents = async pagePath =>
- await fs.readJSON(path.join(pageDataDir, pagePath, `page-data.json`))
-
-const port = 8010
-
-// see gatsby-node.js for where createNodeManifest was called
-// and for the corresponding pages that were created with createPage
-describe(`Node Manifest API in "gatsby ${gatsbyCommandName}"`, () => {
- let gatsbyProcess
-
- beforeAll(async () => {
- await cleanNodeManifests()
-
- gatsbyProcess = spawnGatsbyProcess(gatsbyCommandName, {
- PORT: port,
- })
-
- if (gatsbyCommandName === `develop`) {
- // wait for localhost
- return urling(`http://localhost:${port}`)
- } else if (gatsbyCommandName === `build`) {
- // for gatsby build wait for the process to exit
- return gatsbyProcess
- }
- })
-
- afterAll(() => {
- return new Promise(resolve => {
- if (
- !gatsbyProcess ||
- gatsbyProcess.killed ||
- gatsbyProcess.exitCode !== null
- ) {
- return resolve()
- }
-
- gatsbyProcess.on(`exit`, () => {
- setImmediate(() => {
- resolve()
- })
- })
-
- gatsbyProcess.kill()
- })
- })
-
- it(`Creates an accurate node manifest when using the ownerNodeId argument in createPage`, async () => {
- const manifestFileContents = await getManifestContents(1)
-
- expect(manifestFileContents.node.id).toBe(`1`)
- expect(manifestFileContents.page.path).toBe(`/one/`)
- expect(manifestFileContents.foundPageBy).toBe(`ownerNodeId`)
- })
-
- it(`Creates an accurate node manifest when ownerNodeId isn't present but there's a matching "id" in pageContext`, async () => {
- const manifestFileContents = await getManifestContents(2)
-
- expect(manifestFileContents.node.id).toBe(`2`)
- expect(manifestFileContents.page.path).toBe(`/two/`)
- expect(manifestFileContents.foundPageBy).toBe(`context.id`)
- })
-
- it(`Creates an accurate node manifest when ownerNodeId isn't present but there's a matching "slug" in pageContext`, async () => {
- const manifestFileContents = await getManifestContents(5)
-
- expect(manifestFileContents.node.id).toBe(`5`)
- expect(manifestFileContents.page.path).toBe(`/slug-test-path/`)
- expect(manifestFileContents.foundPageBy).toBe(`context.slug`)
- })
-
- if (gatsbyCommandName === `build`) {
- // this doesn't work in gatsby develop since query tracking
- // only runs when visiting a page in browser.
- it(`Creates a node manifest from the first tracked page it finds in query tracking`, async () => {
- const manifestFileContents = await getManifestContents(3)
-
- expect(manifestFileContents.node.id).toBe(`3`)
- expect(
- [`/three/`, `/three-alternative/`].includes(
- manifestFileContents.page.path
- )
- ).toBe(true)
- expect(manifestFileContents.foundPageBy).toBe(`queryTracking`)
- })
-
- // this doesn't work in gatsby develop since page-data.json files aren't written out
- it(`Adds the correct manifestId to the pageData.json digest`, async () => {
- const nodeId = `1`
- const path = `one`
- const pageData = await pageDataContents(path)
-
- expect(pageData.manifestId).toEqual(createManifestId(nodeId))
- })
- }
-
- it(`Creates a node manifest with a null page path when createNodeManifest is called but a page is not created for the provided node in the Gatsby site`, async () => {
- const manifestFileContents = await getManifestContents(4)
-
- expect(manifestFileContents.node.id).toBe(`4`)
- expect(manifestFileContents.page.path).toBe(null)
- expect(manifestFileContents.foundPageBy).toBe(`none`)
- })
-
- it(`Creates a Node manifest for filesystem routes`, async () => {
- const manifestFileContents = await getManifestContents(`filesystem-1`)
-
- expect(manifestFileContents.node.id).toBe(`filesystem-1`)
- expect(manifestFileContents.page.path).toBe(`/filesystem-1/`)
- expect(manifestFileContents.foundPageBy).toBe(`filesystem-route-api`)
- })
-
- it(`Creates a manifest for the node when updatedAt is included and is within ${DEFAULT_MAX_DAYS_OLD} days`, async () => {
- const recentlyUpdatedNodeId = `updatedAt-1`
- const staleNodeId = `updatedAt-2`
- const recentlyUpdatedNodeManifest = await getManifestContents(
- recentlyUpdatedNodeId
- )
-
- try {
- await getManifestContents(staleNodeId)
- throw new Error()
- } catch (e) {
- expect(e.message).toContain(`no such file or directory`)
- expect(e.message).toContain(createManifestId(staleNodeId))
- }
-
- expect(recentlyUpdatedNodeManifest.node.id).toBe(recentlyUpdatedNodeId)
- })
-
- it(`Creates a correct node manifest for nodes in connection list queries`, async () => {
- const manifestFileContents1 = await getManifestContents(
- `connection-list-query-node`
- )
-
- expect(manifestFileContents1.node.id).toBe(`connection-list-query-node`)
- expect(manifestFileContents1.page.path).toBe(`/connection-list-query-page/`)
-
- const manifestFileContents2 = await getManifestContents(
- `connection-list-query-node-2`
- )
-
- expect(manifestFileContents2.node.id).toBe(`connection-list-query-node-2`)
- expect(manifestFileContents2.page.path).toBe(`/connection-list-query-page/`)
- })
-
- it(`Creates a correct node manifest for nodes in connection list queries using staticQuery()`, async () => {
- const manifestFileContents1 = await getManifestContents(
- `static-query-list-query-node`
- )
-
- expect(manifestFileContents1.node.id).toBe(`static-query-list-query-node`)
- expect(manifestFileContents1.page.path).toBe(`/static-query-list-query/`)
-
- const manifestFileContents2 = await getManifestContents(
- `static-query-list-query-node-2`
- )
-
- expect(manifestFileContents2.node.id).toBe(`static-query-list-query-node-2`)
- expect(manifestFileContents2.page.path).toBe(`/static-query-list-query/`)
- })
-})
-
-describe(`Node Manifest API in "gatsby ${gatsbyCommandName}"`, () => {
- let gatsbyProcess
-
- beforeEach(async () => {
- await runGatsbyClean()
-
- gatsbyProcess = spawnGatsbyProcess(gatsbyCommandName, {
- DUMMY_NODE_MANIFEST_COUNT: 700,
- NODE_MANIFEST_FILE_LIMIT: 500,
- PORT: port,
- })
-
- if (gatsbyCommandName === `develop`) {
- // wait for localhost
- await urling(`http://localhost:${port}`)
- } else if (gatsbyCommandName === `build`) {
- // for gatsby build wait for the process to exit
- return gatsbyProcess
- }
- })
-
- afterAll(() => {
- return new Promise(resolve => {
- if (
- !gatsbyProcess ||
- gatsbyProcess.killed ||
- gatsbyProcess.exitCode !== null
- ) {
- return resolve()
- }
-
- gatsbyProcess.on(`exit`, () => {
- setImmediate(() => {
- resolve()
- })
- })
-
- gatsbyProcess.kill()
- })
- })
-
- it(`Limits the number of node manifest files written to disk to 500`, async () => {
- const nodeManifestFiles = fs.readdirSync(manifestDir)
- expect(nodeManifestFiles).toHaveLength(500)
- })
-})
diff --git a/integration-tests/node-manifest/gatsby-node.js b/integration-tests/node-manifest/gatsby-node.js
deleted file mode 100644
index ecb11eb036378..0000000000000
--- a/integration-tests/node-manifest/gatsby-node.js
+++ /dev/null
@@ -1,219 +0,0 @@
-const commandName = process.env.NODE_ENV === `development` ? `develop` : `build`
-const DEFAULT_MAX_DAYS_OLD = 30
-const createManifestId = nodeId => `${commandName}-${nodeId}`
-
-const DUMMY_NODE_MANIFEST_COUNT = process.env.DUMMY_NODE_MANIFEST_COUNT || 0
-const ONE_DAY = 1000 * 60 * 60 * 24
-const THIRTY_DAYS = ONE_DAY * 30
-const YESTERDAY = new Date() - ONE_DAY
-const LOWER_CREATED_AT_TIME_LIMIT = YESTERDAY - THIRTY_DAYS
-const UPPER_CREATED_AT_TIME_LIMIT = YESTERDAY
-
-function randomIntFromInterval(min, max) {
- return Math.floor(Math.random() * (max - min + 1) + min)
-}
-
-exports.sourceNodes = ({ actions }) => {
- // template nodes
- for (let id = 1; id < 6; id++) {
- const node = {
- id: `${id}`,
- internal: {
- type: `TestNode`,
- contentDigest: `${id}`,
- },
- }
-
- if (id === 5) {
- node.slug = `test-slug`
- }
-
- actions.createNode(node)
-
- actions.unstable_createNodeManifest({
- manifestId: createManifestId(id),
- node,
- })
- }
-
- // These nodes are intended to be added when running tests for the node manifest creation limit logic
- for (let i = 0; i < DUMMY_NODE_MANIFEST_COUNT; i++) {
- const id = `dummy-${i}`
- const node = {
- id,
- internal: {
- type: `TestNode`,
- contentDigest: id,
- },
- }
-
- const updatedAtUTC = new Date(
- randomIntFromInterval(
- LOWER_CREATED_AT_TIME_LIMIT,
- UPPER_CREATED_AT_TIME_LIMIT
- )
- ).toUTCString()
-
- actions.createNode(node)
-
- actions.unstable_createNodeManifest({
- manifestId: createManifestId(id),
- node,
- updatedAtUTC,
- })
- }
-
- // filesystem route api node
- const node = {
- id: `filesystem-1`,
- internal: {
- type: `TestFSRouteType`,
- contentDigest: `1`,
- },
- }
-
- actions.createNode(node)
- actions.unstable_createNodeManifest({
- manifestId: createManifestId(node.id),
- node,
- })
- const today = new Date()
- const nodeTooOldToGetManifestCreated = new Date(
- new Date().setDate(today.getDate() - (DEFAULT_MAX_DAYS_OLD + 1))
- ).toISOString()
-
- const nodeUpdated1 = {
- id: `updatedAt-1`,
- internal: {
- type: `TestUpdatedAtType`,
- contentDigest: `1`,
- },
- updatedAt: today.toISOString(),
- }
-
- const nodeUpdated2 = {
- id: `updatedAt-2`,
- internal: {
- type: `TestUpdatedAtType`,
- contentDigest: `1`,
- },
- updatedAt: nodeTooOldToGetManifestCreated,
- }
-
- actions.createNode(nodeUpdated1)
- actions.createNode(nodeUpdated2)
- actions.unstable_createNodeManifest({
- manifestId: createManifestId(nodeUpdated1.id),
- node: nodeUpdated1,
- updatedAtUTC: nodeUpdated1.updatedAt,
- })
-
- actions.unstable_createNodeManifest({
- manifestId: createManifestId(nodeUpdated2.id),
- node: nodeUpdated2,
- updatedAtUTC: nodeUpdated2.updatedAt,
- })
-
- const nodeForConnectionListQuery1 = {
- id: `connection-list-query-node`,
- title: `First connection list query node`,
- internal: {
- type: `TestConnectionListQueryType`,
- contentDigest: `1`,
- },
- }
- const nodeForConnectionListQuery2 = {
- id: `connection-list-query-node-2`,
- title: `Second connection list query node`,
- internal: {
- type: `TestConnectionListQueryType`,
- contentDigest: `2`,
- },
- }
-
- actions.createNode(nodeForConnectionListQuery1)
- actions.unstable_createNodeManifest({
- manifestId: createManifestId(nodeForConnectionListQuery1.id),
- node: nodeForConnectionListQuery1,
- })
-
- actions.createNode(nodeForConnectionListQuery2)
- actions.unstable_createNodeManifest({
- manifestId: createManifestId(nodeForConnectionListQuery2.id),
- node: nodeForConnectionListQuery2,
- })
-
- const nodeForStaticQueryList1 = {
- id: `static-query-list-query-node`,
- title: `First static query list query node`,
- internal: {
- type: `TestConnectionStaticQueryListQueryType`,
- contentDigest: `1`,
- },
- }
- const nodeForStaticQueryList2 = {
- id: `static-query-list-query-node-2`,
- title: `Second static query list query node`,
- internal: {
- type: `TestConnectionStaticQueryListQueryType`,
- contentDigest: `2`,
- },
- }
-
- actions.createNode(nodeForStaticQueryList1)
- actions.unstable_createNodeManifest({
- manifestId: createManifestId(nodeForStaticQueryList1.id),
- node: nodeForStaticQueryList1,
- })
-
- actions.createNode(nodeForStaticQueryList2)
- actions.unstable_createNodeManifest({
- manifestId: createManifestId(nodeForStaticQueryList2.id),
- node: nodeForStaticQueryList2,
- })
-}
-
-/**
- * The main way node manifests are mapped to pages is via the ownerNodeId argument to createPage.
- * If it doesn't exist we either grab the first page with `id` in pageContext that matches to our nodeManifest's node id, or if that doesn't exist, the first page query where our nodeManifest's node id is queried. Node 2 and 3 are used to test this behaviour (in that order).
- *
- * Note that there's no page created for our node with an id of `4`. The Node Manifest API should account for the situation where the user didn't create a page for a node that a manifest was created for by a source plugin.
- */
-exports.createPages = ({ actions }) => {
- actions.createPage({
- path: `one`,
- ownerNodeId: `1`,
- component: require.resolve(`./src/templates/one.js`),
- })
-
- actions.createPage({
- path: `two`,
- component: require.resolve(`./src/templates/two.js`),
- context: {
- id: `2`,
- },
- })
-
- actions.createPage({
- path: `two-alternative`,
- component: require.resolve(`./src/templates/two.js`),
- })
-
- actions.createPage({
- path: `three`,
- component: require.resolve(`./src/templates/three.js`),
- })
-
- actions.createPage({
- path: `three-alternative`,
- component: require.resolve(`./src/templates/three.js`),
- })
-
- actions.createPage({
- path: `slug-test-path`,
- context: {
- slug: `test-slug`,
- },
- component: require.resolve(`./src/templates/four.js`),
- })
-}
diff --git a/integration-tests/node-manifest/package.json b/integration-tests/node-manifest/package.json
deleted file mode 100644
index b0893e5a50e9c..0000000000000
--- a/integration-tests/node-manifest/package.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "name": "gatsby-node-manifest-test-site",
- "version": "0.1.0",
- "description": "A test site for Gatsby's node manifest API",
- "main": "index.js",
- "scripts": {
- "test": "cross-env GATSBY_COMMAND_NAME=build jest --runInBand && cross-env GATSBY_COMMAND_NAME=develop jest --runInBand"
- },
- "author": "Tyler Barnes ",
- "license": "MIT",
- "dependencies": {
- "gatsby": "next",
- "react": "^18.2.0",
- "react-dom": "^18.2.0"
- },
- "devDependencies": {
- "cross-env": "^7.0.3",
- "execa": "^5.1.1",
- "fs-extra": "^10.0.0",
- "jest": "^29.3.1",
- "rimraf": "^3.0.2",
- "urling": "^1.0.7"
- }
-}
diff --git a/integration-tests/node-manifest/src/pages/connection-list-query-page.js b/integration-tests/node-manifest/src/pages/connection-list-query-page.js
deleted file mode 100644
index 6b671e933f3a4..0000000000000
--- a/integration-tests/node-manifest/src/pages/connection-list-query-page.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import React from "react"
-import { graphql } from "gatsby"
-
-export default function ConnectionListQueryPage({ data }) {
- return (
-
-
ConnectionListQueryPage
- {data.allTestConnectionListQueryType.nodes.map(({ title }) => (
- {title}
- ))}
-
- )
-}
-
-export const query = graphql`
- query ConnectionListQueryPage {
- allTestConnectionListQueryType {
- nodes {
- title
- }
- }
- }
-`
diff --git a/integration-tests/node-manifest/src/pages/static-query-list-query.js b/integration-tests/node-manifest/src/pages/static-query-list-query.js
deleted file mode 100644
index 19b9fa86babdb..0000000000000
--- a/integration-tests/node-manifest/src/pages/static-query-list-query.js
+++ /dev/null
@@ -1,24 +0,0 @@
-import React from "react"
-import { graphql } from "gatsby"
-import { useStaticQuery } from "gatsby"
-
-export default function TestConnectionStaticQueryListQueryType() {
- const data = useStaticQuery(graphql`
- query TestConnectionStaticQueryListQueryType {
- allTestConnectionStaticQueryListQueryType {
- nodes {
- title
- }
- }
- }
- `)
-
- return (
-
-
TestConnectionStaticQueryListQueryType
- {data.allTestConnectionStaticQueryListQueryType.nodes.map(({ title }) => (
- {title}
- ))}
-
- )
-}
diff --git a/integration-tests/node-manifest/src/pages/{TestFsRouteType.id}.js b/integration-tests/node-manifest/src/pages/{TestFsRouteType.id}.js
deleted file mode 100644
index 6df49dcbc7383..0000000000000
--- a/integration-tests/node-manifest/src/pages/{TestFsRouteType.id}.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import { graphql } from "gatsby"
-import React from "react"
-
-export default function FSRouteTest({ data }) {
- return filesystem route. id {data.testFsRouteType.id}
-}
-
-export const query = graphql`
- query FSRouteTest($id: String!) {
- testFsRouteType(id: { eq: $id }) {
- id
- }
- # querying this other node to make sure inferring the owner from context.id prevents this node from being the page owner
- otherNode: testNode(id: { eq: "2" }) {
- id
- }
- }
-`
diff --git a/integration-tests/node-manifest/src/templates/four.js b/integration-tests/node-manifest/src/templates/four.js
deleted file mode 100644
index 1874dfccbc20f..0000000000000
--- a/integration-tests/node-manifest/src/templates/four.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import { graphql } from "gatsby"
-import React from "react"
-
-export default function Four({ data }) {
- return Template 4. Node by slug {data.testNode.slug}
-}
-
-export const query = graphql`
- query SLUG_TEST($slug: String) {
- testNode(slug: { eq: $slug }) {
- id
- }
- otherNode: testNode(id: { eq: "2" }) {
- id
- }
- }
-`
diff --git a/integration-tests/node-manifest/src/templates/one.js b/integration-tests/node-manifest/src/templates/one.js
deleted file mode 100644
index 9abcb0a10daa8..0000000000000
--- a/integration-tests/node-manifest/src/templates/one.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import { graphql } from "gatsby"
-import React from "react"
-
-export default function One({ data }) {
- return Template 1. Node id {data.testNode.id}
-}
-
-export const query = graphql`
- query {
- testNode(id: { eq: "1" }) {
- id
- }
- # querying this other node to make sure ownerNodeId in gatsby-node prevents this node from being the page owner
- otherNode: testNode(id: { eq: "2" }) {
- id
- }
- }
-`
diff --git a/integration-tests/node-manifest/src/templates/three.js b/integration-tests/node-manifest/src/templates/three.js
deleted file mode 100644
index b0e7a8db42671..0000000000000
--- a/integration-tests/node-manifest/src/templates/three.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import { graphql } from "gatsby"
-import React from "react"
-
-export default function One({ data }) {
- return Template 3. Node id {data.testNode.id}
-}
-
-export const query = graphql`
- query {
- testNode(id: { eq: "3" }) {
- id
- }
- otherNode: testNode(id: { eq: "2" }) {
- id
- }
- }
-`
diff --git a/integration-tests/node-manifest/src/templates/two.js b/integration-tests/node-manifest/src/templates/two.js
deleted file mode 100644
index 28deb3899e130..0000000000000
--- a/integration-tests/node-manifest/src/templates/two.js
+++ /dev/null
@@ -1,14 +0,0 @@
-import { graphql } from "gatsby"
-import React from "react"
-
-export default function One({ data }) {
- return Template 2. Node id {data.testNode.id}
-}
-
-export const query = graphql`
- query {
- testNode(id: { eq: "2" }) {
- id
- }
- }
-`
diff --git a/integration-tests/node-manifest/utils/get-gatsby-process.js b/integration-tests/node-manifest/utils/get-gatsby-process.js
deleted file mode 100644
index 1a5ebd3852ef9..0000000000000
--- a/integration-tests/node-manifest/utils/get-gatsby-process.js
+++ /dev/null
@@ -1,17 +0,0 @@
-const execa = require(`execa`)
-const path = require(`path`)
-
-function spawnGatsbyProcess(command = `develop`, env = {}) {
- return execa(process.execPath, [`./node_modules/gatsby/cli.js`, command], {
- stdio: [`inherit`, `inherit`, `inherit`],
- env: {
- ...process.env,
- NODE_ENV: command === `develop` ? `development` : `production`,
- ...env,
- },
- })
-}
-
-exports.spawnGatsbyProcess = spawnGatsbyProcess
-
-exports.runGatsbyClean = () => spawnGatsbyProcess("clean")
diff --git a/integration-tests/ssr/__tests__/ssr.js b/integration-tests/ssr/__tests__/ssr.js
index af57d3ec849cb..a18a1b04a1e3d 100644
--- a/integration-tests/ssr/__tests__/ssr.js
+++ b/integration-tests/ssr/__tests__/ssr.js
@@ -129,7 +129,7 @@ describe(`SSR`, () => {
it(
title,
async () => {
- const src = path.join(__dirname, `/fixtures/`, fixture)
+ const src = path.join(__dirname, `fixtures`, fixture)
const dest = getSrcLoc(fixture)
fs.copySync(src, dest)
diff --git a/integration-tests/structured-logging/__tests__/to-do.js b/integration-tests/structured-logging/__tests__/to-do.js
index 5de5df637e747..4212f243b984b 100644
--- a/integration-tests/structured-logging/__tests__/to-do.js
+++ b/integration-tests/structured-logging/__tests__/to-do.js
@@ -7,7 +7,6 @@ const EventEmitter = require(`events`)
const fetch = require(`node-fetch`)
const fs = require(`fs-extra`)
const path = require(`path`)
-const cpy = require(`cpy`)
const { first, last } = require(`lodash`)
// const { groupBy, filter } = require(`lodash`)
const joi = require(`joi`)
@@ -380,7 +379,7 @@ describe(`develop`, () => {
describe(`code change`, () => {
beforeAll(() => {
- return cpy(
+ return fs.cp(
path.join(__dirname, "../src/pages/index.js"),
path.join(__dirname, "../original/"),
{
@@ -428,12 +427,12 @@ describe(`develop`, () => {
commonAssertionsForFailure(events)
})
describe(`valid`, () => {
- beforeAll(done => {
+ beforeAll(async done => {
clearEvents()
- cpy(
+ await fs.cp(
path.join(__dirname, "../original/index.js"),
- path.join(__dirname, "../src/pages/"),
+ path.join(__dirname, "../src/pages/index.js"),
{
overwrite: true,
}
diff --git a/integration-tests/structured-logging/package.json b/integration-tests/structured-logging/package.json
index d9428847405bb..25da23b40af20 100644
--- a/integration-tests/structured-logging/package.json
+++ b/integration-tests/structured-logging/package.json
@@ -17,7 +17,6 @@
},
"devDependencies": {
"babel-plugin-dynamic-import-node-sync": "^2.0.1",
- "cpy": "^8.1.2",
"fs-extra": "^10.0.0",
"jest": "^29.3.1",
"joi": "^17.4.0",
diff --git a/jest.config.js b/jest.config.js
index 2c922f7e9be87..a2c5a85b2bf40 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -143,7 +143,7 @@ const config = {
`/examples/`,
`/dist/`,
`/node_modules/`,
- `/packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/`,
+ `/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/`,
`/packages/gatsby/src/utils/worker/__tests__/test-helpers/`,
`/deprecated-packages/`,
`__tests__/fixtures`,
diff --git a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md
index c9f298e7233e5..4568542af70c2 100644
--- a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md
+++ b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/babel-plugin-remove-graphql-queries@5.15.0/packages/babel-plugin-remove-graphql-queries) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package babel-plugin-remove-graphql-queries
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/babel-plugin-remove-graphql-queries@5.14.0/packages/babel-plugin-remove-graphql-queries) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json
index 9833297bd7a75..2936b77db6177 100644
--- a/packages/babel-plugin-remove-graphql-queries/package.json
+++ b/packages/babel-plugin-remove-graphql-queries/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-remove-graphql-queries",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Jason Quense ",
"repository": {
"type": "git",
@@ -11,12 +11,12 @@
"dependencies": {
"@babel/runtime": "^7.20.13",
"@babel/types": "^7.20.7",
- "gatsby-core-utils": "^4.15.0-next.0"
+ "gatsby-core-utils": "^4.16.0-next.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/babel-preset-gatsby-package/CHANGELOG.md b/packages/babel-preset-gatsby-package/CHANGELOG.md
index 82cc2a56ad64e..191e7b9de7017 100644
--- a/packages/babel-preset-gatsby-package/CHANGELOG.md
+++ b/packages/babel-preset-gatsby-package/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby-package@3.15.0/packages/babel-preset-gatsby-package) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package babel-preset-gatsby-package
+
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby-package@3.14.0/packages/babel-preset-gatsby-package) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/babel-preset-gatsby-package/package.json b/packages/babel-preset-gatsby-package/package.json
index 57bd9ebe0095f..e74c8c350d4b4 100644
--- a/packages/babel-preset-gatsby-package/package.json
+++ b/packages/babel-preset-gatsby-package/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-preset-gatsby-package",
- "version": "3.15.0-next.0",
+ "version": "3.16.0-next.0",
"author": "Philipp Spiess ",
"repository": {
"type": "git",
diff --git a/packages/babel-preset-gatsby/CHANGELOG.md b/packages/babel-preset-gatsby/CHANGELOG.md
index 39c50ec7b922c..209263a395f2e 100644
--- a/packages/babel-preset-gatsby/CHANGELOG.md
+++ b/packages/babel-preset-gatsby/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby@3.15.0/packages/babel-preset-gatsby) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package babel-preset-gatsby
+
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby@3.14.0/packages/babel-preset-gatsby) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json
index bf9f1c588018a..5d2d04f252957 100644
--- a/packages/babel-preset-gatsby/package.json
+++ b/packages/babel-preset-gatsby/package.json
@@ -1,6 +1,6 @@
{
"name": "babel-preset-gatsby",
- "version": "3.15.0-next.0",
+ "version": "3.16.0-next.0",
"author": "Philipp Spiess ",
"repository": {
"type": "git",
@@ -22,8 +22,8 @@
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
- "gatsby-core-utils": "^4.15.0-next.0",
- "gatsby-legacy-polyfills": "^3.15.0-next.0"
+ "gatsby-core-utils": "^4.16.0-next.0",
+ "gatsby-legacy-polyfills": "^3.16.0-next.0"
},
"peerDependencies": {
"@babel/core": "^7.11.6",
@@ -38,7 +38,7 @@
},
"devDependencies": {
"@babel/cli": "^7.20.7",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"slash": "^3.0.0"
},
diff --git a/packages/create-gatsby/CHANGELOG.md b/packages/create-gatsby/CHANGELOG.md
index 1fa475fffacef..970cb17061f82 100644
--- a/packages/create-gatsby/CHANGELOG.md
+++ b/packages/create-gatsby/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/create-gatsby@3.15.0/packages/create-gatsby) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package create-gatsby
+
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/create-gatsby@3.14.0/packages/create-gatsby) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json
index 237d87d17a9fe..6b253688e81b1 100644
--- a/packages/create-gatsby/package.json
+++ b/packages/create-gatsby/package.json
@@ -1,6 +1,6 @@
{
"name": "create-gatsby",
- "version": "3.15.0-next.0",
+ "version": "3.16.0-next.0",
"main": "lib/index.js",
"bin": "cli.js",
"license": "MIT",
@@ -27,7 +27,7 @@
"enquirer": "^2.3.6",
"execa": "^5.1.1",
"fs-extra": "^11.2.0",
- "gatsby-plugin-utils": "^4.15.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
"joi": "^17.9.2",
"microbundle": "^0.15.1",
"node-fetch": "^2.6.11",
diff --git a/packages/gatsby-adapter-netlify/CHANGELOG.md b/packages/gatsby-adapter-netlify/CHANGELOG.md
index 775f3aa9398a6..11ec64ec2406c 100644
--- a/packages/gatsby-adapter-netlify/CHANGELOG.md
+++ b/packages/gatsby-adapter-netlify/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.
+## [1.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-adapter-netlify@1.3.0/packages/gatsby-adapter-netlify) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- don't treat timestamps as dynamic paths [#39340](https://github.com/gatsbyjs/gatsby/issues/39340) ([485fd85](https://github.com/gatsbyjs/gatsby/commit/485fd858d2ed096ab2a39a744b46fa6cdf7dee41))
+
+### [1.2.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-adapter-netlify@1.2.1/packages/gatsby-adapter-netlify) (2025-08-05)
+
+#### Bug Fixes
+
+- don't treat timestamps as dynamic paths [#39340](https://github.com/gatsbyjs/gatsby/issues/39340) [#39341](https://github.com/gatsbyjs/gatsby/issues/39341) ([d00bf5e](https://github.com/gatsbyjs/gatsby/commit/d00bf5e47361a08cf9741f3c458c74c32b58f5f2))
+
## [1.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-adapter-netlify@1.2.0/packages/gatsby-adapter-netlify) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-adapter-netlify/package.json b/packages/gatsby-adapter-netlify/package.json
index 9cc00155ed579..6e98ef7227f1f 100644
--- a/packages/gatsby-adapter-netlify/package.json
+++ b/packages/gatsby-adapter-netlify/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-adapter-netlify",
- "version": "1.3.0-next.0",
+ "version": "1.4.0-next.0",
"description": "Gatsby adapter for Netlify",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -38,13 +38,13 @@
"cookie": "^0.6.0",
"fastq": "^1.15.0",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0"
+ "gatsby-core-utils": "^4.16.0-next.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@netlify/edge-functions": "^2.2.0",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"memfs": "^4.6.0",
"rimraf": "^5.0.5",
diff --git a/packages/gatsby-adapter-netlify/src/pretty-urls.ts b/packages/gatsby-adapter-netlify/src/pretty-urls.ts
index a4658d447df3f..ca560380d7458 100644
--- a/packages/gatsby-adapter-netlify/src/pretty-urls.ts
+++ b/packages/gatsby-adapter-netlify/src/pretty-urls.ts
@@ -55,7 +55,7 @@ export function createStaticAssetsPathHandler(): {
let isDynamic = false
// dynamic routes syntax use characters that are reserved in a lot of filesystems
// so if route is dynamic we should normalize filepath
- if (routePath.includes(`:`) || routePath.includes(`*`)) {
+ if (routePath.includes(`/:`) || routePath.includes(`/*`)) {
routePath = normalizeDynamicRoutePath(routePath)
isDynamic = true
}
diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md
index d8376d2c26cbf..fabf0173a9357 100644
--- a/packages/gatsby-cli/CHANGELOG.md
+++ b/packages/gatsby-cli/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.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cli@5.15.0/packages/gatsby-cli) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- support node 22 [#39349](https://github.com/gatsbyjs/gatsby/issues/39349) ([7451d2f](https://github.com/gatsbyjs/gatsby/commit/7451d2ff56c46b4d9ceebbb6e830fa83fcd29e5b))
+
+#### Chores
+
+- remove Gatsby Discord references [#39351](https://github.com/gatsbyjs/gatsby/issues/39351) ([c3708b0](https://github.com/gatsbyjs/gatsby/commit/c3708b068abba3a26e5cf229d6d4dc5813884acd))
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cli@5.14.0/packages/gatsby-cli) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json
index db4b67c73f7d6..690c7ceb6aa78 100644
--- a/packages/gatsby-cli/package.json
+++ b/packages/gatsby-cli/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-cli",
"description": "Gatsby command-line interface for creating new sites and running Gatsby commands",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bin": {
"gatsby": "cli.js"
@@ -26,12 +26,12 @@
"clipboardy": "^4.0.0",
"common-tags": "^1.8.2",
"convert-hrtime": "^3.0.0",
- "create-gatsby": "^3.15.0-next.0",
+ "create-gatsby": "^3.16.0-next.0",
"envinfo": "^7.10.0",
"execa": "^5.1.1",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
"hosted-git-info": "^3.0.8",
"is-valid-path": "^0.1.1",
"joi": "^17.9.2",
@@ -61,7 +61,7 @@
"@sigmacomputing/babel-plugin-lodash": "^3.3.5",
"@types/hosted-git-info": "^3.0.5",
"@types/yargs": "^15.0.19",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"ink": "^3.2.0",
"ink-spinner": "^4.0.3",
diff --git a/packages/gatsby-cli/src/handlers/plugin.ts b/packages/gatsby-cli/src/handlers/plugin.ts
index 52072f756ff80..ce15456289164 100644
--- a/packages/gatsby-cli/src/handlers/plugin.ts
+++ b/packages/gatsby-cli/src/handlers/plugin.ts
@@ -20,7 +20,6 @@ Creating a plugin:
- Creating a Transformer Plugin (https://www.gatsbyjs.com/docs/how-to/plugins-and-themes/creating-a-transformer-plugin/)
- Submit to Plugin Library (https://www.gatsbyjs.com/contributing/submit-to-plugin-library/)
- Maintaining a Plugin (https://www.gatsbyjs.com/docs/how-to/plugins-and-themes/maintaining-a-plugin/)
-- Join Discord #plugin-authoring channel to ask questions! (https://gatsby.dev/discord/)
`)
return
case `ls`: {
diff --git a/packages/gatsby-cli/src/reporter/__tests__/__snapshots__/index.ts.snap b/packages/gatsby-cli/src/reporter/__tests__/__snapshots__/index.ts.snap
index b31d264917169..00be6dc2e6a68 100644
--- a/packages/gatsby-cli/src/reporter/__tests__/__snapshots__/index.ts.snap
+++ b/packages/gatsby-cli/src/reporter/__tests__/__snapshots__/index.ts.snap
@@ -38,7 +38,7 @@ Object {
},
"docsUrl": "https://gatsby.dev/issue-how-to",
"level": "ERROR",
- "stack": Array [],
+ "stack": Any,
"text": "Error created in Jest",
"type": "UNKNOWN",
}
@@ -69,80 +69,7 @@ Object {
"error": [Error: Message from new Error],
"level": "ERROR",
"pluginName": "gatsby-plugin-foo-bar",
- "stack": Array [
- Object {
- "columnNumber": 7,
- "fileName": "/packages/gatsby-cli/src/reporter/__tests__/index.ts",
- "functionName": null,
- "lineNumber": 100,
- },
- Object {
- "columnNumber": 28,
- "fileName": "/node_modules/jest-circus/build/utils.js",
- "functionName": "Promise.then.completed",
- "lineNumber": 293,
- },
- Object {
- "columnNumber": 10,
- "fileName": "/node_modules/jest-circus/build/utils.js",
- "functionName": "callAsyncCircusFn",
- "lineNumber": 226,
- },
- Object {
- "columnNumber": 40,
- "fileName": "/node_modules/jest-circus/build/run.js",
- "functionName": "_callCircusTest",
- "lineNumber": 297,
- },
- Object {
- "columnNumber": 3,
- "fileName": "/node_modules/jest-circus/build/run.js",
- "functionName": "_runTest",
- "lineNumber": 233,
- },
- Object {
- "columnNumber": 9,
- "fileName": "/node_modules/jest-circus/build/run.js",
- "functionName": "_runTestsForDescribeBlock",
- "lineNumber": 135,
- },
- Object {
- "columnNumber": 9,
- "fileName": "/node_modules/jest-circus/build/run.js",
- "functionName": "_runTestsForDescribeBlock",
- "lineNumber": 130,
- },
- Object {
- "columnNumber": 3,
- "fileName": "/node_modules/jest-circus/build/run.js",
- "functionName": "run",
- "lineNumber": 68,
- },
- Object {
- "columnNumber": 21,
- "fileName": "/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapterInit.js",
- "functionName": "runAndTransformResultsToJestFormat",
- "lineNumber": 122,
- },
- Object {
- "columnNumber": 19,
- "fileName": "/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js",
- "functionName": "jestAdapter",
- "lineNumber": 79,
- },
- Object {
- "columnNumber": 16,
- "fileName": "/node_modules/jest-runner/build/runTest.js",
- "functionName": "runTestInternal",
- "lineNumber": 367,
- },
- Object {
- "columnNumber": 34,
- "fileName": "/node_modules/jest-runner/build/runTest.js",
- "functionName": "runTest",
- "lineNumber": 444,
- },
- ],
+ "stack": Any,
"text": "Error string passed to reporter Message from new Error",
"type": "UNKNOWN",
}
@@ -157,7 +84,7 @@ Object {
},
"docsUrl": "https://gatsby.dev/debug-html",
"level": "ERROR",
- "stack": Array [],
+ "stack": Any,
"text": "\\"navigator\\" is not available during server-side rendering. Enable \\"DEV_SSR\\" to debug this during \\"gatsby develop\\".",
"type": "HTML.COMPILATION",
}
@@ -171,7 +98,7 @@ Object {
},
"docsUrl": "https://www.gatsbyjs.com/docs/gatsby-cli/#new",
"level": "ERROR",
- "stack": Array [],
+ "stack": Any,
"text": "Error text is test123",
"type": "PLUGIN",
}
@@ -186,7 +113,7 @@ Object {
"docsUrl": "https://www.gatsbyjs.com/docs/gatsby-cli/#new",
"level": "ERROR",
"pluginName": "gatsby-plugin-foo-bar",
- "stack": Array [],
+ "stack": Any,
"text": "Error text is test123",
"type": "PLUGIN",
}
diff --git a/packages/gatsby-cli/src/reporter/__tests__/index.ts b/packages/gatsby-cli/src/reporter/__tests__/index.ts
index ea48500da41e7..91bce93482e22 100644
--- a/packages/gatsby-cli/src/reporter/__tests__/index.ts
+++ b/packages/gatsby-cli/src/reporter/__tests__/index.ts
@@ -83,7 +83,9 @@ describe(`report.error`, () => {
const generatedError = getErrorMessages(
reporterActions.createLog as jest.Mock
)[0]
- expect(generatedError).toMatchSnapshot()
+ expect(generatedError).toMatchSnapshot({
+ stack: expect.any(Array),
+ })
})
it(`handles "String" signature correctly`, () => {
@@ -91,7 +93,9 @@ describe(`report.error`, () => {
const generatedError = getErrorMessages(
reporterActions.createLog as jest.Mock
)[0]
- expect(generatedError).toMatchSnapshot()
+ expect(generatedError).toMatchSnapshot({
+ stack: expect.any(Array),
+ })
})
it(`handles "String, Error, pluginName" signature correctly`, () => {
@@ -103,7 +107,9 @@ describe(`report.error`, () => {
const generatedError = getErrorMessages(
reporterActions.createLog as jest.Mock
)[0]
- expect(generatedError).toMatchSnapshot()
+ expect(generatedError).toMatchSnapshot({
+ stack: expect.any(Array),
+ })
})
it(`sets an error map if setErrorMap is called`, () => {
@@ -136,7 +142,9 @@ describe(`report.error`, () => {
const generatedError = getErrorMessages(
reporterActions.createLog as jest.Mock
)[0]
- expect(generatedError).toMatchSnapshot()
+ expect(generatedError).toMatchSnapshot({
+ stack: expect.any(Array),
+ })
})
// This is how it's potentially called from api-runner-node.js
@@ -163,6 +171,8 @@ describe(`report.error`, () => {
const generatedError = getErrorMessages(
reporterActions.createLog as jest.Mock
)[0]
- expect(generatedError).toMatchSnapshot()
+ expect(generatedError).toMatchSnapshot({
+ stack: expect.any(Array),
+ })
})
})
diff --git a/packages/gatsby-codemods/CHANGELOG.md b/packages/gatsby-codemods/CHANGELOG.md
index 54cff720ba167..258c262b82615 100644
--- a/packages/gatsby-codemods/CHANGELOG.md
+++ b/packages/gatsby-codemods/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-codemods@4.15.0/packages/gatsby-codemods) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-codemods
+
## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-codemods@4.14.0/packages/gatsby-codemods) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json
index 70a4885e667b0..0f81dad2ca9b4 100644
--- a/packages/gatsby-codemods/package.json
+++ b/packages/gatsby-codemods/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-codemods",
- "version": "4.15.0-next.0",
+ "version": "4.16.0-next.0",
"description": "A collection of codemod scripts for use with JSCodeshift that help migrate to newer versions of Gatsby.",
"main": "index.js",
"scripts": {
@@ -37,7 +37,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@types/jscodeshift": "^0.11.11",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"engines": {
diff --git a/packages/gatsby-core-utils/CHANGELOG.md b/packages/gatsby-core-utils/CHANGELOG.md
index 48313930052f6..89c7f72b97b05 100644
--- a/packages/gatsby-core-utils/CHANGELOG.md
+++ b/packages/gatsby-core-utils/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-core-utils@4.15.0/packages/gatsby-core-utils) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-core-utils
+
## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-core-utils@4.14.0/packages/gatsby-core-utils) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json
index 48e7555ab2726..a3c65d263731d 100644
--- a/packages/gatsby-core-utils/package.json
+++ b/packages/gatsby-core-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-core-utils",
- "version": "4.15.0-next.0",
+ "version": "4.16.0-next.0",
"description": "A collection of gatsby utils used in different gatsby packages",
"keywords": [
"gatsby",
@@ -82,7 +82,7 @@
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@types/ci-info": "2.0.0",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"is-uuid": "^1.0.2",
diff --git a/packages/gatsby-cypress/CHANGELOG.md b/packages/gatsby-cypress/CHANGELOG.md
index 7e68001fccf64..e2024d442a98d 100644
--- a/packages/gatsby-cypress/CHANGELOG.md
+++ b/packages/gatsby-cypress/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cypress@3.15.0/packages/gatsby-cypress) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-cypress
+
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cypress@3.14.0/packages/gatsby-cypress) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json
index a4bf837cde406..c48e70535cd5e 100644
--- a/packages/gatsby-cypress/package.json
+++ b/packages/gatsby-cypress/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-cypress",
- "version": "3.15.0-next.0",
+ "version": "3.16.0-next.0",
"description": "Cypress tools for Gatsby projects",
"main": "index.js",
"types": "index.d.ts",
@@ -21,7 +21,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-design-tokens/CHANGELOG.md b/packages/gatsby-design-tokens/CHANGELOG.md
index b9cf4d09a6504..09e3c33681fe2 100644
--- a/packages/gatsby-design-tokens/CHANGELOG.md
+++ b/packages/gatsby-design-tokens/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-design-tokens@5.15.0/packages/gatsby-design-tokens) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-design-tokens
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-design-tokens@5.14.0/packages/gatsby-design-tokens) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-design-tokens/package.json b/packages/gatsby-design-tokens/package.json
index b3990e837b8f3..f38afb7d3dbb4 100644
--- a/packages/gatsby-design-tokens/package.json
+++ b/packages/gatsby-design-tokens/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-design-tokens",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"description": "Gatsby Design Tokens",
"main": "dist/index.js",
"module": "dist/index.esm.js",
diff --git a/packages/gatsby-dev-cli/CHANGELOG.md b/packages/gatsby-dev-cli/CHANGELOG.md
index 59d1609c4ed44..96fd7fb40383e 100644
--- a/packages/gatsby-dev-cli/CHANGELOG.md
+++ b/packages/gatsby-dev-cli/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.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-dev-cli@5.15.0/packages/gatsby-dev-cli) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8))
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-dev-cli@5.14.0/packages/gatsby-dev-cli) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json
index 2da2ccf3d406d..3c0914e430e96 100644
--- a/packages/gatsby-dev-cli/package.json
+++ b/packages/gatsby-dev-cli/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-dev-cli",
"description": "CLI helpers for contributors working on Gatsby",
- "version": "5.15.0-next.1",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bin": {
"gatsby-dev": "./dist/index.js"
@@ -27,7 +27,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-dev-cli#readme",
diff --git a/packages/gatsby-graphiql-explorer/CHANGELOG.md b/packages/gatsby-graphiql-explorer/CHANGELOG.md
index 63db93fdd8c70..6ccf55a86fd61 100644
--- a/packages/gatsby-graphiql-explorer/CHANGELOG.md
+++ b/packages/gatsby-graphiql-explorer/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.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-graphiql-explorer@3.15.0/packages/gatsby-graphiql-explorer) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- pin webpack [#39264](https://github.com/gatsbyjs/gatsby/issues/39264) ([dae8081](https://github.com/gatsbyjs/gatsby/commit/dae80818db95d2923ce40fc4292d6d91fbe1d75a))
+
### [3.14.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-graphiql-explorer@3.14.1/packages/gatsby-graphiql-explorer) (2025-04-07)
#### Bug Fixes
diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json
index 3f6d9c83e9d51..0ab45447d8ef7 100644
--- a/packages/gatsby-graphiql-explorer/package.json
+++ b/packages/gatsby-graphiql-explorer/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-graphiql-explorer",
- "version": "3.15.0-next.1",
+ "version": "3.16.0-next.0",
"description": "GraphiQL IDE with custom features for Gatsby users",
"main": "index.js",
"scripts": {
@@ -43,7 +43,7 @@
"@graphiql/react": "^0.18.0",
"@graphiql/toolkit": "^0.8.4",
"babel-loader": "^9.1.2",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"core-js": "^3.31.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
diff --git a/packages/gatsby-legacy-polyfills/CHANGELOG.md b/packages/gatsby-legacy-polyfills/CHANGELOG.md
index 4fff7ed0b6a14..47170a1b217ad 100644
--- a/packages/gatsby-legacy-polyfills/CHANGELOG.md
+++ b/packages/gatsby-legacy-polyfills/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-legacy-polyfills@3.15.0/packages/gatsby-legacy-polyfills) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-legacy-polyfills
+
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-legacy-polyfills@3.14.0/packages/gatsby-legacy-polyfills) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-legacy-polyfills/package.json b/packages/gatsby-legacy-polyfills/package.json
index 234a273d49d9b..00b27b3132c19 100644
--- a/packages/gatsby-legacy-polyfills/package.json
+++ b/packages/gatsby-legacy-polyfills/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-legacy-polyfills",
"description": "Polyfills for legacy browsers",
- "version": "3.15.0-next.0",
+ "version": "3.16.0-next.0",
"main": "dist/polyfills.js",
"author": "Ward Peeters ",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-legacy-polyfills#readme",
diff --git a/packages/gatsby-link/CHANGELOG.md b/packages/gatsby-link/CHANGELOG.md
index 3e80de873cf95..7b3856f8bd68c 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.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@5.15.0/packages/gatsby-link) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- fix navigate method type ([cddc252](https://github.com/gatsbyjs/gatsby/commit/cddc252bf4cac57486ed5f5b544d50e4a92ce769))
+
### [5.14.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@5.14.1/packages/gatsby-link) (2024-12-20)
#### Bug Fixes
diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json
index 2560a8586a4ed..b934f9861a9ff 100644
--- a/packages/gatsby-link/package.json
+++ b/packages/gatsby-link/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-link",
"description": "An enhanced Link component for Gatsby sites with support for resource prefetching",
- "version": "5.15.0-next.1",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -23,7 +23,7 @@
},
"dependencies": {
"@types/reach__router": "^1.3.10",
- "gatsby-page-utils": "^3.15.0-next.1",
+ "gatsby-page-utils": "^3.16.0-next.0",
"prop-types": "^15.8.1"
},
"devDependencies": {
diff --git a/packages/gatsby-page-utils/CHANGELOG.md b/packages/gatsby-page-utils/CHANGELOG.md
index 62561d810e05b..b5aba73f2c23b 100644
--- a/packages/gatsby-page-utils/CHANGELOG.md
+++ b/packages/gatsby-page-utils/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.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-page-utils@3.15.0/packages/gatsby-page-utils) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8))
+
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-page-utils@3.14.0/packages/gatsby-page-utils) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json
index f2f545110bb77..3c76ad41fee47 100644
--- a/packages/gatsby-page-utils/package.json
+++ b/packages/gatsby-page-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-page-utils",
- "version": "3.15.0-next.1",
+ "version": "3.16.0-next.0",
"description": "Gatsby library that helps creating pages",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -30,7 +30,7 @@
"bluebird": "^3.7.2",
"chokidar": "^3.6.0",
"fs-exists-cached": "^1.0.0",
- "gatsby-core-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
"glob": "^7.2.3",
"lodash": "^4.17.21",
"micromatch": "^4.0.5"
@@ -39,7 +39,7 @@
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@types/micromatch": "^4.0.6",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"rimraf": "^5.0.5",
"typescript": "^5.1.6"
diff --git a/packages/gatsby-parcel-config/CHANGELOG.md b/packages/gatsby-parcel-config/CHANGELOG.md
index bab3b985c03e6..5b6803a25b84c 100644
--- a/packages/gatsby-parcel-config/CHANGELOG.md
+++ b/packages/gatsby-parcel-config/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-parcel-config@1.15.0/packages/gatsby-parcel-config) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-parcel-config
+
## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-parcel-config@1.14.0/packages/gatsby-parcel-config) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-parcel-config/package.json b/packages/gatsby-parcel-config/package.json
index 4325e86c73d98..598d62fa9f53b 100644
--- a/packages/gatsby-parcel-config/package.json
+++ b/packages/gatsby-parcel-config/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-parcel-config",
"main": "lib/index.json",
- "version": "1.15.0-next.0",
+ "version": "1.16.0-next.0",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-config#readme",
"description": "A minimal Parcel config for use in Gatsby",
"repository": {
@@ -14,7 +14,7 @@
"parcel": "2.x"
},
"dependencies": {
- "@gatsbyjs/parcel-namer-relative-to-cwd": "2.15.0-next.0",
+ "@gatsbyjs/parcel-namer-relative-to-cwd": "2.16.0-next.0",
"@parcel/bundler-default": "2.8.3",
"@parcel/compressor-raw": "2.8.3",
"@parcel/namer-default": "2.8.3",
diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md b/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md
index 692a2ee8f66a9..8df17306a6f80 100644
--- a/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md
+++ b/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.15.0](https://github.com/gatsbyjs/gatsby/commits/@gatsbyjs/parcel-namer-relative-to-cwd@2.15.0/packages/@gatsbyjs/parcel-namer-relative-to-cwd) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package @gatsbyjs/parcel-namer-relative-to-cwd
+
## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/@gatsbyjs/parcel-namer-relative-to-cwd@2.14.0/packages/@gatsbyjs/parcel-namer-relative-to-cwd) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/package.json b/packages/gatsby-parcel-namer-relative-to-cwd/package.json
index d23ea39c06145..3ce4bd559aa2e 100644
--- a/packages/gatsby-parcel-namer-relative-to-cwd/package.json
+++ b/packages/gatsby-parcel-namer-relative-to-cwd/package.json
@@ -1,7 +1,7 @@
{
"name": "@gatsbyjs/parcel-namer-relative-to-cwd",
"main": "lib/index.js",
- "version": "2.15.0-next.0",
+ "version": "2.16.0-next.0",
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-namer-relative-to-cwd#readme",
"description": "Parcel namer that preserves directory structures to stabilize output and keep the hierarchy.",
"author": "Michal Piechowiak ",
@@ -19,12 +19,12 @@
"@babel/runtime": "^7.20.13",
"@parcel/namer-default": "2.8.3",
"@parcel/plugin": "2.8.3",
- "gatsby-core-utils": "^4.15.0-next.0"
+ "gatsby-core-utils": "^4.16.0-next.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"scripts": {
diff --git a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md
index 61ed8158ab749..1a1048f64489e 100644
--- a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md
+++ b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-benchmark-reporting@3.15.0/packages/gatsby-plugin-benchmark-reporting) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-benchmark-reporting
+
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-benchmark-reporting@3.14.0/packages/gatsby-plugin-benchmark-reporting) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-benchmark-reporting/package.json b/packages/gatsby-plugin-benchmark-reporting/package.json
index a4dc97ba7dbf8..9cec9417b9f42 100644
--- a/packages/gatsby-plugin-benchmark-reporting/package.json
+++ b/packages/gatsby-plugin-benchmark-reporting/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-benchmark-reporting",
"description": "Gatsby Benchmark Reporting",
- "version": "3.15.0-next.0",
+ "version": "3.16.0-next.0",
"author": "Peter van der Zee ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,12 +16,12 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0"
+ "babel-preset-gatsby-package": "^3.16.0-next.0"
},
"dependencies": {
"@babel/runtime": "^7.20.13",
"fast-glob": "^3.2.12",
- "gatsby-core-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
"node-fetch": "^2.6.11"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md
index d277486f403e9..843aa1fa881d5 100644
--- a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md
+++ b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-canonical-urls@5.15.0/packages/gatsby-plugin-canonical-urls) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-canonical-urls
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-canonical-urls@5.14.0/packages/gatsby-plugin-canonical-urls) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json
index 8caebf4f47cc7..a7b461adb60f7 100644
--- a/packages/gatsby-plugin-canonical-urls/package.json
+++ b/packages/gatsby-plugin-canonical-urls/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-canonical-urls",
"description": "Add canonical links to HTML pages Gatsby generates.",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-canonical-urls#readme",
diff --git a/packages/gatsby-plugin-catch-links/CHANGELOG.md b/packages/gatsby-plugin-catch-links/CHANGELOG.md
index 125488d3e3f78..182c0c05455e3 100644
--- a/packages/gatsby-plugin-catch-links/CHANGELOG.md
+++ b/packages/gatsby-plugin-catch-links/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-catch-links@5.15.0/packages/gatsby-plugin-catch-links) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-catch-links
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-catch-links@5.14.0/packages/gatsby-plugin-catch-links) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json
index 2ad2d78984231..ceddf39e62017 100644
--- a/packages/gatsby-plugin-catch-links/package.json
+++ b/packages/gatsby-plugin-catch-links/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-catch-links",
"description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links#readme",
diff --git a/packages/gatsby-plugin-coffeescript/CHANGELOG.md b/packages/gatsby-plugin-coffeescript/CHANGELOG.md
index 45c808c8dda5d..00c47e99e8128 100644
--- a/packages/gatsby-plugin-coffeescript/CHANGELOG.md
+++ b/packages/gatsby-plugin-coffeescript/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-coffeescript@5.15.0/packages/gatsby-plugin-coffeescript) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-coffeescript
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-coffeescript@5.14.0/packages/gatsby-plugin-coffeescript) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json
index efff814e88a9b..ecb8c03553476 100644
--- a/packages/gatsby-plugin-coffeescript/package.json
+++ b/packages/gatsby-plugin-coffeescript/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-coffeescript",
"description": "Adds CoffeeScript support for Gatsby",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -18,7 +18,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-coffeescript#readme",
diff --git a/packages/gatsby-plugin-cxs/CHANGELOG.md b/packages/gatsby-plugin-cxs/CHANGELOG.md
index fc429d67cdcb7..7e6a1e43f1a4a 100644
--- a/packages/gatsby-plugin-cxs/CHANGELOG.md
+++ b/packages/gatsby-plugin-cxs/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-cxs@5.15.0/packages/gatsby-plugin-cxs) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-cxs
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-cxs@5.14.0/packages/gatsby-plugin-cxs) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json
index b126a226c958d..3d73222b7483b 100644
--- a/packages/gatsby-plugin-cxs/package.json
+++ b/packages/gatsby-plugin-cxs/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-cxs",
"description": "Gatsby plugin to add SSR support for ctx",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Chen-Tai Hou ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,10 +12,10 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"cxs": "^6.2.0",
- "gatsby-plugin-utils": "^4.15.0-next.0"
+ "gatsby-plugin-utils": "^4.16.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-emotion/CHANGELOG.md b/packages/gatsby-plugin-emotion/CHANGELOG.md
index 2272b12b2f654..c3a5e8b919d77 100644
--- a/packages/gatsby-plugin-emotion/CHANGELOG.md
+++ b/packages/gatsby-plugin-emotion/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [8.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-emotion@8.15.0/packages/gatsby-plugin-emotion) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-emotion
+
## [8.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-emotion@8.14.0/packages/gatsby-plugin-emotion) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json
index 5f50e101229cc..9e922a8ada8c6 100644
--- a/packages/gatsby-plugin-emotion/package.json
+++ b/packages/gatsby-plugin-emotion/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-emotion",
"description": "Gatsby plugin to add support for Emotion",
- "version": "8.15.0-next.0",
+ "version": "8.16.0-next.0",
"author": "Tegan Churchill ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md
index b3997446f93d1..f551e065885a2 100644
--- a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md
+++ b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-facebook-analytics@5.15.0/packages/gatsby-plugin-facebook-analytics) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-facebook-analytics
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-facebook-analytics@5.14.0/packages/gatsby-plugin-facebook-analytics) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json
index 6a6d5004dd396..d34c0ad5ec341 100644
--- a/packages/gatsby-plugin-facebook-analytics/package.json
+++ b/packages/gatsby-plugin-facebook-analytics/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-facebook-analytics",
"description": "Gatsby plugin to add facebook analytics onto a site",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Yeison Daza ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics#readme",
diff --git a/packages/gatsby-plugin-feed/CHANGELOG.md b/packages/gatsby-plugin-feed/CHANGELOG.md
index 52ef5b7519ab0..e99400948d52d 100644
--- a/packages/gatsby-plugin-feed/CHANGELOG.md
+++ b/packages/gatsby-plugin-feed/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-feed@5.15.0/packages/gatsby-plugin-feed) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-feed
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-feed@5.14.0/packages/gatsby-plugin-feed) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json
index 642149502b8ab..b86077852337d 100644
--- a/packages/gatsby-plugin-feed/package.json
+++ b/packages/gatsby-plugin-feed/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-feed",
"description": "Creates an RSS feed for your Gatsby site.",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Nicholas Young ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -10,14 +10,14 @@
"@babel/runtime": "^7.20.13",
"common-tags": "^1.8.2",
"fs-extra": "^11.2.0",
- "gatsby-plugin-utils": "^4.15.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
"lodash.merge": "^4.6.2",
"rss": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-feed#readme",
diff --git a/packages/gatsby-plugin-flow/CHANGELOG.md b/packages/gatsby-plugin-flow/CHANGELOG.md
index 51248c0f1a4a0..edcd7df84c8d2 100644
--- a/packages/gatsby-plugin-flow/CHANGELOG.md
+++ b/packages/gatsby-plugin-flow/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-flow@4.15.0/packages/gatsby-plugin-flow) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-flow
+
## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-flow@4.14.0/packages/gatsby-plugin-flow) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json
index b06d368fc053b..cc69dbf8d3ea6 100644
--- a/packages/gatsby-plugin-flow/package.json
+++ b/packages/gatsby-plugin-flow/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-flow",
- "version": "4.15.0-next.0",
+ "version": "4.16.0-next.0",
"description": "Provides drop-in support for Flow by adding @babel/preset-flow.",
"main": "index.js",
"scripts": {
@@ -30,9 +30,9 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^4.15.0-next.0"
+ "gatsby-plugin-utils": "^4.16.0-next.0"
},
"peerDependencies": {
"gatsby": "^5.0.0-next"
diff --git a/packages/gatsby-plugin-fullstory/CHANGELOG.md b/packages/gatsby-plugin-fullstory/CHANGELOG.md
index 0697807d9b2d5..f10c44aa10d0d 100644
--- a/packages/gatsby-plugin-fullstory/CHANGELOG.md
+++ b/packages/gatsby-plugin-fullstory/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-fullstory@5.15.0/packages/gatsby-plugin-fullstory) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-fullstory
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-fullstory@5.14.0/packages/gatsby-plugin-fullstory) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-fullstory/package.json b/packages/gatsby-plugin-fullstory/package.json
index 992b33fcf1860..2846431017bf6 100644
--- a/packages/gatsby-plugin-fullstory/package.json
+++ b/packages/gatsby-plugin-fullstory/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-fullstory",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"description": "Plugin to add the tracking code for Fullstory.com",
"main": "index.js",
"scripts": {
@@ -29,7 +29,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-google-analytics/CHANGELOG.md b/packages/gatsby-plugin-google-analytics/CHANGELOG.md
index 15368281131b7..6b16bbe2e67f2 100644
--- a/packages/gatsby-plugin-google-analytics/CHANGELOG.md
+++ b/packages/gatsby-plugin-google-analytics/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-analytics@5.15.0/packages/gatsby-plugin-google-analytics) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-google-analytics
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-analytics@5.14.0/packages/gatsby-plugin-google-analytics) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json
index ae66c748f6f31..620c74a3bc323 100644
--- a/packages/gatsby-plugin-google-analytics/package.json
+++ b/packages/gatsby-plugin-google-analytics/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-google-analytics",
"description": "Gatsby plugin to add google analytics onto a site",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@testing-library/react": "^11.2.7",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-analytics#readme",
diff --git a/packages/gatsby-plugin-google-gtag/CHANGELOG.md b/packages/gatsby-plugin-google-gtag/CHANGELOG.md
index 0e95ce6c1ffc0..0c77503dd68e4 100644
--- a/packages/gatsby-plugin-google-gtag/CHANGELOG.md
+++ b/packages/gatsby-plugin-google-gtag/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-gtag@5.15.0/packages/gatsby-plugin-google-gtag) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-google-gtag
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-gtag@5.14.0/packages/gatsby-plugin-google-gtag) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json
index 53c46632006ff..4c92884591543 100644
--- a/packages/gatsby-plugin-google-gtag/package.json
+++ b/packages/gatsby-plugin-google-gtag/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-google-gtag",
"description": "Gatsby plugin to add google gtag onto a site",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Tyler Buchea ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,9 +13,9 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^4.15.0-next.0"
+ "gatsby-plugin-utils": "^4.16.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-gtag#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md
index 2f76eb106ddbb..ab0060eb87525 100644
--- a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md
+++ b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-tagmanager@5.15.0/packages/gatsby-plugin-google-tagmanager) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-google-tagmanager
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-tagmanager@5.14.0/packages/gatsby-plugin-google-tagmanager) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json
index 5189e115448a8..e030603478644 100644
--- a/packages/gatsby-plugin-google-tagmanager/package.json
+++ b/packages/gatsby-plugin-google-tagmanager/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-google-tagmanager",
"description": "Gatsby plugin to add google tagmanager onto a site",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Thijs Koerselman ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,9 +13,9 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^4.15.0-next.0"
+ "gatsby-plugin-utils": "^4.16.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-image/CHANGELOG.md b/packages/gatsby-plugin-image/CHANGELOG.md
index 2e6378f21018d..da20a9b0cbf7c 100644
--- a/packages/gatsby-plugin-image/CHANGELOG.md
+++ b/packages/gatsby-plugin-image/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.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@3.15.0/packages/gatsby-plugin-image) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8))
+
## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@3.14.0/packages/gatsby-plugin-image) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json
index 067ee8b98cf1a..d8f93ae0e3644 100644
--- a/packages/gatsby-plugin-image/package.json
+++ b/packages/gatsby-plugin-image/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-image",
- "version": "3.15.0-next.1",
+ "version": "3.16.0-next.0",
"scripts": {
"build": "npm-run-all --npm-path npm -s clean -p build:*",
"postbuild": "prepend-directive --files=dist/gatsby-image.browser.js,dist/gatsby-image.browser.modern.js --directive=\"use client\"",
@@ -87,13 +87,13 @@
"@babel/runtime": "^7.20.13",
"@babel/traverse": "^7.20.13",
"babel-jsx-utils": "^1.1.0",
- "babel-plugin-remove-graphql-queries": "^5.15.0-next.0",
+ "babel-plugin-remove-graphql-queries": "^5.16.0-next.0",
"camelcase": "^6.3.0",
"chokidar": "^3.6.0",
"common-tags": "^1.8.2",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0",
- "gatsby-plugin-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
"objectFitPolyfill": "^2.3.5",
"prop-types": "^15.8.1"
},
diff --git a/packages/gatsby-plugin-jss/CHANGELOG.md b/packages/gatsby-plugin-jss/CHANGELOG.md
index 9b6d5e28d7a49..2ede0ed8e9a71 100644
--- a/packages/gatsby-plugin-jss/CHANGELOG.md
+++ b/packages/gatsby-plugin-jss/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-jss@5.15.0/packages/gatsby-plugin-jss) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-jss
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-jss@5.14.0/packages/gatsby-plugin-jss) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json
index 218c9b7550c49..5bfacd4758f71 100644
--- a/packages/gatsby-plugin-jss/package.json
+++ b/packages/gatsby-plugin-jss/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-jss",
"description": "Gatsby plugin that adds SSR support for JSS",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Vladimir Guguiev ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-jss#readme",
diff --git a/packages/gatsby-plugin-layout/CHANGELOG.md b/packages/gatsby-plugin-layout/CHANGELOG.md
index 5bf1fd0858127..4d0c1b2b2567c 100644
--- a/packages/gatsby-plugin-layout/CHANGELOG.md
+++ b/packages/gatsby-plugin-layout/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-layout@4.15.0/packages/gatsby-plugin-layout) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-layout
+
## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-layout@4.14.0/packages/gatsby-plugin-layout) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-layout/package.json b/packages/gatsby-plugin-layout/package.json
index 06ded0f224f1d..262b13a51ec9c 100644
--- a/packages/gatsby-plugin-layout/package.json
+++ b/packages/gatsby-plugin-layout/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-layout",
- "version": "4.15.0-next.0",
+ "version": "4.16.0-next.0",
"description": "Reimplements the behavior of layout components in gatsby@1, which was removed in version 2.",
"main": "index.js",
"scripts": {
@@ -29,7 +29,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-less/CHANGELOG.md b/packages/gatsby-plugin-less/CHANGELOG.md
index 9604f079f99fd..421d1c45d9f35 100644
--- a/packages/gatsby-plugin-less/CHANGELOG.md
+++ b/packages/gatsby-plugin-less/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-less@7.15.0/packages/gatsby-plugin-less) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-less
+
## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-less@7.14.0/packages/gatsby-plugin-less) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json
index 964b7e2e6e9d7..dda125a735a99 100644
--- a/packages/gatsby-plugin-less/package.json
+++ b/packages/gatsby-plugin-less/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-less",
"description": "Gatsby plugin to add support for using Less",
- "version": "7.15.0-next.0",
+ "version": "7.16.0-next.0",
"author": "monastic.panic@gmail.com",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-less#readme",
diff --git a/packages/gatsby-plugin-lodash/CHANGELOG.md b/packages/gatsby-plugin-lodash/CHANGELOG.md
index a6340054ea7a5..d4424812cab1a 100644
--- a/packages/gatsby-plugin-lodash/CHANGELOG.md
+++ b/packages/gatsby-plugin-lodash/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-lodash@6.15.0/packages/gatsby-plugin-lodash) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-lodash
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-lodash@6.14.0/packages/gatsby-plugin-lodash) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json
index 5ca5c47aeb588..0d706bca011f0 100644
--- a/packages/gatsby-plugin-lodash/package.json
+++ b/packages/gatsby-plugin-lodash/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-lodash",
"description": "Easy modular Lodash builds. Adds the Lodash webpack & Babel plugins to your Gatsby build",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-lodash#readme",
diff --git a/packages/gatsby-plugin-manifest/CHANGELOG.md b/packages/gatsby-plugin-manifest/CHANGELOG.md
index 39a510cfb20f7..dc305faa5c1b1 100644
--- a/packages/gatsby-plugin-manifest/CHANGELOG.md
+++ b/packages/gatsby-plugin-manifest/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-manifest@5.15.0/packages/gatsby-plugin-manifest) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-manifest
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-manifest@5.14.0/packages/gatsby-plugin-manifest) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json
index 9ab0252bb5e71..c3469312e93e0 100644
--- a/packages/gatsby-plugin-manifest/package.json
+++ b/packages/gatsby-plugin-manifest/package.json
@@ -1,22 +1,22 @@
{
"name": "gatsby-plugin-manifest",
"description": "Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@babel/runtime": "^7.20.13",
- "gatsby-core-utils": "^4.15.0-next.0",
- "gatsby-plugin-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
"semver": "^7.5.3",
"sharp": "^0.32.6"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-manifest#readme",
diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md
index 3d2146283e4db..73858008cd351 100644
--- a/packages/gatsby-plugin-mdx/CHANGELOG.md
+++ b/packages/gatsby-plugin-mdx/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.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-mdx@5.15.0/packages/gatsby-plugin-mdx) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- pin webpack [#39264](https://github.com/gatsbyjs/gatsby/issues/39264) ([dae8081](https://github.com/gatsbyjs/gatsby/commit/dae80818db95d2923ce40fc4292d6d91fbe1d75a))
+
### [5.14.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-mdx@5.14.1/packages/gatsby-plugin-mdx) (2025-04-07)
#### Bug Fixes
diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json
index 482367b4529f3..091d5b85190e7 100644
--- a/packages/gatsby-plugin-mdx/package.json
+++ b/packages/gatsby-plugin-mdx/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-mdx",
- "version": "5.15.0-next.1",
+ "version": "5.16.0-next.0",
"description": "MDX integration for Gatsby",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -34,8 +34,8 @@
"deepmerge": "^4.3.1",
"estree-util-build-jsx": "^2.2.2",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0",
- "gatsby-plugin-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
"gray-matter": "^4.0.3",
"mdast-util-mdx": "^2.0.1",
"mdast-util-to-hast": "^10.2.0",
@@ -53,7 +53,7 @@
"@types/estree": "^1.0.1",
"@types/mdast": "^3.0.11",
"@types/unist": "^2.0.6",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"opentracing": "^0.14.7",
diff --git a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md
index 4b986075b4560..8203e4d4534e8 100644
--- a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md
+++ b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-no-sourcemaps@5.15.0/packages/gatsby-plugin-no-sourcemaps) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-no-sourcemaps
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-no-sourcemaps@5.14.0/packages/gatsby-plugin-no-sourcemaps) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-no-sourcemaps/package.json b/packages/gatsby-plugin-no-sourcemaps/package.json
index 53c8ad636ee67..a8b16ca552fd9 100644
--- a/packages/gatsby-plugin-no-sourcemaps/package.json
+++ b/packages/gatsby-plugin-no-sourcemaps/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-no-sourcemaps",
"description": "Disable sourcemaps when building JavaScript",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Stuart Taylor ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-plugin-nprogress/CHANGELOG.md b/packages/gatsby-plugin-nprogress/CHANGELOG.md
index 90138bb58291f..aacc08bd0b7de 100644
--- a/packages/gatsby-plugin-nprogress/CHANGELOG.md
+++ b/packages/gatsby-plugin-nprogress/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-nprogress@5.15.0/packages/gatsby-plugin-nprogress) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-nprogress
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-nprogress@5.14.0/packages/gatsby-plugin-nprogress) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json
index 6455cb5cb7103..823e7e748d76a 100644
--- a/packages/gatsby-plugin-nprogress/package.json
+++ b/packages/gatsby-plugin-nprogress/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-nprogress",
"description": "Shows page loading indicator when loading page resources is delayed",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-nprogress#readme",
diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md
index 9da76b0e170f0..6126b2439ccd1 100644
--- a/packages/gatsby-plugin-offline/CHANGELOG.md
+++ b/packages/gatsby-plugin-offline/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-offline@6.15.0/packages/gatsby-plugin-offline) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-offline
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-offline@6.14.0/packages/gatsby-plugin-offline) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json
index b306bae63b384..dde5996bb74df 100644
--- a/packages/gatsby-plugin-offline/package.json
+++ b/packages/gatsby-plugin-offline/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-offline",
"description": "Gatsby plugin which sets up a site to be able to run offline",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -9,7 +9,7 @@
"dependencies": {
"@babel/runtime": "^7.20.13",
"cheerio": "1.0.0-rc.12",
- "gatsby-core-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
"glob": "^7.2.3",
"idb-keyval": "^3.2.0",
"lodash": "^4.17.21",
@@ -18,10 +18,10 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cpy-cli": "^4.2.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^4.15.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
"rewire": "^6.0.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme",
diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md
index 5b1b8ac8080c0..b8e44bdaad853 100644
--- a/packages/gatsby-plugin-page-creator/CHANGELOG.md
+++ b/packages/gatsby-plugin-page-creator/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.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-page-creator@5.15.0/packages/gatsby-plugin-page-creator) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8))
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-page-creator@5.14.0/packages/gatsby-plugin-page-creator) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json
index 546cf5031b4f4..0e84f50e0ef3a 100644
--- a/packages/gatsby-plugin-page-creator/package.json
+++ b/packages/gatsby-plugin-page-creator/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-page-creator",
- "version": "5.15.0-next.1",
+ "version": "5.16.0-next.0",
"description": "Gatsby plugin that automatically creates pages from React components in specified directories",
"main": "index.js",
"scripts": {
@@ -30,16 +30,16 @@
"chokidar": "^3.6.0",
"fs-exists-cached": "^1.0.0",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0",
- "gatsby-page-utils": "^3.15.0-next.1",
- "gatsby-plugin-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
+ "gatsby-page-utils": "^3.16.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
"globby": "^11.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-postcss/CHANGELOG.md b/packages/gatsby-plugin-postcss/CHANGELOG.md
index d34aa1e1443c3..5b67642e44077 100644
--- a/packages/gatsby-plugin-postcss/CHANGELOG.md
+++ b/packages/gatsby-plugin-postcss/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-postcss@6.15.0/packages/gatsby-plugin-postcss) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-postcss
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-postcss@6.14.0/packages/gatsby-plugin-postcss) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json
index c1ab8678ea9ad..1acfa23f33f44 100644
--- a/packages/gatsby-plugin-postcss/package.json
+++ b/packages/gatsby-plugin-postcss/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-postcss",
"description": "Gatsby plugin to handle PostCSS",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Marat Dreizin ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-postcss#readme",
diff --git a/packages/gatsby-plugin-preact/CHANGELOG.md b/packages/gatsby-plugin-preact/CHANGELOG.md
index 7ed6b884e0afc..106d1290b9cc7 100644
--- a/packages/gatsby-plugin-preact/CHANGELOG.md
+++ b/packages/gatsby-plugin-preact/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preact@7.15.0/packages/gatsby-plugin-preact) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-preact
+
## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preact@7.14.0/packages/gatsby-plugin-preact) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json
index 6760dca779f64..7ece4d802ce61 100644
--- a/packages/gatsby-plugin-preact/package.json
+++ b/packages/gatsby-plugin-preact/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-preact",
"description": "A Gatsby plugin which replaces React with Preact",
- "version": "7.15.0-next.0",
+ "version": "7.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"preact": "^10.15.1"
},
diff --git a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
index 532a1d816b973..9608709cc5d99 100644
--- a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
+++ b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preload-fonts@4.15.0/packages/gatsby-plugin-preload-fonts) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-preload-fonts
+
## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preload-fonts@4.14.0/packages/gatsby-plugin-preload-fonts) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json
index 1da3e1a33e5fc..37dfb8ccff8c9 100644
--- a/packages/gatsby-plugin-preload-fonts/package.json
+++ b/packages/gatsby-plugin-preload-fonts/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-preload-fonts",
"description": "Gatsby plugin for preloading fonts per page",
- "version": "4.15.0-next.0",
+ "version": "4.16.0-next.0",
"author": "Aaron Ross ",
"main": "index.js",
"bin": {
@@ -15,7 +15,7 @@
"chalk": "^4.1.2",
"date-fns": "^2.30.0",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
"graphql-request": "^1.8.2",
"progress": "^2.0.3",
"puppeteer": "^3.3.0"
@@ -23,7 +23,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0"
},
diff --git a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md
index 73074d4cba53d..60fc7d3153139 100644
--- a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md
+++ b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-css-modules@5.15.0/packages/gatsby-plugin-react-css-modules) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-react-css-modules
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-css-modules@5.14.0/packages/gatsby-plugin-react-css-modules) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json
index 805fe2703daba..aa96c7f6c0227 100644
--- a/packages/gatsby-plugin-react-css-modules/package.json
+++ b/packages/gatsby-plugin-react-css-modules/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-react-css-modules",
"description": "Gatsby plugin that transforms styleName to className using compile time CSS module resolution",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Ming Aldrich-Gan ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-css-modules#readme",
diff --git a/packages/gatsby-plugin-react-helmet/CHANGELOG.md b/packages/gatsby-plugin-react-helmet/CHANGELOG.md
index a02c0d5b67022..a5e54bc3aff80 100644
--- a/packages/gatsby-plugin-react-helmet/CHANGELOG.md
+++ b/packages/gatsby-plugin-react-helmet/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-helmet@6.15.0/packages/gatsby-plugin-react-helmet) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-react-helmet
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-helmet@6.14.0/packages/gatsby-plugin-react-helmet) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json
index 53c3757acf452..9553bcb45710a 100644
--- a/packages/gatsby-plugin-react-helmet/package.json
+++ b/packages/gatsby-plugin-react-helmet/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-react-helmet",
"description": "Manage document head data with react-helmet. Provides drop-in server rendering support for Gatsby.",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-helmet#readme",
diff --git a/packages/gatsby-plugin-sass/CHANGELOG.md b/packages/gatsby-plugin-sass/CHANGELOG.md
index 1f03b01a565d1..bb98312634ff1 100644
--- a/packages/gatsby-plugin-sass/CHANGELOG.md
+++ b/packages/gatsby-plugin-sass/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sass@6.15.0/packages/gatsby-plugin-sass) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-sass
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sass@6.14.0/packages/gatsby-plugin-sass) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json
index cf2964fbde927..a5c604bc008f0 100644
--- a/packages/gatsby-plugin-sass/package.json
+++ b/packages/gatsby-plugin-sass/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-sass",
"description": "Gatsby plugin to handle SCSS/Sass files",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Daniel Farrell ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,9 +15,9 @@
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"autoprefixer": "^10.4.16",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^4.15.0-next.0"
+ "gatsby-plugin-utils": "^4.16.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md
index 1d6f1681fae06..1e7e3f824fad9 100644
--- a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md
+++ b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-schema-snapshot@4.15.0/packages/gatsby-plugin-schema-snapshot) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-schema-snapshot
+
## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-schema-snapshot@4.14.0/packages/gatsby-plugin-schema-snapshot) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-schema-snapshot/package.json b/packages/gatsby-plugin-schema-snapshot/package.json
index e61f15df95648..775ed22b95f87 100644
--- a/packages/gatsby-plugin-schema-snapshot/package.json
+++ b/packages/gatsby-plugin-schema-snapshot/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-schema-snapshot",
- "version": "4.15.0-next.0",
+ "version": "4.16.0-next.0",
"main": "index.js",
"license": "MIT",
"keywords": [
diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md
index 43b60bbd09cfa..4f420270891a0 100644
--- a/packages/gatsby-plugin-sharp/CHANGELOG.md
+++ b/packages/gatsby-plugin-sharp/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sharp@5.15.0/packages/gatsby-plugin-sharp) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-sharp
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sharp@5.14.0/packages/gatsby-plugin-sharp) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json
index 30e2d6671c0fe..e0b206400bf33 100644
--- a/packages/gatsby-plugin-sharp/package.json
+++ b/packages/gatsby-plugin-sharp/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-sharp",
"description": "Wrapper of the Sharp image manipulation library for Gatsby plugins",
- "version": "5.15.0-next.1",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,8 +13,8 @@
"debug": "^4.3.4",
"filenamify": "^4.3.0",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0",
- "gatsby-plugin-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
"lodash": "^4.17.21",
"probe-image-size": "^7.2.3",
"semver": "^7.5.3",
@@ -23,9 +23,9 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-image": "^3.15.0-next.1"
+ "gatsby-plugin-image": "^3.16.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-sitemap/CHANGELOG.md b/packages/gatsby-plugin-sitemap/CHANGELOG.md
index c824e9bcc0904..79d33c92f6c66 100644
--- a/packages/gatsby-plugin-sitemap/CHANGELOG.md
+++ b/packages/gatsby-plugin-sitemap/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sitemap@6.15.0/packages/gatsby-plugin-sitemap) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-sitemap
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sitemap@6.14.0/packages/gatsby-plugin-sitemap) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json
index e9adfb63a8f6c..555f101f921e2 100644
--- a/packages/gatsby-plugin-sitemap/package.json
+++ b/packages/gatsby-plugin-sitemap/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-sitemap",
"description": "Gatsby plugin that automatically creates a sitemap for your site",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"contributors": [
"Alex Moon ",
"Nicholas Young "
@@ -18,9 +18,9 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^4.15.0-next.0"
+ "gatsby-plugin-utils": "^4.16.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-styled-components/CHANGELOG.md b/packages/gatsby-plugin-styled-components/CHANGELOG.md
index e25e038454ce7..6806fda540c2f 100644
--- a/packages/gatsby-plugin-styled-components/CHANGELOG.md
+++ b/packages/gatsby-plugin-styled-components/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-components@6.15.0/packages/gatsby-plugin-styled-components) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-styled-components
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-components@6.14.0/packages/gatsby-plugin-styled-components) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json
index cbd280c46faab..96239411fb9a5 100644
--- a/packages/gatsby-plugin-styled-components/package.json
+++ b/packages/gatsby-plugin-styled-components/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-styled-components",
"description": "Gatsby plugin to add support for styled components",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Guten Ye ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-components#readme",
diff --git a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md
index d214b17f7c728..6e5658369b400 100644
--- a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md
+++ b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-jsx@6.15.0/packages/gatsby-plugin-styled-jsx) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-styled-jsx
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-jsx@6.14.0/packages/gatsby-plugin-styled-jsx) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json
index 30bcf6a7e717b..dc40ce4e0a63e 100644
--- a/packages/gatsby-plugin-styled-jsx/package.json
+++ b/packages/gatsby-plugin-styled-jsx/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-styled-jsx",
"description": "Adds SSR support for styled-jsx",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Tim Suchanek ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-jsx#readme",
diff --git a/packages/gatsby-plugin-styletron/CHANGELOG.md b/packages/gatsby-plugin-styletron/CHANGELOG.md
index 9d2833824d518..e189568f61fc3 100644
--- a/packages/gatsby-plugin-styletron/CHANGELOG.md
+++ b/packages/gatsby-plugin-styletron/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [8.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styletron@8.15.0/packages/gatsby-plugin-styletron) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-styletron
+
## [8.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styletron@8.14.0/packages/gatsby-plugin-styletron) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json
index 8270d15e5c0ad..a34b682745530 100644
--- a/packages/gatsby-plugin-styletron/package.json
+++ b/packages/gatsby-plugin-styletron/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-styletron",
"description": "A Gatsby plugin for styletron with built-in server-side rendering support",
- "version": "8.15.0-next.0",
+ "version": "8.16.0-next.0",
"author": "Nadiia Dmytrenko ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"styletron-engine-atomic": "^1.5.0",
"styletron-react": "^6.1.0"
diff --git a/packages/gatsby-plugin-stylus/CHANGELOG.md b/packages/gatsby-plugin-stylus/CHANGELOG.md
index 6a9a5b24159ac..dc82eef1ee21e 100644
--- a/packages/gatsby-plugin-stylus/CHANGELOG.md
+++ b/packages/gatsby-plugin-stylus/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-stylus@5.15.0/packages/gatsby-plugin-stylus) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-stylus
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-stylus@5.14.0/packages/gatsby-plugin-stylus) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json
index ea254b0275aba..7f26ab9640cc9 100644
--- a/packages/gatsby-plugin-stylus/package.json
+++ b/packages/gatsby-plugin-stylus/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-stylus",
"description": "Gatsby support for Stylus",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Ian Sinnott ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-stylus#readme",
diff --git a/packages/gatsby-plugin-subfont/CHANGELOG.md b/packages/gatsby-plugin-subfont/CHANGELOG.md
index bcf830350714e..88e912ea256c1 100644
--- a/packages/gatsby-plugin-subfont/CHANGELOG.md
+++ b/packages/gatsby-plugin-subfont/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-subfont@5.15.0/packages/gatsby-plugin-subfont) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-subfont
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-subfont@5.14.0/packages/gatsby-plugin-subfont) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json
index d0c82cf0eff31..43ea9af828ce2 100644
--- a/packages/gatsby-plugin-subfont/package.json
+++ b/packages/gatsby-plugin-subfont/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-subfont",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"description": "Runs the font delivery optimizing CLI tool subfont on the homepage of your site during the Gatsby build",
"main": "index.js",
"scripts": {
@@ -30,7 +30,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-twitter/CHANGELOG.md b/packages/gatsby-plugin-twitter/CHANGELOG.md
index 715861d359213..b111f1cfbff64 100644
--- a/packages/gatsby-plugin-twitter/CHANGELOG.md
+++ b/packages/gatsby-plugin-twitter/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-twitter@5.15.0/packages/gatsby-plugin-twitter) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-twitter
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-twitter@5.14.0/packages/gatsby-plugin-twitter) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json
index 91255cc41e8d0..5af071024f819 100644
--- a/packages/gatsby-plugin-twitter/package.json
+++ b/packages/gatsby-plugin-twitter/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-twitter",
"description": "Loads the Twitter JavaScript for embedding tweets.",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,9 +12,9 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^4.15.0-next.0"
+ "gatsby-plugin-utils": "^4.16.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-twitter#readme",
"keywords": [
diff --git a/packages/gatsby-plugin-typescript/CHANGELOG.md b/packages/gatsby-plugin-typescript/CHANGELOG.md
index 2ffef0d97916e..b345448f8bafe 100644
--- a/packages/gatsby-plugin-typescript/CHANGELOG.md
+++ b/packages/gatsby-plugin-typescript/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typescript@5.15.0/packages/gatsby-plugin-typescript) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-typescript
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typescript@5.14.0/packages/gatsby-plugin-typescript) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json
index de596adbc9376..d76e119bd9695 100644
--- a/packages/gatsby-plugin-typescript/package.json
+++ b/packages/gatsby-plugin-typescript/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-typescript",
"description": "Adds TypeScript support to Gatsby",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,12 +16,12 @@
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.13",
- "babel-plugin-remove-graphql-queries": "^5.15.0-next.0"
+ "babel-plugin-remove-graphql-queries": "^5.16.0-next.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
diff --git a/packages/gatsby-plugin-typography/CHANGELOG.md b/packages/gatsby-plugin-typography/CHANGELOG.md
index 5f659fb80533f..281cd1b8af564 100644
--- a/packages/gatsby-plugin-typography/CHANGELOG.md
+++ b/packages/gatsby-plugin-typography/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typography@5.15.0/packages/gatsby-plugin-typography) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-typography
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typography@5.14.0/packages/gatsby-plugin-typography) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json
index 608fe88f96fe6..9a3e691a0d77f 100644
--- a/packages/gatsby-plugin-typography/package.json
+++ b/packages/gatsby-plugin-typography/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-plugin-typography",
"description": "Gatsby plugin to setup server rendering of Typography.js' CSS",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -12,7 +12,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
diff --git a/packages/gatsby-plugin-utils/CHANGELOG.md b/packages/gatsby-plugin-utils/CHANGELOG.md
index 4168a3a368f66..3974658fd3cc5 100644
--- a/packages/gatsby-plugin-utils/CHANGELOG.md
+++ b/packages/gatsby-plugin-utils/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-utils@4.15.0/packages/gatsby-plugin-utils) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-plugin-utils
+
## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-utils@4.14.0/packages/gatsby-plugin-utils) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-plugin-utils/package.json b/packages/gatsby-plugin-utils/package.json
index 935b610a2023f..d1febb3b3770f 100644
--- a/packages/gatsby-plugin-utils/package.json
+++ b/packages/gatsby-plugin-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-utils",
- "version": "4.15.0-next.0",
+ "version": "4.16.0-next.0",
"description": "Gatsby utils that help creating plugins",
"main": "dist/index.js",
"exports": {
@@ -49,8 +49,8 @@
"@babel/runtime": "^7.20.13",
"fastq": "^1.16.0",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0",
- "gatsby-sharp": "^1.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
+ "gatsby-sharp": "^1.16.0-next.0",
"graphql-compose": "^9.0.10",
"import-from": "^4.0.0",
"joi": "^17.11.0",
@@ -59,7 +59,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"msw": "^1.2.2",
"rimraf": "^5.0.1",
diff --git a/packages/gatsby-react-router-scroll/CHANGELOG.md b/packages/gatsby-react-router-scroll/CHANGELOG.md
index c189d145fbf43..0971341cb4626 100644
--- a/packages/gatsby-react-router-scroll/CHANGELOG.md
+++ b/packages/gatsby-react-router-scroll/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-react-router-scroll@6.15.0/packages/gatsby-react-router-scroll) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-react-router-scroll
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-react-router-scroll@6.14.0/packages/gatsby-react-router-scroll) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json
index 51b223a266965..8dfd72a993707 100644
--- a/packages/gatsby-react-router-scroll/package.json
+++ b/packages/gatsby-react-router-scroll/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-react-router-scroll",
"description": "React Router scroll management forked from https://github.com/ytase/react-router-scroll for Gatsby",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Jimmy Jia",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"babel-plugin-dev-expression": "^0.2.3",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"history": "^5.3.0"
},
diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md
index 8012fc47c721c..a485a20e54def 100644
--- a/packages/gatsby-remark-autolink-headers/CHANGELOG.md
+++ b/packages/gatsby-remark-autolink-headers/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-autolink-headers@6.15.0/packages/gatsby-remark-autolink-headers) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-autolink-headers
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-autolink-headers@6.14.0/packages/gatsby-remark-autolink-headers) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json
index 97dfbfe4b327d..8b3ae1fdb07c5 100644
--- a/packages/gatsby-remark-autolink-headers/package.json
+++ b/packages/gatsby-remark-autolink-headers/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-autolink-headers",
"description": "Gatsby plugin to autolink headers in markdown processed by Remark",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,9 +16,9 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^4.15.0-next.0"
+ "gatsby-plugin-utils": "^4.16.0-next.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers#readme",
"keywords": [
diff --git a/packages/gatsby-remark-code-repls/CHANGELOG.md b/packages/gatsby-remark-code-repls/CHANGELOG.md
index c9b58dcc2cac6..edbc01cac1404 100644
--- a/packages/gatsby-remark-code-repls/CHANGELOG.md
+++ b/packages/gatsby-remark-code-repls/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-code-repls@7.15.0/packages/gatsby-remark-code-repls) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-code-repls
+
## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-code-repls@7.14.0/packages/gatsby-remark-code-repls) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json
index e330f84c058c7..bbfbc06fb2989 100644
--- a/packages/gatsby-remark-code-repls/package.json
+++ b/packages/gatsby-remark-code-repls/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-code-repls",
"description": "Gatsby plugin to auto-generate links to popular REPLs like Babel and Codepen",
- "version": "7.15.0-next.0",
+ "version": "7.16.0-next.0",
"author": "Brian Vaughn ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -18,7 +18,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-code-repls#readme",
diff --git a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md
index 1af75448d9e4d..3acb0d7b624df 100644
--- a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md
+++ b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-copy-linked-files@6.15.0/packages/gatsby-remark-copy-linked-files) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-copy-linked-files
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-copy-linked-files@6.14.0/packages/gatsby-remark-copy-linked-files) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json
index 15f52782a5f4f..f59c35a9f1362 100644
--- a/packages/gatsby-remark-copy-linked-files/package.json
+++ b/packages/gatsby-remark-copy-linked-files/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-copy-linked-files",
"description": "Find files which are linked to from markdown and copy them to the public directory",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -19,7 +19,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"remark": "^13.0.0",
"remark-mdx": "^1.6.22"
diff --git a/packages/gatsby-remark-custom-blocks/CHANGELOG.md b/packages/gatsby-remark-custom-blocks/CHANGELOG.md
index 51b68122ed3c4..b5568edd2d1df 100644
--- a/packages/gatsby-remark-custom-blocks/CHANGELOG.md
+++ b/packages/gatsby-remark-custom-blocks/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-custom-blocks@5.15.0/packages/gatsby-remark-custom-blocks) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-custom-blocks
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-custom-blocks@5.14.0/packages/gatsby-remark-custom-blocks) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json
index 43cafc261a6d3..b36f2d2345ddd 100644
--- a/packages/gatsby-remark-custom-blocks/package.json
+++ b/packages/gatsby-remark-custom-blocks/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-custom-blocks",
"description": "Gatsby remark plugin for adding custom blocks in markdown",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Mohammad Asad Mohammad ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"unist-util-find": "1.0.2"
},
diff --git a/packages/gatsby-remark-embed-snippet/CHANGELOG.md b/packages/gatsby-remark-embed-snippet/CHANGELOG.md
index 5ec79296da2a2..f5c77d61c9c98 100644
--- a/packages/gatsby-remark-embed-snippet/CHANGELOG.md
+++ b/packages/gatsby-remark-embed-snippet/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [8.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-embed-snippet@8.15.0/packages/gatsby-remark-embed-snippet) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-embed-snippet
+
## [8.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-embed-snippet@8.14.0/packages/gatsby-remark-embed-snippet) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json
index 3c0351464d24b..e11a92be48f5a 100644
--- a/packages/gatsby-remark-embed-snippet/package.json
+++ b/packages/gatsby-remark-embed-snippet/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-embed-snippet",
"description": "Gatsby plugin to embed formatted code snippets within markdown",
- "version": "8.15.0-next.0",
+ "version": "8.16.0-next.0",
"author": "Brian Vaughn ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-embed-snippet#readme",
diff --git a/packages/gatsby-remark-graphviz/CHANGELOG.md b/packages/gatsby-remark-graphviz/CHANGELOG.md
index b59f062f574a7..100cb1fc68b86 100644
--- a/packages/gatsby-remark-graphviz/CHANGELOG.md
+++ b/packages/gatsby-remark-graphviz/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-graphviz@5.15.0/packages/gatsby-remark-graphviz) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-graphviz
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-graphviz@5.14.0/packages/gatsby-remark-graphviz) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-graphviz/package.json b/packages/gatsby-remark-graphviz/package.json
index 3c847668b12f6..56facdebd5072 100644
--- a/packages/gatsby-remark-graphviz/package.json
+++ b/packages/gatsby-remark-graphviz/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-graphviz",
"description": "Processes graphviz code blocks and renders to SVG using viz.js",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Anthony Marcar ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"hast-util-to-html": "^7.1.3",
"mdast-util-to-hast": "^10.2.0",
diff --git a/packages/gatsby-remark-images-contentful/CHANGELOG.md b/packages/gatsby-remark-images-contentful/CHANGELOG.md
index dec718b24b173..df3337231c5e9 100644
--- a/packages/gatsby-remark-images-contentful/CHANGELOG.md
+++ b/packages/gatsby-remark-images-contentful/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images-contentful@6.15.0/packages/gatsby-remark-images-contentful) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-images-contentful
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images-contentful@6.14.0/packages/gatsby-remark-images-contentful) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json
index d25642b9d84f0..21407995c713d 100644
--- a/packages/gatsby-remark-images-contentful/package.json
+++ b/packages/gatsby-remark-images-contentful/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-remark-images-contentful",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"description": "Process Images in Contentful markdown so they can use the images API.",
"main": "index.js",
"scripts": {
@@ -28,7 +28,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md
index b8298b26cfe56..cf658d1e189f2 100644
--- a/packages/gatsby-remark-images/CHANGELOG.md
+++ b/packages/gatsby-remark-images/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images@7.15.0/packages/gatsby-remark-images) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-images
+
## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images@7.14.0/packages/gatsby-remark-images) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json
index 16d1a6e8af8fc..9394b7bdb64d1 100644
--- a/packages/gatsby-remark-images/package.json
+++ b/packages/gatsby-remark-images/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-images",
"description": "Processes images in markdown so they can be used in the production build.",
- "version": "7.15.0-next.0",
+ "version": "7.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -10,7 +10,7 @@
"@babel/runtime": "^7.20.13",
"chalk": "^4.1.2",
"cheerio": "1.0.0-rc.12",
- "gatsby-core-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
"is-relative-url": "^3.0.0",
"lodash": "^4.17.21",
"mdast-util-definitions": "^4.0.0",
@@ -21,9 +21,9 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
- "gatsby-plugin-utils": "^4.15.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
"hast-util-to-html": "^7.1.3",
"mdast-util-to-hast": "^10.2.0"
},
diff --git a/packages/gatsby-remark-katex/CHANGELOG.md b/packages/gatsby-remark-katex/CHANGELOG.md
index 8f94028476530..75bb115eba384 100644
--- a/packages/gatsby-remark-katex/CHANGELOG.md
+++ b/packages/gatsby-remark-katex/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-katex@7.15.0/packages/gatsby-remark-katex) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-katex
+
## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-katex@7.14.0/packages/gatsby-remark-katex) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json
index a5f0c3db077ad..c8e779a86ddc4 100644
--- a/packages/gatsby-remark-katex/package.json
+++ b/packages/gatsby-remark-katex/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-katex",
"description": "Transform math nodes to html markup",
- "version": "7.15.0-next.0",
+ "version": "7.16.0-next.0",
"author": "Jeffrey Xiao ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"katex": "^0.13.18",
"remark": "^13.0.0"
diff --git a/packages/gatsby-remark-prismjs/CHANGELOG.md b/packages/gatsby-remark-prismjs/CHANGELOG.md
index 8d98df77f1d77..71a1029977492 100644
--- a/packages/gatsby-remark-prismjs/CHANGELOG.md
+++ b/packages/gatsby-remark-prismjs/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-prismjs@7.15.0/packages/gatsby-remark-prismjs) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-prismjs
+
## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-prismjs@7.14.0/packages/gatsby-remark-prismjs) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json
index 71d3a2ae339c5..de06756bf3056 100644
--- a/packages/gatsby-remark-prismjs/package.json
+++ b/packages/gatsby-remark-prismjs/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-prismjs",
"description": "Adds syntax highlighting to code blocks at build time using PrismJS",
- "version": "7.15.0-next.0",
+ "version": "7.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cheerio": "1.0.0-rc.12",
"cross-env": "^7.0.3",
"prismjs": "^1.29.0",
diff --git a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md
index 7a806a7ea6d0d..988391e0d66ac 100644
--- a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md
+++ b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-responsive-iframe@6.15.0/packages/gatsby-remark-responsive-iframe) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-responsive-iframe
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-responsive-iframe@6.14.0/packages/gatsby-remark-responsive-iframe) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json
index 507bf663beaab..c3f58d2b2c8a7 100644
--- a/packages/gatsby-remark-responsive-iframe/package.json
+++ b/packages/gatsby-remark-responsive-iframe/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-responsive-iframe",
"description": "Make iframes in Markdown processed by Remark responsive",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -16,7 +16,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"remark": "^13.0.0",
"remark-mdx": "^1.6.22",
diff --git a/packages/gatsby-remark-smartypants/CHANGELOG.md b/packages/gatsby-remark-smartypants/CHANGELOG.md
index 9f5ee10be4cca..d4affc74f12d9 100644
--- a/packages/gatsby-remark-smartypants/CHANGELOG.md
+++ b/packages/gatsby-remark-smartypants/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-smartypants@6.15.0/packages/gatsby-remark-smartypants) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-remark-smartypants
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-smartypants@6.14.0/packages/gatsby-remark-smartypants) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json
index 432b66e92f195..c4bbf210b2832 100644
--- a/packages/gatsby-remark-smartypants/package.json
+++ b/packages/gatsby-remark-smartypants/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-remark-smartypants",
"description": "Use retext-smartypants to auto-enhance typography of markdown",
- "version": "6.15.0-next.0",
+ "version": "6.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,7 +15,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-smartypants#readme",
diff --git a/packages/gatsby-script/CHANGELOG.md b/packages/gatsby-script/CHANGELOG.md
index 3486eab26506d..7adf10893a7fc 100644
--- a/packages/gatsby-script/CHANGELOG.md
+++ b/packages/gatsby-script/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [2.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-script@2.15.0/packages/gatsby-script) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-script
+
## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-script@2.14.0/packages/gatsby-script) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-script/package.json b/packages/gatsby-script/package.json
index ca8854be8c6fa..3d7cb1c1e0a85 100644
--- a/packages/gatsby-script/package.json
+++ b/packages/gatsby-script/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-script",
"description": "An enhanced script component for Gatsby sites with support for various loading strategies",
- "version": "2.15.0-next.0",
+ "version": "2.16.0-next.0",
"author": "Ty Hopp ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
diff --git a/packages/gatsby-sharp/CHANGELOG.md b/packages/gatsby-sharp/CHANGELOG.md
index ae3cfbfc57ae9..d2b2d0f7565dc 100644
--- a/packages/gatsby-sharp/CHANGELOG.md
+++ b/packages/gatsby-sharp/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-sharp@1.15.0/packages/gatsby-sharp) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-sharp
+
## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-sharp@1.14.0/packages/gatsby-sharp) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-sharp/package.json b/packages/gatsby-sharp/package.json
index d6c43701587f9..96adc4ed86bd4 100644
--- a/packages/gatsby-sharp/package.json
+++ b/packages/gatsby-sharp/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-sharp",
- "version": "1.15.0-next.0",
+ "version": "1.16.0-next.0",
"sideEffects": false,
"keywords": [
"gatsby",
diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md
index 1d2c46585dd83..bf7eb00d2854a 100644
--- a/packages/gatsby-source-contentful/CHANGELOG.md
+++ b/packages/gatsby-source-contentful/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.
+## [8.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-contentful@8.16.0/packages/gatsby-source-contentful) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Features
+
+- update to ESM compatible version of CTF library [#39178](https://github.com/gatsbyjs/gatsby/issues/39178) [#39182](https://github.com/gatsbyjs/gatsby/issues/39182) ([3ccd1d8](https://github.com/gatsbyjs/gatsby/commit/3ccd1d8483b42387bccedf96e320d60719d1d147))
+
+#### Bug Fixes
+
+- support node 22 [#39349](https://github.com/gatsbyjs/gatsby/issues/39349) ([7451d2f](https://github.com/gatsbyjs/gatsby/commit/7451d2ff56c46b4d9ceebbb6e830fa83fcd29e5b))
+
## [8.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-contentful@8.15.0/packages/gatsby-source-contentful) (2024-12-13)
#### Features
diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json
index d9e0d479312be..944052c27d135 100644
--- a/packages/gatsby-source-contentful/package.json
+++ b/packages/gatsby-source-contentful/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-contentful",
"description": "Gatsby source plugin for building websites using the Contentful CMS as a data source",
- "version": "8.16.0-next.1",
+ "version": "8.17.0-next.0",
"author": "Marcus Ericsson (mericsson.com)",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -15,9 +15,9 @@
"common-tags": "^1.8.2",
"contentful": "^11.2.5",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0",
- "gatsby-plugin-utils": "^4.15.0-next.0",
- "gatsby-source-filesystem": "^5.15.0-next.1",
+ "gatsby-core-utils": "^4.16.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
+ "gatsby-source-filesystem": "^5.16.0-next.0",
"is-online": "^10.0.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
@@ -28,7 +28,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3",
"nock": "^13.3.1"
},
diff --git a/packages/gatsby-source-contentful/src/__tests__/gatsby-plugin-image.js b/packages/gatsby-source-contentful/src/__tests__/gatsby-plugin-image.js
index 033ea67336beb..084ed183e96ee 100644
--- a/packages/gatsby-source-contentful/src/__tests__/gatsby-plugin-image.js
+++ b/packages/gatsby-source-contentful/src/__tests__/gatsby-plugin-image.js
@@ -8,7 +8,7 @@ import _ from "lodash"
import { resolve } from "path"
import { setFieldsOnGraphQLNodeType } from "../extend-node-type"
import { generateImageSource } from "../gatsby-plugin-image"
-import * as gatsbyCoreUtils from "gatsby-core-utils"
+import * as fetchRemoteFileModule from "gatsby-core-utils/fetch-remote-file"
import * as pluginSharp from "gatsby-plugin-sharp"
const FIXTURES = resolve(__dirname, `..`, `__fixtures__`)
@@ -20,7 +20,7 @@ jest
.spyOn(pluginSharp, `getDominantColor`)
.mockImplementation(() => Promise.resolve(`#mocked`))
jest
- .spyOn(gatsbyCoreUtils, `fetchRemoteFile`)
+ .spyOn(fetchRemoteFileModule, `fetchRemoteFile`)
.mockImplementation(() =>
Promise.resolve(`${FIXTURES}/contentful-logo-256.png`)
)
diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md
index f15c3c6099ce3..6abd725b968c9 100644
--- a/packages/gatsby-source-drupal/CHANGELOG.md
+++ b/packages/gatsby-source-drupal/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-drupal@6.15.0/packages/gatsby-source-drupal) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-source-drupal
+
## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-drupal@6.14.0/packages/gatsby-source-drupal) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json
index abfb6cb01e5c1..d38890c88a00e 100644
--- a/packages/gatsby-source-drupal/package.json
+++ b/packages/gatsby-source-drupal/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-drupal",
"description": "Gatsby source plugin for building websites using the Drupal CMS as a data source",
- "version": "6.15.0-next.1",
+ "version": "6.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,8 +13,8 @@
"bluebird": "^3.7.2",
"body-parser": "^1.20.3",
"fastq": "^1.17.1",
- "gatsby-plugin-utils": "^4.15.0-next.0",
- "gatsby-source-filesystem": "^5.15.0-next.1",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
+ "gatsby-source-filesystem": "^5.16.0-next.0",
"got": "^11.8.6",
"http2-wrapper": "^2.2.1",
"lodash": "^4.17.21",
@@ -27,7 +27,7 @@
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-typescript": "^7.18.6",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"engines": {
diff --git a/packages/gatsby-source-faker/CHANGELOG.md b/packages/gatsby-source-faker/CHANGELOG.md
index d7bbe90d34f29..16f9142b2f012 100644
--- a/packages/gatsby-source-faker/CHANGELOG.md
+++ b/packages/gatsby-source-faker/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-faker@5.15.0/packages/gatsby-source-faker) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-source-faker
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-faker@5.14.0/packages/gatsby-source-faker) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json
index 96ee5f3b42ef8..e5277939118ab 100644
--- a/packages/gatsby-source-faker/package.json
+++ b/packages/gatsby-source-faker/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-faker",
"description": "A gatsby plugin to get fake data for testing",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Pavithra Kodmad",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-faker#readme",
diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md
index e558c2b12ac90..002717992320c 100644
--- a/packages/gatsby-source-filesystem/CHANGELOG.md
+++ b/packages/gatsby-source-filesystem/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.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@5.15.0/packages/gatsby-source-filesystem) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Bug Fixes
+
+- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8))
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@5.14.0/packages/gatsby-source-filesystem) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json
index f4cdef819244f..bd05cc389ff29 100644
--- a/packages/gatsby-source-filesystem/package.json
+++ b/packages/gatsby-source-filesystem/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-filesystem",
"description": "Gatsby source plugin for building websites from local data. Markdown, JSON, images, YAML, CSV, and dozens of other data types supported.",
- "version": "5.15.0-next.1",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -11,7 +11,7 @@
"chokidar": "^3.6.0",
"file-type": "^16.5.4",
"fs-extra": "^11.2.0",
- "gatsby-core-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
"mime": "^3.0.0",
"pretty-bytes": "^5.6.0",
"valid-url": "^1.0.9",
@@ -20,7 +20,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem#readme",
diff --git a/packages/gatsby-source-graphql/CHANGELOG.md b/packages/gatsby-source-graphql/CHANGELOG.md
index 30850acd0951a..2da1a18506d9e 100644
--- a/packages/gatsby-source-graphql/CHANGELOG.md
+++ b/packages/gatsby-source-graphql/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-graphql@5.15.0/packages/gatsby-source-graphql) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-source-graphql
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-graphql@5.14.0/packages/gatsby-source-graphql) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json
index 917f1c9a08b7b..d3368035085e8 100644
--- a/packages/gatsby-source-graphql/package.json
+++ b/packages/gatsby-source-graphql/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-graphql",
"description": "Gatsby plugin which adds a third-party GraphQL API to Gatsby GraphQL",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Mikhail Novikov ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,14 +13,14 @@
"@graphql-tools/utils": "^8.13.1",
"@graphql-tools/wrap": "^8.5.1",
"dataloader": "^2.2.2",
- "gatsby-core-utils": "^4.15.0-next.0",
+ "gatsby-core-utils": "^4.16.0-next.0",
"invariant": "^2.2.4",
"node-fetch": "^2.6.11"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-graphql#readme",
diff --git a/packages/gatsby-source-hacker-news/CHANGELOG.md b/packages/gatsby-source-hacker-news/CHANGELOG.md
index 2394aed71cde4..579c46f55e078 100644
--- a/packages/gatsby-source-hacker-news/CHANGELOG.md
+++ b/packages/gatsby-source-hacker-news/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-hacker-news@5.15.0/packages/gatsby-source-hacker-news) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-source-hacker-news
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-hacker-news@5.14.0/packages/gatsby-source-hacker-news) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json
index e5a283fb4d29c..1904627dcbead 100644
--- a/packages/gatsby-source-hacker-news/package.json
+++ b/packages/gatsby-source-hacker-news/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-hacker-news",
"description": "Gatsby source plugin for building websites using Hacker News as a data source",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Kyle Mathews ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -14,7 +14,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-hacker-news#readme",
diff --git a/packages/gatsby-source-lever/CHANGELOG.md b/packages/gatsby-source-lever/CHANGELOG.md
index 9a663ff934942..709ad1be55cc1 100644
--- a/packages/gatsby-source-lever/CHANGELOG.md
+++ b/packages/gatsby-source-lever/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-lever@5.15.0/packages/gatsby-source-lever) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-source-lever
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-lever@5.14.0/packages/gatsby-source-lever) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json
index 7efc8c5c6de5e..9b8fe464d2469 100644
--- a/packages/gatsby-source-lever/package.json
+++ b/packages/gatsby-source-lever/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-lever",
"description": "Gatsby source plugin for building websites using the Lever.co Recruitment Software as a data source.",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Sebastien Fichot ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -20,7 +20,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-lever#readme",
diff --git a/packages/gatsby-source-medium/CHANGELOG.md b/packages/gatsby-source-medium/CHANGELOG.md
index a6a264209d4a9..f3b56af998226 100644
--- a/packages/gatsby-source-medium/CHANGELOG.md
+++ b/packages/gatsby-source-medium/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-medium@5.15.0/packages/gatsby-source-medium) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-source-medium
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-medium@5.14.0/packages/gatsby-source-medium) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json
index c9e00c8ab5cbe..17223e5def548 100644
--- a/packages/gatsby-source-medium/package.json
+++ b/packages/gatsby-source-medium/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-medium",
"description": "Gatsby source plugin for building websites using Medium as a data source",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "Robert Vogt ",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
@@ -13,7 +13,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-medium#readme",
diff --git a/packages/gatsby-source-mongodb/CHANGELOG.md b/packages/gatsby-source-mongodb/CHANGELOG.md
index b1e6ebf4a82db..ba985268c5616 100644
--- a/packages/gatsby-source-mongodb/CHANGELOG.md
+++ b/packages/gatsby-source-mongodb/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-mongodb@5.15.0/packages/gatsby-source-mongodb) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-source-mongodb
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-mongodb@5.14.0/packages/gatsby-source-mongodb) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json
index df9e0455a6ee6..b46932a909f69 100644
--- a/packages/gatsby-source-mongodb/package.json
+++ b/packages/gatsby-source-mongodb/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-mongodb",
"description": "Source plugin for pulling data into Gatsby from MongoDB collections",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"authors": [
"jhermans85@hotmail.com",
"hi@elmar.codes"
@@ -19,7 +19,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-mongodb#readme",
diff --git a/packages/gatsby-source-npm-package-search/CHANGELOG.md b/packages/gatsby-source-npm-package-search/CHANGELOG.md
index e0733a5764644..eb750a6d1b6a1 100644
--- a/packages/gatsby-source-npm-package-search/CHANGELOG.md
+++ b/packages/gatsby-source-npm-package-search/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-npm-package-search@5.15.0/packages/gatsby-source-npm-package-search) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-source-npm-package-search
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-npm-package-search@5.14.0/packages/gatsby-source-npm-package-search) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json
index 30a04460d0a29..54b54b86f07c7 100644
--- a/packages/gatsby-source-npm-package-search/package.json
+++ b/packages/gatsby-source-npm-package-search/package.json
@@ -1,7 +1,7 @@
{
"name": "gatsby-source-npm-package-search",
"description": "Search NPM packages and pull NPM & GitHub metadata from Algolia's NPM index",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"author": "james.a.stack@gmail.com",
"repository": {
"type": "git",
@@ -17,7 +17,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"keywords": [
diff --git a/packages/gatsby-source-shopify/README.md b/packages/gatsby-source-shopify/README.md
index b7f8a87add5c2..fdf9bba2a527d 100644
--- a/packages/gatsby-source-shopify/README.md
+++ b/packages/gatsby-source-shopify/README.md
@@ -18,9 +18,6 @@
-
-
-
@@ -39,7 +36,7 @@
- 🚥 [Use run-time images](#use-run-time-images)
- 🖼️ [Displaying images](#displaying-images)
- 🚨 [Limitations](#limitations)
-- 💾 [V6 to V7 Migration Guide](#v6-to-V7-migration-guide)
+- 💾 [V6 to V7 Migration Guide](#v6-to-v7-migration-guide)
# gatsby-source-shopify
diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json
index d6fff7d9f46db..b07e88ae8581e 100644
--- a/packages/gatsby-source-shopify/package.json
+++ b/packages/gatsby-source-shopify/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-source-shopify",
- "version": "10.0.0-next.0",
+ "version": "10.1.0-next.0",
"description": "Gatsby source plugin for building websites using Shopify as a data source.",
"scripts": {
"watch": "tsc-watch --outDir .",
@@ -24,9 +24,9 @@
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-shopify#readme",
"dependencies": {
"@babel/runtime": "^7.20.13",
- "gatsby-core-utils": "^4.15.0-next.0",
- "gatsby-plugin-utils": "^4.15.0-next.0",
- "gatsby-source-filesystem": "^5.15.0-next.1",
+ "gatsby-core-utils": "^4.16.0-next.0",
+ "gatsby-plugin-utils": "^4.16.0-next.0",
+ "gatsby-source-filesystem": "^5.16.0-next.0",
"node-fetch": "^2.6.11",
"sharp": "^0.32.6",
"shift-left": "^0.1.5"
@@ -35,7 +35,7 @@
"@types/node": "^18.17.19",
"@types/node-fetch": "^2.6.4",
"cross-env": "^7.0.3",
- "gatsby-plugin-image": "^3.15.0-next.1",
+ "gatsby-plugin-image": "^3.16.0-next.0",
"msw": "^1.2.2",
"prettier": "^2.8.8",
"prettier-check": "^2.0.0",
diff --git a/packages/gatsby-source-wikipedia/CHANGELOG.md b/packages/gatsby-source-wikipedia/CHANGELOG.md
index 9e0687577901f..2de50e2d337d6 100644
--- a/packages/gatsby-source-wikipedia/CHANGELOG.md
+++ b/packages/gatsby-source-wikipedia/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wikipedia@5.15.0/packages/gatsby-source-wikipedia) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+**Note:** Version bump only for package gatsby-source-wikipedia
+
## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wikipedia@5.14.0/packages/gatsby-source-wikipedia) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json
index ef667f836c068..eae4a4ac14eee 100644
--- a/packages/gatsby-source-wikipedia/package.json
+++ b/packages/gatsby-source-wikipedia/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-source-wikipedia",
- "version": "5.15.0-next.0",
+ "version": "5.16.0-next.0",
"description": "Gatsby source plugin for pulling articles from Wikipedia",
"main": "index.js",
"scripts": {
@@ -37,7 +37,7 @@
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
- "babel-preset-gatsby-package": "^3.15.0-next.0",
+ "babel-preset-gatsby-package": "^3.16.0-next.0",
"cross-env": "^7.0.3"
},
"engines": {
diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md
index 15fe5e3bb6eb9..4b6d913e9c3b1 100644
--- a/packages/gatsby-source-wordpress/CHANGELOG.md
+++ b/packages/gatsby-source-wordpress/CHANGELOG.md
@@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [7.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@7.16.0/packages/gatsby-source-wordpress) (2025-08-27)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15)
+
+#### Features
+
+- support wp-graphql@2 [#39263](https://github.com/gatsbyjs/gatsby/issues/39263) ([d8cc254](https://github.com/gatsbyjs/gatsby/commit/d8cc2542d2507237c28dbbeac7770a409f13c707))
+
+#### Chores
+
+- remove Gatsby Discord references [#39351](https://github.com/gatsbyjs/gatsby/issues/39351) ([c3708b0](https://github.com/gatsbyjs/gatsby/commit/c3708b068abba3a26e5cf229d6d4dc5813884acd))
+
+## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@7.15.0/packages/gatsby-source-wordpress) (2025-04-09)
+
+[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
+
+#### Features
+
+- support wp-graphql@2 [#39263](https://github.com/gatsbyjs/gatsby/issues/39263) [#39269](https://github.com/gatsbyjs/gatsby/issues/39269) ([4c327b5](https://github.com/gatsbyjs/gatsby/commit/4c327b5c7724d851b2d495565002715a766405d3))
+
## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@7.14.0/packages/gatsby-source-wordpress) (2024-11-06)
[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14)
diff --git a/packages/gatsby-source-wordpress/README.md b/packages/gatsby-source-wordpress/README.md
index 0a12eef1c0c99..eaf21574b5551 100644
--- a/packages/gatsby-source-wordpress/README.md
+++ b/packages/gatsby-source-wordpress/README.md
@@ -18,9 +18,6 @@