Skip to content
Success

Changes

Summary

  1. GH-5000: Tone down WARN log output for frequent, non-critical events (commit: 50b0534) (details)
  2. GH-5009: Fix position of OPTIONAL in RelationMapBuilder (commit: 9e0b5b2) (details)
  3. GH-5027 improve logging in the ShaclSail (commit: 79496bb) (details)
  4. GH-5028 Reduce duplicate use of Unique plan node (commit: 87caad7) (details)
  5. GH-5030: fix FedXDataset support for queries with FROM clauses (commit: 208459f) (details)
  6. GH-5035 update version of mapdb and dependency manage kerby to 1.1.1 since this one has good enough license info for ClearlyDefined (commit: 9aaaf91) (details)
  7. GH-5033: fix pushing of limits for simple ASK queries in FedX (commit: 099646a) (details)
  8. GH-5032 add support for overriding SECURE_MODE and WHITELIST JSON-LD setting (commit: 689d1eb) (details)
  9. cleanup all rio settings that should have used one of the specialized impelementations that supports overriding with system property (commit: 4773b78) (details)
  10. fix test (commit: 842c175) (details)
  11. GH-5041 register glassfish implementation of Jakarta JSON with SPI (commit: 81d2d78) (details)
  12. GH-5040 add the old rdf:type when using legacy vocabulary (commit: 121240d) (details)
  13. release 5.0.0 (commit: 8b31432) (details)
  14. next development iteration: 5.0.1-SNAPSHOT (commit: 1b7a960) (details)
  15. set correct version (commit: 70703fc) (details)
Commit 50b05342e81ecb9fa81551d340e7136dc61ec552 by Florian Kleedorfer
GH-5000: Tone down WARN log output for frequent, non-critical events
(commit: 50b0534)
The file was modified spring-components/rdf4j-spring/src/main/java/org/eclipse/rdf4j/spring/dao/support/operation/TupleQueryResultConverter.java (diff)
Commit 9e0b5b2b635176501a9cc80808ad2a0ed620bfcd by Florian Kleedorfer
GH-5009: Fix position of OPTIONAL in RelationMapBuilder
(commit: 9e0b5b2)
The file was addedspring-components/rdf4j-spring/src/test/java/org/eclipse/rdf4j/spring/dao/support/RelationMapBuilderTests.java
The file was modified spring-components/rdf4j-spring/src/main/java/org/eclipse/rdf4j/spring/dao/support/RelationMapBuilder.java (diff)
Commit 79496bbfdb72afc5a3d8b514712d8ea2056a0f00 by Håvard Mikkelsen Ottestad
GH-5027 improve logging in the ShaclSail
(commit: 79496bb)
The file was modified core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/ast/planNodes/PatternFilter.java (diff)
The file was modified core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/ast/planNodes/GroupByCountFilter.java (diff)
The file was modified core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/ast/planNodes/AbstractPairwisePlanNode.java (diff)
The file was modified core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/ast/planNodes/DatatypeFilter.java (diff)
The file was modified core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/ast/planNodes/LanguageInFilter.java (diff)
The file was modified core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/ast/planNodes/NodeKindFilter.java (diff)
The file was modified core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/ast/planNodes/ExternalFilterByQuery.java (diff)
Commit 87caad7077d0fe0a92d5b74ee81542067b21e982 by Håvard Mikkelsen Ottestad
GH-5028 Reduce duplicate use of Unique plan node
(commit: 87caad7)
The file was modified core/sail/shacl/src/main/java/org/eclipse/rdf4j/sail/shacl/ast/planNodes/Unique.java (diff)
Commit 208459fdc5d6640df4ac5f4664d1ebf337126fd4 by Andreas Schwarte
GH-5030: fix FedXDataset support for queries with FROM clauses

FedX supports interpret the Dataset being defined on the query: if it is
of type FedXDataset, the federation is reduced to the members defined by
FedXDataset#getEndpoints().

This is a nice means to evaluate a query on a subset of the federation
and is generally working fine.

