Skip to content

Commit dd3f178

Browse files
authored
chore: publish RC4 (#206)
* fix: imports and references * chore: publish RC4 * chore: start work on RC5
1 parent ae6285f commit dd3f178

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

.github/scripts/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<head>
44
<meta charset="utf-8">
55
<meta http-equiv="refresh"
6-
content="0;url=https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC3"/>
7-
<link rel="canonical" href="https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC3"/>
6+
content="0;url=https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC4"/>
7+
<link rel="canonical" href="https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC4"/>
88
</head>
99
<body>
1010
<h4>
11-
This redirects to the latest Release Candidate <a href="https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC3">here</a>
11+
This redirects to the latest Release Candidate <a href="https://eclipse-dataspace-protocol-base.github.io/DataspaceProtocol/2025-1-RC4">here</a>
1212
</h4>
1313
</body>
1414
</html>

WEBSITE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,5 @@ You should now see an additional endpoint at `https://eclipse-dataspace-dcp.gith
6363

6464
#### Github Release
6565

66-
Create a Github Release by adding a bit of context, autogenerating the releasenotes. For RCs, it's customary to
66+
Create a Github Release by adding a bit of context, autogenerating the releasenotes. For RCs, it's customary to include
67+
a permalink to the rendered respec webpage.

artifacts/buildSrc/src/main/java/org/eclipse/dsp/generation/transformer/HtmlTableTransformer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ private String parseResolvedTypes(SchemaProperty property) {
106106
var itemTypes = resolvedProperty.getItemTypes().stream()
107107
.flatMap(t -> t.getResolvedTypes().stream())
108108
.map(e -> {
109-
if (e.isJsonBaseType()) {
109+
if (e.isJsonBaseType() || getTypeName(e).startsWith("array")) {
110110
return String.format("%s", getTypeName(e));
111111
}
112112
return String.format("<a href=#%s-table>%s</a>", getTypeName(e), getTypeName(e));

index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<head>
44
<meta charset='utf-8'>
55
<script src='https://www.w3.org/Tools/respec/respec-w3c' async class='remove'></script>
6-
<script class="remove" src="https://cdn.jsdelivr.net/gh/w3c/[email protected]/dist/main.js"></script>
76
<script class='remove'>
87
var respecConfig = {
98
specStatus: "unofficial",
@@ -61,13 +60,13 @@
6160
maxTocLevel: 3,
6261
};
6362
</script>
64-
<title>Dataspace Protocol Release 2025-1-RC4</title>
63+
<title>Dataspace Protocol Release 2025-1-RC5</title>
6564
</head>
6665
<body>
6766
<p class="copyright">
6867
This document is licensed under <a href="https://www.apache.org/licenses/LICENSE-2.0.html">The Apache License, Version 2.0</a>.
6968
</p>
70-
<h1 id="title">Dataspace Protocol 2025-1-RC4</h1>
69+
<h1 id="title">Dataspace Protocol 2025-1-RC5</h1>
7170
<section id='abstract'>
7271
<p>
7372
The Dataspace Protocol is a specification designed to facilitate interoperable data sharing between

specifications/common/type.definitions.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Lower Level Type Definitions
22

3-
<p data-include="message/table/action.html" data-include-format="html">
4-
</p>
5-
63
<p data-include="message/table/agreement.html" data-include-format="html">
74
</p>
85

@@ -33,5 +30,11 @@
3330
<p data-include="message/table/offer.html" data-include-format="html">
3431
</p>
3532

33+
<p data-include="message/table/permission.html" data-include-format="html">
34+
</p>
35+
36+
<p data-include="message/table/prohibition.html" data-include-format="html">
37+
</p>
38+
3639
<p data-include="message/table/rule.html" data-include-format="html">
3740
</p>

0 commit comments

Comments
 (0)