Skip to content

Releases: erykpiast/cyclejs-group

1.0.0

22 Jul 07:06

Choose a tag to compare

Compatible with Cycle.js 1.0. Dependency on cyclejs-stream updated to 1.0.

0.5.0

30 May 21:27

Choose a tag to compare

Underscores on the beginning and the end of function parameter name is ignored. Group like below can work thanks to that.

let group$ = createGroup({
    def$: (_abc$) => _abc$.map((abc) => 'def')
});

group$.inject({
   abc$: Rx.Observable.just('abc')
});

Why?
Because of transpilers like babel. They like to add underscore on the beginning of parameter name if it's the same like (explicit or guessed) name of the function.

0.4.0

27 May 21:10

Choose a tag to compare

Add compatibility with Cycle.js >= 21. Use cyclejs-stream.

0.3.6

02 May 18:00

Choose a tag to compare

0.3.6 Pre-release
Pre-release

Fix broken path to Object.entries polyfill.

0.3.5

02 May 17:59

Choose a tag to compare

0.3.5 Pre-release
Pre-release

Use core-js Object.entries polyfill instead of huge Babel polyfill.

0.3.4

02 May 17:24

Choose a tag to compare

0.3.4 Pre-release
Pre-release

CycleJS is now one of peerDependencies.

0.3.3

01 May 13:10

Choose a tag to compare

0.3.3 Pre-release
Pre-release

Add missing dependency.

0.3.2

01 May 12:55

Choose a tag to compare

0.3.2 Pre-release
Pre-release

Missing ES6 polyfill added.

0.3.1

01 May 12:54

Choose a tag to compare

0.3.1 Pre-release
Pre-release

Minor fixes.

0.3.0

30 Apr 20:54

Choose a tag to compare

0.3.0 Pre-release
Pre-release

Initial release.