Closed
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-authored-by: callicles <4429209+callicles@users.noreply.github.com>
callicles
marked this pull request as ready for review
February 12, 2026 22:23
Copilot
AI
changed the title
[WIP] Update axios dependency to specific latest version
Update axios to 1.13.5 with pinned versions and pnpm catalog
Feb 12, 2026
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
…g axios 1.13.5 Co-authored-by: callicles <4429209+callicles@users.noreply.github.com>
Copilot
AI
changed the title
Update axios to 1.13.5 with pinned versions and pnpm catalog
Fix: Restore libc platform constraints stripped during axios update
Feb 12, 2026
callicles
enabled auto-merge
February 13, 2026 16:13
callicles
approved these changes
Feb 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The axios update inadvertently stripped 49 libc constraint fields from pnpm-lock.yaml. Running
pnpm install --no-frozen-lockfileregenerated the lockfile but lost platform metadata essential for musl vs glibc binary resolution on Linux systems. Without these constraints, pnpm may install glibc binaries on Alpine containers (or vice versa), causing runtime crashes.Changes
Restored original lockfile with libc constraints, manually updated axios 1.7.9 → 1.13.5
axios: '1.13.5'Result: 52 libc constraints preserved across native binary packages:
Technical Notes
pnpm lockfile v9 requires libc constraints for correct platform-specific binary installation:
Avoid
pnpm install --no-frozen-lockfilein this repo - it strips these constraints. Use targetedpnpm update <package>or manual lockfile edits.✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.
Note
Low Risk
Dependency-only bump with minimal surface area; primary risk is runtime behavior changes in
axioscompared to1.7.9.Overview
Updates
axiosacross the repo to1.13.5, switching templatepackage.jsondependencies from caret ranges to a pinned version.Refreshes the pnpm catalog and lockfile to resolve
axios@1.13.5(replacing1.7.9) while keeping the rest of dependency graph unchanged.Written by Cursor Bugbot for commit b2ef670. This will update automatically on new commits. Configure here.