Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Behat Laravel Package

behat/behat

Behat is a BDD testing framework for PHP that helps you specify and verify business expectations with readable scenarios. Install via Composer and run from vendor/bin/behat to execute your feature tests and contexts.

View on GitHub
Deep Wiki
Context7
3.30.0

Changed

  • Explicitly mark up interfaces, classes & methods that we consider to be the public API. This will not affect our backwards compatibility guarantees for the 3.x series, but from 4.0 onwards we will only guarantee BC for code that is explicitly marked as being part of the API. By @acoulton in #1807
  • Move gherkin configuration to dedicated GherkinOptions config object. The previous API for setting filters by calling ->withFilters() on Profile is deprecated and will be removed in 4.0. By @acoulton in #1798
  • Make Extension::process() explicit in the Extension interface & document Extension dependencies. Clarifies that extensions should declare their own dependencies on any symfony packages they interact with directly. By @acoulton in #1795 and #1804
  • Drop PHP 8.1 support by @carlos-granados in #1782

Added

  • Support configuring GherkinCompatibilityMode to control how Gherkin files are parsed. The default mode behaves identically to legacy parser behaviour. The opt-in experimental gherkin-32 mode parses equivalent to the official cucumber/gherkin parsers. We expect to make gherkin-32 the default in the 4.0 release. See the documentation for more details. By @acoulton in #1799
  • Add deprecation collector to capture and print Behat deprecations. Users can opt-in to display and/or fail on deprecations using the methods on the TesterOptions config object. Extension developers can log their own runtime deprecations by calling DeprecationCollector::trigger(). By @carlos-granados in #1794

Internal

3.29.0

Changed

  • Add initial backwards-compatible return types to final classes, final methods and private methods. These changes should not impact end-users or extension authors. This is work towards the upcoming 4.0.0 release, which will add support for symfony8 and introduce strict types throughout. By @acoulton in #1763
3.28.0

Changed

  • Add backwards-compatible return types ahead of symfony8 by @Kocal (cherry-picked by @acoulton) in #1702
  • Rename the default branch from master to 3.x and remove the dev-master composer branch alias by @acoulton in #1708

Added

  • Add printSkippedSteps option to pretty formatter (true by default) by @carlos-granados in #1705
  • Accept multiple path arguments on CLI This PR was originally contributed to a 4.x branch which was then abandoned. The feature was later implemented in 3.x by a different contributor, but we wanted to also credit the previous work done. The only actual change in this release is an internal (backwards compatible) change to the use of WrongPathsException. By @adrienbrault in #1397 and merged back to 3.x by @acoulton in #1693

Fixed

Internal

3.27.0

Changed

Added

Internal

  • Prepare the pretty printer for future changes in the Gherkin parser by @stof in #1690
  • Add tests proving that multiple Examples tables are supported by @acoulton in #1696
3.26.0

Changed

  • Support configuring how file paths are rendered by the JUnit formatter (relative or absolute, removing a prefix, etc). Previously, the JUnit formatter would print an absolute path unless the file was beneath the current working directory. The new default is to print paths relative to the Behat base directory - in most cases this will also be the current working directory and therefore the result will be the same. However, in some cases the reported file paths will change so you may wish to review the configuration e.g. if your tooling aggregates build results over time. By @carlos-granados in #1677

Added

