Skip to content
This repository was archived by the owner on Apr 25, 2019. It is now read-only.

Latest commit

 

History

History
152 lines (88 loc) · 5.17 KB

CHANGELOG.md

File metadata and controls

152 lines (88 loc) · 5.17 KB

9.0.1 (2019-04-19)

Changes

9.0.0 (2019-04-06)

Breaking Changes

  • Expressing multiple actions using array or object literals is no longer supported. Pass multiple actions as separate arguments instead.

    That is, instead of this:

      ofType({ foo, bar }); // or ofType([foo, bar]);
    

    Do this:

      ofType(foo, bar);
    

8.1.0 (2019-04-04)

Features

  • Support using array literals to represent mulitple action types. (f2264cc)

Changes

  • Deprecate using object literals to represent multiple action types.

8.0.0 (2018-11-03)

Breaking Changes

  • Upgrade to ts-action version 8.

7.0.1 (2018-09-29)

Changes

  • Update dependencies to allow for multiple versions of ts-action. (1f20efa)

7.0.0 (2018-04-25)

Breaking Changes

  • Upgrade to RxJS version 6.

6.0.0 (2018-02-03)

Breaking Changes

  • ofType: To support matching an arbitrary number of types, ofType can now be passed either a single action creator or an object literal of action creators, so calls like ofType(action, Foo, Bar) should be replaced with calls like ofType(action, { Foo, Bar }). Calls that specify a single action creator - like ofType(action, Foo) - do not need to be changed. (f4b3d7b)

5.0.1 (2018-02-03)

Changes

  • Allow a version 5.0.0 ts-action peer.

5.0.0 (2018-02-02)

Breaking Changes

  • Removed the prototype-patching operators; use pipe or let instead. Patching Observable.prototype with ofType is pointless, as ofType will be on the prototype of the framework's actions observable.

4.0.1 (2018-01-31)

Fixes

  • Use the correct semver for the ts-action peer dependency.

4.0.0 (2018-01-31)

Breaking Changes

  • Use ts-action 4.0.0.
  • The package is now distributed with CommonJS, ES5 and ES2015 files (see the Angular Package Format). The ES5 and ES2015 files use ES modules. The entry points in the package.json are:
    • main - CommonJS
    • module - ES5 with ES modules (in the esm5 directory)
    • es2015 - ES2015 (in the esm2015 directory)

3.2.0 (2018-01-29)

Features

  • ofType: Support narrowing when passing multiple action creators. (e862519)

3.1.1 (2018-01-27)

Fixes

  • Fix types filename in package.json.

3.1.0 (2017-11-10)

Changes

  • Use ts-action 3.1.0.

3.0.1 (2017-11-10)

Changes

  • The distribution now includes .d.ts files rather than .ts files. (b9ca7ac)

3.0.0 (2017-11-09)

Fixes

ofType: Enforce the passing of at least one action creator. (d9753aa)

Breaking Changes

  • Use ts-action 3.0.0.

2.0.2 (2017-11-07)

Changes

  • Remove tslib.

2.0.1 (2017-11-07)

Fixes

  • Remove redundant type parameters from ofType signatures. (a5a8a6e)

2.0.0 (2017-11-06)

Breaking Changes

  • Use ts-action 2.0.0.