Skip to content

Latest commit

 

History

History
1428 lines (899 loc) · 46.5 KB

CHANGELOG.md

File metadata and controls

1428 lines (899 loc) · 46.5 KB

1.3.2 (2016-03-20)

Bug Fixes

  • dependency: fix use of gherkin to not rely on removed field

2.0.0-rc.9 (2017-03-16)

Bug Fixes

  • dependency: fix use of gherkin to not rely on removed field

2.0.0-rc.8 (2017-03-10)

Bug Fixes

  • generated step definition snippets are not found (#732) (Aslak Hellesøy)
  • catch attempt to define duplicate parameter type regular expression (#780) (Aslak Hellesøy)
  • catch errors in parameter type transform functions (Aslak Hellesøy)

New Features

  • all async parameter type transform functions (Aslak Hellesøy)
  • make all formatters available when requiring

Deprecations

  • addTransform was deprecated in favor of defineParameterType

Documentation

  • normalize syntax highlighting (#726) (Martin Delille)
  • fix setWorldConstructor example

2.0.0-rc.7 (2017-01-30)

Bug Fixes

  • fix after hook run order (#743)

Documentation

  • normalize syntax highlighting (#726) (Martin Delille)
  • fix addTransform parameter name (#738)

2.0.0-rc.6 (2017-01-06)

New Features

  • usage and usage-json formatters
  • update error reporting for registerHandler errors
  • add ability to disable timeout

Bug Fixes

  • update snippets to new support code interface

2.0.0-rc.5 (2016-12-22)

Breaking Changes

  • Drop support for Node 0.12
  • format assertion errors to display diffs

Documentation

  • fix CLI format-options name (#703) (Florian Ribon)
  • add link on README.md to custom formatters documentation

2.0.0-rc.4 (2016-12-19)

Breaking Changes

  • update support code library interface - instead of exporting a function and calling methods on this, require the cucumber module and call defineSupportCode which passes an object as the first argument whch exposes the methods. Overriding the world constructor has changed from overriding the World property to calling setWorldConstructor.

    // 1.3.1
    module.exports = function () {
      this.Given(/^a step$/, function() {});
      this.World = CustomWorld
    });
    
    // 2.0.0
    var {defineSupportCode} = require('cucumber');
    
    defineSupportCode(function({Given, setWorldConstructor}) {
      Given(/^a step$/, function() {});
      setWorldConstructor(CustomWorld);
    });

2.0.0-rc.3 (2016-12-19)

Breaking Changes

  • make strict the default
    • previously pending and undefined steps did not cause an exit code of 1. This could be overridden with --strict. Strict is now the default and you can use --no-strict to return to the previous behavior.
  • update automatically required files
    • if the features live in a features directory at any level, all support files in the features directory are loaded.

Bug Fixes

  • prevent crash on empty feature file

New Features

  • validate argument types

Documentation

  • docs: fix tag expression migration guide (#691) (Aslak Hellesøy)

2.0.0-rc.2 (2016-12-04)

Breaking Changes

  • pass attach to world constructor instead of assigning it to world
    • the world constructor now receives {attach, parameters} as the first argument instead of parameters

New Features

  • json formatter: add isBackground to steps

Bug Fixes

  • clear timeouts of asynchronous hooks/steps
  • stop running features with no scenarios

Documentation

  • update node js example

2.0.0-rc.1 (2016-11-25)

Bug Fixes

  • fix browser version

2.0.0-rc.0 (2016-11-25)

Breaking Changes

  • Dropped support for Node 0.10
  • CLI
    • --colors / --no-colors has moved to --format-options '{"colorsEnabled": "<BOOLEAN>"}'
    • --require <DIR|FILE>: the required files are no longer reordered to require anything in a support directory first
    • --snippet-interface <INTERFACE> has moved to --format-options '{"snippetInterface": "<INTERFACE>"}'
    • --snippet-syntax <SYNTAX> has moved to --format-options '{"snippetSyntax": "<SYNTAX>"}'
    • --tags <EXPRESSION> now uses cucumber-tag-expressions. It is no longer repeatable and new values will override previous
      • --tags @dev stays the same
      • --tags ~@dev becomes --tags 'not @dev'
      • --tags @foo,@bar becomes --tags '@foo or @bar'
      • --tags @foo --tags @bar becomes --tags '@foo and bar'
  • Internals
    • complete rewrite using ES2015 and promises
  • JSON Formatter
    • String attachments are no longer base64 encoded. Buffer and Stream attachments are still base64 encoded.
  • Support Files
    • Attachments

      • The attach function used for adding attachments moved from the API scenario object to world. It is thus now available in step definitions without saving a reference to the scenario.

        // 1.3.0
        this.After(function(scenario, callback) {
          scenario.attach(new Buffer([137, 80, 78, 71]), 'image/png')
        });
        
        // 2.0.0
        this.After(function() {
          this.attach(new Buffer([137, 80, 78, 71]), 'image/png');
        });
      • When attaching buffers or strings, the callback argument is ignored.

    • Hooks

      • Hooks now receive a ScenarioResult instead of the Scenario

        // 1.3.0
        this.After(function(scenario) {});
        
        // 2.0.0
        this.After(function(scenarioResult) {});
      • The tags option for hook should now be a string instead of an array and uses cucumber-tag-expressions

        // 1.3.0
        this.Before({tags: ["@foo"]}, function (scenario) {})
        this.Before({tags: ["@foo,@bar"]}, function (scenario) {})
        this.Before({tags: ["@foo", "@bar"]}, function (scenario) {})
        
        // 2.0.0
        this.Before({tags: "@foo"}, function (scenario) {})
        this.Before({tags: "@foo and @bar"}, function (scenario) {})
        this.Before({tags: "@foo or @bar"}, function (scenario) {})
    • Step Definitions

      • String patterns were removed in favor cucumber-expressions
      • Regular Expressions
        • capture groups matching (-?\d+) will be automatically converted to an integer using parseInt
        • capture groups matching (-?\d*\.?\d+) will be automatically converted to a float using parseFloat
      • Generator functions are no longer automatically run with co. To retain the previous functionality, use this.setDefinitionFunctionWrapper
    • Event Handlers

      • Objects no longer have get* methods and instead have exposed properties
        • For example: scenario.getName() is now just scenario.name
      • StepResult duration is now in milliseconds instead of nanoseconds

Bug Fixes

  • remove empty lines from @rerun files (#660) (Cody Ray Hoeft)
  • catch uncaught errors in the browser (Charlie Rudolph)

New Features

  • Support Files
    • Attachments:
      • When attaching a stream, the interface can either accept a callback as a third argument or will return a promise if not passed a callback
    • Step Definitions
      • Ability to add custom argument transformations
  • Fail fast / rerun formatter
    • When used together rerun formatter will output all skipped scenarios that didn't run due to a failure

Documentation

  • fix typo (#659) (gforceg)
  • update support files api reference (#661) (Zearin)

1.3.1 (2016-09-30)

Bug Fixes

  • pass formatter options to listener (#641) (Charlie Rudolph)
  • rerun formatter: output any scenario that doesn't pass (Charlie Rudolph)
  • populate scenario definition (#647) (Charlie Rudolph)
  • handle empty stacktraces (#605) (Hugues Malphettes)
  • use cross-platform symbols (#635) (Kevin Goslar)

Documentation

  • fix node.js example (#637) (Jonathan Gomez)
  • fix links in event_handlers.md (#638) (Oliver Rogers)
  • fix hooks example (#644) (John McLaughlin)

1.3.0 (2016-09-08)

New Features

  • add --snippet-interface <INTERFACE> CLI option (Charlie Rudolph)
  • add --world-parameters <JSON> CLI option (Charlie Rudolph)
  • add snippets formatter (Charlie Rudolph)
  • add support for ES6 default module syntax (dbillingham)
  • pretty formatter: add symbols (Charlie Rudolph)
  • add simplified hook parameters (Charlie Rudolph)

Bug Fixes

  • step definition snippets internationalization (Charlie Rudolph)

Documentation

  • document order of execution for multiple hooks (John McLaughlin)
  • breakup README.md, organize docs (Charlie Rudolph)

1.2.2 (2016-08-05)

Bug Fixes

  • Fix error when stack trace has no frames (#610) (Jan Molak)

1.2.1 (2016-07-01)

Bug Fixes

  • Fix hook / step definition location and stacktraces in the browser (#567, #538) (Charlie Rudolph)

1.2.0 (2016-06-24)

Bug Fixes

  • Attachments
    • Remove intermediate conversion to string (Charlie Rudolph)
    • Use native base64 encoding which can encode binary (#589) (Benjamín Eidelman)

1.1.0 (2016-06-23)

New Features

  • Add full support to registerHandler (Charlie Rudolph)
    • Can now use all supported functions interfaces (synchronous, callback, promise, generators)
    • Will throw any error received and immediately kill the test suite
    • Supports handler specific timeouts
    • Updated documentation

Bug Fixes

  • CLI format: support absolute path on windows (Charlie Rudolph)
  • Fix typo in event name. (#590) (Artur Pomadowski)
  • Don't run hooks in dry run mode (Charlie Rudolph)

1.0.0 (2016-05-30)

Bug Fixes

  • Escape all instances of special characters in example / data table (Charlie Rudolph)

0.10.4 (2016-05-30)

New Features

  • Allow time to be faked by utilities such as sinon.useFakeTimers (John McLaughlin)

0.10.3 (2016-05-19)

Bug Fixes

  • Escape newlines in table cells in pretty formatter (Julien Biezemans)
  • Fix handling of unusual error objects (efokschaner)

0.10.2 (2016-04-07)

New Features

  • Add match location to JSON formatter output (Charlie Rudolph)

Bug Fixes

  • Undefined background step (Scott Deakin)

0.10.1 (2016-04-01)

New Features

  • Support generators for hooks/step definitions (Ádám Gólya)

0.10.0 (2016-04-01)

Breaking changes

  • removed around hooks (Charlie Rudolph)

    • how to update: use separate before and after hooks. If this is not sufficient, please create an issue.
  • updated pending step interface (Charlie Rudolph)

    • how to update: change callback.pending() to callback(null, 'pending') or use one of the new pending step interfaces
  • updated tagged hook interface (Charlie Rudolph)

    • how to update:

      this.Before('@tagA', function() { ... })
      // becomes
      this.Before({tags: ['@tagA']}, function() { ... })
      
      this.Before('@tagA', '@tagB,@tagC', function() { ... })
      // becomes
      this.Before({tags: ['@tagA', '@tagB,@tagC']}, function() { ... })

New Features

  • support hook specific timeouts (Charlie Rudolph)
  • reworked formatter error reporting (Charlie Rudolph)

0.9.5 (2016-02-16)

Bug Fixes

  • Fix rerun formatter output (Charlie Rudolph)

New Features

  • Allow rerun file to be in subfolder (Charlie Rudolph)

0.9.4 (2016-01-28)

Bug Fixes

  • Publish release folder to npm (Charlie Rudolph)

0.9.3 (2016-01-27)

New Features

  • Run scenario by name (Charlie Rudolph)

Bug Fixes

  • Prevent maximum call stack from being exceeded (John Krull)

Documentation

  • Add documentation of profiles (Charlie Rudolph)
  • README improvements (Miika Hänninen, Kevin Goslar, Maxim Koretskiy)

New Features

  • Bump stack-chain (Rick Lee-Morlang)

New Features

  • Add rerun formatter (Charlie Rudolph)

Fixes

  • Add ability to execute scenario outline example (Charlie Rudolph)
  • Support tags on scenario outline examples (Charlie Rudolph)

Documentation

  • Fix invalid hook documentation (Charlie Rudolph)

Breaking changes

  • catch ambiguous step definitions (Charlie Rudolph)
  • remove use of domain (Charlie Rudolph)

New Features

  • pretty formatter: source shows step definition location (Charlie Rudolph)
  • support node 5 (Charlie Rudolph)

Fixes

  • Fix Api.Scenario#attach callback handling (Julien Biezemans)

Documentation

  • Add async example to README (Artem Bronitsky)
  • Document hooks sync/async protocols (Julien Biezemans)
  • Remove useless callbacks in documentation (Julien Biezemans)
  • Fix browser example (Karine Pires)

Documentation, internals and tests

  • Update World constructor documentation (Charlie Rudolph)
  • Remove badges from README.md (Charlie Rudolph)

Breaking changes

  • Add strict function length checking to hooks and step definitions (Charlie Rudolph)
  • Make World constructors strictly synchronous (Julien Biezemans)

New features

  • Add cli option to fail fast (Charlie Rudolph)
  • Add cli for specifying multiple formatters (Charlie Rudolph)
  • Add support for passing multiple line numbers (Charlie Rudolph)
  • Add ability to disable colors (Charlie Rudolph)
  • Add support for custom snippet syntaxes (Charlie Rudolph)

Changed features

  • Hide errors in pretty formatter summary (Charlie Rudolph)
  • Remove unnecessary whitespaces in pretty formatter output (Charlie Rudolph)

Fixes

  • Properly ask configurations for strict mode (Julien Biezemans)

Documentation, internals and tests

  • Document data table interface (Charlie Rudolph)
  • Refactor: statuses (Charlie Rudolph)
  • Refactor: cleanup step definitions (Charlie Rudolph)
  • Cleanup: remove log to console from listeners (Charlie Rudolph)
  • Use svg badges (Charlie Rudolph)
  • Rename CONTRIBUTE.md to CONTRIBUTING.md (Julien Biezemans)
  • Require maintainers to document API changes in release tag descriptions (Julien Biezemans)
  • Add build-release NPM script (Julien Biezemans)

New features

  • Time out steps that take too long (Charles Rudolph)
  • Print execution time (Charles Rudolph)

Changed features

  • Remove callback.fail() (Charles Rudolph)
  • Update hooks interface (Charles Rudolph)

Fixes

  • Don't try to handle empty features (Julien Biezemans)
  • Fix unpredictable nopt behavior (Charles Rudolph)
  • Fix pretty formatter step indentation after doc string (Charles Rudolph)

Documentation, internals and tests

  • Rename Collection functions: forEach/syncForEach -> asyncForEach/forEach (Charles Rudolph)
  • Simplify installation instructions (Charles Rudolph)
  • Fix spec on Windows (Marcel Hoyer)
  • Simplify World examples in README (Charles Rudolph)
  • Update license in package.json (Charles Rudolph)
  • Convert test framework from jasmine-node to jasmine (Charles Rudolph)
  • Separate test output (Charles Rudolph)
  • Remove ruby, legacy features, cucumber-tck (Charles Rudolph)

New features

  • Add --no-source to hide uris (Eddie Loeffen)
  • Add dry run capability (Karthik Viswanath)
  • Introduce --compiler CLI option (Charles Rudolph)

Documentation, internals and tests

  • Stop IRC and email notifications from Travis (Julien Biezemans)
  • Remove Node.js 0.11 explicit support (Julien Biezemans)
  • Use basic for loop for array iterations (Charles Rudolph)
  • Bump browserify (Charles Rudolph)
  • Add CLI help for --profile (Charles Rudolph)
  • Use colors library (Charles Rudolph)
  • Improve --compiler help (Julien Biezemans)
  • Fix loading of external compiler modules (Julien Biezemans)
  • Document a few common compiler usages (Julien Biezemans)

New features

  • Add support for profiles (Charles Rudolph)

Changed features

  • Allow for multiple instances of placeholder (Charles Rudolph)
  • Print relative paths in summary output (Charles Rudolph)

Fixes

  • Remove duplicate line number from output (Charles Rudolph)
  • Return clone of array from DataTable.Row.raw() (Julien Biezemans)

Documentation, internals and tests

  • Update various urls (Dale Gardner)
  • Bump CoffeeScript (Julien Biezemans)
  • Bump PogoScript (Julien Biezemans)
  • Bump underscore (Julien Biezemans)
  • Bump underscore.string (Julien Biezemans)
  • Bump stack-chain (Julien Biezemans)
  • Bump nopt (Julien Biezemans)
  • Bump connect (Julien Biezemans)
  • Bump exorcist (Julien Biezemans)
  • Bump uglifyify (Julien Biezemans)
  • Bump through (Julien Biezemans)
  • Bump serve-static (Julien Biezemans)
  • Bump rimraf (Julien Biezemans)
  • Bump mkdirp (Julien Biezemans)
  • Bump jshint (Julien Biezemans)
  • Remove extra bracket in README example (Julien Biezemans)
  • Officially support Node.js 4.x (Julien Biezemans)
  • Use a profile for own build (Julien Biezemans)

New features

  • Add rowsHash method to data tables (Mark Amery)

Documentation, internals and tests

  • Remove CLI resource leak timeout (Julien Biezemans)
  • Point to cucumber.io instead of cukes.info (Julien Biezemans)
  • Fix mixed tabs and spaces (Mark Amery)
  • Use hexadecimal values for console colours (Julien Biezemans)
  • Update walkdir module to 0.0.10 (Artem Repko)
  • Fix ruby tests on Windows (zs-zs)
  • Fix npm test to run on Windows (zs-zs)
  • Normalize OS-specific path separators in output assertions (zs-zs)
  • Relax check for promises in step definitions (zs-zs)
  • Add Ast.Feature.getFeatureElements() (Mark Derbecker)
  • Add Util.Collection.sort() (Mark Derbecker)
  • Add waffle.io badge (Julien Biezemans)

New features

  • Support placeholders in scenario outlines (chrismilleruk)
  • Add failure exception to scenario object (Mateusz Derks)

Documentation, internals and tests

  • Fix World example in README (Julien Biezemans)
  • Remove moot version property from bower.json (Kevin Kirsche)
  • Remove obsolete release instruction for bower (Julien Biezemans)
  • Add Gitter badge (Julien Biezemans)
  • Rephrase spec example (Julien Biezemans)
  • Add documentation for attachments (Simon Dean)
  • Fix name of Cucumber.Api.Scenario in README (Simon Dean)

New features

  • Support promises from step definitions (Will Farrell)
  • Support synchronous step definitions (Julien Biezemans)

Documentation, internals and tests

  • Remove irrelevant feature file (Julien Biezemans)
  • Reorganise callback feature (Julien Biezemans)
  • Remove unused dependency (Julien Biezemans)
  • Document new step definition styles (Julien Biezemans)
  • Make step definitions synchronous in example app (Julien Biezemans)

New features

  • Make pretty formatter the default (Julien Biezemans)
  • Filter stack traces (close #157) (Julien Biezemans)

Documentation, internals and tests

  • Separate source map from bundle (Julien Biezemans)
  • Hint (Julien Biezemans)
  • Fix misspelling io.js (Sonny Piers)
  • Add 0.12 to supported engines in NPM manifest (Julien Biezemans)
  • Fix test script to be more portable (Sam Saccone)
  • Force Cucumber <2 for now (Julien Biezemans)
  • Bump Cucumber gem to 2.0.0 (Julien Biezemans)
  • Explicitly require json module in Ruby stepdefs (Julien Biezemans)
  • Add CLI help section for --backtrace (Julien Biezemans)

New features

  • Support IO.js (Sam Saccone)
  • Support Node.js 0.12 (Julien Biezemans)

Fixes

  • Handle BOM and fix regexp for hyphenated languages (close #144) (Aslak Hellesøy)
  • Fix attachment clean up in hooks (close #282) (nebehr)

Documentation, internals and tests

  • More thorough specs for GherkinLexer. Fix build? (Aslak Hellesøy)
  • Add jshintrc (Jesse Harlin)
  • Hint lib/ (Julien Biezemans)
  • Hint bundler and bin (Julien Biezemans)
  • Hint spec/ (Julien Biezemans)
  • Be consistent in anonymous function syntax (Julien Biezemans)
  • Use named functions for all constructors (Julien Biezemans)
  • Indent (Julien Biezemans)
  • Add more diagnostics to build (Julien Biezemans)
  • Remove unnecessary spaces in shell commands (Julien Biezemans)

Documentation, internals and tests

  • Do not dispose of step domains (Julien Biezemans)
  • Refactor and add debug code (Julien Biezemans)
  • Create a single domain per run (Julien Biezemans)
  • Add missing AstTreeWalker specs (Julien Biezemans)
  • Indent (Julien Biezemans)
  • Spec domain enter/exit in AstTreeWalker (Julien Biezemans)

New features

  • Add --no-snippets flag to CLI (close #207) (Krispin Schulz)
  • Add strict mode (close #211) (Elwyn)
  • Add strict mode to volatile configuration (close #258) (Jan-Eric Duden)

Fixes

  • Fix code loader on windows (close #226) (Gary Taylor)

Documentation, internals and tests

  • Connect to Rubygems through SSL (Julien Biezemans)
  • Use Node domain's enter/exit in stepdefs (Julien Biezemans)
  • Do not display snippets in build (Julien Biezemans)
  • Asynchronously dispose of step domains (Julien Biezemans)
  • Change order of tests in build (Julien Biezemans)
  • Fix tests to run on Windows (close #216) (kostya.misura)
  • Fix registerHandler() example in README (Julien Biezemans)
  • Fix typo in variable name (Julien Biezemans)
  • Fix World property assignment in README example (Julian)
  • Unix EOLs (Julien Biezemans)
  • Ignore .ruby-* (Julien Biezemans)

Documentation, internals and tests

  • Fix issue with npm upgrade on node.js v0.8 (Simon Dean)
  • Use Node domain to handle asynchronous exceptions (Julien Biezemans)

Fixes

  • Allow >1 parameter in string step definitions (Craig Morris)
  • Don't skip scenario outlines (close #245) (Julien Biezemans)

Documentation, internals and tests

  • Bump nopt (Julien Biezemans)
  • Bump coffee-script (Julien Biezemans)
  • Bump pogo (Julien Biezemans)
  • Bump underscore (Julien Biezemans)
  • Bump rimraf (Julien Biezemans)
  • Bump jasmine-node (Julien Biezemans)
  • Bump connect (Julien Biezemans)
  • Rewrite bundling system (close #186) (Julien Biezemans)
  • Rename release script (Julien Biezemans)
  • Upgrade NPM on Travis (Julien Biezemans)
  • Drop Node 0.6 support (Julien Biezemans)
  • Drop Node 0.6 support (manifest) (Julien Biezemans)

Fixes

  • Scenario outline fixes (Simon Dean)
  • Correct the embeddings JSON to match other ports of Cucumber (Simon Dean)

New features

  • Support attachments (close #189) (Julien Biezemans)

Documentation, internals and tests

  • Fix world example in main readme (Sam Saccone)
  • Update instructings for running tests (Sam Saccone)

New features

  • Target scenario by line number on CLI (close #168) (Simon Lampen)

Fixes

  • Ensure no stdout output is lost (Simon Dean)
  • Properly tag scenario outlines (close #195 #197) (Artur Kania)

Documentation, internals and tests

  • Align snippet comment with Cucumber-Ruby/JVM (close #150) (Julien Biezemans)
  • Update build badge URL on README (Julien Biezemans)
  • Add line number pattern to --help on CLI (Julien Biezemans)
  • Document AfterFeatures event (close #171) (Eddie Loeffen)
  • Include 'features' in *Features events payload (Stanley Shyiko)
  • Try to fix build on Travis (Julien Biezemans)
  • Remove bower as a dev dependency (close #191) (Simon Dean)
  • Remove obsolete Travis trick for Node 0.8 (Julien Biezemans)
  • Remove development status table from README (Julien Biezemans)
  • Help the guy produce changelogs (Julien Biezemans)

New features

  • Add support for scenario outlines and examples (close #155) (Ben Van Treese)
  • Add i18n support (close #156) (Lukas Degener)

Changed features

  • Pass scenario to hooks (Marat Dyatko)
  • Minor change to stepdef snippets (JS) (Julien Biezemans)
  • Make feature id in JSON output replace all spaces (close 127) (Tim Perry)
  • Bump CoffeeScript (close #154) (Gabe Hayes)

Documentation, internals and tests

  • Add Hook spec example for single-arg function (close #143) (Julien Biezemans)
  • Update README with Hook scenario object doc (Julien Biezemans)
  • Style (Julien Biezemans)

New features

  • Output step definition snippets in CoffeeScript (John George Wright)
  • Add colors to CLI (Johny Jose)

Changed features

  • Add durations to JSON formatter (Simon Dean)

Documentation, internals and tests

  • Bump most dependencies (Julien Biezemans)
  • DRY (Julien Biezemans)
  • Refactor (Julien Biezemans)

New features

  • Add PogoScript support (Josh Chisholm)
  • Add listener and event handler registration (close #130) (Paul Shannon)

Documentation, internals and tests

  • Added some nice stats (Aslak Hellesøy)
  • Fix spelling of "GitHub" (Peter Suschlik)
  • Add Code Climate badge to README (Julien Biezemans)
  • Update README.md (Sebastian Schürmann)

New features

  • Add DataTable.rows() (Niklas Närhinen)
  • Officially support Node 0.10 and 0.11 (Julien Biezemans)

Changed features

  • Update cucumber-html (Aslak Hellesøy)
  • Bump Gherkin (Julien Biezemans)
  • Add options parameter to JSON formatter (Israël Hallé)
  • Updated CoffeeScript (Matteo Collina)
  • Specify strict coffee-script version number (Julien Biezemans)
  • Bump jasmine-node (Julien Biezemans)

Fixes

  • Fix travis build Node versions (Julien Biezemans)
  • Fix Travis CI configuration (Julien Biezemans)

Documentation, internals and tests

  • Remove words in History (Julien Biezemans)
  • Update dev status table in README (Julien Biezemans)
  • Update LICENSE (Julien Biezemans)
  • Add contributors (Julien Biezemans)
  • Move data table scenario to TCK (Julien Biezemans)
  • Be consistent in spec matchers (Julien Biezemans)
  • Remove cucumber.no.de links (Kim, Jang-hwan)
  • Fix broken link in README dev status table (#118) (Michael Zedeler)
  • Refactor hook-related Given steps in JS stepdefs (Julien Biezemans)
  • Refactor failing mapping JS step definitions (Julien Biezemans & Matt Wynne)
  • Update README.md to correct error in example for zombie initialization (Tom V)
  • Update minor typos in README.md (David Godfrey)

New features

  • Allow for node-like callback errors (Julien Biezemans)
  • Accept multiple features in volatile configuration (#52) (Julien Biezemans)

Fixes

  • Add ^ prefix and $ suffix to string-based step definition regexps (#77) (Julien Biezemans)
  • Allow for unsafe regexp characters in stepdef string patterns (#77) (Julien Biezemans)

Documentation, internals and tests

  • Build on Node.js 0.8 on Travis (Julien Biezemans)
  • Rewrite README's status table in HTML (Julien Biezemans)
  • Bump Gherkin (#78) (Julien Biezemans)
  • Switch to HTML tables in README (Julien Biezemans)
  • Bump Aruba (Julien Biezemans)

New features

  • Print data tables and doc strings in pretty formatter output (#89, #81) (Julien Biezemans)

Fixes

  • Exclude unmatched features from AST (#80) (Julien Biezemans)

New features

  • Add bundler (Julien Biezemans)

TBD

New features

  • Add JSON formatter (#79) (Chris Young)

Fixes

  • Fix data table and tags handling in JSON formatter (Julien Biezemans)

Documentation, internals and tests

  • Force example feature execution order in JSON feature (Julien Biezemans)

Fixes

  • Fix CLI arguments passing (#83) (Omar Gonzalez)

Documentation, internals and tests

  • Refactor "summarizer" listener to summary formatter (#71) 28b74ef (Julien Biezemans)
  • Add "summary" formatter to available CLI formatters (Julien Biezemans)
  • Fix spec example description (Julien Biezemans)

Fixes

  • Replace findit with walkdir to fix file loading on Windows (#73) (Aaron Garvey)

Documentation, internals and tests

  • Rename spec file (Julien Biezemans)
  • Extract developer documentation from README to CONTRIBUTE (Julien Biezemans)
  • Bump browserify (Julien Biezemans)
  • Update supported Node.js versions (Julien Biezemans)

New features

  • Add pretty formatter (simplified, monochrome) (#59) (@renier, Julien Biezemans)

Documentation, internals and tests

  • Display only master branch build status in README (Julien Biezemans)
  • Rename "summary logger" to "summarizer" (#59) (Julien Biezemans)
  • Extract common formatter methods (#59, #63) (Julien Biezemans)

New features

  • Display failing scenario URIs in summary (Julien Biezemans)

Documentation, internals and tests

  • Ran a gem update (Aslak Hellesøy)
  • Update NPM dependencies (#69) (Aslak Hellesøy)
  • Refactor listener infrastructure (#35, #59, #63) (Julien Biezemans)
  • Extract summary logger from progress formatter (#59, #63) (Julien Biezemans)
  • Store URI on AST elements (Julien Biezemans)

New features

  • Handle asynchronous exceptions (#51) (Julien Biezemans)

Documentation, internals and tests

  • Remove commented code (Julien Biezemans)

New features

  • Mention CS support in README (Julien Biezemans)
  • Update command-line documentation in README (Julien Biezemans)

Fixes

  • Add alternate binary script for Windows (#60) (Julien Biezemans)

New features

  • Add support for string-based step definition patterns (#48) (Ted de Koning, Julien Biezemans)

Documentation, internals and tests

  • Pass step instance to step definition invocation (#57) (Julien Biezemans)
  • Refactor step result specs (Julien Biezemans)
  • Store step on step results (#57) (Julien Biezemans)
  • Increase Aruba timeout delay for slow Travis (Julien Biezemans)
  • Decouple pattern from regexp in step definition (#48) (Julien Biezemans)

Changed features

  • Allow World constructor to set explicit World object (#50) (Julien Biezemans)

Documentation, internals and tests

  • Add semicolons (Julien Biezemans)
  • Add documentation about World to README (Julien Biezemans)

Changed features

  • Simplify World callbacks (#49) (Julien Biezemans)

Fixes

  • Fix callback.fail() when called without any reasons (Julien Biezemans)

Documentation, internals and tests

  • Add toHaveBeenCalledWithInstanceOfConstructorAsNthParameter() spec helper (Julien Biezemans)
  • Simplify default World constructor callback (Julien Biezemans)
  • Adapt World constructors (Julien Biezemans)

Fixes

  • Fix path handling on Windows platforms (#47) (Julien Biezemans)

Documentation, internals and tests

  • Add tagged hooks example to README (Julien Biezemans)
  • Fix browserify setup for example page load (Julien Biezemans)
  • Rename bundle to 'cucumber.js' in web example (Julien Biezemans)
  • Remove obsolete browserify directive (Julien Biezemans)
  • Improve platform detection (Julien Biezemans)

New features

  • Add support for tagged hooks (#32) (Julien Biezemans)

Changed features

  • Allow for whitespaces in tag groups (Julien Biezemans)

Documentation, internals and tests

  • Add Cucumber.Type.String and String#trim() (Julien Biezemans)
  • Remove unnecessary this. from stepdefs (Julien Biezemans)
  • Simplify tag-related stepdefs (Julien Biezemans)
  • Simplify tag selection syntax in volatile configuration (Julien Biezemans)
  • Mark hooks "done" in README dev status (Julien Biezemans)

New features

  • Add around hooks (#32) (Julien Biezemans)

Changed features

  • Treat undefined and skipped step as any other step (Julien Biezemans)

Documentation, internals and tests

  • Remove unused parameter in parser spec (Julien Biezemans)
  • Add JS stepdef for async failing steps scenario (Julien Biezemans)
  • Assign zombie in README example (#44) (Julien Biezemans)
  • Remove trailing spaces (Julien Biezemans)
  • Get rid of obsolete PendingStepException (Julien Biezemans)
  • Refactor SupportCode.Library spec (Julien Biezemans)
  • Add around hooks documentation (#32) (Julien Biezemans)

New features

  • Allow for asynchronous pending steps (Julien Biezemans)
  • Allow for asynchronous step failures (Julien Biezemans)

Fixes

  • Fix matching groups in step definition snippets (#42) (Julien Biezemans)
  • Remove obsolete dependency from snippet builder spec (Julien Biezemans)

Documentation, internals and tests

  • Add steps to release process in README (Julien Biezemans)
  • Update development status table in README (Julien Biezemans)
  • Import implementation-specific scenarios from cucumber-tck/undefined_steps (Julien Biezemans)
  • Switch from throwing exceptions to callback.fail() in web example (Julien Biezemans)
  • Add callback.fail() example to README (Julien Biezemans)

New features

  • Add tags support (#7) (Julien Biezemans)
  • Add support for tags on features (#7) (Julien Biezemans)

Changed features

  • Handle missing instance in World constructor callback (#40) (Julien Biezemans)

Documentation, internals and tests

  • Update development status in README (Julien Biezemans)
  • Typo in README (Julien Biezemans)
  • Refactor parser and add AST assembler (required by #7) (Julien Biezemans)
  • Indent properly (Julien Biezemans)
  • Refactor AST assembler to be stateful (needed by #7) (Julien Biezemans)
  • Update master diff in History (Julien Biezemans)
  • Add --tags documentation to --help (CLI) (Julien Biezemans)

New features

  • Add Before/After hooks (#32, #31) (Tristan Dunn)

Changed features

  • Interpret "*" step keyword as a repeat keyword (Julien Biezemans)

Documentation, internals and tests

  • Add NPM publishing to README release checklist (Julien Biezemans)
  • Add "Help & Support" to README (Julien Biezemans)
  • Words in README (Julien Biezemans)
  • Document before and after hooks (Julien Biezemans)

New features

  • Add --version to CLI (Julien Biezemans)
  • Add --help to CLI (Julien Biezemans)

Changed features

  • Add styles for reported errors on web example (Julien Biezemans)
  • Make and expect World constructors to be asynchronous (#39) (Julien Biezemans)

Documentation, internals and tests

  • Update README (Julien Biezemans)
  • Add development status to README (Julien Biezemans)
  • Add link to demo at cucumber.no.de (Julien Biezemans)
  • Add link to example app to README (Julien Biezemans)
  • Add usage documentation to README (#23) (Olivier Melcher)
  • Add examples to run features with the CLI (Olivier Melcher)
  • Fix header levels and whitespaces in README (Julien Biezemans)
  • Add Opera to supported browsers in README (Julien Biezemans)
  • Fix World constructor in README (Julien Biezemans)
  • Simplify World#visit in README (Julien Biezemans)
  • Rewrite step definition and wrapper documentation (Julien Biezemans)
  • Remove useless words (Julien Biezemans)
  • Use more consistent Markdown in README (Julien Biezemans)
  • Fix Gherkin comment in README (Julien Biezemans)
  • Add credits (Julien Biezemans)
  • Add Aruba setup details to README (Julien Biezemans)
  • Fix World constructor on web example according to the recent API changes (Julien Biezemans)
  • Tell Travis CI to post build results to #cucumber (Julien Biezemans)
  • Add release checklist to README (Julien Biezemans)

New features

  • Add support for Node 0.6 (Julien Biezemans)

Fixes

  • Prevent the same step definition snippet from being suggested twice (Julien Biezemans)

Documentation, internals and tests

  • Don't make NPM ignore example/ anymore (Julien Biezemans)
  • Bump cucumber-features (Julien Biezemans)
  • Use non-deprecated "url" key instead of "web" in NPM manifest (Julien Biezemans)
  • Add JS step definitions related to data table scenarios (Julien Biezemans)
  • Move from cucumber-features to cucumber-tck (Julien Biezemans)
  • Bump Gherkin (Julien Biezemans)
  • Bump jasmine-node (Julien Biezemans)
  • Bump connect (Julien Biezemans)
  • Fix Travis build (Julien Biezemans)
  • Bump browserify (Julien Biezemans)
  • Bump nopt (Julien Biezemans)
  • Bump underscore (Julien Biezemans)
  • Bump underscore.string (Julien Biezemans)
  • Bump rimraf (Julien Biezemans)
  • Bump mkdirp (Julien Biezemans)
  • Bump Aruba (Julien Biezemans)

New features

  • Suggest step definition snippets for undefined steps (#33 Julien Biezemans)

Documentation, internals and tests

  • Add contributors to NPM package manifest (Julien Biezemans)
  • Clean up JS step definitions (Julien Biezemans)
  • Bump cucumber-features and reflect step changes (Julien Biezemans)
  • Set up continuous integration on Travis CI (Julien Biezemans)
  • Add Travis's build status icon to README (Julien Biezemans)

New features

  • Allow custom World constructors (Julien Biezemans)
  • Add support for data tables (with conversion to hashes) (#12) (Julien Biezemans)

Changed features

  • Demonstrate World object usages in web example (Julien Biezemans)

New features

  • Setup application to run on Travis CI (Julien Biezemans)
  • Add CoffeeScript support for step definition files (Paul Jensen)
  • Add "World" (#26 Julien Biezemans)

Changed features

  • Add link to the Github repository on web example (Julien Biezemans)
  • Allow specifying the port the web example server should listen on (Julien Biezemans)
  • Update web example to use cucumber-html formatter (Julien Biezemans)

Fixes

  • Fix load paths in spec helper (Julien Biezemans)
  • Prevent 'crypto' module from being included by browserify in web example (Julien Biezemans)
  • Fix HTML indentation (Julien Biezemans)
  • Prevent CLI support code loader from calling module main exports which are not functions (Julien Biezemans)
  • Remove use of username for submodule (Kushal Pisavadia)

Documentation, internals and tests

  • Bump jasmine-node
  • Update README (Julien Biezemans)
  • Bump Gherkin twice (Julien Biezemans)
  • Bump cucumber-features twice (Julien Biezemans)
  • Add missing getters on several AST feature elements (mostly getLine()) (Julien Biezemans)
  • Ignore example/ on NPM (Julien Biezemans)
  • Add Procfile (used by Heroku when deploying to cucumber.heroku.com) (Julien Biezemans)
  • Bump Aruba (Julien Biezemans)
  • Add guard-jasmine-node (Julien Biezemans)
  • Improve Guardfile regular expressions (Julien Biezemans)
  • Bump cucumber-html and remove DOM templates from web example HTML file (Julien Biezemans)
  • Fix PathExpander internal name (Julien Biezemans)
  • Remove unneeded requires from FeaturePathExpander (Julien Biezemans)
  • Bump browserify (Julien Biezemans)
  • Remove "glob" from dependencies (Julien Biezemans)
  • Refactor SupportCodePathExpander spec (Julien Biezemans)
  • Add feature for CoffeeScript support (#29) (Julien Biezemans)

New features

  • Add support for background (#9 Julien Biezemans)

Documentation, internals and tests

  • Bump cucumber-features (twice) (Julien Biezemans)
  • Bump gherkin and reflect changes in its API (add DocString content type) (Julien Biezemans)

Changed features

  • Stop polluting the global namespace with Given(), When() and Then() (#2 Julien Biezemans)
  • Step definitions can be created with the support code helper passed as 'this': this.Given(), this.When(), this.Then() and this.defineStep() (#2 Julien Biezemans)

Documentation, internals and tests

  • Fix typo "occured" -> "occurred" (Fernando Acorreia)
  • Improve variable names in CLI support code loader (Julien Biezemans)

New features

  • Allow several features to run at once (#14) (Julien Biezemans)
  • Add support for --require (Julien Biezemans)

Documentation, internals and tests

  • Improve features and support code API (Julien Biezemans)
  • Add "Cli" and "Volatile" configurations (Julien Biezemans)
  • Internal refactoring and cleanup (Julien Biezemans)
  • Cucumber.js can now fully test itself (Julien Biezemans)
  • Remove run_all_features script in favor of bin/cucumber.js (Julien Biezemans)

New features

  • Add failure reporting to the progress formatter (#20) (Julien Biezemans)

New features

  • Publish Cucumber.js to NPM as cucumber (Julien Biezemans)

Changed features

  • Throw a clearer exception on missing feature argument (CLI) (Julien Biezemans)

Documentation, internals and tests

  • Unify and clean up js-specific features and step definitions (#21) (Julien Biezemans)

New features

  • Add cucumber.js executable (Julien Biezemans)
  • Handle step failures (#6) (Julien Biezemans)
  • Add the progress formatter (#16) (Julien Biezemans)
  • Add support for pending steps (#18) (Julien Biezemans)
  • Add support for undefined steps (#19) (Julien Biezemans)

Changed features

  • Update web example to use the new progress formatter (Julien Biezemans)

Fixes

  • Fix asynchronous step definition callbacks (#1) (Julien Biezemans)
  • Fix stepResult.isSuccessful call in ProgressFormatter (Julien Biezemans)
  • Load Gherkin properly in browsers (Julien Biezemans)
  • Remove calls to console.log in web example (Julien Biezemans)

Documentation, internals and tests

  • Pass against core.feature in its new form, both with the Cucumber-ruby/Aruba pair and cucumber-js itself (Julien Biezemans)
  • Refactor cucumber-features JS mappings (Julien Biezemans)
  • Refactor js-specific features (Julien Biezemans)
  • Rename PyString to DocString (#15) (Julien Biezemans)
  • Update Gherkin to 2.4.0 (Julien Biezemans)
  • Modularize the project and use browserify.js to serve a single JS file to browsers. (#3 Julien Biezemans)
  • Rename Cucumber.Types to Cucumber.Type (Julien Biezemans)
  • Use progress formatter in cucumber-features (#17) (Julien Biezemans)
  • Emerge Cucumber.js with bare support for features, scenarios and steps. It does not handle several Gherkin elements nor failures yet. (Julien Biezemans)