Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/gatsby-source-drupal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"axios": "^0.18.0",
"axios": "^1.12.0",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This major version upgrade of axios introduces breaking changes that affect the project. The error handling in packages/gatsby-source-drupal/src/gatsby-node.js (line 64) uses error.data to log details. In [email protected], this property is removed; the data is now located at error.response.data. This will cause a loss of error information in logs, making debugging significantly more difficult. The error handling logic must be updated to be compatible with the new axios version.

"bluebird": "^3.5.0",
"gatsby-source-filesystem": "^2.0.9",
"lodash": "^4.17.10"
Expand Down