Skip to content
Merged
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 scripts/generator/templates/template-release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,22 @@ Vaadin Flow requires Java Servlet API 6 and Java 17 or newer. It is tested on:

- Apache Tomcat 10.1
- Open Liberty 23
- RedHat JBoss EAP 8.0 beta
- RedHat JBoss EAP 8.1
- To work with RedHat JBoss EAP 8.0, you will need to add the following content to the `jboss-deployment-structure.xml` placed under `WEB-INF` folder
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe worth mentioning that the workaround is needed only for development mode. Production builds do not need this.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated the release note..
main branch is for V25, i think we need revisit all these servlet for testing.

<details>
<summary>Workaround for supporting RedHat JBoss EAP 8.0</summary>

```xml
<jboss-deployment-structure>
<deployment>
<exclude-subsystems>
<subsystem name="jaxrs" />
</exclude-subsystems>
</deployment>
</jboss-deployment-structure>
```

</details>
- WildFly 35
- Jetty 12
- Payara Server 6
Expand Down