Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions profile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Planning Council meeting minutes, are maintained in the wiki:

## SimRel Wiki

The [SimRel Wiki](../wiki/README.md) provides details about the processes involved in producing the quarterly release, including schedules:
The SimRel Wiki provides details about the processes involved in producing the quarterly release, including schedules:

- [SimRel Schedule](../wiki/Simultaneous_Release.md)
- [SimRel Overview](../wiki/SimRel/Overview.md)
Expand Down Expand Up @@ -54,4 +54,4 @@ The self-documenting continuous integration instance provides useful information
- [SimRel Staging Repositories](https://download.eclipse.org/staging/)
- [Eclipse Packaging Project (EPP)](https://github.com/eclipse-packaging/packages/blob/master/README.md)
- [EPP Release Repositories](https://download.eclipse.org/technology/epp/packages/)
- [EPP Staging Repositories](https://download.eclipse.org/technology/epp/staging/repository/)
- [EPP Staging Repository](https://download.eclipse.org/technology/epp/staging/repository/)
58 changes: 0 additions & 58 deletions wiki/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion wiki/SimRel/Release_Checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=544179">bug
<td><p>Update SimRel wiki pages</p></td>
<td><ul>
<li><a
href="https://wiki.eclipse.org/Simultaneous_Release">https://wiki.eclipse.org/Simultaneous_Release</a></li>
href="../Simultaneous_Release.md">SimRel Schedule</a></li>
</ul></td>
<td><p>SimRel release engineer</p></td>
</tr>
Expand Down
67 changes: 63 additions & 4 deletions wiki/Simultaneous_Release.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ existing simultaneous releases from the current and previous years.

<table>
<thead>
<tr class="header">f2
<tr class="header">
<th><p>Release name</p></th>
<th><p>Platform version</p></th>
<th><p>Release</p></th>
Expand All @@ -18,6 +18,38 @@ existing simultaneous releases from the current and previous years.
</thead>
<tbody>

<tr class="odd">
<td><p>2026-06 (Future release)</p></td>
<td><p>4.40</p></td>
<td><p>June 10, 2026</p></td>
<td><p><a
href="SimRel/2026-06.md">Wiki</a><br />
<!-- Uncomment on release day
<a
href="https://www.eclipse.org/downloads/packages/release/2025-12/r">Package
Download Page</a><br />
<a href="https://download.eclipse.org/releases/2025-12/">p2
Repository</a>
-->
</p></td>
</tr>

<tr class="even">
<td><p>2026-03 (Future release)</p></td>
<td><p>4.39</p></td>
<td><p>March 11, 2026</p></td>
<td><p><a
href="SimRel/2026-03.md">Wiki</a><br />
<!-- Uncomment on release day
<a
href="https://www.eclipse.org/downloads/packages/release/2025-12/r">Package
Download Page</a><br />
<a href="https://download.eclipse.org/releases/2025-12/">p2
Repository</a>
-->
</p></td>
</tr>

<tr class="odd">
<td><p>2025-12 (Future release)</p></td>
<td><p>4.38</p></td>
Expand All @@ -35,7 +67,7 @@ Repository</a>
</tr>

<tr class="even">
<td><p>2025-09 (Future release)</p></td>
<td><p>2025-09 (Current release)</p></td>
<td><p>4.37</p></td>
<td><p>September 10, 2025</p></td>
<td><p><a
Expand All @@ -49,7 +81,7 @@ Repository</a>
</tr>

<tr class="odd">
<td><p>2025-06 (Current release)</p></td>
<td><p>2025-06 (Last release)</p></td>
<td><p>4.36</p></td>
<td><p>June 11, 2025</p></td>
<td><p><a
Expand All @@ -63,7 +95,7 @@ Repository</a>
</tr>

<tr class="even">
<td><p>2025-03 (Last release)</p></td>
<td><p>2025-03</p></td>
<td><p>4.35</p></td>
<td><p>March 12, 2025</p></td>
<td><p><a
Expand Down Expand Up @@ -188,6 +220,33 @@ Repository</a></p></td>
</tbody>
</table>

## Adding a New SimRel Schedule

When adding a new simultaneous release schedule,
first add the `*json` file containing the dates for `M1`, `M2`, `M3`, `RC1`, `RC2` and `GA` as follows:
```
wiki/SimRel/<SimRel-Name>_dates.json
```
Here `<SimRel-Name>` is, for example, `2025-12`.

To generate the wiki details page for that release,
the following command can be run from the root of this repository,
which requires Java-25 or later:
```
java scripts/generateReleaseDetails.java <SimRel-Name>
```

### Why This format?

You may be wondering why this format for the wiki pages?
The information in this folder was previously hosted at `https://wiki.eclipse.org/`,
but in early 2024 that wiki [was made read-only](https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan).
The GitHub built-in wiki was determined to be insufficiently flexible for managing and authoring content.
- Non-committers can't easily contribute due to lack of support for pull requests.
- Folder nesting is not fully supported.
- Overall navigation is somewhat limited.

Therefore simply storing the files as markdown directly in this repository was deemed to be the best solution.

## Older Releases

Expand Down