Fixed

  • error_reporting in the Behat configuration should take precedence over system defaults by @carlos-granados in #1675
  • Ensure runtime assertions are checked during --convert-config by @carlos-granados in #1679
  • Include consistent index & placeholders for Example names in JUnit by @acoulton in [#1682]https://github.com/Behat/Behat/pull/1682) based on work previously done by @uuf6429.

Internal

3.25.0

Added

Fixed

  • Provide more context when failing with unexpected multiline args by @acoulton in #1668

Internal

3.24.1

Fixed

3.24.0

Changed

  • Throw if a step provides an unexpected PyString or Table argument, to highlight cases where step definitions do not match their usage causing potential false-positive passes. If users have stubbed steps with incomplete arguments (e.g. to throw a PendingException) these will now fail before executing. Steps generated from Behat's snippets or IDEs should not be affected as these should already define appropriate PyStringNode / TableNode arguments. By @jdeniau in #1614

Added

  • Display line number of failing test in pretty formatter by @jdeniau in #1615

Fixed

  • Ensure that suggested step definitions actually match the step text by @acoulton in #1656

Internal

3.23.0

Added

Fixed

  • Relaxed constraints on nikic/php-parser and composer/xdebug-handler dependencies to allow wider use of newer Behat releases by @acoulton in #1650 and #1649

Internal

3.16.1

Changed

  • Remove dependency on file location in Gherkin package. The (internal) service container parameters gherkin.paths.lib and gherkin.paths.i18n are no longer defined or used. Minimum behat/gherkin version is now ^4.12.0. By @carlos-granados in #1604, backported from 3.20.0 to fix errors for users stuck on 3.16.0 due to dependency conflicts.
3.22.0

Changed

  • Suggested method names for new step definitions will no longer be transliterated to ASCII. Users working in languages whose characters are mostly outside the allowed UTF-8 range will see generic stepDefinitionX names. We have provided an extension point for custom suggestion implementations, and would consider providing an official extension. If this affects you, please open a discussion on the Behat repository. By @acoulton in #1633
  • The behat/transliterator package is no longer required and will shortly be archived.

Internal

3.21.1

Fixed

  • ExceptionPresenter was causing a TypeError when constructed with a null $basePath by @acoulton in #1631
3.21.0

Fixed

  • JUnit formatter options were being lost when converting config to PHP by @acoulton in #1622
  • Contexts with constructor arguments were not properly converted to PHP configuration by @acoulton in #1619

Added

  • New CLI and configuration option to print all paths as absolute paths by @carlos-granados in #1620
  • Expose PHP configuration interface for tester and error_reporting options by @acoulton in #1626
  • Improve config conversion to PHP to generate class references instead of string names; reference extensions by their fully qualified class names; convert output_verbosity values to constants; and convert tester and error_reporting configuration to PHP by @acoulton in #1619, #1623 and #1626

Internal

  • Refactor features for configurable tester / error_reporting options by @acoulton in #1625
3.20.0

Changed

  • Remove dependency on file location in Gherkin package. The (internal) service container parameters gherkin.paths.lib and gherkin.paths.i18n are no longer defined or used. Minimum behat/gherkin version is now ^4.12.0. By @carlos-granados in #1604.

Added

  • --allow-no-tests CLI option to pass even if no specifications found by @Kingdutch in #1420
  • --convert-config CLI option to convert the yaml config to php by @carlos-granados in #1605

Internal

3.19.0

Changed

  • Remove internal wrappers for PSR Container interfaces - may affect projects using container-interop/container-interop < 1.2.0 (released in 2017, package now deprecated and unsupported by behat since 2021). By @acoulton in #1584
  • Remove legacy Symfony event dispatchers - these were internal wrappers to support symfony <5 and >=5, both now redundant. By @carlos-granados in #1585

Added

Fixed

Internal

3.18.1

Fixed

  • Fix handling of show_output option when used with a custom formatter that does not define it by @carlos-granados in #1587
3.18.0

Changed

  • Add new methods to the Behat\Hook\Hook and Behat\Step\Definition interfaces used internally by step definition attributes by @carlos-granados in #1573

Added

  • Add show_output formatter option to control if/when to display stdout generated during tests by @carlos-granados in #1576

Fixed

  • Do not disable xdebug if there is an active debugging connection by @carlos-granados in #1581
  • Inherit step definition attributes on methods extended from parent Context by @fmatsos in #1567

Internal

  • Add PHPStan and improve / fix docblock annotations and type-safety within methods to achieve level 3 by @carlos-granados in #1571, #1573 #1578 and by @stof in #1575
  • Use annotations rather than attributes for step definitions in Behat's own feature suites by @fmatsos in #1564
  • Remove composer dev dependency on legacy herrera-io/box by @acoulton in #1580
  • Do not run ci builds if only markdown files have changed by @codisart in #1582
3.17.0

Changed

  • Use attributes rather than annotations when generating suggested Context snippets by @fmatsos in #1549 and #1569
  • Disable Xdebug unless --xdebug is specified on the CLI, to improve performance by @carlos-granados in #1560

Added

Fixed

  • Show more meaningful message if no output_path is specified for the junit formatter by @carlos-granados in #1533
  • Fix error from the JUnit printer if scenario has no title by @mvhirsch in #1525
  • Fix naming of suggested methods when generating regex snippets for steps defined with single quotes by @carlos-granados in #1524

Internal

3.16.0

Changed

  • Drop support for PHP < 8.1, Symfony < 5.4 and Symfony 6.0 - 6.3. In future Behat will drop support for PHP and symfony versions as they reach EOL. by @AlexSkrypnyk in #1504
  • ApplicationFactory::VERSION is deprecated and will not be updated, Behat now internally uses composer's runtime API to report the running version. by @acoulton in #1520
  • API changes to 2 final Behat classes that are not considered part of the public API (but were not explicitly marked as such). This may affect users who are creating instances direct rather than through the DI container as expected. See Behat\Behat\EventDispatcher\Cli\StopOnFailureController in #1501 and Behat\Behat\Tester\Cli\RerunController in #1518.

Added

  • Render JUnit test durations with millisecond precision e.g. 1.234 rather than only as integer seconds by @uuf6429 in #1460
  • Support specifying stop_on_failure within behat.yml by @jdeniau in #1512, #1501 and #1516
  • Allow BeforeSuite/AfterSuite hooks to be marked with attributes by @rpkamp in #1511

Fixed

  • --rerun all tests that should be considered failed (including undefined, when strict) by @carlos-granados in #1518
  • Improve handling exceptions from unsupported PHPUnit versions by @acoulton and @uuf6429 in #1521
  • Fix high memory consumption when using Junit formatter by @simon-auch in #1423
  • Fix error when attempting to format long output messages by @jonpugh in #1439

Internal

3.15.0

Note: This release also bumps the minor version of behat/gherkin to 4.10.0, which was released on 2024-10-19 with a behaviour-changing bugfix related to the parsing of \ characters in scenarios. See the Behat/Gherkin CHANGELOG.

Added

Fixed

Internal

3.14.0

Added

  • 🎉 Symfony 7 is now supported 🎉 by @dmaicher in #1442
  • PHP 8.3 is now supported (no code changes were required) by @jrfnl in #1440

Fixed

Internal

3.13.0

Added

3.12.0

Added

Fixed

Other contributions

3.11.0

Added

Fixed

Other contributions

3.9.1
3.10.0
3.9.0

What's Changed

New Contributors

3.8.1

Fixed

3.8.0

Added

Fixed

Changed

3.7.0

Added

Fixed

Changed

3.6.1

Fixed

  • #1275: fix php 7.1 deprecation for ReflectionType::__toString
  • #1278: Fix fatal when unexpected symfony/event-dispatcher version is installed
3.6.0

Added

  • #1244: Hide internal steps from stack traces in very verbose mode

Fixed

  • #1238: Don't run Junit output if ext-dom is not present (and suggest in composer)

Changed

  • #1256: Update dependencies to support Symfony 5.x
  • #1171: Remove symfony/class-loader dependency
  • #1170: Switch to PSR-4 autoloading
  • #1230: PHP 7.3 support
  • #1230: Suggest ext-dom for JUnit support
3.5.0

Added

  • #1144: Allow to use arrays as context parameters
  • #1081: Allow passing null as a named context parameter
  • #1083: Time attribute in JUnit output

Changed

  • #1153: Cache pattern to regex transformations
  • #1155: Remove composer suggestions

Fixed

  • Custom container must be public for symfony 4
  • #1160: Register CLI services as synthetic
  • #1163: Allow for new-style symfony serialisation
  • #1130: Fix quoteless definition arguments matching with unicode characters
3.4.3

Fixed

  • BC break due to parameters resolution in Dependency Injection Container
3.4.2

Added

  • #1095: Support for Symfony 4.x
  • #1096: Allow to use latest PHPUnit
3.4.1

Fixed

  • PHP 5.3 style cleanup.
3.4.0

Added

  • #1071: Services auto-wiring
  • #1054: PSR-11 support for helper containers.
  • Support for modern PHPUnit.

Fixed

  • #1056: Make Gherkin aware of the base path so it can filter correctly

Changed

  • #1069: Rework argument validators

Deprecated

  • #1054: Deprecated usage of Interop\Container. Versions prior to 1.2 are not supported, but 1.2 is a non-breaking change. If you depend heavily on Interop, upgrade to 1.2, which is still supported by helper containers. Aim to migrate to Psr before Behat 4.0 shows up on horizon
  • PHP versions prior to 5.6 and HHVM were dropped from CI build matrix. It doesn't mean that we'll start using features of 5.6 yet, it just means we don't get out of our way to support 5.3 and 5.4 anymore. In 4.0 support will be completely dropped.
3.3.1

Added

  • #976: Add tests to check that snippets treat words containing apostrophes as a single word

Fixed

  • #993 Fix mixed arguments organizer not marking typehinted arguments as "defined"
  • #992 Do not misinterpret first argument as a numbered argument if it is in fact typehinted
  • #1028 Parent / Child class argument ambiguity issue with MixedArgumentResolver
3.3.0

Added

  • #973: Added helper containers
  • #973: Added SuiteScopedResolverFactory extension point

Removed

  • Removed php 5.3 from the Travis build matrix. You can consider it official end of support. 5.4 and 5.5 will follow shortly.
3.2.3

Fixed

  • #971: Added support for suite names with hyphens
3.2.2

Fixed

  • #959: Fix transformations not sorted properly on different php version
3.2.1

Changed

  • #955: --snippets-for is not required now as interactive mode is the new default
  • #954: Stop execution on missing steps when running with --stop-on-failure and --strict options
3.2.0

Added

  • #910: Return type based transformations
  • #903: Multiline step definitions support
  • #930: Whole table transformation
  • #935: Narrative filters in suites
  • #936: Debug command
  • #931: Exception handlers extension point
  • #870: Added build-related files and folders to .gitattributes
  • #946: Official full Windows support with CI (AppVeyor) on every build

Changed

  • #922: Snippets generation revamp
  • #920: More context for pending/failed steps with progress formatter
  • #905: Transformations refactoring
  • #864: Use only one autoloader if possible
  • #920: Improve "No specifications found" error message
  • Refactor changelog to follow Keep a Changelog
  • Refreshed CONTRIBUTING.md
  • Refreshed Scrutinizer config

Fixed

  • #911: Fix context isolation for Scenario Outlines
  • #860: Include basepath in generateKey
  • #857: Only cache failed scenario's for rerun
  • #933: Save failed runs with suite information
  • #833: Properly handle interupts on PHP7
  • #904: Provide clearer exception message when long token names used
  • #941: Transformation should be allowed if printable chars are used

Deprecated

  • #922: *SnippetAcceptingContext interfaces
  • #905: RuntimeTransformation
  • #905: Transformation::getPattern
  • #920: StepStat

Removed

  • Remove behat.bat (by Konstantin Kudryashov)
3.1.0

Changed

  • Add support for Symfony 3 (thanks @benji07)
  • Add ability to specify execution order of suite (thanks @ciaranmcnulty)
  • Add translated keywords in definition printer (thanks @WouterJ)
  • Add 'rowtable' transformations (thanks @PurpleBooth)
  • Add 'narrative' filters (thanks @WouterJ)
  • Add JUnit formatter (thanks @WouterJ and @james75)
  • Add Japanese translation (thanks @SNakano)
  • Add romanian translation for formatters (thanks @Chriton)
  • Add table row transformations (thanks @ciaranmcnulty)
  • Add support for negative numbers without surrounding quotes (thanks @ryancookdev)
  • Handle case when non-existent config file is used (thanks @watermanio)
  • Handle non-default error_reporting()
  • Handle PHP7 errors implementing Throwable
  • Fix autoloading from the global installation (thanks @sroze)
  • Fix scenario scope naming (thanks @Taluu)
  • Fix output buffering errors (thanks @tscheepers)
  • Fix xdebug maximum nesting level errors (thanks @WorkingDevel)
  • Fix weird edge case in GroupedSpecificationIterator
  • Allow --verbose flag at CLI (thanks @pfrenssen)
  • Allow hyphens in suite names (thanks @WouterJ)
  • Allow suite settings with null values to exist (thanks @docteurklein)
  • Improve "can not generate snippets" message
  • Improve performance of Turnip parsing (thanks @Sam-Burns)
  • Improve the snippet generation by auto-importing needed classes (thanks @stof)
3.0.15

Changed

  • Fix broken null-transformations (Issue #669)
  • Improve exception messages (thanks @dantleech)
3.0.14

Changed

  • Improve generated context class
3.0.13

Changed

  • Add support for typehinted parameters
  • Allow any whitespace characters at the end of context class
  • Fix scenario with decimal number following string in Turnip pattern
  • Fix scenario with empty string in step with Turnip pattern
  • Fix scenario where step has slashes in Turnip pattern
3.0.12

Changed

  • Fix remaining issues with the definition arguments parsing
  • Introduce Testwork\Argument component
3.0.11

Changed

  • Fix argument resolution for functions with default values (thanks @alesblaznik)
  • Fix step colouring of internationalised definitions
  • Refactor ContextFactory and RepositorySearchEngine arguments resolution into the new Testwork component - ArgumentResolver
3.0.10

Changed

  • Fix argument resolution when named arguments used and method has defaults (thanks @WouterJ)
  • Fix support for decimal numbers in turnip placeholders
3.0.9

Changed

  • Fix definition translations reading bug with multi-suite configurations (thanks @WouterJ for reporting)
  • Fix pretty printer bug with failing background and 2 scenarios (thanks @andytson for reporting)
  • Fix memory footprint calculation (thanks @dready for reporting)
3.0.8

Changed

  • Profile level Gherkin filters are now overridable by CLI filter options
  • Rerun cache path is now configurable
  • Fix turnip-based step definitions starting from token
  • Fix token-based transformations interfering with regex-based ones
  • Rerun cache dump have been optimised
3.0.7

Changed

  • Properly generate keywords in snippets for non-english and And, But steps (thanks @kibao)
  • Fix regex check bug with transformations that return objects (thanks @vaidasm)
  • Return ability to use custom formatters by specifiying their class names
3.0.6

Changed

  • Fix a small extension registration shortcut issue introduced in previous release (thanks @FrenkyNet)
3.0.5

Changed

  • Fix a suite initialization bug when suite contexts have arguments
  • Fix wrong handling of an empty behat.yml
  • Explicitly fail when provided context argument is not supported by constructor
  • Fix extension registration shortcut for 3rd-part plugins
3.0.4

Changed

  • Make sure that Before*Tested is always executed before Before* hooks
  • Introduce additional After*Setup and Before*Teardown events
  • Improved the error reporting for invalid regexes in step definitions (thanks @stof)
3.0.3

Changed

  • Support definition transformations without capture groups
  • Override gherkin filters in custom profiles instead of merging them
  • Refactored the handling of colors to set them earlier (#513 thanks to @stof)
3.0.2

Changed

  • Fix warning on empty scenarios
3.0.1

Changed

  • Make sure that AfterStep hook is running even if step is failed (504)
  • Optimised the way service wrappers are registered (thanks @stof)
3.0.0

Changed

  • Brand new highly extendable and clear architecture
  • Support for multiple suites per profile
  • Support for multiple contexts per suite
  • Support for multiple feature paths per suite
  • Support for filtered suites
  • Support for unique context constructor parameters
  • Hooks are first class citizens and thus have their own error and output buffering
  • Turnip syntax in definitions
  • Reworked formatters with improved error and output buffering
  • Rerun does not require precache run
  • New gherkin role filter
  • Improved error handling with 3 levels of error reporting (-v, -vv, -vvv)
  • Dropped subcontexts
  • Dropped chained steps
  • Dropped closured definitions
3.0.0rc3

Changed

3.0.0rc2] - 2014-01-10

Changed

  • Fixed progress formatter hooks support

  • Reintroduced suite hooks (with an additional functionality of name filtering)

  • Behat tells about steps that it couldn't generate snippets for

  • Memory consumption optimizations

  • Fixed contexts inheritance

  • New formatter translations

  • Added constructor arguments and class resolving extension points to context creation routine

  • Simplified and cleaned Context package of the Behat

  • Minor public API changes across the board (simplification)

  • Optimized subject finding routine and cleaned extension points (SubjectLocator)

  • Both ExampleTested and ScenarioTested now use same method name - getScenario()

  • Added exception accessors to StepTestResult

  • Renamed ExerciseTester to Exercise

  • Added HookableEvent to Testwork, which extends LifecycleEvent

  • Made priority attribute of a tag optional

  • Changed all occurrences of classname to class across public API

  • Renamed GherkinSuite to GenericSuite and moved it into the Testwork

  • Added initialize call to extension lifecycle and Extension interface

  • Renamed some extensions config keys to be more intuitive

3.0.0rc1

Changed

  • New layered and highly extendable architecture
  • Standard output buffering of definitions and hooks
  • Hooks as first class citizens
  • New pretty and progress formatters
  • Huge speed and memory footprint improvements
  • Moved 40% of non-Behat related codebase into a shared foundation called Testwork
3.0.0beta8

Changed

  • Add *SnippetsFriendlyInterface(s) that are now required to generate snippets
  • Add support for turnip-style definitions
  • Use turnip-style definitions by default from --init
  • Rename SuitesLoader to SuitesRegistry to clarify purpose
  • Extract snippet generators into extendable component
  • Extract context generators into extendable component
3.0.0beta7

Changed

  • Multivalue options are now array options (format, output, name and tags)
  • Added back junit formatter (should support all junit formats from 4 to 7)
  • Added back html formatter
  • Small optimizations and refactorings
  • Proper handling of hook failures
3.0.0beta6

Changed

  • Skip step execution and AfterStep hook if its BeforeStep hook failed
  • Fix failure-initiated skips of hooks in Scenario and Example testers
  • Refactor Suite routines
  • Cleanup Context Pools
  • Enhance --definitions option with suites output and regex search
  • Add toString() methods to DefinitionInterface and TransformationInterface
  • Add SnippetlessContextInterface to Snippet namespace - to prevent snippet generation for custom contexts
3.0.0beta5

Changed

  • Switch to Gherkin 3.0 parser
  • Complete rewrite of pretty formatter (much better outline handling)
  • Automatically add use for PendingException to contexts during --append-snippets
  • Lots of optimizations
3.0.0beta4

Changed

  • Cleanup suite configuration sub-system
  • New ability to turn off specific suites through behat.yml
  • Support for danish language
3.0.0beta3

Changed

  • Refactor extension sub-system. Update ExtensionInterface
  • Avoid trying to create folders for non-fs suites
3.0.0beta2

Changed

  • Remove support for Symfony 2.0 components
3.0.0beta1

Changed

  • New suite-centric architecture
  • New context pools sub-system with multi-context support
  • New dynamic event-driven testing core
  • Refactored console processors sub-system
  • Refactored formatters management sub-system
  • 8 new process extension points and 36 generic execution extension points
  • Gherkin caching is enabled by default
  • Rerun is enabled by default (use --rerun to rerun failed scenarios)
  • New Gherkin Role filter
  • Subcontexts removed in favor of context pools
  • Chained steps extracted into separate extension
  • Closured step definitions removed
2.5.0

Changed

  • First Behat LTS release
  • Update Junit formatter to reflect latest junit format (thanks @alistairstead)
  • Fix some container options
2.4.6

Changed

  • New --stop-on-failure option
  • Support JSON in environment variables
  • Update Gherkin
  • Support Symfony 2.3
  • Out-of-the-box support for PHPUnit assertions pretty output
2.4.5

Changed

  • Added wrapping of lines in progress formatter
  • Added --append-to option to be able to add snippets to custom class
  • Both ScenarioEvent and OutlineExampleEvent now extend same BaseScenarioEvent class
  • Highly improved ability to create simple custom extensions
  • Always hide stack traces for PendingException
  • Ensured compatibility with all major symfony versions
  • Fixed configs import directive and loading precedence
  • Fixed path to vendor dir (solves problem of custom vendor dirs)
2.4.4

Changed

  • Fixed RuntimeException namespacing error
  • Added FormatterManager::disableFormatter(s) method
  • Updated Gherkin parser and fixed couple of helper bugs
2.4.3

Changed

  • Fixed broken output_path setting (issue #169)
  • Added shellbang to phar executable (issue #167)
  • Added feature title to progress exceptions (issue #166)
  • Tuned failed formatter to print only failed examples in outline (issue #154)
  • Small bugfixes
2.4.2

Changed

  • Fixed broken autoloading with Composer installation
2.4.1

Changed

  • Force custom context class usage if user changed it from FeatureContext
  • Clarified Context class not found exception
  • Use CWD for CLI options, basepath (config path) for everything else
  • Pass behat.extension.classes container param to extensions during their load
  • Tuned event_subscriber priorities
  • Use require_once instead of require in closured loaders
  • Fixed transformers bug with falsy transformations (that return falsy values)
  • Fixed custom formatters definition bug
  • Fixed formatter manager exception bug
  • Fixed czech translation
  • Fixed CS to be PSR2 compliant
2.4.0

Changed

  • New extension system based on Symfony2 DIC component
  • Refactored paths reading system (now relative paths are fully supported)
  • Support latest Composer changes
  • Removed static constraint for transformations
  • Updated to latest Gherkin with immutable AST
  • Fixed couple of definition snippet generator bugs
  • Option for HTML formatter to provide step definition links
  • Added fallback locale (in case if provided lang is unsupported yet)
  • Print step snippets in HTML formatter only if they're enabled
  • Escape placeholder brackets in HTML formatter
  • Use different names for examples in JUnit formatter
  • Major core cleanup
2.3.5

Changed

  • Fixed formatter language configuration and locale guesser
2.3.4

Changed

  • Added StepEvent::getLogicalParent(). Fixed issue ### 115

2.3.3 - 2012-03-09

Changed

  • Implemented Gherkin caching support (--cache)
  • Line ranges filtering support (behat features/some.feature:12-19. Thanks @headrevision)
  • behat.yml.dist configs support out of the box
  • Minor bug fixes
  • Updated Gherkin
2.3.2

Changed

  • Fixed bug in ErrorException, that caused wrong exceptions on warnings and notices
2.3.1

Changed

  • Updated error handler to avoid suppressed exceptions
  • Autoload bootstrap scripts in their name order
  • Updated Gherkin dependency to v## 2.0.1

2.3.0 - 2012-01-19

Changed

  • Switch to the Behat\Gherkin 2.0 usage
  • Migration to the single-file translation
  • Support for callables inside steps chains
  • Support for *.yml and *.php as definition translations
  • Added opposite options to option switchers (--[no-]colors, --[no-]multiline, etc.)
  • Redesigned --story-syntax
  • Refactored Runner
  • Performance improvements
  • Bugfixes
2.2.7

Changed

  • Added ability to search translated definitions with --definitions
  • Fixed custom formatters use bug
2.2.6

Changed

  • Fixed pretty and html formatters printing of undefined steps in outlines
2.2.5

Changed

  • BEHAT_PARAMS env variable support (083092e)
  • HTML formatter print styles optimization (@davedevelopment)
2.2.4

Changed

  • Prevent method name duplication with definition snippets
2.2.3

Changed

  • Fixed couple of --append-snippets bugs
2.2.2

Changed

  • Fixed Composer deps
2.2.1

Changed

  • Fixed Composer package bin
2.2.0

Changed

  • Multiple formats and outputs support
  • New snippets formatter
  • New failed formatter
  • Updated output of -d option
  • Search abilities added to -d option
  • New --dry-run option
  • New --append-snippets option
  • Rerun functionality refactored to use failed formatter internally
  • Overall code refactoring and cleaning
  • Polish translation added (Joseph Bielawski)
  • Spanish translation updated (Andrés Botero)
  • Locale autodetect
2.1.3

Changed

  • Substep translations support
  • Correctly print undefined substeps in pretty printer
  • @Transform callback now gets all provided matches
  • Always set proper encoding (UTF## 8)

2.1.2 - 2011-10-12

Changed

  • Fixed filtered feature hooks
  • Fixed JUnit formatter time output in some locales
2.1.1

Changed

  • Fixed multiline titles printing bug
  • Fixed outline parameter inside step argument printing bug
2.1.0

Changed

  • Totally revamped HTML formatter template
  • Added transliteration support to definition snippets (for most langs)
  • Written missed features and fixed some bugs
  • Stabilization fixes for 3 major OS: MacOS/Ubuntu/Windows
2.0.5

Changed

  • Cleaned ContextDispatcher extension points
  • Cleaned context-parameters passing behavior
2.0.4

Changed

  • Subcontexts aliasing and retrieving
  • Multiple steps chaining
  • --snippets-paths option to show steps alongside the snippets
  • getContextParameters() method in SuiteEvent and FeatureEvent
  • Updated to Symfony2 stable components
  • Spanish translation
  • Dutch translation
2.0.3

Changed

  • Fixed JUnit formatter CDATA output
2.0.2

Changed

  • Added extra checks to context instance mapper
  • Fixed i18n support in definitions printer
  • Refactored Gherkin tags inheritance
2.0.1

Changed

  • Exception prefix added to statuses. Now you should throw PendingException instead of just Pending
2.0.0

Changed

  • Brand new Context-oriented architecture
  • Refactored --definitions (--steps) to print more useful info
  • Rafactored --story-syntax (--usage) to print more useful info
  • Refactored Command to use separate processors
  • Added --no-paths option
  • Added --no-snippets option
  • Added --expand option to expand outlines
  • phar package
  • Faster autoloader
  • Steps chaining added
  • Added BEHAT_ERROR_REPORTING constant to change error_repoting level
  • Fixed some Gherkin bugs
  • Fixed lots of bugs in Behat itself
1.1.9

Changed

  • Updated to the latest Symfony components
1.1.8

Changed

  • Fixed empty match printing in Pretty and HTML formatters
  • Updated to latest Symfony components
1.1.7

Changed

  • Fixed steps colorization bug in outline
  • Additional checks in config import routine
1.1.6

Changed

  • Updated Symfony vendors
  • Refactored console formatters
1.1.5

Changed

  • Fixed CWD path finding
  • Fixed HTML formatter (thanks @glenjamin)
1.1.4

Changed

  • Fixed --out option usage critical bug
  • Added ability to specify output_path from config file
1.1.3

Changed

  • JUnit formatter fix
  • Formatters basePath fix. Now formatters uses CWD as path trimmer
  • Relative paths locator bug fix
  • Show table argument header in HTML formatter
1.1.2

Changed

  • Fixed custom features path locator bug(issue ### 020)

1.1.1 - 2011-04-21

Changed

  • Fixed paths finding routines
  • Totally refactored BehatCommand
  • Added rerun functionality (--rerun)
  • Ability to remove previously specified paths in behat.yml
  • Bugfixes and little tweaks
1.1.0

Changed

  • New configuration system with profiles and imports support
  • New event system
  • Environment parameters support
  • Named regex arguments support
  • Japanese translation for formatters
  • JUnit formatter bugfixes
  • HTML and Pretty formatters multiple arguments print bugfix
  • Step snippets (proposals) bugfixes
  • Updated vendor libraries
1.0.0

Changed

  • Changed XSD
  • Updated vendors
1.0.0RC6

Changed

  • Cleaned command options
  • Added --init option
  • Multiple paths support in behat.yml
  • Application options refactoring
1.0.0RC5

Changed

  • Windows support
  • Bundled features hooks optimizations
1.0.0RC4

Changed

  • Pretty formatter tag printing fix
  • Custom formatter specification fix in behat.yml
  • Symfony components updated
  • Extension configuration manager (Symfony\Component\Config component)
  • Cleaning of behat.yml configurator (thanks to Symfony\Component\Config)
  • Additional formatter parameters support in behat.yml
1.0.0RC3

Changed

  • Event dispatcher binding optimizations
  • Command API optimizations for easier overloading
  • Formatter path trimming bugfix
  • BehatExtension config merging support
1.0.0RC2

Changed

  • Step printing option bugfix
1.0.0RC1

Changed

  • Gherkin DSL parser is standalone project
  • Own Behat namespace for both Behat & Gherkin
  • Fully rewritten formatters (much cleaner & beautifull API)
  • Big refactoring of whole Behat code (clean code DRYing)
  • Config file is now handled by standart-driven DIC extension (cleaner behat.yml)
  • API documentation retouched
  • New --strict option
  • New --no-multiline option
  • Feature examples in your language with --usage
  • Available definitions listing with --steps
  • Definition i18n
  • Command refactoring (much cleaner API & actions)
  • Event system refactoring
  • 42 new languages with new Gherkin DSL parser
0.3.6

Changed

  • [Behat] Updated Symfony2 Components to latest PR4
  • [Gherkin] Added French support (fr)
  • [Gherkin] Added German support (de)
  • [Behat] Small bugfixes
0.3.5

Changed

  • [Behat] Refactored EnvironmentBuilder to allow Environment service definition overload
0.3.4

Changed

  • [Behat] Introduced environment builder
  • [Gherkin,Behat] id locale support
0.3.3

Changed

  • [Gherkin] Added ability to create Table & PyString nodes with hands (in your step to step calls for example)
  • [Gherkin] Added getRowsHash() method to TableNode, so now you can "rotate" given tables
  • [Gherkin] You now can add comments before language specification in your feature files
0.3.2

Changed

  • [Gherkin] Added ability to specify extended langs (en-US)
  • [Behat,Gherkin] Added pt-BR translation
0.3.1

Changed

  • [Behat] JUnit formatter
  • [Behat] Pretty & HTML formatter background hooks fix
  • [Behat] Other small fixes
0.3.0

Changed

  • [Behat] Refactored tags filter
  • [Behat] Added name filter
  • [Behat] Refactored hooks
  • [Behat] Added tagged/named hooks
  • [Behat] Customizable HTML formatter with w3c valid default markup
  • [Behat] Ability to specify out path for formatters
  • [Behat] Bunch of new options
  • [Behat] DIC optimisations
0.2.5

Changed

  • [Behat] Format manager introduced
  • [Behat] Formatters refactoring
  • [Behat] Optmized container parameters to support EverzetBehatBundle
  • [Behat] --no-color => --no-colors
0.2.4

Changed

  • [Behat] Autoguess of colors support
  • [Behat] Formatter setup bugfix (properl casing)
0.2.3

Changed

  • [Behat] Filters optimisations
  • [Behat] Changed Core Loaders with topic-specific (StepDefinition\Loader\PHPLoader, Features\Loader\GherkinLoader)
  • [Behat] Simplified TestCommand in prepare of Symfony2 BehatBundle
  • [Behat] Configuration file/path setting update (you can now create behat.yml inside ./config/behat.yml & Behat will load it
  • [Behat] Updated Redundant & Ambiguous exceptions behavior
0.2.2

Changed

  • [Behat] Configuration file/path setting update
0.2.1

Changed

  • [PEAR] Fix path to phpbin on installation
0.2.0

Changed

  • [Behat] Brand new stateless testers, based on Visitor pattern
  • [Behat] Refactored event listeners & event names
  • [Behat] Refactored formatters to confirm with new stateless testers (statuses now sent as event parameters)
  • [Behat] Refactored ConsoleFormatter (and removed base formatter)
  • [Behat] Removed custom I18n classes & refactored Translator routines in flavor of Symfony\Component\Translation
  • [Behat] Added missed translation strings into XLIFF files
  • [Behat] Optimised multiline arguments (Node instances are sent to definitions instead of their plain representations)
  • [Behat] Support for Scenario Outline tokens replace in multiline arguments (tables & pystrings)
  • [Behat] Step arguments transformations (including table transformations)
  • [Behat] Colorize inline step arguments
  • [Behat] Optimized exit statuses of CLI
  • [Behat] Added ability to turn-off colors
  • [Behat] Added ability to translate formatters output with --i18n option
  • [Behat] Bunch of new core feature tests
  • [Gherkin] Parser now uses Symfony Dependency Injection to
  • [Gherkin] Refactored parser to be like AST (Nodes that supports Visitor pattern)
  • [Gherkin] Comments support
  • [Gherkin] Fixed PHPUnit warnings
  • [Behat,Gherkin] PEAR release script to support http://pear.everzet.com release model
  • [Behat,Gherkin] DIC naming refactoring
  • [Behat,Gherkin] Autoloader refactoring
  • [Behat,Gherkin] Removed Zend & Goutte depencies
0.1.5

Changed

  • Added ability to call other steps inside step definition
  • Added profiles
  • Refactored container creation routine
  • Single quotes support in step definitions
  • Added tests for hooks, profiles, inline steps
0.1.4

Changed

  • Refactored code
  • Removed logic from object constructors
  • Added Loader & Filter interfaces
0.1.3

Changed

  • Ability to specify arrays of paths/files for loaders
  • Event hooks and support for support/hooks.php
  • Formatters listens events with smallest priority
  • Don't try to load steps if steps folder doesn't exists
  • Bugfixes/refactoring
0.1.2

Changed

  • Added ability to read from behat.yml and behat.xml
  • Moved tags filter to separate object
  • Refactored injection controller
  • Optimized event names in event dispatcher
  • Other small fixes/refactorings
0.1.1

Changed

  • Added --tags option
  • Changed environment (world) routines
  • Added lots of core tests (writed in Behat itself)
0.1.0

Changed

  • Initial release
What's
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
davejamesmiller/laravel-breadcrumbs
artisanry/parsedown
christhompsontldr/phpsdk
enqueue/dsn
bunny/bunny
enqueue/test
enqueue/null
enqueue/amqp-tools
milesj/emojibase
bower-asset/punycode
bower-asset/inputmask
bower-asset/jquery
bower-asset/yii2-pjax
laravel/nova
spatie/laravel-mailcoach
spatie/laravel-superseeder
laravel/liferaft
nst/json-test-suite
danielmiessler/sec-lists
jackalope/jackalope-transport