Skip to content
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.

Releases: sergeysova/redux-symbiote

v3.4

07 Nov 07:33
df19f06
Compare
Choose a tag to compare

v3.3.0...v3.4.0

Features

v3.3

18 Oct 14:29
Compare
Choose a tag to compare

v3.2.0...v3.3.0

v3.2

21 Apr 12:27
45aab75
Compare
Choose a tag to compare

v3.1.0...v3.2.0

v3.1

07 Mar 17:40
6cd9652
Compare
Choose a tag to compare
  • ci: disable tslint 2228d06
  • fix(symbol): update symbiote-symbol to fix symbol error 9c5271b
  • chore: add commitlint and commitizen dde7302
  • style: add prettier b0f4e8e
  • feat: add random generating namespace (#22) cc02844

v3.0.2...v3.1.0

v3.0.2

23 Dec 20:00
Compare
Choose a tag to compare

v3.0.1...v3.0.2

Docs

Fix

  • ee86130 typings: add action arguments to defaultReducer (#21)

v3.0.1

10 Dec 14:48
Compare
Choose a tag to compare

v3.0.0...v3.0.1

  • b7d9e18 Just move to another workspace

v3 🐲

20 Nov 11:35
Compare
Choose a tag to compare

v2.6.0...v3.0.0

Major changes

f62c9af Changed format of plain action (PR #19)

Before that change, arguments of action creator passed to payload:

const { actions } = createSymbiote({ value: 0 }, {
  example: (state, a, b) => ({ value: state.value + a + b }),
})

actions.example(5, 6)
// { type: 'example', payload: [5, 6] }

Now payload contains only first argument. All arguments passed to "symbiote-payload":

actions.example(5, 6)
// { type: 'example', payload: 5, 'symbiote-payload': [5, 6] }

That change can ease interop with other libraries, ex. redux-observable. See discussion in #14

dc3ff3c Code was full rewrited

All library code was rewrited without changing API.

v3.0 pre

06 Nov 15:12
Compare
Choose a tag to compare
v3.0 pre Pre-release
Pre-release

v2.6.0...v3.0.0-0

Major changes

f62c9af Changed format of plain action (PR #19)

Before that change, arguments of action creator passed to payload:

const { actions } = createSymbiote({ value: 0 }, {
  example: (state, a, b) => ({ value: state.value + a + b }),
})

actions.example(5, 6)
// { type: 'example', payload: [5, 6] }

Now payload contains only first argument. All arguments passed to "symbiote-payload":

actions.example(5, 6)
// { type: 'example', payload: 5, 'symbiote-payload': [5, 6] }

That change can ease interop with other library, ex. redux-observable. See discussion in #14

dc3ff3c Code was full rewrited

All library code was rewrited without changing API.

v2.6 🎍

02 Oct 17:39
Compare
Choose a tag to compare

v2.5.0...v2.6.0

Fixes

v2.5 🎍

17 Sep 20:30
Compare
Choose a tag to compare

Features