Skip to content
Success

Changes

Summary

  1. Introduce a marker annotation for OWL property mapping annotations. (commit: c4c6f11) (details)
  2. [SCA] SCA-based code improvements. (commit: f427c2c) (details)
  3. [Fix] Fix incorrect use of MultilingualString.set in test setup. (commit: da6f124) (details)
  4. [Bug #191] Use a custom HttpClient for RDF4J remote repository access. (commit: 860c2f8) (details)
  5. Add TODOs. (commit: 6b9ec56) (details)
  6. [Bug #191] Make RDF4J driver HTTP client connection pool size configurable. (commit: e03a580) (details)
  7. [Bug #191] Make RDF4J driver HTTP client connection request timeout configurable. (commit: 6e8c209) (details)
  8. [Bug #191] Adjust default max connection pool size. (commit: 4155fcd) (details)
  9. [Upd] Update to RDF4J 4.3.5 and AspectJ 1.9.20 (commit: c9d20c0) (details)
  10. [1.1.1] Bump version, update changelog. (commit: a1aa3b0) (details)
Commit c4c6f1186adc07ef30b46fd16ee0d07d14215817 by Martin Ledvinka
Introduce a marker annotation for OWL property mapping annotations.

May be useful for code processing tools.
(commit: c4c6f11)
The file was modified jopa-api/src/main/java/cz/cvut/kbss/jopa/model/annotations/OWLAnnotationProperty.java (diff)
The file was modified jopa-api/src/main/java/cz/cvut/kbss/jopa/model/annotations/OWLObjectProperty.java (diff)
The file was addedjopa-api/src/test/java/cz/cvut/kbss/jopa/model/util/PropertyTest.java
The file was addedjopa-api/src/main/java/cz/cvut/kbss/jopa/model/annotations/util/Property.java
The file was modified jopa-api/src/main/java/cz/cvut/kbss/jopa/model/annotations/OWLDataProperty.java (diff)
Commit f427c2c78e3d034485cb01af5e18297608302aa2 by Martin Ledvinka
[SCA] SCA-based code improvements.
(commit: f427c2c)
The file was modified modelgen/src/main/java/cz/cvut/kbss/jopa/modelgen/classmodel/MetamodelClass.java (diff)
The file was modified jopa-api/src/main/java/cz/cvut/kbss/jopa/model/DefaultPersistenceProviderResolver.java (diff)
The file was modified jopa-integration-tests/src/main/java/cz/cvut/kbss/jopa/test/OWLClassZChild.java (diff)
The file was modified jopa-impl/src/main/java/cz/cvut/kbss/jopa/loaders/DefaultClasspathScanner.java (diff)
The file was modified modelgen/src/main/java/cz/cvut/kbss/jopa/modelgen/classmodel/Type.java (diff)
The file was modified ontodriver-api/src/main/java/cz/cvut/kbss/ontodriver/model/PropertyAssertion.java (diff)
The file was modified jopa-integration-tests/src/main/java/cz/cvut/kbss/jopa/test/OWLClassWithAnnotatedMethodsInInterfaceParent.java (diff)
The file was modified jopa-integration-tests/src/main/java/cz/cvut/kbss/jopa/test/OWLClassWithUnProperties.java (diff)
The file was modified modelgen/src/main/java/cz/cvut/kbss/jopa/modelgen/OutputFilesGenerator.java (diff)
The file was modified datatype/src/test/java/cz/cvut/kbss/jopa/datatype/xsd/XsdDatatypeMapperTest.java (diff)
The file was modified jopa-impl/src/main/java/cz/cvut/kbss/jopa/query/criteria/expressions/ParameterExpressionImpl.java (diff)
The file was modified jopa-impl/src/main/java/cz/cvut/kbss/jopa/query/soql/SoqlFunctionTranslator.java (diff)
The file was modified modelgen/src/main/java/cz/cvut/kbss/jopa/modelgen/ModelGenProcessor.java (diff)
The file was modified jopa-impl/src/main/java/cz/cvut/kbss/jopa/query/criteria/CriteriaBuilderImpl.java (diff)
The file was modified jopa-integration-tests/src/main/java/cz/cvut/kbss/jopa/test/OWLChildClassA.java (diff)
The file was modified jopa-integration-tests/src/main/java/cz/cvut/kbss/jopa/test/OWLClassA.java (diff)
Commit da6f124687d73808c9c2b379a223687ef75dc52d by Martin Ledvinka
[Fix] Fix incorrect use of MultilingualString.set in test setup.
(commit: da6f124)
The file was modified jopa-integration-tests/src/main/java/cz/cvut/kbss/jopa/test/environment/TestEnvironment.java (diff)
The file was modified jopa-integration-tests/src/main/java/cz/cvut/kbss/jopa/test/query/QueryTestEnvironment.java (diff)
Commit 860c2f8ac69f134b551645a1f35790136527e3df by Martin Ledvinka
[Bug #191] Use a custom HttpClient for RDF4J remote repository access.

This client sets a connection request timeout so that exhausted connection pool does not lead to deadlock but an exception that the application can handle and not get stuck.
(commit: 860c2f8)
The file was modified ontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/connector/StorageConnector.java (diff)
The file was addedontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/connector/init/RemoteRepositoryWrapper.java
The file was addedontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/connector/init/HttpClientFactory.java
The file was modified ontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/connector/init/RepositoryConnectorInitializer.java (diff)
The file was modified ontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/connector/init/HttpClientFactory.java (diff)
Commit e03a5807adae1691a98a22e59f3bc79e1143707d by Martin Ledvinka
[Bug #191] Make RDF4J driver HTTP client connection pool size configurable.
(commit: e03a580)
The file was modified ontodriver-api/src/test/java/cz/cvut/kbss/ontodriver/config/DriverConfigurationTest.java (diff)
The file was modified ontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/config/Rdf4jConfigParam.java (diff)
The file was modified ontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/connector/init/HttpClientFactory.java (diff)
The file was modified ontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/config/Rdf4jOntoDriverProperties.java (diff)
The file was modified ontodriver-api/src/main/java/cz/cvut/kbss/ontodriver/config/DriverConfiguration.java (diff)
Commit 6e8c2095c35aa6b387a9168ee1ab7ba4cee1ab4b by Martin Ledvinka
[Bug #191] Make RDF4J driver HTTP client connection request timeout configurable.
(commit: 6e8c209)
The file was modified ontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/connector/init/HttpClientFactory.java (diff)
The file was modified ontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/config/Constants.java (diff)
Commit 4155fcddb087f3036c3d51511fac72706df930ba by Martin Ledvinka
[Bug #191] Adjust default max connection pool size.
(commit: 4155fcd)
The file was modified ontodriver-rdf4j/src/main/java/cz/cvut/kbss/ontodriver/rdf4j/connector/init/HttpClientFactory.java (diff)
Commit c9d20c0f7f97dc242439eadc7673361c01924a99 by Martin Ledvinka
[Upd] Update to RDF4J 4.3.5 and AspectJ 1.9.20
(commit: c9d20c0)
The file was modified pom.xml (diff)
The file was modified ontodriver-rdf4j/pom.xml (diff)
Commit a1aa3b0bbaa76b7993f69965c6f0b792034baba7 by Martin Ledvinka
[1.1.1] Bump version, update changelog.
(commit: a1aa3b0)
The file was modified jopa-api/pom.xml (diff)
The file was modified ontodriver-jena/pom.xml (diff)
The file was modified ontodriver-api/pom.xml (diff)
The file was modified jopa-impl/pom.xml (diff)
The file was modified jopa-distribution/pom.xml (diff)
The file was modified jopa-integration-tests-owlapi/pom.xml (diff)
The file was modified jopa-maven-plugin/pom.xml (diff)
The file was modified jopa-integration-tests-rdf4j/pom.xml (diff)
The file was modified jopa-owl2java/pom.xml (diff)
The file was modified jopa-owlapi-utils/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified jopa-integration-tests-jena/pom.xml (diff)
The file was modified ontodriver-owlapi/pom.xml (diff)
The file was modified modelgen/pom.xml (diff)
The file was modified datatype/pom.xml (diff)
The file was modified ontodriver-rdf4j/pom.xml (diff)
The file was modified CHANGELOG.md (diff)
The file was modified jopa-integration-tests/pom.xml (diff)