Skip to content

Comments

fix(deps): update starters#1435

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/starters-minor
Open

fix(deps): update starters#1435
renovate[bot] wants to merge 1 commit intomainfrom
renovate/starters-minor

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) ^22.18.10^22.19.7 age confidence
@types/react (source) ^18.3.20^18.3.27 age confidence
gatsby (source, changelog) ^5.15.0^5.16.0 age confidence
gatsby-plugin-catch-links (source) ^5.15.0^5.16.0 age confidence
gatsby-plugin-emotion (source) ^8.15.0^8.16.0 age confidence
gatsby-plugin-feed (source) ^5.15.0^5.16.0 age confidence
gatsby-plugin-manifest (source) ^5.15.0^5.16.0 age confidence
gatsby-plugin-mdx (source) ^5.15.0^5.16.0 age confidence
gatsby-plugin-sitemap (source) ^6.15.0^6.16.0 age confidence
gatsby-source-filesystem (source) ^5.15.0^5.16.0 age confidence

Release Notes

gatsbyjs/gatsby (gatsby)

v5.16.0

Compare Source

What's Changed

React 19

[!NOTE]
🔐 As of January 26 2026, none of the React 19 security vulnerabilities affect Gatsby.

🚀 React 19 is here!

React 19 is now officially supported by Gatsby and all gatsby- packages maintained by the Gatsby team.

This is not a breaking change. You can safely upgrade to this release while staying on React 18.

All packages' peer dependencies on react and react-dom have been extended from ^18.0.0 to ^18.0.0 || ^19.0.0.

All existing stable Gatsby functionality is intended to now work with React 19.

PR: #​39306

Upgrade Guide

[!WARNING]
Community plugins may not have been updated yet to support React 19, so please check their repository for the current status. All plugins managed by the Gatsby team (in the gatsbyjs/gatsby repository) have been updated.

To upgrade to React 19, first upgrade gatsby and all your dependencies that start with gatsby- to the latest version. (Check out this guide if you need help with that.)

[!TIP]
If you use npm 7 or higher you’ll want to use the --legacy-peer-deps option. For example, if you use gatsby and gatsby-plugin-postcss:

npm install --legacy-peer-deps gatsby@latest gatsby-plugin-postcss@latest

Then, follow the React 19 upgrade guide. No other changes are required.

Please note:

  • Some new React 19 features may not be available yet via Gatsby.
  • Gatsby Partial Hydration, an experimental feature for three years now, is known to be incompatible with React 19 at this time. If you rely on this feature, do not upgrade to React 19.
New features

Gatsby now supports React 19's new root error callbacks.

Users can export onCaughtError and onUncaughtError from their gatsby-browser.js to handle errors caught by error boundaries and uncaught errors respectively:

// gatsby-browser.js

export const onCaughtError = ({ error, errorInfo }) => {
  // e.g. send to an error tracking service
  myErrorTracker.reportError(error, { extra: errorInfo })
}

export const onUncaughtError = ({ error, errorInfo }) => {
  // e.g. send to an error tracking service
  myErrorTracker.captureException(error, { extra: errorInfo })
}

In development, these errors also appear in Gatsby's Fast Refresh error overlay. These callbacks are only invoked in React 19.

Node.js 24

Node.js 24 is now officially supported by Gatsby.

PR: #​39380 and #​39398

Notable bugfixes & improvements

  • gatsby, gatsby-source-drupal:
  • chore: remove misc. outdated, invalid, or misleading contributor instructions by @​serhalp in #​39363

Full Changelog: https://github.com/gatsbyjs/gatsby/compare/gatsby@5.15.0...gatsby@5.16.0

gatsbyjs/gatsby (gatsby-plugin-catch-links)

v5.16.0

Compare Source

🧾 Release notes

Bug Fixes
Other Changes
  • Revert "chore(release): Publish next pre-minor" (3539ec8)
gatsbyjs/gatsby (gatsby-plugin-emotion)

v8.16.0

Compare Source

🧾 Release notes

Bug Fixes
Other Changes
  • Revert "chore(release): Publish next pre-minor" (3539ec8)
gatsbyjs/gatsby (gatsby-plugin-feed)

v5.16.0

Compare Source

🧾 Release notes

Features
Bug Fixes
Other Changes
  • Revert "chore(release): Publish next pre-minor" (3539ec8)
gatsbyjs/gatsby (gatsby-plugin-manifest)

v5.16.0

Compare Source

🧾 Release notes

Bug Fixes
Other Changes
  • Revert "chore(release): Publish next pre-minor" (3539ec8)
gatsbyjs/gatsby (gatsby-plugin-mdx)

v5.16.0

Compare Source

🧾 Release notes

Features
Other Changes
  • Revert "chore(release): Publish next pre-minor" (3539ec8)
gatsbyjs/gatsby (gatsby-plugin-sitemap)

v6.16.0

Compare Source

🧾 Release notes

Features
Bug Fixes
Other Changes
  • Revert "chore(release): Publish next pre-minor" (3539ec8)
gatsbyjs/gatsby (gatsby-source-filesystem)

v5.16.0

Compare Source

🧾 Release notes

Bug Fixes
Other Changes
  • Revert "chore(release): Publish next pre-minor" (3539ec8)

Configuration

📅 Schedule: Branch creation - "before 10am on the first day of the month" in timezone GMT, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Jul 1, 2025
@changeset-bot
Copy link

changeset-bot bot commented Jul 1, 2025

⚠️ No Changeset found

Latest commit: 67c76b2

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@netlify
Copy link

netlify bot commented Jul 1, 2025

Deploy Preview for gatsby-themes canceled.

Name Link
🔨 Latest commit 67c76b2
🔍 Latest deploy log https://app.netlify.com/projects/gatsby-themes/deploys/697ea17bda748400080b7eac

@renovate renovate bot force-pushed the renovate/starters-minor branch from ab667e7 to 4d46167 Compare October 1, 2025 02:10
@renovate renovate bot changed the title chore(deps): update starters fix(deps): update starters Oct 1, 2025
@renovate renovate bot changed the title fix(deps): update starters chore(deps): update starters Nov 1, 2025
@renovate renovate bot force-pushed the renovate/starters-minor branch 2 times, most recently from 7f1c3a1 to 9ab6316 Compare November 1, 2025 04:49
@renovate renovate bot force-pushed the renovate/starters-minor branch from 9ab6316 to 413afef Compare December 1, 2025 02:41
@renovate renovate bot force-pushed the renovate/starters-minor branch from 413afef to def7f8e Compare January 1, 2026 06:12
@renovate renovate bot force-pushed the renovate/starters-minor branch from def7f8e to 67c76b2 Compare February 1, 2026 00:42
@renovate renovate bot changed the title chore(deps): update starters fix(deps): update starters Feb 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants