chore(deps): bump axios, gatsby, gatsby-plugin-image, gatsby-plugin-netlify, gatsby-plugin-netlify-cms, gatsby-plugin-react-helmet, gatsby-plugin-sass, gatsby-plugin-sharp, gatsby-remark-copy-linked-files, gatsby-remark-images, gatsby-source-filesystem, gatsby-transformer-remark and gatsby-transformer-sharp
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: None
Comments: 0
(1 day ago)
(1 day ago)
dependencies javascript
Bumps axios to 1.12.0 and updates ancestor dependencies axios, gatsby, gatsby-plugin-image, gatsby-plugin-netlify, gatsby-plugin-netlify-cms, gatsby-plugin-react-helmet, gatsby-plugin-sass, gatsby-plugin-sharp, gatsby-remark-copy-linked-files, gatsby-remark-images, gatsby-source-filesystem, gatsby-transformer-remark and gatsby-transformer-sharp. These dependencies need to be updated together.
Updates axios
from 0.21.4 to 1.12.0
Release notes
Sourced from axios's releases.
Release v1.12.0
Release notes:
Bug Fixes
- adding build artifacts (9ec86de)
- dont add dist on release (a2edc36)
- fetch-adapter: set correct Content-Type for Node FormData (#6998) (a9f47af)
- node: enforce maxContentLength for data: URLs (#7011) (945435f)
- package exports (#5627) (aa78ac2)
- params: removing '[' and ']' from URL encode exclude characters (#3316) (#5715) (6d84189)
- release pr run (fd7f404)
- types: change the type guard on isCancel (#5595) (0dbb7fd)
Features
- adapter: surface low‑level network error details; attach original error via cause (#6982) (78b290c)
- fetch: add fetch, Request, Response env config variables for the adapter; (#7003) (c959ff2)
- support reviver on JSON.parse (#5926) (2a97634), closes #5924
- types: extend AxiosResponse interface to include custom headers type (#6782) (7960d34)
Contributors to this release
- Willian Agostini
- Dmitriy Mozgovoy
- khani
- Ameer Assadi
- Emiedonmokumo Dick-Boro
- Zeroday BYTE
- Jason Saayman
- 최예찬
- Gligor Kotushevski
- Aleksandar Dimitrov
Release v1.11.0
Release notes:
Bug Fixes
- form-data npm pakcage (#6970) (e72c193)
- prevent RangeError when using large Buffers (#6961) (a2214ca)
- types: resolve type discrepancies between ESM and CJS TypeScript declaration files (#6956) (8517aa1)
Contributors to this release
... (truncated)
Changelog
Sourced from axios's changelog.
1.12.0 (2025-09-11)
Bug Fixes
- adding build artifacts (9ec86de)
- dont add dist on release (a2edc36)
- fetch-adapter: set correct Content-Type for Node FormData (#6998) (a9f47af)
- node: enforce maxContentLength for data: URLs (#7011) (945435f)
- package exports (#5627) (aa78ac2)
- params: removing '[' and ']' from URL encode exclude characters (#3316) (#5715) (6d84189)
- release pr run (fd7f404)
- types: change the type guard on isCancel (#5595) (0dbb7fd)
Features
- adapter: surface low‑level network error details; attach original error via cause (#6982) (78b290c)
- fetch: add fetch, Request, Response env config variables for the adapter; (#7003) (c959ff2)
- support reviver on JSON.parse (#5926) (2a97634), closes #5924
- types: extend AxiosResponse interface to include custom headers type (#6782) (7960d34)
Contributors to this release
- Willian Agostini
- Dmitriy Mozgovoy
- khani
- Ameer Assadi
- Emiedonmokumo Dick-Boro
- Zeroday BYTE
- Jason Saayman
- 최예찬
- Gligor Kotushevski
- Aleksandar Dimitrov
1.11.0 (2025-07-22)
Bug Fixes
- form-data npm pakcage (#6970) (e72c193)
- prevent RangeError when using large Buffers (#6961) (a2214ca)
- types: resolve type discrepancies between ESM and CJS TypeScript declaration files (#6956) (8517aa1)
Contributors to this release
... (truncated)
Commits
0d8ad6e
chore(release): v1.12.0 (#7013)fd7f404
fix: release pr runa2edc36
fix: dont add dist on release9ec86de
fix: adding build artifacts945435f
fix(node): enforce maxContentLength for data: URLs (#7011)28e5e30
chore(sponsor): update sponsor block (#7005)d03f245
chore(CI): fixed release info script to use npm registry instead of git as fi...a0bc911
chore: removing dist files from src (#7002)c959ff2
feat(fetch): add fetch, Request, Response env config variables for the adapte...a9f47af
fix(fetch-adapter): set correct Content-Type for Node FormData (#6998)- Additional commits viewable in compare view
Updates gatsby
from 4.3.0 to 5.15.0
Release notes
Sourced from gatsby's releases.
gatsby@5.15.0
What's Changed
- fix: support node 22 by
@serhalp
in gatsbyjs/gatsby#39349- fix(gatsby): update socket.io to address vulnerable subdeps by
@serhalp
in gatsbyjs/gatsby#39352Node.js 22
This release formally introduces Node.js 22 support, which is officially tested and supported going forward.
If you wish to use Node.js 22 with Gatsby, we highly recommend using the latest 22.x release, as there are known issues with some older 22.x versions that Gatsby is unable to work around at this time.
⚠️ Known Issue:
gatsby develop
fails with Node.js 22.7.0, 22.8.0, and 22.9.0There is a critical bug in Node.js (nodejs/node#55145?) affecting versions 22.7.0, 22.8.0, and 22.9.0 that causes
gatsby develop
to fail with the error reported in gatsbyjs/gatsby#39068.👉🏼 To avoid this, use Node.js 22.10.0 or later. (You can also use 22.6.0 or earlier.)
⚠️ Known Issue: Page loads may hang in dev with experimental
DEV_SSR
enabled and Node.js ≥22.14.0 (or ≥20.19.0)This will not affect most users.
A change landed in Node.js 20.19.0 and 22.14.0 results in requests to the
gatsby develop
dev server to occasionally hang for 15 seconds. This can only occur if you have opted in to the experimentalDEV_SSR
flag.👉🏼 To avoid this, disable the experimental
DEV_SSR
flag. (You can also downgrade to Node.js 22.13.1 or earlier, 20.18.3 or earlier, or 18.x.)New Contributors
Thank you!
@pajosieg
made their first contribution in gatsbyjs/gatsby#39169@johnmurphy01
made their first contribution in gatsbyjs/gatsby#39324@shrisoundharyaa
made their first contribution in gatsbyjs/gatsby#39286Full Changelog: https://github.com/gatsbyjs/gatsby/compare/gatsby@5.14.6...gatsby@5.15.0
gatsby@5.14.6
2025-08-06
What's Changed
- fix: don't treat timestamps as dynamic paths (#39340) by
@gatsbybot
in gatsbyjs/gatsby#39341- fix: use forked devcert to avoid pulling transitive deps from its @types/* deps (#39343) by
@gatsbybot
in gatsbyjs/gatsby#39345
- This fixes npm install errors/warnings with Node.js 18 that look like
error glob@11.0.3: The engine "node" is incompatible with this module. Expected version "20 || >=22". Got "18.6.0"
Full Changelog: https://github.com/gatsbyjs/gatsby/compare/gatsby@5.14.5...gatsby@5.14.6
gatsby@5.14.5
2025-06-19
... (truncated)
Commits
e3d0717
chore(release): Publish7451d2f
fix: support node 22 (#39349)c3708b0
chore: remove Gatsby Discord references (#39351)6ba3b68
fix(gatsby): update socket.io to address vulnerable subdeps (#39352)19a8015
chore(renovate): remove invalid optionf732190
chore: simplify Renovate setup (#39339)1711f91
chore: relocate deprecated packages (#39350)647ea2c
ci: improve parallelisation of jobs (#39354)d3ec326
fix(deps): update starters and examples - gatsby (#39267)79a8689
chore(changelogs): update changelogs (#39346)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by serhalp-netlify, a new releaser for gatsby since your current version.
Updates gatsby-plugin-image
from 2.3.0 to 3.15.0
Release notes
Sourced from gatsby-plugin-image's releases.
gatsby-source-wordpress@7.13.5 and 6 more...
2024-08-26
Updated packages
- gatsby-source-wordpress@7.13.5
- gatsby-remark-responsive-iframe@6.13.2
- gatsby-remark-prismjs@7.13.2
- gatsby-remark-images@7.13.2
- gatsby-remark-images@6.13.2
- gatsby-remark-graphviz@5.13.2
- gatsby-remark-copy-linked-files@6.13.2
- gatsby-plugin-offline@6.13.3
What's Changed
- fix: pin cheerio (#39066) by
@gatsbybot
in gatsbyjs/gatsby#39069See full release notes: gatsbyjs/gatsby#39070
v3.14 (September 2021 #1)
Welcome to
gatsby@3.14.0
release (September 2021 #1)This is the final minor release for gatsby v3. Gatsby v4 beta is already published behind the
next
npm tag and the next stable release will begatsby@4.0.0
. See what's inside!We will keep publishing patches for 3.14.x with hotfixes until
4.0.0
stable is published and at least several weeks after.Key highlights of this release:
- Better UX for navigation in the middle of deployment
- New developer tools -
createPages
snippet in GraphiQL and new GraphQL capability- Preparations for gatsby v4 - API deprecations; migration guide; docs
- Improvements for
gatsby-source-drupal
- New home for
gatsby-plugin-netlify
Also, check out notable bugfixes.
Bleeding Edge: Want to try new features as soon as possible? Install
gatsby@next
and let us know if you have any issues.v3.13 (August 2021 #3)
Welcome to
gatsby@3.13.0
release (August 2021 #3)Key highlights of this release:
- Improved Changelogs - Better structured and easier to read
sharp
v0.29 - Reduced install size, improved encoding time, and improved AVIF image quality- Faster Sourcing for
gatsby-source-drupal
- Speed up fetching data by around 4x
... (truncated)
Changelog
Sourced from gatsby-plugin-image's changelog.
3.15.0 (2025-08-27)
Bug Fixes
3.14.0 (2024-11-06)
Bug Fixes
3.13.1 (2024-01-23)
Note: Version bump only for package gatsby-plugin-image
3.13.0 (2023-12-18)
Note: Version bump only for package gatsby-plugin-image
3.12.3 (2023-10-26)
Note: Version bump only for package gatsby-plugin-image
3.12.2 (2023-10-20)
Note: Version bump only for package gatsby-plugin-image
3.12.1 (2023-10-09)
Note: Version bump only for package gatsby-plugin-image
3.12.0 (2023-08-24)
Features
Bug Fixes
... (truncated)
Commits
e3d0717
chore(release): Publishbaa1b8e
chore(release): Publish next5717252
fix(deps): update dependency chokidar to ^3.6.0 (#39174)17baffb
chore(release): Publish next pre-minor5f44fcd
chore(changelogs): update changelogs (#39156)2c75bc5
chore(changelogs): update changelogs (#38821)94b2482
chore(release): Publish next196618a
chore(release): Publish nextcb33fe5
fix(deps): update dependency fs-extra to ^11.2.0 (#38727)4f8c065
chore(changelogs): update changelogs (#38769)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by serhalp-netlify, a new releaser for gatsby-plugin-image since your current version.
Updates gatsby-plugin-netlify
from 5.0.0 to 5.1.1
Release notes
Sourced from gatsby-plugin-netlify's releases.
v5.1.1
5.1.1 (2023-09-25)
Bug Fixes
- apply caching headers to all produced assets (#217) (31e9249)
- deps: update dependency fs-extra to v11 (#256) (aa3184c)
- add path to
transformHeaders
(#276)gatsby-plugin-netlify v5.1.0
Features
Bug Fixes
- deps: update dependency
@babel/runtime
to v7.19.4 (#186) (0f51e02)- deps: update dependency
@babel/runtime
to v7.20.0 (#192) (214e991)gatsby-plugin-netlify v5.0.1
Bug Fixes
Changelog
Sourced from gatsby-plugin-netlify's changelog.
5.1.1 (2023-09-25)
Bug Fixes
- apply caching headers to all produced assets (#217) (31e9249)
- deps: update dependency fs-extra to v11 (#256) (aa3184c)
- add path to
transformHeaders
(#276)5.1.0 (2022-11-30)
Features
Bug Fixes
- deps: update dependency
@babel/runtime
to v7.19.4 (#186) (0f51e02)- deps: update dependency
@babel/runtime
to v7.20.0 (#192) (214e991)5.0.1 (2022-07-25)
Bug Fixes
Commits
4b8eef4
chore(main): release 5.1.1 (#279)ca15fcd
add path to transformHeaders - resolves #275 (#276)2dc646e
chore(deps): update tibdex/github-app-token action to v1.9.0f17ba67
chore(deps): update jest monorepo to v29.5.5d194b97
chore(deps): update dependency@babel/core
to v7.22.202c59f20
chore(deps): update dependency typescript to v5 (#251)8f6c0ae
chore(deps): update googlecloudplatform/release-please-action action to v3 (#...c626aab
chore(deps): update dependency prettier to v3 (#263)aa3184c
fix(deps): update dependency fs-extra to v11 (#256)2caa46e
chore(deps): update dependency gatsby to v5.12.4- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by netlify-bot, a new releaser for gatsby-plugin-netlify since your current version.
Updates gatsby-plugin-netlify-cms
from 6.3.0 to 7.12.1
Release notes
Sourced from gatsby-plugin-netlify-cms's releases.
gatsby-source-wordpress@7.13.5 and 6 more...
2024-08-26
Updated packages
- gatsby-source-wordpress@7.13.5
- gatsby-remark-responsive-iframe@6.13.2
- gatsby-remark-prismjs@7.13.2
- gatsby-remark-images@7.13.2
- gatsby-remark-images@6.13.2
- gatsby-remark-graphviz@5.13.2
- gatsby-remark-copy-linked-files@6.13.2
- gatsby-plugin-offline@6.13.3
What's Changed
- fix: pin cheerio (#39066) by
@gatsbybot
in gatsbyjs/gatsby#39069See full release notes: gatsbyjs/gatsby#39070
Commits
7efd49e
chore(release): Publish6b6eeb7
chore(gatsby-plugin-netlify-cms): add deprecation notice (#38753) (#38754)a1c87bc
chore(release): Publish1ebae56
chore(release): Publish next635919f
fix(deps): update dependency html-webpack-plugin to ^5.5.3 for gatsby-plugin-...fd4d702
chore(changelogs): update changelogs (#38248)0991178
chore(release): Publish next pre-minorebe9bc6
chore(release): Publish next57a4af5
chore(changelogs): update changelogs (#38096)99664bc
chore(release): Publish next pre-minor- Additional commits viewable in compare view
Updates gatsby-plugin-react-helmet
from 5.3.0 to 6.15.0
Release notes
Sourced from gatsby-plugin-react-helmet's releases.
gatsby@5.15.0
What's Changed
- fix: support node 22 by
@serhalp
in gatsbyjs/gatsby#39349- fix(gatsby): update socket.io to address vulnerable subdeps by
@serhalp
in gatsbyjs/gatsby#39352Node.js 22
This release formally introduces Node.js 22 support, which is officially tested and supported going forward.
If you wish to use Node.js 22 with Gatsby, we highly recommend using the latest 22.x release, as there are known issues with some older 22.x versions that Gatsby is unable to work around at this time.
⚠️ Known Issue:
gatsby develop
fails with Node.js 22.7.0, 22.8.0, and 22.9.0There is a critical bug in Node.js (nodejs/node#55145?) affecting versions 22.7.0, 22.8.0, and 22.9.0 that causes
gatsby develop
to fail with the error reported in gatsbyjs/gatsby#39068.👉🏼 To avoid this, use Node.js 22.10.0 or later. (You can also use 22.6.0 or earlier.)
⚠️ Known Issue: Page loads may hang in dev with experimental
DEV_SSR
enabled and Node.js ≥22.14.0 (or ≥20.19.0)This will not affect most users.
A change landed in Node.js 20.19.0 and 22.14.0 results in requests to the
gatsby develop
dev server to occasionally hang for 15 seconds. This can only occur if you have opted in to the experimentalDEV_SSR
flag.👉🏼 To avoid this, disable the experimental
DEV_SSR
flag. (You can also downgrade to Node.js 22.13.1 or earlier, 20.18.3 or earlier, or 18.x.)New Contributors
Thank you!
@pajosieg
made their first contribution in gatsbyjs/gatsby#39169@johnmurphy01
made their first contribution in gatsbyjs/gatsby#39324@shrisoundharyaa
made their first contribution in gatsbyjs/gatsby#39286Full Changelog: https://github.com/gatsbyjs/gatsby/compare/gatsby@5.14.6...gatsby@5.15.0
gatsby@5.14.6
2025-08-06
What's Changed
- fix: don't treat timestamps as dynamic paths (#39340) by
@gatsbybot
in gatsbyjs/gatsby#39341- fix: use forked devcert to avoid pulling transitive deps from its @types/* deps (#39343) by
@gatsbybot
in gatsbyjs/gatsby#39345
- This fixes npm install errors/warnings with Node.js 18 that look like
error glob@11.0.3: The engine "node" is incompatible with this module. Expected version "20 || >=22". Got "18.6.0"
Full Changelog: https://github.com/gatsbyjs/gatsby/compare/gatsby@5.14.5...gatsby@5.14.6
gatsby@5.14.5
2025-06-19
... (truncated)
Changelog
Sourced from gatsby-plugin-react-helmet's changelog.
6.15.0 (2025-08-27)
Note: Version bump only for package gatsby-plugin-react-helmet
6.14.0 (2024-11-06)
Note: Version bump only for package gatsby-plugin-react-helmet
6.13.1 (2024-01-23)
Note: Version bump only for package gatsby-plugin-react-helmet
6.13.0 (2023-12-18)
Note: Version bump only for package gatsby-plugin-react-helmet
6.12.0 (2023-08-24)
Note: Version bump only for package gatsby-plugin-react-helmet
6.11.0 (2023-06-15)
Note: Version bump only for package gatsby-plugin-react-helmet
6.10.0 (2023-05-16)
Note: Version bump only for package gatsby-plugin-react-helmet
6.9.0 (2023-04-18)
Note: Version bump only for package gatsby-plugin-react-helmet
6.8.0 (2023-03-21)
... (truncated)
Commits
e3d0717
chore(release): Publish17baffb
chore(release): Publish next pre-minor5f44fcd
chore(changelogs): update changelogs (#39156)2c75bc5
chore(changelogs): update changelogs (#38821)94b2482
chore(release): Publish next196618a
chore(release): Publish next4f8c065
chore(changelogs): update changelogs (#38769)eed07f3
chore(release): Publish next pre-minordb248ab
chore(changelogs): update changelogs (#38526)e6e2fb4
chore(release): Publish next pre-minor- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by serhalp-netlify, a new releaser for gatsby-plugin-react-helmet since your current version.
Updates gatsby-plugin-sass
from 5.3.0 to 6.15.0
Release notes
Sourced from gatsby-plugin-sass's releases.
gatsby@5.15.0
What's Changed
- fix: support node 22 by
@serhalp
in gatsbyjs/gatsby#39349- fix(gatsby): update socket.io to address vulnerable subdeps by
@serhalp
in gatsbyjs/gatsby#39352Node.js 22
This release formally introduces Node.js 22 support, which is officially tested and supported going forward.
If you wish to use Node.js 22 with Gatsby, we highly recommend using the latest 22.x release, as there are known issues with some older 22.x versions that Gatsby is unable to work around at this time.
⚠️ Known Issue:
gatsby develop
fails with Node.js 22.7.0, 22.8.0, and 22.9.0There is a critical bug in Node.js (nodejs/node#55145?) affecting versions 22.7.0, 22.8.0, and 22.9.0 that causes
gatsby develop
to fail with the error reported in gatsbyjs/gatsby#39068.👉🏼 To avoid this, use Node.js 22.10.0 or later. (You can also use 22.6.0 or earlier.)
⚠️ Known Issue: Page loads may hang in dev with experimental
DEV_SSR
enabled and Node.js ≥22.14.0 (or ≥20.19.0)This will not affect most users.
A change landed in Node.js 20.19.0 and 22.14.0 results in requests to the
gatsby develop
dev server to occasionally hang for 15 seconds. This can only occur if you have opted in to the experimentalDEV_SSR
flag.👉🏼 To avoid this, disable the experimental
DEV_SSR
flag. (You can also downgrade to Node.js 22.13.1 or earlier, 20.18.3 or earlier, or 18.x.)New Contributors
Thank you!
@pajosieg
made their first contribution in gatsbyjs/gatsby#39169@johnmurphy01
made their first contribution in gatsbyjs/gatsby#39324@shrisoundharyaa
made their first contribution in gatsbyjs/gatsby#39286Full Changelog: https://github.com/gatsbyjs/gatsby/compare/gatsby@5.14.6...gatsby@5.15.0
gatsby@5.14.6
2025-08-06
What's Changed
- fix: don't treat timestamps as dynamic paths (#39340) by
@gatsbybot
in gatsbyjs/gatsby#39341- fix: use forked devcert to avoid pulling transitive deps from its @types/* deps (#39343) by
@gatsbybot
in gatsbyjs/gatsby#39345
- This fixes npm install errors/warnings with Node.js 18 that look like
error glob@11.0.3: The engine "node" is incompatible with this module. Expected version "20 || >=22". Got "18.6.0"
Full Changelog: https://github.com/gatsbyjs/gatsby/compare/gatsby@5.14.5...gatsby@5.14.6
gatsby@5.14.5
2025-06-19
... (truncated)
Changelog
Sourced from gatsby-plugin-sass's changelog.
6.15.0 (2025-08-27)
Note: Version bump only for package gatsby-plugin-sass
6.14.0 (2024-11-06)
Chores
6.13.1 (2024-01-23)
Note: Version bump only for package gatsby-plugin-sass
6.13.0 (2023-12-18)
Note: Version bump only for package gatsby-plugin-sass
6.12.3 (2023-10-26)
Note: Version bump only for package gatsby-plugin-sass
6.12.2 (2023-10-20)
Note: Version bump only for package gatsby-plugin-sass
6.12.1 (2023-10-09)
Note: Version bump only for package gatsby-plugin-sass
6.12.0 (2023-08-24)
Note: Version bump only for package gatsby-plugin-sass
6.11.0 (2023-06-15)
Note: Version bump only for package gatsby-plugin-sass
6.10.0 (2023-05-16)
... (truncated)
Commits
e3d0717
chore(release): Publish17baffb
chore(release): Publish next pre-minor5f44fcd
chore(changelogs): update changelogs (#39156)2c75bc5
chore(changelogs): update changelogs (#38821)94b2482
chore(release): Publish next196618a
chore(release): Publish next24afe95
chore(deps): update dependency autoprefixer to ^10.4.16 for gatsby-plugin-sas...4f8c065
chore(changelogs): update changelogs (#38769)-
Pull Request Statistics
Commits:
1Files Changed:
2Additions:
+15173Deletions:
-15472
Package Dependencies
gatsby-transformer-sharp
npm
Technical Details
ID: | 7578781 |
UUID: | 2820901125 |
Node ID: | PR_kwDOI6_Xgs6oI4kF |
Host: | GitHub |
Repository: | blueprintmrk/gatsby-starter-netlify-cms |
Merge State: | Unknown |