Skip to content

Commit b4f537f

Browse files
authored
merge main (#5023)
2 parents 00daf57 + b2ddfa0 commit b4f537f

9 files changed

Lines changed: 55 additions & 16 deletions

File tree

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@
359359
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
360360
<enforce-javaee-provided.fail>true</enforce-javaee-provided.fail>
361361
<slf4j.version>1.7.36</slf4j.version>
362-
<logback.version>1.2.12</logback.version>
362+
<logback.version>1.2.13</logback.version>
363363
<log4j.version>2.17.2</log4j.version>
364364
<httpclient.version>4.5.14</httpclient.version>
365365
<jackson.version>2.13.5</jackson.version>
@@ -376,7 +376,7 @@
376376
<jmhVersion>1.37</jmhVersion>
377377
<servlet.version>3.1.0</servlet.version>
378378
<junit.version>5.9.3</junit.version>
379-
<jetty.version>9.4.53.v20231009</jetty.version>
379+
<jetty.version>9.4.54.v20240208</jetty.version>
380380
</properties>
381381
<dependencyManagement>
382382
<dependencies>

scripts/milestone-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ if ! [[ $(git status --porcelain -u no --branch) == "## main...origin/main" ]]
7575
fi
7676

7777
ORIGINAL_BRANCH=""
78-
if git status --porcelain -u no --branch == "## main...origin/main"; then
78+
if [[ $(git status --porcelain -u no --branch) == "## main...origin/main" ]]; then
7979
ORIGINAL_BRANCH="main";
8080
fi
81-
if git status --porcelain -u no --branch == "## develop...origin/develop"; then
81+
if [[ $(git status --porcelain -u no --branch) == "## develop...origin/develop" ]]; then
8282
ORIGINAL_BRANCH="develop";
8383
fi
8484

site/content/download.md

Lines changed: 11 additions & 12 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 4.3.11 (latest)
8+
## RDF4J 4.3.12 (latest)
99

10-
RDF4J 4.3.11 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/4.3.11).
10+
RDF4J 4.3.12 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/4.3.12).
1212

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

16-
- [RDF4J 4.3.11 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.11-onejar.jar)<br/>
16+
- [RDF4J 4.3.12 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.3.12-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>4.3.11</version>
31+
<version>4.3.12</version>
3232
<type>pom</type>
3333
<scope>import</scope>
3434
</dependency>
@@ -51,20 +51,20 @@ See the [Setup instructions](/documentation/programming/setup) in the
5151
which artifacts RDF4J provides.
5252

5353

54-
## RDF4J 5.0.0-M2
54+
## RDF4J 5.0.0-M3
5555

56-
RDF4J 5.0.0-M2 is our latest milestone build of the upcoming 5.0.0 release. It requires Java 11 minimally.
56+
RDF4J 5.0.0-M3 is our latest milestone build of the upcoming 5.0.0 release. It requires Java 11 minimally.
5757
For details on what’s new and how to upgrade, see the [release and upgrade notes](/news/rdf4j-500-M2.md).
5858

59-
- [RDF4J 5.0.0-M2 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.0.0-M2-sdk.zip)<br/>
59+
- [RDF4J 5.0.0-M3 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.0.0-M3-sdk.zip)<br/>
6060
Full Eclipse RDF4J SDK, containing all libraries, RDF4J Server, Workbench, and Console applications, and Javadoc API.
6161

62-
- [RDF4J 5.0.0-M2 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.0.0-M2-onejar.jar)<br/>
62+
- [RDF4J 5.0.0-M3 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-5.0.0-M3-onejar.jar)<br/>
6363
Single jar file for easy inclusion of the full RDF4J toolkit in your Java project.
6464

6565
- [RDF4J artifacts](https://search.maven.org/search?q=org.eclipse.rdf4j) on the [Maven Central Repository](http://search.maven.org/)
6666

67-
RDF4J 5.0.0-M2 is also available through maven.
67+
RDF4J 5.0.0-M3 is also available through maven.
6868

6969

7070
## Older releases
@@ -75,7 +75,6 @@ RDF4J 5.0.0-M2 is also available through maven.
7575
- [RDF4J 4.2.4 onejar](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.2.4-onejar.jar)
7676

7777

78-
7978
### RDF4J 4.1
8079

8180
- [RDF4J 4.1.3 SDK (zip)](http://www.eclipse.org/downloads/download.php?file=/rdf4j/eclipse-rdf4j-4.1.3-sdk.zip)

site/content/news/rdf4j-4312.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.12 released"
3+
date: 2024-06-04T16:26:01+0200
4+
layout: "single"
5+
categories: ["news"]
6+
---
7+
RDF4J 4.3.12 is now available. This is a patch release fixing 5 bugs.
8+
9+
For more details, have a look at the [release notes](/release-notes/4.3.12).
10+
<!--more-->
11+
### Links
12+
13+
- [Download RDF4J](/download/)
14+
- [release notes](/release-notes/4.3.12).

site/content/news/rdf4j-500-M3.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: "RDF4J 5.0.0 Milestone 3"
3+
date: 2024-06-05T12:40:28+0200
4+
layout: "single"
5+
categories: ["news"]
6+
---
7+
Milestone number 3 of the upcoming 5.0.0 release of RDF4J is now available for download.
8+
9+
This milestone build is now feature-complete and we will only be fixing bugs from now on. The final release is planned for the end of June.
10+
11+
- [issues fixed in 5.0.0 Milestone 3](https://github.com/eclipse/rdf4j/issues?q=is%3Aissue+label%3AM3+is%3Aclosed+milestone%3A5.0.0)
12+
13+
### Links
14+
15+
- [Download RDF4J](/download/)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: "4.3.12"
3+
toc: true
4+
---
5+
RDF4J 4.3.12 is a patch release that fixes 5 issues.
6+
7+
For a complete overview, see [all issues fixed in 4.3.12](https://github.com/eclipse/rdf4j/milestone/105?closed=1).
8+
9+
### Acknowledgements
10+
11+
This release was made possible by contributions from Andreas Schwarte, Antoine Willerval, Linn Aung, Håvard M. Ottestad and Vilnis Termanis.

site/static/javadoc/4.3.12.tgz

7.29 MB
Binary file not shown.

site/static/javadoc/5.0.0-M3.tgz

7.03 MB
Binary file not shown.

site/static/javadoc/latest.tgz

32.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)