Seam Faces - Version 3.0.0.Beta1 is released. Several bugfixes as well as several new features have been included. This new version requires Weld Version 1.0.1.Beta1 or later. (Meaning GlassFish 3.1 or JBoss AS 6 M5+)

We have also begun integrating Seam Managed Transactions, however, this requires an optional dependency on the Seam Persistence Module.

http://seamframework.org/Seam3/FacesModule

<dependency>
    <groupId>org.jboss.seam.faces</groupId>
    <artifactId>seam-faces</artifactId>
    <version>3.0.0.Beta1</version>
</dependency>

Also note that JBoss Logging is now required instead of SLF4J.

<dependency>
    <groupId>org.jboss.logging</groupId>
    <artifactId>jboss-logging</artifactId>
    <version>1.0.0.Beta4</version>
</dependency>

Bug

  • [SEAMFACES-42] - IllegalProductException: WELD-000052 Cannot return null from a non-dependent producer method

Feature Request

  • [SEAMFACES-21] - raise before navigate event
  • [SEAMFACES-22] - create an input field container component that supplements a composite component
  • [SEAMFACES-54] - Need a producer for the standard Faces javax.faces.context.Flash object
  • [SEAMFACES-56] - Update Seam Faces to use JBoss Logging

Patch

  • [SEAMFACES-53] - The FlashScopedContext unnecessarily adds a fid parameter into the query string when only a single Flashcontext is active.


Back to top