For our work on Maven and Hiero we publish information about our work. That is done by Markdown today with 1 markdown file every month. See https://github.com/support-and-care/maven-support-and-care/tree/main/src/docs/reports as an example hot it looks today for Maven.
That information is totally hidden and hard to read for non-technical people. Therefore we want a nice rendered version on our website where you can see the history of our work. Todo so we need metadata (json?) that is updated every month with the down work and renders a nice report on our website.
We have a static layout for it already present at https://open-elements.com/de/updates
That must be changed to a dynamic page that is rendered / created based on metadata (JSON) that is part of our repo. Here we will have EN and DE metadata to provide the overview / history in both languages.
There is not fixed defined format for the JSON but based on the Layout and reports we have today I assume it will be similar to this:
[{
month: "MARCH",
year: 2026,
excerpt: "We have done some cool stuff in march. Especially the Work on the Python SDK moved forward",
categories: [
{
title: "Python SDK"
items: [{
text: "We implemented HIP-1234"
link: "https://something.com"
type: "FEATURE" (ENUM based that define what icon (checkmark, ...) should be used at start of row)
},...]
}, ...
],
contributors: ["https://github.com/hendrikebbers", "https://github.com/aceppaluni", ...]
}, ...]
For our work on Maven and Hiero we publish information about our work. That is done by Markdown today with 1 markdown file every month. See https://github.com/support-and-care/maven-support-and-care/tree/main/src/docs/reports as an example hot it looks today for Maven.
That information is totally hidden and hard to read for non-technical people. Therefore we want a nice rendered version on our website where you can see the history of our work. Todo so we need metadata (json?) that is updated every month with the down work and renders a nice report on our website.
We have a static layout for it already present at https://open-elements.com/de/updates
That must be changed to a dynamic page that is rendered / created based on metadata (JSON) that is part of our repo. Here we will have EN and DE metadata to provide the overview / history in both languages.
There is not fixed defined format for the JSON but based on the Layout and reports we have today I assume it will be similar to this: