Release notes are found in JIRA and also in docs of each release. We only update them though for final releases and not betas. For the latter you can at JIRA issues which have been solved but not yet released.
Cheers On 14 Jan 2013, at 17:01, Roy de Kleijn <roy.dekle...@polteq.com> wrote: > :) that solved my issue! > Where can we find release notes? (for both beta and stable releases? > > Thanks, > Roy > > Van: Mauro Talevi [mauro.tal...@aquilonia.org] > Verzonden: maandag 14 januari 2013 16:25 > Aan: user@jbehave.codehaus.org > Onderwerp: Re: [jbehave-user] empty output files when using multiple threads > > Please try 4.0-beta-3 > > > > On 14 Jan 2013, at 13:39, Roy de Kleijn <roy.dekle...@polteq.com> wrote: > >> Hi, >> >> I noticed something weird. >> >> When I execute multiple story files in multiple threads, then some of the >> output files are empty. >> When I execute multiple story files in a single thread, then all the output >> files are populated. >> >> Some code: >> pom.xml (to define the threads) >> <plugin> >> <groupId>org.jbehave</groupId> >> <artifactId>jbehave-maven-plugin</artifactId> >> <version>4.0-beta-1</version> >> <executions> >> <execution> >> <id>run-stories-as-embeddables</id> >> <phase>integration-test</phase> >> <configuration> >> <includes> >> <include>${embeddables}</include> >> </includes> >> <ignoreFailureInStories>false</ignoreFailureInStories> >> <ignoreFailureInView>true</ignoreFailureInView> >> <metaFilters> >> <metaFilter>+group ${group}</metaFilter> >> </metaFilters> >> <storyTimeoutInSecs>9000</storyTimeoutInSecs> >> <threads>1</threads> //or 2 >> </configuration> >> <goals> >> <goal>run-stories-as-embeddables</goal> >> <goal>unpack-view-resources</goal> >> </goals> >> </execution> >> <execution> >> <id>unpack-view-resources</id> >> <phase>process-resources</phase> >> <goals> >> <goal>unpack-view-resources</goal> >> </goals> >> <configuration> >> <viewDirectory>target/jbehave/view</viewDirectory> >> </configuration> >> </execution> >> </executions> >> <dependencies> >> <dependency> >> <groupId>log4j</groupId> >> <artifactId>log4j</artifactId> >> <version>1.2.17</version> >> </dependency> >> </dependencies> >> </plugin> >> >> >> my reporterconfig: >> .useStoryReporterBuilder( >> new StoryReporterBuilder() >> .withCodeLocation( >> CodeLocations >> .codeLocationFromClass(embeddableClass)) >> .withDefaultFormats() >> .withFormats(HTML, XML)) >> .useParameterConverters(parameterConverters); >> >> >> Has anybody noticed this before? >> Do I need to configure something extra when using multiple threads? (in >> regards to the reporting?) >> >> I hope to get this sorted soon, as this gives problems on our jenkins >> machine (we have flaky test outputs) >> >> >> Thanks in advance, >> Roy