Skip to content

Releases: jeffbski/redux-logic

v5.0.1

15 Nov 17:34
Compare
Choose a tag to compare

Update ansi-regex and semver for vulnerabilities

v5.0.0

14 Nov 20:56
Compare
Choose a tag to compare

Many dependency updates which caused some changes to the output. No changes to the API.

UMD build is no longer ES5 compatible, but is ES6 compatible.

A slight reduction in the number of logics that can be loaded due to the latest RxJS library.

v4.0.0

17 Mar 22:02
Compare
Choose a tag to compare

Minimal change in this upgrade but since the monitor$ notification event now signals with the error object rather than the error.message, I thought it was best to bump the major version so it wouldn't surprise anyone.

monitor$ event example error

{ action: { type: 'BAD' },
          err: Error('something bad happened'), // this is now an error object if one was thrown rather than a string
          op: 'nextError' },

Unless you are using monitor$ and specifically looking for a string, you can safely upgrade to this version. Even if you were using the result as a string error should automatically coerce into a string as well.

v3.0.3

17 Mar 21:39
Compare
Choose a tag to compare
  • Update dependencies
  • Fix typos in README
  • correct return type in typescript definition

v3.0.2

25 Jul 23:25
Compare
Choose a tag to compare

Move the examples into a new repo [redux-logic-examples](https://github.com/jeffbski/redux-logic-examples to prevent thrashing of security updates.

v3.0.1

08 Jul 18:47
Compare
Choose a tag to compare
  • Update dependencies
  • Cleanup eslint warnings
  • Format source

v3.0.0

09 Apr 00:17
Compare
Choose a tag to compare

Updated dependencies to close some security vulnerabilities and bring everything up to date.

Bumped major version mainly due to the fact that Node v6 support was dropped due to the upgrades.

v2.1.1

19 Jan 21:31
Compare
Choose a tag to compare

Thanks @deadNightTiger PR #134 derives the Typescript action type for the hooks

v2.1.0

19 Jan 21:23
Compare
Choose a tag to compare

Thanks to PR #140 by @TheTekton which adds "react-native" field to package.json to cause it to use the untranspiled source. Transpiled source was causing an error during react native build.

v2.0.3

29 Oct 11:55
Compare
Choose a tag to compare

Update browserslist, fix for browser if process.env.NODE_ENV not defined

Thanks @kevinlandsberg