Skip to content

Releases: serenity-bdd/serenity-jbehave

thucydides-jbehave-plugin-0.9.264

20 Feb 08:38
Compare
Choose a tag to compare

Commits:

  • 1d26065 Fixed THUCYDIDES-160 (@wakaleo)

  • 3dd8f69 Fixed issue with scenarios that were skipped due to a metafilter setting appearing as passing (@wakaleo)

  • 511166a THUCYDIDES-160: add ClassFinder tests for classes located in JAR files (@cvmocanu)

    When they are run from an IDE like IntelliJ, the tests that use a maven
    dependency do not test finding classes that are packaged in a JAR file.
    This is because IntelliJ will setup the dependencies so that one module
    depends on another module's .class files directly. This way, the IDE
    does not have to waste time to package classes to jar files, and the
    development is faster.

  • 55c0479 THUCYDIDES-160: fix broken test (@cvmocanu)

    The class SomeBoilerplateSteps was not annotated with [@given, so a test](https://github.com/Given, so a test)
    was failing. To make sure the test is fixed, please change the pom to
    depend on the latest version of thucydides-sample-alternative-resources.

  • 7325839 [maven-release-plugin] prepare release thucydides-jbehave-plugin-0.9.264 (@wakaleo)

  • 9f3663d THUCYDIDES-160: fix issue (@cvmocanu)

    This commit fixes the loading of classes from jar files or file-system
    directories, when the path contains characters which need to be
    URL-encoded (e.g. the space character).

  • b626344 [maven-release-plugin] prepare for next development iteration (@wakaleo)

  • d366a56 Updated dependencies (@wakaleo)

thucydides-jbehave-plugin-0.9.262

20 Feb 08:39
Compare
Choose a tag to compare

Commits:

thucydides-jbehave-plugin-0.9.260

20 Feb 08:39
Compare
Choose a tag to compare

Commits:

thucydides-jbehave-plugin-0.9.256

20 Feb 08:39
Compare
Choose a tag to compare

Commits:

thucydides-jbehave-plugin-0.9.255

20 Feb 08:39
Compare
Choose a tag to compare

Commits:

  • 1dacbee Updated versions (@wakaleo)

  • 773cdd9 fix THUCYDIDES-160 (no candidate steps found when path contains spaces)

    The expression "new File(url.getFile())" is buggy because the result of
    "url.getFile()" contains url-encoded characters (like "%20" instead of
    space).
    The fix is to use "new File(url.toURI())" instead, since that takes care
    of decoding url-encoded characters.
    See also: http://bugs.java.com/bugdatabase/view_bug.do?bug_id=4466485

  • a8c6a94 [maven-release-plugin] prepare release thucydides-jbehave-plugin-0.9.255 (@wakaleo)

  • fa36401 [maven-release-plugin] prepare for next development iteration (@wakaleo)

thucydides-jbehave-plugin-0.9.250

20 Feb 08:39
Compare
Choose a tag to compare

Commits:

thucydides-jbehave-plugin-0.9.244

20 Feb 08:40
Compare
Choose a tag to compare

Commits:

thucydides-jbehave-plugin-0.9.236

20 Feb 08:40
Compare
Choose a tag to compare

Commits:

thucydides-jbehave-plugin-0.9.235

20 Feb 08:40
Compare
Choose a tag to compare

Commits:

thucydides-jbehave-plugin-0.9.233

20 Feb 08:40
Compare
Choose a tag to compare

Commits:

  • 39a7d9a [maven-release-plugin] prepare for next development iteration (@wakaleo)
  • 3fb2bd0 [maven-release-plugin] prepare release thucydides-jbehave-plugin-0.9.233 (@wakaleo)
  • 5727efd Fixed a bug where @step libraries where incorrectly persisted between scenarios. This behavior is now deactivated by default, but can be activated by setting the 'reset.steps.each.scenario' property to 'false' (@wakaleo)