RANGER-5666: update graalvm version to 25.1.3#1052
Open
mneethiraj wants to merge 1 commit into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the project’s GraalVM dependency version used across Ranger modules, aiming to align Graal.js/script-engine artifacts with a newer GraalVM release.
Changes:
- Bumped the
graalvm.versionMaven property from23.0.11to25.1.3. - Adjusted the
org.graalvm.js:jsdependency declaration inagents-commonby adding an explicit artifact type.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pom.xml | Updates the central graalvm.version property to 25.1.3. |
| agents-common/pom.xml | Modifies the Graal.js dependency declaration (adds an explicit <type>). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
182
to
186
| <groupId>org.graalvm.js</groupId> | ||
| <artifactId>js</artifactId> | ||
| <version>${graalvm.version}</version> | ||
| <type>pom</type> | ||
| </dependency> |
Contributor
There was a problem hiding this comment.
At GraalVM 25.1.3, org.graalvm.js:js is published as a POM aggregator, not a JAR:
js-25.1.3.jar → 404 (does not exist)
js-25.1.3.pom → exists, and pulls in js-language + truffle-runtime
Without pom, Maven defaults to type=jar and will fail to resolve the dependency (or behave incorrectly).
GraalVM’s own docs for 25.x require:
org.graalvm.js js 25.1.3 pom
ramackri
approved these changes
Jul 9, 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.
What changes were proposed in this pull request?
Updated graalvm version from 23.0.11 to 25.1.3
How was this patch tested?
Verified that build with unit tests completed successfully