Skip to content

Commit a20b519

Browse files
committed
Remove last activity and improve dates in the working group page
1 parent f4f9d22 commit a20b519

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

_data/wg.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ working-groups:
1212
<li>The <code>done</code> column means that the issues have been completed</li>
1313
</ul>
1414
status: at risk
15-
last-activity: 19/08/2024
15+
last-activity: 2024-08-19
1616
- title: "Enhanced TLS support"
1717
board-url: "https://github.com/orgs/quarkusio/projects/24"
1818
short-description: Track the progress around the new TLS configuration centralization and new features (like Let's Encrypt, Cert-Manager, and local experience...)
@@ -22,7 +22,7 @@ working-groups:
2222
<p>The goal of this focus group is to continue integrating the TLS registry and improve Quarkus integration with certificate providers (Let's Encrypt, Cert-Manager). In addition, we would like to provide a frictionless local experience around TLS (i.e., without the infamous untrusted certificate screen).</p>
2323
<p><em>Point of contact:</em> @cescoffier (@<strong>Clement Escoffier</strong> on Zulip)</p>
2424
status: on track
25-
last-activity: 19/08/2024
25+
last-activity: 2024-08-19
2626
last-update: We just got an end-to-end let's encrypt demo working!
2727
- title: "Test classloading"
2828
board-url: "https://github.com/orgs/quarkusio/projects/30"
@@ -36,7 +36,7 @@ working-groups:
3636
<p>A final benefit is a reduction in the internal complexity of our code. Hopping between classloaders during test execution takes a lot of work, and adds a lot of code! It also is brittle in places. For example, because the hop between classloaders relies on serialization in some cases, it's becoming harder to do as the JVM tightens up security restrictions. We used to rely on xstream, but that stopped working in Java 17. In https://github.com/quarkusio/quarkus/pull/40601, @dmlloyd moved us to use the JBoss Serializer, which works better, but might still be affected by future restrictions on class access.</p>
3737
<p>The goal of this working group is to allow test classes to fully participate in the 'quarkification' of classes. The mechanism for this is probably just to load the test classes with the classloader we intend to run them with, so that JUnit sees the 'correct' version of the class.</p>
3838
status: on track
39-
last-activity: 18/08/2024
39+
last-activity: 2024-08-18
4040
- title: "Roq :: Quarkus SSG"
4141
board-url: "https://github.com/orgs/quarkiverse/projects/6"
4242
short-description: Allow Static Site Generation with Quarkus.
@@ -57,7 +57,7 @@ working-groups:
5757
<p>This effort is now tracked using a &quot;Working Group&quot; project: https://github.com/orgs/quarkiverse/projects/6</p>
5858
<p>This is a great opportunity to participate in fun effort and be involved with the Quarkus community, if anyone is interested in being a part of this, please reach out to me 🚀</p>
5959
status: on track
60-
last-activity: 16/08/2024
60+
last-activity: 2024-08-16
6161
last-update: Good progress so far.
6262
- title: "Docker file generation"
6363
board-url: "https://github.com/orgs/quarkusio/projects/27"
@@ -75,7 +75,7 @@ working-groups:
7575
Once completed, this working group will be followed by other initiatives focusing on generating the Github Action and Tekton pipelines.</p>
7676
<p><em>Point of contact</em>: @iocanel (<code>Ioannis Canellos</code>on Zulip)</p>
7777
status: on track
78-
last-activity: 05/08/2024
78+
last-activity: 2024-08-05
7979
- title: "WebSocket Next"
8080
board-url: "https://github.com/orgs/quarkusio/projects/26"
8181
short-description: WebSocket-Next related tasks
@@ -84,4 +84,4 @@ working-groups:
8484
<p>Recently, we delivered a new approach to dealing with WebSocket (both for the server and client). This was the first step. There are still a few areas to improve, such as documentation, security, observability, and testability. The goal of this focus group is to track these efforts.</p>
8585
<p>Point of contact: @mkouba (@<strong>Martin Kouba</strong> on Zulip)</p>
8686
status: staled
87-
last-activity: 24/07/2024
87+
last-activity: 2024-07-24

_includes/working-group-band.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
<div class="card-body">
1717
<p class="card-text"><span class="key">Status:</span>&nbsp;<span class="status {{ item.status | | replace: ' ', '-'}}">{{ item.status }}</span></p>
1818
<p class="card-text"><span class="key">Description:</span>&nbsp;<span class="short-description">{{ item.short-description }}</span></p>
19-
<p class="card-text"><span class="key">Last Activity:</span>&nbsp;<span class="last-activity">{{ item.last-activity }}</span></p>
20-
{% if item.last-update %}<p class="card-text"><span class="key">Last status update:</span>&nbsp;<span class="last-update">{{ item.last-update }}</span></p>{% endif %}
19+
<p class="card-text"><span class="key">Last Activity:</span>&nbsp;<span class="last-activity">{{ item.last-activity | date: '%B %d, %Y' }} </span></p>
2120
</div>
2221
<div class="card-footer">
2322
<a href="{{ item.board-url }}" class="float-end"> View the {{ item.title }} Board <i class="fa-solid fa-chevron-right"></i></a>

working-groups/main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public String getLastActivityDate() {
176176
LocalDateTime dateTime = LocalDateTime.ofInstant(updateDate, ZoneId.of("UTC"));
177177

178178
// Define the formatter
179-
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("dd/MM/yyyy");
179+
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
180180

181181
// Format the LocalDateTime
182182
return dateTime.format(formatter);

0 commit comments

Comments
 (0)