Skip to content

Commit db88aa5

Browse files
authored
merge main into develop (#5341)
2 parents 05569c0 + fb2d531 commit db88aa5

File tree

10 files changed

+60
-15
lines changed

10 files changed

+60
-15
lines changed

.github/workflows/hugo.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ jobs:
4343
uses: actions/checkout@v4
4444
with:
4545
submodules: recursive
46+
- name: Uncompress Javadoc
47+
working-directory: site/static/javadoc
48+
run: |
49+
bash uncompress.sh
4650
- name: Setup Pages
4751
id: pages
4852
uses: actions/configure-pages@v5

core/sail/lmdb/src/main/java/org/eclipse/rdf4j/sail/lmdb/ValueStore.java

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -235,13 +235,8 @@ class ValueStore extends AbstractValueFactory {
235235
return null;
236236
});
237237

238-
if (logger.isDebugEnabled()) {
239-
// trigger deletion of values marked for GC
240-
startTransaction(true);
241-
commit();
242-
// print current values in store
243-
logValues();
244-
}
238+
startTransaction(true);
239+
commit();
245240
}
246241

247242
private void logValues() throws IOException {

site/content/download.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ toc: true
55

66
You can either retrieve RDF4J via Apache Maven, or download the SDK or onejar directly.
77

8-
## RDF4J 5.1.2 (latest)
8+
## RDF4J 5.1.3 (latest)
99

10-
RDF4J 5.1.2 is our latest stable release. It requires Java 11 minimally.
11-
For details on what’s new and how to upgrade, see the [release and upgrade notes](/release-notes/5.1.2).
10+
RDF4J 5.1.3 is our latest stable release. It requires Java 11 minimally.
11+
For details on what’s new and how to upgrade, see the [release and upgrade notes](/release-notes/5.1.3).
1212

13-
- [RDF4J 5.1.2 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.1.2-sdk.zip)<br/>
13+
- [RDF4J 5.1.3 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.1.3-sdk.zip)<br/>
1414
Full Eclipse RDF4J SDK, containing all libraries, RDF4J Server, Workbench, and Console applications, and Javadoc API.
1515

16-
- [RDF4J 5.1.2 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.1.2-onejar.jar)<br/>
16+
- [RDF4J 5.1.3 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.1.3-onejar.jar)<br/>
1717
Single jar file for easy inclusion of the full RDF4J toolkit in your Java project.
1818

1919
- [RDF4J artifacts](https://search.maven.org/search?q=org.eclipse.rdf4j) on the [Maven Central Repository](http://search.maven.org/)
@@ -28,7 +28,7 @@ You can include RDF4J as a Maven dependency in your Java project by including th
2828
<dependency>
2929
<groupId>org.eclipse.rdf4j</groupId>
3030
<artifactId>rdf4j-bom</artifactId>
31-
<version>5.1.2</version>
31+
<version>5.1.3</version>
3232
<type>pom</type>
3333
<scope>import</scope>
3434
</dependency>
@@ -60,8 +60,8 @@ which artifacts RDF4J provides.
6060

6161
### RDF4J 4.3
6262

63-
- [RDF4J 4.3.15 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.15-sdk.zip)
64-
- [RDF4J 4.3.15 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.15-onejar.jar)
63+
- [RDF4J 4.3.16 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.16-sdk.zip)
64+
- [RDF4J 4.3.16 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.16-onejar.jar)
6565

6666

6767
### RDF4J 4.2

site/content/news/rdf4j-4316.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "RDF4J 4.3.16 released"
3+
date: 2025-04-16T12:52:34+0200
4+
layout: "single"
5+
categories: ["news"]
6+
---
7+
RDF4J 4.3.16 is now available. This is a patch release fixing 2 bugs.
8+
9+
For more details, have a look at the [release notes](/release-notes/4.3.16).
10+
<!--more-->
11+
### Links
12+
13+
- [Download RDF4J](/download/)
14+
- [release notes](/release-notes/4.3.16).

site/content/news/rdf4j-513.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "RDF4J 5.1.3 released"
3+
date: 2025-04-15T15:24:42+0200
4+
layout: "single"
5+
categories: ["news"]
6+
---
7+
RDF4J 5.1.3 is now available. This is a patch release fixing 6 bugs.
8+
9+
For more details, have a look at the [release notes](/release-notes/5.1.3).
10+
<!--more-->
11+
### Links
12+
13+
- [Download RDF4J](/download/)
14+
- [release notes](/release-notes/5.1.3).
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: "4.3.16"
3+
toc: true
4+
---
5+
RDF4J 4.3.16 is a patch release that fixes 2 issues backported from RDF4J 5.
6+
7+
For a complete overview, see [all issues fixed in 4.3.16](https://github.com/eclipse/rdf4j/milestone/113?closed=1).
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: "5.1.3"
3+
toc: true
4+
---
5+
RDF4J 5.1.3 is a patch release that fixes 6 issues.
6+
7+
For a complete overview, see [all issues fixed in 5.1.3](https://github.com/eclipse/rdf4j/milestone/118?closed=1).
8+
9+
### Acknowledgements
10+
11+
This release was made possible by contributions from Håvard M. Ottestad, Manuel Fiorelli, Jerven Bolleman, Piotr Sowiński, Matthew Nguyen, Wolfgang Schell and Ken Wenzel.

site/static/javadoc/4.3.16.tgz

12.4 MB
Binary file not shown.

site/static/javadoc/5.1.3.tgz

12.3 MB
Binary file not shown.

site/static/javadoc/latest.tgz

3.32 KB
Binary file not shown.

0 commit comments

Comments
 (0)