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
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ content or template file and the browser refreshes automatically.
```
content/ Content pages (Markdown/AsciiDoc)
content/posts/ News posts
data/ Data files (YAML) exposed to templates via Roq
templates/ Qute templates (layouts and partials)
public/ Static assets (images, CSS, JS)
src/ Quarkus configuration
src/ Quarkus configuration and Java data mappings
.github/ GitHub Actions workflows
```

Expand All @@ -57,6 +58,20 @@ tags: [release]
future use (e.g. filtering). Common values: `release`, `team`, `tips`,
`testing`, `integration`. Multiple tags are supported: `[release, jakarta]`.

For release announcements, also add an entry at the top of `data/releases.yaml`
so the release appears in the binary distribution table on the Downloads page:

```yaml
- version: "7.0.1.Final"
date: "2026-07-15"
category: "Final"
cdi: "5.0"
```

For releases tracked in JIRA, also include `versionId: 12345678`. Releases
without `versionId` link to GitHub Releases for their changelog; releases with
`versionId` link to JIRA release notes.

Submit a pull request. On merge, the site is rebuilt and deployed automatically.

## Acknowledgments
Expand Down
6 changes: 2 additions & 4 deletions content/download.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
layout: page
layout: download
title: Download
aliases: [/dist]
---

# Download Weld
Expand Down Expand Up @@ -59,6 +60,3 @@ JUnit 5 extensions for testing CDI applications.

- [weld-osgi-bundle](https://central.sonatype.com/search?q=g:org.jboss.weld%20%20a:weld-osgi-bundle)

## Binary Distributions

Binary distribution table will be added here.
18 changes: 18 additions & 0 deletions content/posts/2026-06-10-weld-700Beta2.asciidoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
layout: post
title: Weld 7.0.0.Beta2
author: Matej Novotny
description: Weld 7.0.0.Beta2 — Jakarta Persistence 4.0 EntityAgent support
tags: [release]
---
:linkattrs:

Weld Core 7.0.0.Beta2 and Weld API 7.0.Beta2 are now available in Maven Central. +
This is a small release adding support for Jakarta Persistence 4.0 integration.

JPA 4.0 introduces `EntityAgent`, a stateless alternative to `EntityManager`. Containers can inject it using the new `@PersistenceAgent` annotation, similar to how `@PersistenceContext` works for `EntityManager`. This release updates the Weld SPI (link:https://github.com/weld/api/pull/258[weld/api#258, window="_blank"]) and adds the corresponding implementation in Core (link:https://github.com/weld/core/pull/3361[weld/core#3361, window="_blank"]).

Thanks to link:https://github.com/marko-bekhta[Marko Bekhta, window="_blank"] for contributing both PRs!

[ link:/download/[Download] ]
[ link:https://github.com/weld/core/releases/tag/7.0.0.Beta2[Release, window="_blank"] ]
Loading
Loading