As per usual, let's get the links out of the way first:
For Maven users, there is a new version of the Seam Bill of Materials:
<dependency>
<groupId>org.jboss.seam</groupId>
<artifactId>seam-bom</artifactId>
<version>3.1.0.Beta4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
I know that we promised a CR1 release for Seam 3.1 at about this time, however the Seam QA team have done their jobs a little too well and identified a number of issues with the Beta3 release which we wanted to get fixed before we go to a candidate release. The great news for this release is that we've fixed 68 issues - you can view the issue list here:
https://issues.jboss.org/secure/IssueNavigator.jspa?mode=hide&requestId=12315988
Included in this release is a number of new features, improved documentation and a brand new Arquillian-based structure for our test suites to make it easier to test each module on multiple containers. We've also squashed a great deal of bugs, improved stability, plus made a number of other minor improvements.
As we still have quite a few open issues remaining for the Seam 3.1 release, we will likely release another beta in the next couple of weeks. We want this release to be rock solid, so please try out the beta and let us know if you find any problems.
There was a small mistake in the BOM that we just released with Beta4. If you're using Seam Mail please use
<dependency> <groupId>org.jboss.seam.mail</groupId> <artifactId>seam-mail-api</artifactId> </dependency> <dependency> <groupId>org.jboss.seam.mail</groupId> <artifactId>seam-mail</artifactId> <scope>compile</scope> <version>3.1.0.Beta4</version> </dependency>Instead of seam-mail-impl. Sorry about that, it has been fixed in the BOM and will be correct for Beta5.
Author of Seam Catch
And it also looks like the Solder version was missed as well, it's pointing at 3.1.0.Beta3 instead of 3.1.0.Beta4. This shouldn't really affect users much, unless you're explicitly using Solder as a dependency. If that's the case, use the 3.1.0.Beta4 version, otherwise you will end up with multiple versions of Solder in your deployable archive. Again, sorry about that and it has been fixed.
Author of Seam Catch