Align runtime and toolchain versions to axios 1.6.1 / Node 22.22.3 / Vite 7.3.5 / Vitest 4.1.8#798
Merged
nsano-rururu merged 3 commits intoJun 2, 2026
Conversation
Copilot
AI
changed the title
[WIP] Resolve issues with axios, node, vite, and vitest versions
Align runtime and toolchain versions to axios 1.6.1 / Node 22.22.3 / Vite 7.3.5 / Vitest 4.1.8
Jun 1, 2026
Collaborator
|
@copilot |
Contributor
Author
Updated the Dockerfile Node base image to |
Contributor
There was a problem hiding this comment.
Pull request overview
Aligns the repository’s pinned runtime and frontend toolchain dependency versions to a specific requested set, ensuring local development (nvm), container builds, and npm resolution are consistent.
Changes:
- Bumps the Node runtime pin from
22.22.2to22.22.3in both.nvmrcand the Docker base image. - Aligns declared dependencies/devDependencies to
axios@1.6.1,vite@^7.3.5,vitest@^4.1.8, and@vitest/ui@^4.1.8. - Regenerates
package-lock.jsonto match the updated version graph.
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
package.json |
Updates declared runtime/tooling dependency versions (axios, Vite, Vitest, Vitest UI). |
package-lock.json |
Refreshes lockfile resolution to the new dependency graph and exact resolved versions. |
Dockerfile |
Aligns container Node base image version with the runtime pin. |
.nvmrc |
Updates local Node version pin to 22.22.3. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
nsano-rururu
approved these changes
Jun 2, 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.
This updates the repo’s declared runtime and frontend toolchain versions to the requested set. The change is limited to version declarations and lockfile resolution for consistency across environments.
Runtime pin
.nvmrcupdated from22.22.2to22.22.3.Dependency alignment
package.jsonupdated to:axios: 1.6.1vite: ^7.3.5vitest: ^4.1.8@vitest/ui: ^4.1.8Lockfile consistency
package-lock.jsonregenerated to reflect the updated version graph.{ "dependencies": { "axios": "1.6.1" }, "devDependencies": { "vite": "^7.3.5", "vitest": "^4.1.8", "@vitest/ui": "^4.1.8" } }