-
Notifications
You must be signed in to change notification settings - Fork 1.1k
RANGER-5490 : Update webpack version from from 5.94.0 to 5.105.0 #845
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Bumps the React Admin UI build toolchain dependencies to address the requested webpack upgrade.
Changes:
- Upgraded
webpackfrom^5.94.0to^5.105.0 - Upgraded
webpack-clifrom^5.0.0to^6.0.1 - Upgraded
webpack-mergefrom^5.8.0to^6.0.1
Files not reviewed (1)
- security-admin/src/main/webapp/react-webapp/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "webpack": "^5.94.0", | ||
| "webpack-cli": "^5.0.0", | ||
| "webpack": "^5.105.0", | ||
| "webpack-cli": "^6.0.1", |
Copilot
AI
Feb 11, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
webpack-dev-server@^5.2.2 typically has a peer dependency range that supports webpack-cli v4/v5, so bumping webpack-cli to ^6.0.1 can cause peer-dependency resolution failures (or hard install failures with strict peer deps). Consider keeping webpack-cli on ^5.x for compatibility, or bump webpack-dev-server to a version that explicitly supports webpack-cli@6.
| "webpack-cli": "^6.0.1", | |
| "webpack-cli": "^5.1.4", |
| "webpack-cli": "^6.0.1", | ||
| "webpack-dev-server": "^5.2.2", | ||
| "webpack-merge": "^5.8.0" | ||
| "webpack-merge": "^6.0.1" |
Copilot
AI
Feb 11, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a major-version bump (webpack-merge 5 -> 6). If the project has custom webpack config code that imports/uses webpack-merge, the API/behavior changes can break builds without any code changes in this PR. If the upgrade is required, it would help to (a) call out the compatibility/behavior change in the PR description, or (b) keep webpack-merge on ^5.x unless a corresponding config change is included.
| "webpack-merge": "^6.0.1" | |
| "webpack-merge": "^5.10.0" |
What changes were proposed in this pull request?
RANGER-5490 : Bump webpack from 5.94.0 to 5.105.0 in security-admin/src/main/webapp/react-webapp/package.json.
How was this patch tested?
Tested Ranger Admin UI coming up successfully with this changes.
Successful completion of build command :
mvn clean compile package -DskipTests