Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion klab.services.reasoner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-rio-datatypes</artifactId>
<version>4.3.9</version>
<version>5.3.1</version>
</dependency>
Comment on lines 48 to 50

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 RDF4J version mismatch across sibling modules

rdf4j-rio-datatypes is now on 5.3.1 while rdf4j-rio-turtle (line 44) stays on 4.3.7 and rdf4j-rio-languages (line 54) stays on 4.3.9. All three artifacts are part of the same RDF4J Rio framework and are designed to ship and run together at the same version. rdf4j-rio-turtle and rdf4j-rio-languages declare a transitive dependency on rdf4j-rio-datatypes at a 4.x version; the explicit 5.3.1 declaration here overrides that transitive pin, potentially exposing the 4.x modules to a rdf4j-rio-datatypes API that changed across the major version boundary. Either all three should be bumped to 5.3.1, or this bump should be reverted until the full suite can be aligned.

<dependency>
<groupId>org.eclipse.rdf4j</groupId>
Expand Down
Loading