mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 12:57:46 +00:00
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @vercel/build-utils@8.2.2 ### Patch Changes - Change node 16.x EOL for Vercel ([#11704](https://github.com/vercel/vercel/pull/11704)) - Improve error message and refactor ([#11706](https://github.com/vercel/vercel/pull/11706)) - [built-utils] Handle case of not having lockfile when corepack is enabled ([#11697](https://github.com/vercel/vercel/pull/11697)) ## vercel@34.2.6 ### Patch Changes - [built-utils] Handle case of not having lockfile when corepack is enabled ([#11697](https://github.com/vercel/vercel/pull/11697)) - Updated dependencies \[[`5c12ed695`](5c12ed6950), [`21444a38e`](21444a38e5), [`fa9789a93`](fa9789a93e), [`c925dc4a1`](c925dc4a1b), [`06d2d860e`](06d2d860e4), [`b735f37fd`](b735f37fd9)]: - @vercel/build-utils@8.2.2 - @vercel/next@4.2.16 - @vercel/redwood@2.0.10 - @vercel/remix-builder@2.1.7 - @vercel/node@3.1.7 - @vercel/static-build@2.5.11 ## @vercel/client@13.2.9 ### Patch Changes - Updated dependencies \[[`5c12ed695`](5c12ed6950), [`21444a38e`](21444a38e5), [`06d2d860e`](06d2d860e4)]: - @vercel/build-utils@8.2.2 ## @vercel/gatsby-plugin-vercel-builder@2.0.33 ### Patch Changes - Updated dependencies \[[`5c12ed695`](5c12ed6950), [`21444a38e`](21444a38e5), [`06d2d860e`](06d2d860e4)]: - @vercel/build-utils@8.2.2 ## @vercel/next@4.2.16 ### Patch Changes - prevent /index from being incorrectly normalized in rewrites ([#11707](https://github.com/vercel/vercel/pull/11707)) - Upgrade to @vercel/nft 0.27.2 with browser remapping support ([#11700](https://github.com/vercel/vercel/pull/11700)) - ensure unmatched rsc rewrites are routed to correct handler ([#11688](https://github.com/vercel/vercel/pull/11688)) ## @vercel/node@3.1.7 ### Patch Changes - Upgrade to @vercel/nft 0.27.2 with browser remapping support ([#11700](https://github.com/vercel/vercel/pull/11700)) - Updated dependencies \[[`5c12ed695`](5c12ed6950), [`21444a38e`](21444a38e5), [`06d2d860e`](06d2d860e4)]: - @vercel/build-utils@8.2.2 ## @vercel/redwood@2.0.10 ### Patch Changes - Upgrade to @vercel/nft 0.27.2 with browser remapping support ([#11700](https://github.com/vercel/vercel/pull/11700)) ## @vercel/remix-builder@2.1.7 ### Patch Changes - Upgrade to @vercel/nft 0.27.2 with browser remapping support ([#11700](https://github.com/vercel/vercel/pull/11700)) ## @vercel/static-build@2.5.11 ### Patch Changes - Updated dependencies \[]: - @vercel/gatsby-plugin-vercel-builder@2.0.33 ## @vercel-internals/types@1.0.38 ### Patch Changes - Updated dependencies \[[`5c12ed695`](5c12ed6950), [`21444a38e`](21444a38e5), [`06d2d860e`](06d2d860e4)]: - @vercel/build-utils@8.2.2 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
@vercel/gatsby-plugin-vercel-builder
This plugin generates Vercel Build Output API v3 for Gatsby v4+ projects.
The Vercel platform automatically injects this plugin for you if it can detect Gatsby v4+ in your project's package.json dependencies. If detected, you will see a log message in your project's build logs as follows:
Injecting Gatsby.js plugin "@vercel/gatsby-plugin-vercel-builder" to package.json
If auto-detection is not working, this plugin can also be installed and used manually:
npm install @vercel/gatsby-plugin-vercel-builder- Add
'@vercel/gatsby-plugin-vercel-builder'to yourgatsby-config.(t|j)sfile, such as:
module.exports = {
plugins: ['@vercel/gatsby-plugin-vercel-builder'],
};
- 🚀 Ship It 🎉