Skip to content
Open
Show file tree
Hide file tree
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
195 changes: 155 additions & 40 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.4.0",
"axios": "^1.13.1",

Choose a reason for hiding this comment

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

high

The upgrade to axios@1.13.1 is a large version jump. It's worth noting that axios@1.12.0 introduced a change to how URL parameters are encoded. Specifically, [ and ] characters are now URL-encoded in query parameters to better align with RFC3986. This may affect how array parameters are sent and interpreted by your backend, especially if it has specific expectations for the format of array parameters (e.g., param[]=value1&param[]=value2). This change could potentially introduce subtle bugs if your backend parsing is strict.

"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.26.2",
Expand Down