Skip to content

Latest commit

 

History

History
343 lines (191 loc) · 15.9 KB

CHANGELOG.md

File metadata and controls

343 lines (191 loc) · 15.9 KB

1.6.1 (2018-09-08)

Bug Fixes

1.6.0 (2018-06-14)

Features

1.5.0 (2018-03-30)

Features

1.4.4 (2017-06-10)

Bug Fixes

1.4.3 (2017-06-04)

Bug Fixes

1.4.2 (2016-11-11)

Bug Fixes

1.4.1 (2016-05-10)

1.4.0 (2016-05-06)

Features

1.3.1 (2016-03-10)

Bug Fixes

1.3.0 (2016-03-09)

Features

refs: Babel and CommonJS modules

1.2.0 (2015-11-14)

Features

1.1.0 (2015-10-04)

Features

1.0.1 (2015-09-14)

Bug Fixes

1.0.0 (2015-08-26)

Bug Fixes

  • upgrade power-assert-formatter for native ES6 Symbol support (d8ba0a1b)

Features

0.11.0 (2015-04-18)

Features

0.10.2 (2015-02-16)

Bug Fixes

  • power-assert:
    • update power-assert-formatter to 0.10.2 (2c0f9624) to apply stringifier fix

Features

  • power-assert:
    • ship npm module with built bundle for browsers (431769f3)
    • add Node 0.12 and io.js to Travis build (dd9629f9)

0.10.1 (2015-01-09)

Bug Fixes

0.10.0 (2014-11-12)

Features

0.9.1 (2014-10-08)

Bug Fixes

  • empower:
    • power-assert output doesn't appear in Node 0.11.x (53e882e0)

0.9.0 (2014-09-02)

Features

Now power-assert 0.9.0 supports multi-stage sourcemaps.

  • power-assert:

    • update empower and power-assert-formatter to 0.9.0 (a84ca4e1)
  • empower:

    • There's no significant changes
  • power-assert-formatter:

  • espower:

    • SourceMap support
    • adjust filepath in power-assert output if sourceMap option is given (f919d59d)
    • adjust line number in power-assert output if sourceMap option is given (8c035d89)
  • espower-source:

    • backport espowerify to support multi-stage sourcemaps (71de737c)
  • espower-loader:

  • grunt-espower:

  • gulp-espower:

  • espowerify:

    • use espower-source directly since espower-source 0.9.0 is backported from espowerify (625cf55d)
    • use multi-stage-sourcemap module to generate more accurate sourcemaps (b1f939fa)
    • if upstream SourceMap is given, decode and offset it (a1683475)
  • espower-coffee:

    • interact with coffeescript compiler to adjust line number in power-assert output (9c159205)

Breaking Changes

No change is required if you are using default configuration.

  • power-assert-formatter:
    • built-in renderers are listed as relative path

If you are customizing renderers by options.renderers, you may have to migrate.

To migrate, change your code from the following:

[
    'file',
    'assertion',
    'diagram',
    'binary-expression'
]

To:

 [
    './built-in/file',
    './built-in/assertion',
    './built-in/diagram',
    './built-in/binary-expression'
 ]

(265d3539), (acf85109)

0.8.0 (2014-08-12)

Features

Breaking Changes

First of all, No change is required if you are using default configuration.