Fix: Update Vue and related dependencies to version 3.5.0 to resolve peer dependency conflict#4324
Closed
GOODBOY008 wants to merge 1 commit intoapache:devfrom
Closed
Fix: Update Vue and related dependencies to version 3.5.0 to resolve peer dependency conflict#4324GOODBOY008 wants to merge 1 commit intoapache:devfrom
GOODBOY008 wants to merge 1 commit intoapache:devfrom
Conversation
Member
Author
|
@wolfboys fix docker build ci failure :https://github.com/apache/streampark/actions/runs/21084875862/job/60646219501 |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates Vue and related core dependencies from version 3.3.4 to 3.5.0 to resolve a peer dependency conflict that was causing Docker CI build failures. The update ensures compatibility with vue-router@^4.2.4 which requires Vue 3.5.0 or higher.
Changes:
- Updated Vue core from 3.3.4 to 3.5.0
- Updated Vue compiler and runtime packages to match the core version
- All updates maintain version consistency across the Vue ecosystem
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
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.



Summary
^3.3.4to^3.5.0to resolve peer dependency conflict withvue-router@^4.2.4@vue/runtime-core,@vue/shared, and@vue/compiler-sfcto^3.5.0for consistencyBackground
The Docker CI build was failing with the following error:
This occurred because
vue-router@^4.2.4requiresvue@^3.5.0, but the project was usingvue@3.3.4.Changes
Updated the following dependencies in
streampark-console/streampark-console-webapp/package.json:vue:^3.3.4→^3.5.0@vue/runtime-core:^3.3.4→^3.5.0@vue/shared:^3.3.4→^3.5.0@vue/compiler-sfc:^3.3.4→^3.5.0