When the query contains a FROM clause, however, the externally passed
Dataset is wrapped into a FallbackDataset (which internally keeps the
FedXDataset as primary one.

This change now inspects the FallbackDataset and unwraps it to reduce
the members. Note that for execution still the "FallbackDataset" is
used.
(commit: 208459f)
The file was modified core/query/src/main/java/org/eclipse/rdf4j/query/impl/FallbackDataset.java (diff)
The file was modified tools/federation/src/test/java/org/eclipse/rdf4j/federated/BasicTests.java (diff)
The file was modified tools/federation/src/main/java/org/eclipse/rdf4j/federated/evaluation/FederationEvalStrategy.java (diff)
Commit 9aaaf914fc074ae0da03b7a55c1120278d507e84 by Håvard Mikkelsen Ottestad
GH-5035 update version of mapdb and dependency manage kerby to 1.1.1 since this one has good enough license info for ClearlyDefined
(commit: 9aaaf91)
The file was modified core/collection-factory/mapdb3/pom.xml (diff)
The file was modified pom.xml (diff)
Commit 099646a672339f522148fee9659d2aba968fed83 by Andreas Schwarte
GH-5033: fix pushing of limits for simple ASK queries in FedX

This change makes sure to push limits for simple ASK queries with a
single statement patterns into the query.

The optimization is the same as applied for simple SELECT queries with a
LIMIT.

Rational: if the limit is not pushed, the federation engine will first fetch all data for the statement pattern and only then locally check if there is at least one, i.e it will cause performance issues and memory pressure when there are many triples matching the statement pattern (for instance millions of persons).
(commit: 099646a)
The file was modified tools/federation/src/main/java/org/eclipse/rdf4j/federated/optimizer/LimitOptimizer.java (diff)
The file was addedtools/federation/src/test/java/org/eclipse/rdf4j/federated/LimitTests.java
Commit 689d1ebfadd5015984e8d0ce2dfdf31ad97b6d34 by Håvard Mikkelsen Ottestad
GH-5032 add support for overriding SECURE_MODE and WHITELIST JSON-LD setting
(commit: 689d1eb)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/JSONLDSettings.java (diff)
The file was modified docker/Dockerfile (diff)
The file was modified core/rio/api/pom.xml (diff)
The file was addedcore/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/SetRioSetting.java
Commit 4773b78d4863df6a8e97f73182d2b872d236a705 by Håvard Mikkelsen Ottestad
cleanup all rio settings that should have used one of the specialized impelementations that supports overriding with system property
(commit: 4773b78)
The file was modified core/rio/ntriples/src/main/java/org/eclipse/rdf4j/rio/ntriples/NTriplesParserSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/XMLParserSettings.java (diff)
The file was modified core/rio/turtle/src/main/java/org/eclipse/rdf4j/rio/turtle/TurtleParserSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/TriXParserSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/BasicParserSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/TurtleParserSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/BasicWriterSettings.java (diff)
The file was modified core/rio/binary/src/main/java/org/eclipse/rdf4j/rio/binary/BinaryRDFWriterSettings.java (diff)
The file was modified core/rio/jsonld/src/main/java/org/eclipse/rdf4j/rio/jsonld/JSONLDParser.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/NTriplesParserSettings.java (diff)
The file was modified core/rio/jsonld/src/main/java/org/eclipse/rdf4j/rio/jsonld/CachingDocumentLoader.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/JSONSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/RDFJSONParserSettings.java (diff)
The file was addedcore/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/IntegerRioSetting.java
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/RDFJSONWriterSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/NTriplesWriterSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/XMLWriterSettings.java (diff)
The file was modified core/rio/jsonld/src/test/java/org/eclipse/rdf4j/rio/jsonld/JSONLDParserCustomTest.java (diff)
The file was modified core/rio/trix/src/main/java/org/eclipse/rdf4j/rio/trix/TriXParserSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/BinaryRDFWriterSettings.java (diff)
The file was modified core/rio/turtle/src/main/java/org/eclipse/rdf4j/rio/turtle/TurtleWriterSettings.java (diff)
The file was modified core/queryresultio/api/src/main/java/org/eclipse/rdf4j/query/resultio/BasicQueryWriterSettings.java (diff)
The file was modified core/repository/http/src/main/java/org/eclipse/rdf4j/repository/http/helpers/HTTPRepositorySettings.java (diff)
The file was modified core/rio/rdfjson/src/main/java/org/eclipse/rdf4j/rio/rdfjson/RDFJSONWriterSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/RDFaParserSettings.java (diff)
The file was modified core/rio/ntriples/src/main/java/org/eclipse/rdf4j/rio/ntriples/NTriplesWriterSettings.java (diff)
The file was modified core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/TurtleWriterSettings.java (diff)
The file was modified core/rio/jsonld/src/test/java/org/eclipse/rdf4j/rio/jsonld/JSONLDParserCustomTest.java (diff)
Commit 81d2d78bc45e5b15f4f7c2f84d6250bce830686e by Håvard Mikkelsen Ottestad
GH-5041 register glassfish implementation of Jakarta JSON with SPI
(commit: 81d2d78)
The file was addedcore/rio/jsonld/src/main/resources/META-INF/services/jakarta.json.spi.JsonProvider
The file was modified core/rio/jsonld/src/test/java/org/eclipse/rdf4j/rio/jsonld/JSONLDParserCustomTest.java (diff)
Commit 121240d74760c59d3e2fc0c749b567a5b083ebf5 by Håvard Mikkelsen Ottestad
GH-5040 add the old rdf:type when using legacy vocabulary
(commit: 121240d)
The file was modified core/repository/api/src/main/java/org/eclipse/rdf4j/repository/config/RepositoryConfig.java (diff)
Commit 8b31432b39984059d3c4b0e17777aa7572da884d by Håvard Mikkelsen Ottestad
release 5.0.0

Signed-off-by: Håvard Ottestad <hmottestad@gmail.com>
(commit: 8b31432)
The file was modified core/repository/pom.xml (diff)
The file was modified core/rio/trix/pom.xml (diff)
The file was modified compliance/geosparql/pom.xml (diff)
The file was modified core/queryresultio/text/pom.xml (diff)
The file was modified tools/console/pom.xml (diff)
The file was modified bom/pom.xml (diff)
The file was modified core/sail/extensible-store/pom.xml (diff)
The file was modified tools/server/pom.xml (diff)
The file was modified core/repository/manager/pom.xml (diff)
The file was modified core/collection-factory/pom.xml (diff)
The file was modified core/repository/sail/pom.xml (diff)
The file was modified testsuites/queryresultio/pom.xml (diff)
The file was modified assembly-descriptors/pom.xml (diff)
The file was modified tools/federation/pom.xml (diff)
The file was modified tools/server-spring/pom.xml (diff)
The file was modified core/collection-factory/mapdb/pom.xml (diff)
The file was modified core/sail/solr/pom.xml (diff)
The file was modified core/collection-factory/mapdb3/pom.xml (diff)
The file was modified testsuites/benchmark/pom.xml (diff)
The file was modified tools/pom.xml (diff)
The file was modified core/queryrender/pom.xml (diff)
The file was modified assembly/pom.xml (diff)
The file was modified core/http/protocol/pom.xml (diff)
The file was modified core/sail/elasticsearch/pom.xml (diff)
The file was modified spring-components/pom.xml (diff)
The file was modified core/sail/shacl/pom.xml (diff)
The file was modified core/model-vocabulary/pom.xml (diff)
The file was modified core/repository/event/pom.xml (diff)
The file was modified core/http/pom.xml (diff)
The file was modified testsuites/repository/pom.xml (diff)
The file was modified compliance/sparql/pom.xml (diff)
The file was modified core/collection-factory/api/pom.xml (diff)
The file was modified core/repository/http/pom.xml (diff)
The file was modified core/repository/contextaware/pom.xml (diff)
The file was modified core/model-api/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified core/common/order/pom.xml (diff)
The file was modified core/queryparser/api/pom.xml (diff)
The file was modified core/sail/api/pom.xml (diff)
The file was modified tools/runtime/pom.xml (diff)
The file was modified core/client/pom.xml (diff)
The file was modified core/rio/rdfjson/pom.xml (diff)
The file was modified compliance/repository/pom.xml (diff)
The file was modified core/rio/languages/pom.xml (diff)
The file was modified core/queryresultio/sparqlxml/pom.xml (diff)
The file was modified spring-components/spring-boot-sparql-web/pom.xml (diff)
The file was modified core/model/pom.xml (diff)
The file was modified core/queryresultio/pom.xml (diff)
The file was modified core/common/pom.xml (diff)
The file was modified testsuites/sparql/pom.xml (diff)
The file was modified core/rio/turtle/pom.xml (diff)
The file was modified core/queryparser/pom.xml (diff)
The file was modified core/rio/ntriples/pom.xml (diff)
The file was modified core/sail/nativerdf/pom.xml (diff)
The file was modified core/common/iterator/pom.xml (diff)
The file was modified core/http/client/pom.xml (diff)
The file was modified core/sail/inferencer/pom.xml (diff)
The file was modified testsuites/sail/pom.xml (diff)
The file was modified spring-components/rdf4j-spring/pom.xml (diff)
The file was modified testsuites/lucene/pom.xml (diff)
The file was modified core/rio/jsonld-legacy/pom.xml (diff)
The file was modified core/rio/datatypes/pom.xml (diff)
The file was modified examples/pom.xml (diff)
The file was modified testsuites/rio/pom.xml (diff)
The file was modified core/queryresultio/api/pom.xml (diff)
The file was modified core/queryalgebra/evaluation/pom.xml (diff)
The file was modified core/queryalgebra/geosparql/pom.xml (diff)
The file was modified core/sail/pom.xml (diff)
The file was modified core/rio/nquads/pom.xml (diff)
The file was modified core/rio/hdt/pom.xml (diff)
The file was modified core/rio/api/pom.xml (diff)
The file was modified tools/workbench/pom.xml (diff)
The file was modified compliance/pom.xml (diff)
The file was modified core/repository/api/pom.xml (diff)
The file was modified core/rio/n3/pom.xml (diff)
The file was modified core/sail/memory/pom.xml (diff)
The file was modified testsuites/geosparql/pom.xml (diff)
The file was modified testsuites/model/pom.xml (diff)
The file was modified core/sail/lucene/pom.xml (diff)
The file was modified core/sparqlbuilder/pom.xml (diff)
The file was modified core/common/exception/pom.xml (diff)
The file was modified compliance/rio/pom.xml (diff)
The file was modified tools/runtime-osgi/pom.xml (diff)
The file was modified core/sail/model/pom.xml (diff)
The file was modified core/rio/rdfxml/pom.xml (diff)
The file was modified core/rio/binary/pom.xml (diff)
The file was modified core/queryresultio/sparqljson/pom.xml (diff)
The file was modified core/queryresultio/binary/pom.xml (diff)
The file was modified compliance/lucene/pom.xml (diff)
The file was modified core/sail/lucene-api/pom.xml (diff)
The file was modified core/sail/lmdb/pom.xml (diff)
The file was modified compliance/solr/pom.xml (diff)
The file was modified core/query/pom.xml (diff)
The file was modified core/rio/pom.xml (diff)
The file was modified core/sail/elasticsearch-store/pom.xml (diff)
The file was modified core/common/xml/pom.xml (diff)
The file was modified core/sail/base/pom.xml (diff)
The file was modified core/common/transaction/pom.xml (diff)
The file was modified core/common/text/pom.xml (diff)
The file was modified core/rio/jsonld/pom.xml (diff)
The file was modified compliance/model/pom.xml (diff)
The file was modified core/rio/trig/pom.xml (diff)
The file was modified core/common/io/pom.xml (diff)
The file was modified core/queryalgebra/model/pom.xml (diff)
The file was modified core/repository/sparql/pom.xml (diff)
The file was modified core/queryalgebra/pom.xml (diff)
The file was modified core/repository/dataset/pom.xml (diff)
The file was modified core/spin/pom.xml (diff)
The file was modified compliance/elasticsearch/pom.xml (diff)
The file was modified core/common/annotation/pom.xml (diff)
The file was modified core/pom.xml (diff)
The file was modified testsuites/pom.xml (diff)
The file was modified core/queryparser/sparql/pom.xml (diff)
The file was modified tools/config/pom.xml (diff)
The file was modified core/storage/pom.xml (diff)
The file was modified spring-components/rdf4j-spring-demo/pom.xml (diff)
Commit 1b7a960aec63aaa871a1ee940eb27189565ecc88 by Håvard Mikkelsen Ottestad
next development iteration: 5.0.1-SNAPSHOT

Signed-off-by: Håvard Ottestad <hmottestad@gmail.com>
(commit: 1b7a960)
The file was modified core/queryresultio/sparqlxml/pom.xml (diff)
The file was modified tools/federation/pom.xml (diff)
The file was modified compliance/rio/pom.xml (diff)
The file was modified spring-components/rdf4j-spring-demo/pom.xml (diff)
The file was modified tools/runtime/pom.xml (diff)
The file was modified core/queryalgebra/geosparql/pom.xml (diff)
The file was modified core/common/exception/pom.xml (diff)
The file was modified tools/workbench/pom.xml (diff)
The file was modified spring-components/pom.xml (diff)
The file was modified bom/pom.xml (diff)
The file was modified core/repository/dataset/pom.xml (diff)
The file was modified testsuites/repository/pom.xml (diff)
The file was modified spring-components/rdf4j-spring/pom.xml (diff)
The file was modified core/sail/base/pom.xml (diff)
The file was modified core/rio/turtle/pom.xml (diff)
The file was modified core/sail/lmdb/pom.xml (diff)
The file was modified compliance/pom.xml (diff)
The file was modified core/rio/hdt/pom.xml (diff)
The file was modified core/sail/memory/pom.xml (diff)
The file was modified core/collection-factory/mapdb/pom.xml (diff)
The file was modified core/sail/api/pom.xml (diff)
The file was modified core/repository/http/pom.xml (diff)
The file was modified core/sail/lucene-api/pom.xml (diff)
The file was modified core/queryparser/pom.xml (diff)
The file was modified compliance/geosparql/pom.xml (diff)
The file was modified core/repository/sparql/pom.xml (diff)
The file was modified testsuites/pom.xml (diff)
The file was modified core/queryresultio/sparqljson/pom.xml (diff)
The file was modified tools/server/pom.xml (diff)
The file was modified core/rio/binary/pom.xml (diff)
The file was modified core/sparqlbuilder/pom.xml (diff)
The file was modified core/rio/languages/pom.xml (diff)
The file was modified core/storage/pom.xml (diff)
The file was modified core/query/pom.xml (diff)
The file was modified core/repository/sail/pom.xml (diff)
The file was modified core/rio/jsonld-legacy/pom.xml (diff)
The file was modified tools/server-spring/pom.xml (diff)
The file was modified testsuites/geosparql/pom.xml (diff)
The file was modified compliance/elasticsearch/pom.xml (diff)
The file was modified testsuites/benchmark/pom.xml (diff)
The file was modified core/repository/manager/pom.xml (diff)
The file was modified core/sail/extensible-store/pom.xml (diff)
The file was modified core/queryalgebra/evaluation/pom.xml (diff)
The file was modified core/rio/rdfxml/pom.xml (diff)
The file was modified core/common/text/pom.xml (diff)
The file was modified compliance/lucene/pom.xml (diff)
The file was modified tools/config/pom.xml (diff)
The file was modified core/sail/shacl/pom.xml (diff)
The file was modified core/client/pom.xml (diff)
The file was modified core/common/annotation/pom.xml (diff)
The file was modified core/repository/contextaware/pom.xml (diff)
The file was modified core/rio/datatypes/pom.xml (diff)
The file was modified core/model/pom.xml (diff)
The file was modified testsuites/queryresultio/pom.xml (diff)
The file was modified assembly/pom.xml (diff)
The file was modified core/sail/solr/pom.xml (diff)
The file was modified core/queryresultio/pom.xml (diff)
The file was modified core/rio/ntriples/pom.xml (diff)
The file was modified core/queryresultio/api/pom.xml (diff)
The file was modified core/http/protocol/pom.xml (diff)
The file was modified core/collection-factory/pom.xml (diff)
The file was modified core/http/pom.xml (diff)
The file was modified core/repository/api/pom.xml (diff)
The file was modified core/sail/lucene/pom.xml (diff)
The file was modified core/sail/elasticsearch-store/pom.xml (diff)
The file was modified testsuites/sail/pom.xml (diff)
The file was modified core/spin/pom.xml (diff)
The file was modified core/common/order/pom.xml (diff)
The file was modified core/http/client/pom.xml (diff)
The file was modified core/repository/event/pom.xml (diff)
The file was modified testsuites/sparql/pom.xml (diff)
The file was modified core/queryresultio/text/pom.xml (diff)
The file was modified core/sail/pom.xml (diff)
The file was modified spring-components/spring-boot-sparql-web/pom.xml (diff)
The file was modified testsuites/model/pom.xml (diff)
The file was modified core/rio/n3/pom.xml (diff)
The file was modified core/queryparser/api/pom.xml (diff)
The file was modified tools/pom.xml (diff)
The file was modified core/rio/api/pom.xml (diff)
The file was modified tools/runtime-osgi/pom.xml (diff)
The file was modified core/rio/rdfjson/pom.xml (diff)
The file was modified core/common/io/pom.xml (diff)
The file was modified core/sail/model/pom.xml (diff)
The file was modified core/queryparser/sparql/pom.xml (diff)
The file was modified core/rio/jsonld/pom.xml (diff)
The file was modified core/collection-factory/mapdb3/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified compliance/repository/pom.xml (diff)
The file was modified core/common/transaction/pom.xml (diff)
The file was modified examples/pom.xml (diff)
The file was modified core/queryrender/pom.xml (diff)
The file was modified compliance/solr/pom.xml (diff)
The file was modified testsuites/lucene/pom.xml (diff)
The file was modified core/rio/pom.xml (diff)
The file was modified assembly-descriptors/pom.xml (diff)
The file was modified core/collection-factory/api/pom.xml (diff)
The file was modified tools/console/pom.xml (diff)
The file was modified core/pom.xml (diff)
The file was modified core/rio/nquads/pom.xml (diff)
The file was modified core/queryalgebra/model/pom.xml (diff)
The file was modified core/sail/nativerdf/pom.xml (diff)
The file was modified core/common/pom.xml (diff)
The file was modified core/common/iterator/pom.xml (diff)
The file was modified testsuites/rio/pom.xml (diff)
The file was modified core/queryresultio/binary/pom.xml (diff)
The file was modified core/common/xml/pom.xml (diff)
The file was modified core/queryalgebra/pom.xml (diff)
The file was modified core/repository/pom.xml (diff)
The file was modified core/model-api/pom.xml (diff)
The file was modified core/rio/trig/pom.xml (diff)
The file was modified core/sail/elasticsearch/pom.xml (diff)
The file was modified compliance/sparql/pom.xml (diff)
The file was modified compliance/model/pom.xml (diff)
The file was modified core/rio/trix/pom.xml (diff)
The file was modified core/model-vocabulary/pom.xml (diff)
The file was modified core/sail/inferencer/pom.xml (diff)
Commit 70703fc9f0fc92796a66a48cf5d742af3504653a by Håvard Mikkelsen Ottestad
set correct version

Signed-off-by: Håvard Ottestad <hmottestad@gmail.com>
(commit: 70703fc)
The file was modified core/queryalgebra/geosparql/pom.xml (diff)
The file was modified core/repository/sparql/pom.xml (diff)
The file was modified tools/runtime/pom.xml (diff)
The file was modified core/queryparser/sparql/pom.xml (diff)
The file was modified core/rio/api/pom.xml (diff)
The file was modified testsuites/repository/pom.xml (diff)
The file was modified compliance/geosparql/pom.xml (diff)
The file was modified core/storage/pom.xml (diff)
The file was modified core/rio/rdfjson/pom.xml (diff)
The file was modified core/sail/shacl/pom.xml (diff)
The file was modified testsuites/lucene/pom.xml (diff)
The file was modified tools/server-spring/pom.xml (diff)
The file was modified testsuites/pom.xml (diff)
The file was modified core/sail/inferencer/pom.xml (diff)
The file was modified compliance/sparql/pom.xml (diff)
The file was modified spring-components/pom.xml (diff)
The file was modified core/queryparser/pom.xml (diff)
The file was modified testsuites/queryresultio/pom.xml (diff)
The file was modified core/sail/memory/pom.xml (diff)
The file was modified core/collection-factory/api/pom.xml (diff)
The file was modified core/rio/pom.xml (diff)
The file was modified core/sail/elasticsearch/pom.xml (diff)
The file was modified testsuites/geosparql/pom.xml (diff)
The file was modified core/rio/nquads/pom.xml (diff)
The file was modified compliance/lucene/pom.xml (diff)
The file was modified tools/runtime-osgi/pom.xml (diff)
The file was modified core/sail/lmdb/pom.xml (diff)
The file was modified core/common/transaction/pom.xml (diff)
The file was modified core/pom.xml (diff)
The file was modified core/queryalgebra/evaluation/pom.xml (diff)
The file was modified core/repository/api/pom.xml (diff)
The file was modified core/common/iterator/pom.xml (diff)
The file was modified core/common/io/pom.xml (diff)
The file was modified assembly-descriptors/pom.xml (diff)
The file was modified assembly/pom.xml (diff)
The file was modified core/queryresultio/api/pom.xml (diff)
The file was modified core/queryresultio/pom.xml (diff)
The file was modified core/queryrender/pom.xml (diff)
The file was modified core/repository/manager/pom.xml (diff)
The file was modified core/rio/n3/pom.xml (diff)
The file was modified compliance/elasticsearch/pom.xml (diff)
The file was modified core/http/protocol/pom.xml (diff)
The file was modified core/sail/lucene-api/pom.xml (diff)
The file was modified core/sail/extensible-store/pom.xml (diff)
The file was modified core/rio/ntriples/pom.xml (diff)
The file was modified core/sail/model/pom.xml (diff)
The file was modified core/common/pom.xml (diff)
The file was modified core/common/text/pom.xml (diff)
The file was modified core/queryalgebra/pom.xml (diff)
The file was modified testsuites/sparql/pom.xml (diff)
The file was modified core/spin/pom.xml (diff)
The file was modified testsuites/rio/pom.xml (diff)
The file was modified core/repository/pom.xml (diff)
The file was modified core/repository/contextaware/pom.xml (diff)
The file was modified core/repository/http/pom.xml (diff)
The file was modified examples/pom.xml (diff)
The file was modified core/queryresultio/text/pom.xml (diff)
The file was modified core/sail/api/pom.xml (diff)
The file was modified core/queryresultio/sparqlxml/pom.xml (diff)
The file was modified testsuites/benchmark/pom.xml (diff)
The file was modified core/repository/dataset/pom.xml (diff)
The file was modified tools/console/pom.xml (diff)
The file was modified spring-components/rdf4j-spring-demo/pom.xml (diff)
The file was modified tools/workbench/pom.xml (diff)
The file was modified core/http/client/pom.xml (diff)
The file was modified core/rio/languages/pom.xml (diff)
The file was modified core/sparqlbuilder/pom.xml (diff)
The file was modified core/common/exception/pom.xml (diff)
The file was modified core/sail/nativerdf/pom.xml (diff)
The file was modified tools/federation/pom.xml (diff)
The file was modified tools/config/pom.xml (diff)
The file was modified core/rio/jsonld/pom.xml (diff)
The file was modified core/client/pom.xml (diff)
The file was modified testsuites/sail/pom.xml (diff)
The file was modified core/rio/binary/pom.xml (diff)
The file was modified compliance/repository/pom.xml (diff)
The file was modified core/common/annotation/pom.xml (diff)
The file was modified core/query/pom.xml (diff)
The file was modified core/sail/pom.xml (diff)
The file was modified core/sail/elasticsearch-store/pom.xml (diff)
The file was modified core/collection-factory/pom.xml (diff)
The file was modified spring-components/rdf4j-spring/pom.xml (diff)
The file was modified core/repository/sail/pom.xml (diff)
The file was modified core/rio/trix/pom.xml (diff)
The file was modified core/rio/datatypes/pom.xml (diff)
The file was modified compliance/pom.xml (diff)
The file was modified compliance/solr/pom.xml (diff)
The file was modified core/rio/jsonld-legacy/pom.xml (diff)
The file was modified core/rio/rdfxml/pom.xml (diff)
The file was modified core/collection-factory/mapdb/pom.xml (diff)
The file was modified core/common/order/pom.xml (diff)
The file was modified compliance/rio/pom.xml (diff)
The file was modified core/http/pom.xml (diff)
The file was modified spring-components/spring-boot-sparql-web/pom.xml (diff)
The file was modified core/collection-factory/mapdb3/pom.xml (diff)
The file was modified core/queryresultio/sparqljson/pom.xml (diff)
The file was modified core/sail/lucene/pom.xml (diff)
The file was modified core/model/pom.xml (diff)
The file was modified core/repository/event/pom.xml (diff)
The file was modified core/model-vocabulary/pom.xml (diff)
The file was modified core/queryalgebra/model/pom.xml (diff)
The file was modified core/rio/turtle/pom.xml (diff)
The file was modified core/rio/hdt/pom.xml (diff)
The file was modified tools/server/pom.xml (diff)
The file was modified core/model-api/pom.xml (diff)
The file was modified core/sail/base/pom.xml (diff)
The file was modified core/rio/trig/pom.xml (diff)
The file was modified bom/pom.xml (diff)
The file was modified core/common/xml/pom.xml (diff)
The file was modified testsuites/model/pom.xml (diff)
The file was modified core/sail/solr/pom.xml (diff)
The file was modified tools/pom.xml (diff)
The file was modified core/queryresultio/binary/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified core/queryparser/api/pom.xml (diff)
The file was modified compliance/model/pom.xml (diff)